]> git.proxmox.com Git - qemu.git/blame - qemu-char.c
char: add IOWatchPoll support
[qemu.git] / qemu-char.c
CommitLineData
6f97dba0
AL
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#include "qemu-common.h"
83c9089e 25#include "monitor/monitor.h"
28ecbaee 26#include "ui/console.h"
9c17d615 27#include "sysemu/sysemu.h"
1de7afc9 28#include "qemu/timer.h"
927d4878 29#include "char/char.h"
cf3ebac7
AJ
30#include "hw/usb.h"
31#include "hw/baum.h"
aa71cf80 32#include "hw/msmouse.h"
c5a415a0 33#include "qmp-commands.h"
6f97dba0
AL
34
35#include <unistd.h>
36#include <fcntl.h>
6f97dba0
AL
37#include <time.h>
38#include <errno.h>
39#include <sys/time.h>
40#include <zlib.h>
41
42#ifndef _WIN32
43#include <sys/times.h>
44#include <sys/wait.h>
45#include <termios.h>
46#include <sys/mman.h>
47#include <sys/ioctl.h>
24646c7e 48#include <sys/resource.h>
6f97dba0
AL
49#include <sys/socket.h>
50#include <netinet/in.h>
24646c7e 51#include <net/if.h>
24646c7e 52#include <arpa/inet.h>
6f97dba0
AL
53#include <dirent.h>
54#include <netdb.h>
55#include <sys/select.h>
71e72a19 56#ifdef CONFIG_BSD
6f97dba0 57#include <sys/stat.h>
a167ba50
AJ
58#if defined(__GLIBC__)
59#include <pty.h>
3294ce18
MT
60#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
61#include <libutil.h>
62#else
63#include <util.h>
a167ba50 64#endif
3294ce18
MT
65#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
66#include <dev/ppbus/ppi.h>
67#include <dev/ppbus/ppbconf.h>
c5e97233 68#elif defined(__DragonFly__)
c5e97233
BS
69#include <dev/misc/ppi/ppi.h>
70#include <bus/ppbus/ppbconf.h>
6f97dba0 71#endif
bbe813a2 72#else
6f97dba0 73#ifdef __linux__
6f97dba0
AL
74#include <pty.h>
75
76#include <linux/ppdev.h>
77#include <linux/parport.h>
78#endif
79#ifdef __sun__
80#include <sys/stat.h>
81#include <sys/ethernet.h>
82#include <sys/sockio.h>
83#include <netinet/arp.h>
84#include <netinet/in.h>
85#include <netinet/in_systm.h>
86#include <netinet/ip.h>
87#include <netinet/ip_icmp.h> // must come after ip.h
88#include <netinet/udp.h>
89#include <netinet/tcp.h>
90#include <net/if.h>
91#include <syslog.h>
92#include <stropts.h>
93#endif
94#endif
95#endif
96
1de7afc9 97#include "qemu/sockets.h"
cbcc6336 98#include "ui/qemu-spice.h"
6f97dba0 99
9bd7854e
AS
100#define READ_BUF_LEN 4096
101
6f97dba0
AL
102/***********************************************************/
103/* character device */
104
72cf2d4f
BS
105static QTAILQ_HEAD(CharDriverStateHead, CharDriverState) chardevs =
106 QTAILQ_HEAD_INITIALIZER(chardevs);
2970a6c9 107
a425d23f 108void qemu_chr_be_event(CharDriverState *s, int event)
6f97dba0 109{
73cdf3f2
AG
110 /* Keep track if the char device is open */
111 switch (event) {
112 case CHR_EVENT_OPENED:
113 s->opened = 1;
114 break;
115 case CHR_EVENT_CLOSED:
116 s->opened = 0;
117 break;
118 }
119
6f97dba0
AL
120 if (!s->chr_event)
121 return;
122 s->chr_event(s->handler_opaque, event);
123}
124
ac4119c0 125static void qemu_chr_fire_open_event(void *opaque)
6f97dba0
AL
126{
127 CharDriverState *s = opaque;
a425d23f 128 qemu_chr_be_event(s, CHR_EVENT_OPENED);
ac4119c0
JK
129 qemu_free_timer(s->open_timer);
130 s->open_timer = NULL;
6f97dba0
AL
131}
132
127338e6 133void qemu_chr_generic_open(CharDriverState *s)
6f97dba0 134{
ac4119c0 135 if (s->open_timer == NULL) {
06dec083 136 s->open_timer = qemu_new_timer_ms(rt_clock,
ac4119c0 137 qemu_chr_fire_open_event, s);
06dec083 138 qemu_mod_timer(s->open_timer, qemu_get_clock_ms(rt_clock) - 1);
6f97dba0
AL
139 }
140}
141
2cc6e0a1 142int qemu_chr_fe_write(CharDriverState *s, const uint8_t *buf, int len)
6f97dba0
AL
143{
144 return s->chr_write(s, buf, len);
145}
146
41084f1b 147int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg)
6f97dba0
AL
148{
149 if (!s->chr_ioctl)
150 return -ENOTSUP;
151 return s->chr_ioctl(s, cmd, arg);
152}
153
909cda12 154int qemu_chr_be_can_write(CharDriverState *s)
6f97dba0
AL
155{
156 if (!s->chr_can_read)
157 return 0;
158 return s->chr_can_read(s->handler_opaque);
159}
160
fa5efccb 161void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len)
6f97dba0 162{
ac310734
SW
163 if (s->chr_read) {
164 s->chr_read(s->handler_opaque, buf, len);
165 }
6f97dba0
AL
166}
167
74c0d6f0 168int qemu_chr_fe_get_msgfd(CharDriverState *s)
7d174059
MM
169{
170 return s->get_msgfd ? s->get_msgfd(s) : -1;
171}
172
13661089
DB
173int qemu_chr_add_client(CharDriverState *s, int fd)
174{
175 return s->chr_add_client ? s->chr_add_client(s, fd) : -1;
176}
177
6f97dba0
AL
178void qemu_chr_accept_input(CharDriverState *s)
179{
180 if (s->chr_accept_input)
181 s->chr_accept_input(s);
98c8ee1d 182 qemu_notify_event();
6f97dba0
AL
183}
184
e7e71b0e 185void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...)
6f97dba0 186{
9bd7854e 187 char buf[READ_BUF_LEN];
6f97dba0
AL
188 va_list ap;
189 va_start(ap, fmt);
190 vsnprintf(buf, sizeof(buf), fmt, ap);
2cc6e0a1 191 qemu_chr_fe_write(s, (uint8_t *)buf, strlen(buf));
6f97dba0
AL
192 va_end(ap);
193}
194
6f97dba0 195void qemu_chr_add_handlers(CharDriverState *s,
7b27a769 196 IOCanReadHandler *fd_can_read,
6f97dba0
AL
197 IOReadHandler *fd_read,
198 IOEventHandler *fd_event,
199 void *opaque)
200{
da7d998b 201 if (!opaque && !fd_can_read && !fd_read && !fd_event) {
2d6c1ef4 202 /* chr driver being released. */
d5b27167 203 ++s->avail_connections;
2d6c1ef4 204 }
6f97dba0
AL
205 s->chr_can_read = fd_can_read;
206 s->chr_read = fd_read;
207 s->chr_event = fd_event;
208 s->handler_opaque = opaque;
209 if (s->chr_update_read_handler)
210 s->chr_update_read_handler(s);
73cdf3f2
AG
211
212 /* We're connecting to an already opened device, so let's make sure we
213 also get the open event */
214 if (s->opened) {
215 qemu_chr_generic_open(s);
216 }
6f97dba0
AL
217}
218
219static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
220{
221 return len;
222}
223
1f51470d 224static CharDriverState *qemu_chr_open_null(QemuOpts *opts)
6f97dba0
AL
225{
226 CharDriverState *chr;
227
7267c094 228 chr = g_malloc0(sizeof(CharDriverState));
6f97dba0 229 chr->chr_write = null_chr_write;
1f51470d 230 return chr;
6f97dba0
AL
231}
232
233/* MUX driver for serial I/O splitting */
6f97dba0
AL
234#define MAX_MUX 4
235#define MUX_BUFFER_SIZE 32 /* Must be a power of 2. */
236#define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
237typedef struct {
7b27a769 238 IOCanReadHandler *chr_can_read[MAX_MUX];
6f97dba0
AL
239 IOReadHandler *chr_read[MAX_MUX];
240 IOEventHandler *chr_event[MAX_MUX];
241 void *ext_opaque[MAX_MUX];
242 CharDriverState *drv;
799f1f23 243 int focus;
6f97dba0
AL
244 int mux_cnt;
245 int term_got_escape;
246 int max_size;
a80bf99f
AL
247 /* Intermediate input buffer allows to catch escape sequences even if the
248 currently active device is not accepting any input - but only until it
249 is full as well. */
250 unsigned char buffer[MAX_MUX][MUX_BUFFER_SIZE];
251 int prod[MAX_MUX];
252 int cons[MAX_MUX];
2d22959d 253 int timestamps;
4ab312f7 254 int linestart;
2d22959d 255 int64_t timestamps_start;
6f97dba0
AL
256} MuxDriver;
257
258
259static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
260{
261 MuxDriver *d = chr->opaque;
262 int ret;
2d22959d 263 if (!d->timestamps) {
6f97dba0
AL
264 ret = d->drv->chr_write(d->drv, buf, len);
265 } else {
266 int i;
267
268 ret = 0;
4ab312f7
JK
269 for (i = 0; i < len; i++) {
270 if (d->linestart) {
6f97dba0
AL
271 char buf1[64];
272 int64_t ti;
273 int secs;
274
7bd427d8 275 ti = qemu_get_clock_ms(rt_clock);
2d22959d
JK
276 if (d->timestamps_start == -1)
277 d->timestamps_start = ti;
278 ti -= d->timestamps_start;
a4bb1db8 279 secs = ti / 1000;
6f97dba0
AL
280 snprintf(buf1, sizeof(buf1),
281 "[%02d:%02d:%02d.%03d] ",
282 secs / 3600,
283 (secs / 60) % 60,
284 secs % 60,
a4bb1db8 285 (int)(ti % 1000));
6f97dba0 286 d->drv->chr_write(d->drv, (uint8_t *)buf1, strlen(buf1));
4ab312f7
JK
287 d->linestart = 0;
288 }
289 ret += d->drv->chr_write(d->drv, buf+i, 1);
290 if (buf[i] == '\n') {
291 d->linestart = 1;
6f97dba0
AL
292 }
293 }
294 }
295 return ret;
296}
297
298static const char * const mux_help[] = {
299 "% h print this help\n\r",
300 "% x exit emulator\n\r",
301 "% s save disk data back to file (if -snapshot)\n\r",
302 "% t toggle console timestamps\n\r"
303 "% b send break (magic sysrq)\n\r",
304 "% c switch between console and monitor\n\r",
305 "% % sends %\n\r",
306 NULL
307};
308
309int term_escape_char = 0x01; /* ctrl-a is used for escape */
310static void mux_print_help(CharDriverState *chr)
311{
312 int i, j;
313 char ebuf[15] = "Escape-Char";
314 char cbuf[50] = "\n\r";
315
316 if (term_escape_char > 0 && term_escape_char < 26) {
317 snprintf(cbuf, sizeof(cbuf), "\n\r");
318 snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
319 } else {
320 snprintf(cbuf, sizeof(cbuf),
321 "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
322 term_escape_char);
323 }
324 chr->chr_write(chr, (uint8_t *)cbuf, strlen(cbuf));
325 for (i = 0; mux_help[i] != NULL; i++) {
326 for (j=0; mux_help[i][j] != '\0'; j++) {
327 if (mux_help[i][j] == '%')
328 chr->chr_write(chr, (uint8_t *)ebuf, strlen(ebuf));
329 else
330 chr->chr_write(chr, (uint8_t *)&mux_help[i][j], 1);
331 }
332 }
333}
334
2724b180
AL
335static void mux_chr_send_event(MuxDriver *d, int mux_nr, int event)
336{
337 if (d->chr_event[mux_nr])
338 d->chr_event[mux_nr](d->ext_opaque[mux_nr], event);
339}
340
6f97dba0
AL
341static int mux_proc_byte(CharDriverState *chr, MuxDriver *d, int ch)
342{
343 if (d->term_got_escape) {
344 d->term_got_escape = 0;
345 if (ch == term_escape_char)
346 goto send_char;
347 switch(ch) {
348 case '?':
349 case 'h':
350 mux_print_help(chr);
351 break;
352 case 'x':
353 {
354 const char *term = "QEMU: Terminated\n\r";
355 chr->chr_write(chr,(uint8_t *)term,strlen(term));
356 exit(0);
357 break;
358 }
359 case 's':
6ab4b5ab 360 bdrv_commit_all();
6f97dba0
AL
361 break;
362 case 'b':
a425d23f 363 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
6f97dba0
AL
364 break;
365 case 'c':
366 /* Switch to the next registered device */
799f1f23
GH
367 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
368 d->focus++;
369 if (d->focus >= d->mux_cnt)
370 d->focus = 0;
371 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
6f97dba0 372 break;
2d22959d
JK
373 case 't':
374 d->timestamps = !d->timestamps;
375 d->timestamps_start = -1;
4ab312f7 376 d->linestart = 0;
2d22959d 377 break;
6f97dba0
AL
378 }
379 } else if (ch == term_escape_char) {
380 d->term_got_escape = 1;
381 } else {
382 send_char:
383 return 1;
384 }
385 return 0;
386}
387
388static void mux_chr_accept_input(CharDriverState *chr)
389{
6f97dba0 390 MuxDriver *d = chr->opaque;
799f1f23 391 int m = d->focus;
6f97dba0 392
a80bf99f 393 while (d->prod[m] != d->cons[m] &&
6f97dba0
AL
394 d->chr_can_read[m] &&
395 d->chr_can_read[m](d->ext_opaque[m])) {
396 d->chr_read[m](d->ext_opaque[m],
a80bf99f 397 &d->buffer[m][d->cons[m]++ & MUX_BUFFER_MASK], 1);
6f97dba0
AL
398 }
399}
400
401static int mux_chr_can_read(void *opaque)
402{
403 CharDriverState *chr = opaque;
404 MuxDriver *d = chr->opaque;
799f1f23 405 int m = d->focus;
6f97dba0 406
a80bf99f 407 if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE)
6f97dba0 408 return 1;
a80bf99f
AL
409 if (d->chr_can_read[m])
410 return d->chr_can_read[m](d->ext_opaque[m]);
6f97dba0
AL
411 return 0;
412}
413
414static void mux_chr_read(void *opaque, const uint8_t *buf, int size)
415{
416 CharDriverState *chr = opaque;
417 MuxDriver *d = chr->opaque;
799f1f23 418 int m = d->focus;
6f97dba0
AL
419 int i;
420
421 mux_chr_accept_input (opaque);
422
423 for(i = 0; i < size; i++)
424 if (mux_proc_byte(chr, d, buf[i])) {
a80bf99f 425 if (d->prod[m] == d->cons[m] &&
6f97dba0
AL
426 d->chr_can_read[m] &&
427 d->chr_can_read[m](d->ext_opaque[m]))
428 d->chr_read[m](d->ext_opaque[m], &buf[i], 1);
429 else
a80bf99f 430 d->buffer[m][d->prod[m]++ & MUX_BUFFER_MASK] = buf[i];
6f97dba0
AL
431 }
432}
433
434static void mux_chr_event(void *opaque, int event)
435{
436 CharDriverState *chr = opaque;
437 MuxDriver *d = chr->opaque;
438 int i;
439
440 /* Send the event to all registered listeners */
441 for (i = 0; i < d->mux_cnt; i++)
2724b180 442 mux_chr_send_event(d, i, event);
6f97dba0
AL
443}
444
445static void mux_chr_update_read_handler(CharDriverState *chr)
446{
447 MuxDriver *d = chr->opaque;
448
449 if (d->mux_cnt >= MAX_MUX) {
450 fprintf(stderr, "Cannot add I/O handlers, MUX array is full\n");
451 return;
452 }
453 d->ext_opaque[d->mux_cnt] = chr->handler_opaque;
454 d->chr_can_read[d->mux_cnt] = chr->chr_can_read;
455 d->chr_read[d->mux_cnt] = chr->chr_read;
456 d->chr_event[d->mux_cnt] = chr->chr_event;
457 /* Fix up the real driver with mux routines */
458 if (d->mux_cnt == 0) {
459 qemu_chr_add_handlers(d->drv, mux_chr_can_read, mux_chr_read,
460 mux_chr_event, chr);
461 }
799f1f23
GH
462 if (d->focus != -1) {
463 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_OUT);
a7aec5da 464 }
799f1f23 465 d->focus = d->mux_cnt;
6f97dba0 466 d->mux_cnt++;
799f1f23 467 mux_chr_send_event(d, d->focus, CHR_EVENT_MUX_IN);
6f97dba0
AL
468}
469
470static CharDriverState *qemu_chr_open_mux(CharDriverState *drv)
471{
472 CharDriverState *chr;
473 MuxDriver *d;
474
7267c094
AL
475 chr = g_malloc0(sizeof(CharDriverState));
476 d = g_malloc0(sizeof(MuxDriver));
6f97dba0
AL
477
478 chr->opaque = d;
479 d->drv = drv;
799f1f23 480 d->focus = -1;
6f97dba0
AL
481 chr->chr_write = mux_chr_write;
482 chr->chr_update_read_handler = mux_chr_update_read_handler;
483 chr->chr_accept_input = mux_chr_accept_input;
7c32c4fe
HG
484 /* Frontend guest-open / -close notification is not support with muxes */
485 chr->chr_guest_open = NULL;
486 chr->chr_guest_close = NULL;
73cdf3f2
AG
487
488 /* Muxes are always open on creation */
489 qemu_chr_generic_open(chr);
490
6f97dba0
AL
491 return chr;
492}
493
494
495#ifdef _WIN32
d247d25f 496int send_all(int fd, const void *buf, int len1)
6f97dba0
AL
497{
498 int ret, len;
499
500 len = len1;
501 while (len > 0) {
502 ret = send(fd, buf, len, 0);
503 if (ret < 0) {
6f97dba0
AL
504 errno = WSAGetLastError();
505 if (errno != WSAEWOULDBLOCK) {
506 return -1;
507 }
508 } else if (ret == 0) {
509 break;
510 } else {
511 buf += ret;
512 len -= ret;
513 }
514 }
515 return len1 - len;
516}
517
518#else
519
5fc9cfed 520int send_all(int fd, const void *_buf, int len1)
6f97dba0
AL
521{
522 int ret, len;
5fc9cfed 523 const uint8_t *buf = _buf;
6f97dba0
AL
524
525 len = len1;
526 while (len > 0) {
527 ret = write(fd, buf, len);
528 if (ret < 0) {
529 if (errno != EINTR && errno != EAGAIN)
530 return -1;
531 } else if (ret == 0) {
532 break;
533 } else {
534 buf += ret;
535 len -= ret;
536 }
537 }
538 return len1 - len;
539}
6f97dba0
AL
540#endif /* !_WIN32 */
541
542#ifndef _WIN32
543
96c63847
AL
544#if 0
545typedef struct IOWatchPoll
546{
547 GSource *src;
548 int max_size;
549
550 IOCanReadHandler *fd_can_read;
551 void *opaque;
552
553 QTAILQ_ENTRY(IOWatchPoll) node;
554} IOWatchPoll;
555
556static QTAILQ_HEAD(, IOWatchPoll) io_watch_poll_list =
557 QTAILQ_HEAD_INITIALIZER(io_watch_poll_list);
558
559static IOWatchPoll *io_watch_poll_from_source(GSource *source)
560{
561 IOWatchPoll *i;
562
563 QTAILQ_FOREACH(i, &io_watch_poll_list, node) {
564 if (i->src == source) {
565 return i;
566 }
567 }
568
569 return NULL;
570}
571
572static gboolean io_watch_poll_prepare(GSource *source, gint *timeout_)
573{
574 IOWatchPoll *iwp = io_watch_poll_from_source(source);
575
576 iwp->max_size = iwp->fd_can_read(iwp->opaque);
577 if (iwp->max_size == 0) {
578 return FALSE;
579 }
580
581 return g_io_watch_funcs.prepare(source, timeout_);
582}
583
584static gboolean io_watch_poll_check(GSource *source)
585{
586 IOWatchPoll *iwp = io_watch_poll_from_source(source);
587
588 if (iwp->max_size == 0) {
589 return FALSE;
590 }
591
592 return g_io_watch_funcs.check(source);
593}
594
595static gboolean io_watch_poll_dispatch(GSource *source, GSourceFunc callback,
596 gpointer user_data)
597{
598 return g_io_watch_funcs.dispatch(source, callback, user_data);
599}
600
601static void io_watch_poll_finalize(GSource *source)
602{
603 IOWatchPoll *iwp = io_watch_poll_from_source(source);
604 QTAILQ_REMOVE(&io_watch_poll_list, iwp, node);
605 g_io_watch_funcs.finalize(source);
606}
607
608static GSourceFuncs io_watch_poll_funcs = {
609 .prepare = io_watch_poll_prepare,
610 .check = io_watch_poll_check,
611 .dispatch = io_watch_poll_dispatch,
612 .finalize = io_watch_poll_finalize,
613};
614
615/* Can only be used for read */
616static guint io_add_watch_poll(GIOChannel *channel,
617 IOCanReadHandler *fd_can_read,
618 GIOFunc fd_read,
619 gpointer user_data)
620{
621 IOWatchPoll *iwp;
622 GSource *src;
623 guint tag;
624
625 src = g_io_create_watch(channel, G_IO_IN | G_IO_ERR | G_IO_HUP);
626 g_source_set_funcs(src, &io_watch_poll_funcs);
627 g_source_set_callback(src, (GSourceFunc)fd_read, user_data, NULL);
628 tag = g_source_attach(src, NULL);
629 g_source_unref(src);
630
631 iwp = g_malloc0(sizeof(*iwp));
632 iwp->src = src;
633 iwp->max_size = 0;
634 iwp->fd_can_read = fd_can_read;
635 iwp->opaque = user_data;
636
637 QTAILQ_INSERT_HEAD(&io_watch_poll_list, iwp, node);
638
639 return tag;
640}
641
642static GIOChannel *io_channel_from_fd(int fd)
643{
644 GIOChannel *chan;
645
646 if (fd == -1) {
647 return NULL;
648 }
649
650 chan = g_io_channel_unix_new(fd);
651
652 g_io_channel_set_encoding(chan, NULL, NULL);
653 g_io_channel_set_buffered(chan, FALSE);
654
655 return chan;
656}
657
658static int io_channel_send_all(GIOChannel *fd, const void *_buf, int len1)
659{
660 GIOStatus status;
661 gsize bytes_written;
662 int len;
663 const uint8_t *buf = _buf;
664
665 len = len1;
666 while (len > 0) {
667 status = g_io_channel_write_chars(fd, (const gchar *)buf, len,
668 &bytes_written, NULL);
669 if (status != G_IO_STATUS_NORMAL) {
670 if (status != G_IO_STATUS_AGAIN) {
671 return -1;
672 }
673 } else if (status == G_IO_STATUS_EOF) {
674 break;
675 } else {
676 buf += bytes_written;
677 len -= bytes_written;
678 }
679 }
680 return len1 - len;
681}
682#endif
683
6f97dba0
AL
684typedef struct {
685 int fd_in, fd_out;
686 int max_size;
687} FDCharDriver;
688
6f97dba0
AL
689
690static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
691{
692 FDCharDriver *s = chr->opaque;
693 return send_all(s->fd_out, buf, len);
694}
695
696static int fd_chr_read_poll(void *opaque)
697{
698 CharDriverState *chr = opaque;
699 FDCharDriver *s = chr->opaque;
700
909cda12 701 s->max_size = qemu_chr_be_can_write(chr);
6f97dba0
AL
702 return s->max_size;
703}
704
705static void fd_chr_read(void *opaque)
706{
707 CharDriverState *chr = opaque;
708 FDCharDriver *s = chr->opaque;
709 int size, len;
9bd7854e 710 uint8_t buf[READ_BUF_LEN];
6f97dba0
AL
711
712 len = sizeof(buf);
713 if (len > s->max_size)
714 len = s->max_size;
715 if (len == 0)
716 return;
717 size = read(s->fd_in, buf, len);
718 if (size == 0) {
719 /* FD has been closed. Remove it from the active list. */
720 qemu_set_fd_handler2(s->fd_in, NULL, NULL, NULL, NULL);
a425d23f 721 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
6f97dba0
AL
722 return;
723 }
724 if (size > 0) {
fa5efccb 725 qemu_chr_be_write(chr, buf, size);
6f97dba0
AL
726 }
727}
728
729static void fd_chr_update_read_handler(CharDriverState *chr)
730{
731 FDCharDriver *s = chr->opaque;
732
733 if (s->fd_in >= 0) {
ed7a1540
AL
734 qemu_set_fd_handler2(s->fd_in, fd_chr_read_poll,
735 fd_chr_read, NULL, chr);
6f97dba0
AL
736 }
737}
738
739static void fd_chr_close(struct CharDriverState *chr)
740{
741 FDCharDriver *s = chr->opaque;
742
743 if (s->fd_in >= 0) {
ed7a1540 744 qemu_set_fd_handler2(s->fd_in, NULL, NULL, NULL, NULL);
6f97dba0
AL
745 }
746
7267c094 747 g_free(s);
a425d23f 748 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
6f97dba0
AL
749}
750
751/* open a character device to a unix fd */
752static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
753{
754 CharDriverState *chr;
755 FDCharDriver *s;
756
7267c094
AL
757 chr = g_malloc0(sizeof(CharDriverState));
758 s = g_malloc0(sizeof(FDCharDriver));
6f97dba0
AL
759 s->fd_in = fd_in;
760 s->fd_out = fd_out;
761 chr->opaque = s;
762 chr->chr_write = fd_chr_write;
763 chr->chr_update_read_handler = fd_chr_update_read_handler;
764 chr->chr_close = fd_chr_close;
765
127338e6 766 qemu_chr_generic_open(chr);
6f97dba0
AL
767
768 return chr;
769}
770
1f51470d 771static CharDriverState *qemu_chr_open_file_out(QemuOpts *opts)
6f97dba0
AL
772{
773 int fd_out;
774
40ff6d7e 775 TFR(fd_out = qemu_open(qemu_opt_get(opts, "path"),
7d31544f 776 O_WRONLY | O_TRUNC | O_CREAT | O_BINARY, 0666));
a89dd6c3 777 if (fd_out < 0) {
1f51470d 778 return NULL;
a89dd6c3 779 }
1f51470d 780 return qemu_chr_open_fd(-1, fd_out);
6f97dba0
AL
781}
782
1f51470d 783static CharDriverState *qemu_chr_open_pipe(QemuOpts *opts)
6f97dba0
AL
784{
785 int fd_in, fd_out;
786 char filename_in[256], filename_out[256];
7d31544f
GH
787 const char *filename = qemu_opt_get(opts, "path");
788
789 if (filename == NULL) {
790 fprintf(stderr, "chardev: pipe: no filename given\n");
1f51470d 791 return NULL;
7d31544f 792 }
6f97dba0
AL
793
794 snprintf(filename_in, 256, "%s.in", filename);
795 snprintf(filename_out, 256, "%s.out", filename);
40ff6d7e
KW
796 TFR(fd_in = qemu_open(filename_in, O_RDWR | O_BINARY));
797 TFR(fd_out = qemu_open(filename_out, O_RDWR | O_BINARY));
6f97dba0
AL
798 if (fd_in < 0 || fd_out < 0) {
799 if (fd_in >= 0)
800 close(fd_in);
801 if (fd_out >= 0)
802 close(fd_out);
b181e047 803 TFR(fd_in = fd_out = qemu_open(filename, O_RDWR | O_BINARY));
a89dd6c3 804 if (fd_in < 0) {
1f51470d 805 return NULL;
a89dd6c3 806 }
6f97dba0 807 }
1f51470d 808 return qemu_chr_open_fd(fd_in, fd_out);
6f97dba0
AL
809}
810
6f97dba0
AL
811/* init terminal so that we can grab keys */
812static struct termios oldtty;
813static int old_fd0_flags;
bb002513 814static bool stdio_allow_signal;
6f97dba0
AL
815
816static void term_exit(void)
817{
818 tcsetattr (0, TCSANOW, &oldtty);
819 fcntl(0, F_SETFL, old_fd0_flags);
820}
821
bb002513 822static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo)
6f97dba0
AL
823{
824 struct termios tty;
825
0369364b 826 tty = oldtty;
bb002513
PB
827 if (!echo) {
828 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
6f97dba0 829 |INLCR|IGNCR|ICRNL|IXON);
bb002513
PB
830 tty.c_oflag |= OPOST;
831 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
832 tty.c_cflag &= ~(CSIZE|PARENB);
833 tty.c_cflag |= CS8;
834 tty.c_cc[VMIN] = 1;
835 tty.c_cc[VTIME] = 0;
836 }
6f97dba0 837 /* if graphical mode, we allow Ctrl-C handling */
bb002513 838 if (!stdio_allow_signal)
6f97dba0 839 tty.c_lflag &= ~ISIG;
6f97dba0
AL
840
841 tcsetattr (0, TCSANOW, &tty);
6f97dba0
AL
842}
843
844static void qemu_chr_close_stdio(struct CharDriverState *chr)
845{
846 term_exit();
6f97dba0
AL
847 fd_chr_close(chr);
848}
849
1f51470d 850static CharDriverState *qemu_chr_open_stdio(QemuOpts *opts)
6f97dba0
AL
851{
852 CharDriverState *chr;
853
ab51b1d5
MT
854 if (is_daemonized()) {
855 error_report("cannot use stdio with -daemonize");
856 return NULL;
857 }
ed7a1540
AL
858 old_fd0_flags = fcntl(0, F_GETFL);
859 tcgetattr (0, &oldtty);
860 fcntl(0, F_SETFL, O_NONBLOCK);
861 atexit(term_exit);
0369364b 862
6f97dba0
AL
863 chr = qemu_chr_open_fd(0, 1);
864 chr->chr_close = qemu_chr_close_stdio;
bb002513 865 chr->chr_set_echo = qemu_chr_set_echo_stdio;
bb002513
PB
866 stdio_allow_signal = qemu_opt_get_bool(opts, "signal",
867 display_type != DT_NOGRAPHIC);
15f31519 868 qemu_chr_fe_set_echo(chr, false);
6f97dba0 869
1f51470d 870 return chr;
6f97dba0
AL
871}
872
873#ifdef __sun__
874/* Once Solaris has openpty(), this is going to be removed. */
3f4cb3d3
BS
875static int openpty(int *amaster, int *aslave, char *name,
876 struct termios *termp, struct winsize *winp)
6f97dba0
AL
877{
878 const char *slave;
879 int mfd = -1, sfd = -1;
880
881 *amaster = *aslave = -1;
882
883 mfd = open("/dev/ptmx", O_RDWR | O_NOCTTY);
884 if (mfd < 0)
885 goto err;
886
887 if (grantpt(mfd) == -1 || unlockpt(mfd) == -1)
888 goto err;
889
890 if ((slave = ptsname(mfd)) == NULL)
891 goto err;
892
893 if ((sfd = open(slave, O_RDONLY | O_NOCTTY)) == -1)
894 goto err;
895
896 if (ioctl(sfd, I_PUSH, "ptem") == -1 ||
897 (termp != NULL && tcgetattr(sfd, termp) < 0))
898 goto err;
899
900 if (amaster)
901 *amaster = mfd;
902 if (aslave)
903 *aslave = sfd;
904 if (winp)
905 ioctl(sfd, TIOCSWINSZ, winp);
906
907 return 0;
908
909err:
910 if (sfd != -1)
911 close(sfd);
912 close(mfd);
913 return -1;
914}
915
3f4cb3d3 916static void cfmakeraw (struct termios *termios_p)
6f97dba0
AL
917{
918 termios_p->c_iflag &=
919 ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
920 termios_p->c_oflag &= ~OPOST;
921 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
922 termios_p->c_cflag &= ~(CSIZE|PARENB);
923 termios_p->c_cflag |= CS8;
924
925 termios_p->c_cc[VMIN] = 0;
926 termios_p->c_cc[VTIME] = 0;
927}
928#endif
929
930#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
a167ba50
AJ
931 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
932 || defined(__GLIBC__)
6f97dba0 933
e551498e
GH
934#define HAVE_CHARDEV_TTY 1
935
6f97dba0
AL
936typedef struct {
937 int fd;
938 int connected;
939 int polling;
940 int read_bytes;
941 QEMUTimer *timer;
942} PtyCharDriver;
943
944static void pty_chr_update_read_handler(CharDriverState *chr);
945static void pty_chr_state(CharDriverState *chr, int connected);
946
947static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
948{
949 PtyCharDriver *s = chr->opaque;
950
951 if (!s->connected) {
952 /* guest sends data, check for (re-)connect */
953 pty_chr_update_read_handler(chr);
954 return 0;
955 }
956 return send_all(s->fd, buf, len);
957}
958
959static int pty_chr_read_poll(void *opaque)
960{
961 CharDriverState *chr = opaque;
962 PtyCharDriver *s = chr->opaque;
963
909cda12 964 s->read_bytes = qemu_chr_be_can_write(chr);
6f97dba0
AL
965 return s->read_bytes;
966}
967
968static void pty_chr_read(void *opaque)
969{
970 CharDriverState *chr = opaque;
971 PtyCharDriver *s = chr->opaque;
972 int size, len;
9bd7854e 973 uint8_t buf[READ_BUF_LEN];
6f97dba0
AL
974
975 len = sizeof(buf);
976 if (len > s->read_bytes)
977 len = s->read_bytes;
978 if (len == 0)
979 return;
980 size = read(s->fd, buf, len);
981 if ((size == -1 && errno == EIO) ||
982 (size == 0)) {
983 pty_chr_state(chr, 0);
984 return;
985 }
986 if (size > 0) {
987 pty_chr_state(chr, 1);
fa5efccb 988 qemu_chr_be_write(chr, buf, size);
6f97dba0
AL
989 }
990}
991
992static void pty_chr_update_read_handler(CharDriverState *chr)
993{
994 PtyCharDriver *s = chr->opaque;
995
996 qemu_set_fd_handler2(s->fd, pty_chr_read_poll,
997 pty_chr_read, NULL, chr);
998 s->polling = 1;
999 /*
1000 * Short timeout here: just need wait long enougth that qemu makes
1001 * it through the poll loop once. When reconnected we want a
1002 * short timeout so we notice it almost instantly. Otherwise
1003 * read() gives us -EIO instantly, making pty_chr_state() reset the
1004 * timeout to the normal (much longer) poll interval before the
1005 * timer triggers.
1006 */
7bd427d8 1007 qemu_mod_timer(s->timer, qemu_get_clock_ms(rt_clock) + 10);
6f97dba0
AL
1008}
1009
1010static void pty_chr_state(CharDriverState *chr, int connected)
1011{
1012 PtyCharDriver *s = chr->opaque;
1013
1014 if (!connected) {
1015 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
1016 s->connected = 0;
1017 s->polling = 0;
1018 /* (re-)connect poll interval for idle guests: once per second.
1019 * We check more frequently in case the guests sends data to
1020 * the virtual device linked to our pty. */
7bd427d8 1021 qemu_mod_timer(s->timer, qemu_get_clock_ms(rt_clock) + 1000);
6f97dba0
AL
1022 } else {
1023 if (!s->connected)
127338e6 1024 qemu_chr_generic_open(chr);
6f97dba0
AL
1025 s->connected = 1;
1026 }
1027}
1028
1029static void pty_chr_timer(void *opaque)
1030{
1031 struct CharDriverState *chr = opaque;
1032 PtyCharDriver *s = chr->opaque;
1033
1034 if (s->connected)
1035 return;
1036 if (s->polling) {
1037 /* If we arrive here without polling being cleared due
1038 * read returning -EIO, then we are (re-)connected */
1039 pty_chr_state(chr, 1);
1040 return;
1041 }
1042
1043 /* Next poll ... */
1044 pty_chr_update_read_handler(chr);
1045}
1046
1047static void pty_chr_close(struct CharDriverState *chr)
1048{
1049 PtyCharDriver *s = chr->opaque;
1050
1051 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
1052 close(s->fd);
819f56b7
AL
1053 qemu_del_timer(s->timer);
1054 qemu_free_timer(s->timer);
7267c094 1055 g_free(s);
a425d23f 1056 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
6f97dba0
AL
1057}
1058
1f51470d 1059static CharDriverState *qemu_chr_open_pty(QemuOpts *opts)
6f97dba0
AL
1060{
1061 CharDriverState *chr;
1062 PtyCharDriver *s;
1063 struct termios tty;
58650218 1064 const char *label;
a4e26048 1065 int master_fd, slave_fd, len;
c5e97233 1066#if defined(__OpenBSD__) || defined(__DragonFly__)
6f97dba0
AL
1067 char pty_name[PATH_MAX];
1068#define q_ptsname(x) pty_name
1069#else
1070 char *pty_name = NULL;
1071#define q_ptsname(x) ptsname(x)
1072#endif
1073
a4e26048 1074 if (openpty(&master_fd, &slave_fd, pty_name, NULL, NULL) < 0) {
1f51470d 1075 return NULL;
6f97dba0
AL
1076 }
1077
1078 /* Set raw attributes on the pty. */
c3b972c3 1079 tcgetattr(slave_fd, &tty);
6f97dba0
AL
1080 cfmakeraw(&tty);
1081 tcsetattr(slave_fd, TCSAFLUSH, &tty);
1082 close(slave_fd);
1083
a4e26048
MA
1084 chr = g_malloc0(sizeof(CharDriverState));
1085
1086 len = strlen(q_ptsname(master_fd)) + 5;
7267c094 1087 chr->filename = g_malloc(len);
a4e26048
MA
1088 snprintf(chr->filename, len, "pty:%s", q_ptsname(master_fd));
1089 qemu_opt_set(opts, "path", q_ptsname(master_fd));
58650218
LL
1090
1091 label = qemu_opts_id(opts);
25bbf61e
GH
1092 fprintf(stderr, "char device redirected to %s%s%s%s\n",
1093 q_ptsname(master_fd),
1094 label ? " (label " : "",
1095 label ? label : "",
1096 label ? ")" : "");
6f97dba0 1097
a4e26048 1098 s = g_malloc0(sizeof(PtyCharDriver));
6f97dba0
AL
1099 chr->opaque = s;
1100 chr->chr_write = pty_chr_write;
1101 chr->chr_update_read_handler = pty_chr_update_read_handler;
1102 chr->chr_close = pty_chr_close;
1103
a4e26048 1104 s->fd = master_fd;
7bd427d8 1105 s->timer = qemu_new_timer_ms(rt_clock, pty_chr_timer, chr);
6f97dba0 1106
1f51470d 1107 return chr;
6f97dba0
AL
1108}
1109
1110static void tty_serial_init(int fd, int speed,
1111 int parity, int data_bits, int stop_bits)
1112{
1113 struct termios tty;
1114 speed_t spd;
1115
1116#if 0
1117 printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
1118 speed, parity, data_bits, stop_bits);
1119#endif
1120 tcgetattr (fd, &tty);
1121
45eea13b
SW
1122#define check_speed(val) if (speed <= val) { spd = B##val; break; }
1123 speed = speed * 10 / 11;
1124 do {
1125 check_speed(50);
1126 check_speed(75);
1127 check_speed(110);
1128 check_speed(134);
1129 check_speed(150);
1130 check_speed(200);
1131 check_speed(300);
1132 check_speed(600);
1133 check_speed(1200);
1134 check_speed(1800);
1135 check_speed(2400);
1136 check_speed(4800);
1137 check_speed(9600);
1138 check_speed(19200);
1139 check_speed(38400);
1140 /* Non-Posix values follow. They may be unsupported on some systems. */
1141 check_speed(57600);
1142 check_speed(115200);
1143#ifdef B230400
1144 check_speed(230400);
1145#endif
1146#ifdef B460800
1147 check_speed(460800);
1148#endif
1149#ifdef B500000
1150 check_speed(500000);
1151#endif
1152#ifdef B576000
1153 check_speed(576000);
1154#endif
1155#ifdef B921600
1156 check_speed(921600);
1157#endif
1158#ifdef B1000000
1159 check_speed(1000000);
1160#endif
1161#ifdef B1152000
1162 check_speed(1152000);
1163#endif
1164#ifdef B1500000
1165 check_speed(1500000);
1166#endif
1167#ifdef B2000000
1168 check_speed(2000000);
1169#endif
1170#ifdef B2500000
1171 check_speed(2500000);
1172#endif
1173#ifdef B3000000
1174 check_speed(3000000);
1175#endif
1176#ifdef B3500000
1177 check_speed(3500000);
1178#endif
1179#ifdef B4000000
1180 check_speed(4000000);
1181#endif
6f97dba0 1182 spd = B115200;
45eea13b 1183 } while (0);
6f97dba0
AL
1184
1185 cfsetispeed(&tty, spd);
1186 cfsetospeed(&tty, spd);
1187
1188 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
1189 |INLCR|IGNCR|ICRNL|IXON);
1190 tty.c_oflag |= OPOST;
1191 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN|ISIG);
1192 tty.c_cflag &= ~(CSIZE|PARENB|PARODD|CRTSCTS|CSTOPB);
1193 switch(data_bits) {
1194 default:
1195 case 8:
1196 tty.c_cflag |= CS8;
1197 break;
1198 case 7:
1199 tty.c_cflag |= CS7;
1200 break;
1201 case 6:
1202 tty.c_cflag |= CS6;
1203 break;
1204 case 5:
1205 tty.c_cflag |= CS5;
1206 break;
1207 }
1208 switch(parity) {
1209 default:
1210 case 'N':
1211 break;
1212 case 'E':
1213 tty.c_cflag |= PARENB;
1214 break;
1215 case 'O':
1216 tty.c_cflag |= PARENB | PARODD;
1217 break;
1218 }
1219 if (stop_bits == 2)
1220 tty.c_cflag |= CSTOPB;
1221
1222 tcsetattr (fd, TCSANOW, &tty);
1223}
1224
1225static int tty_serial_ioctl(CharDriverState *chr, int cmd, void *arg)
1226{
1227 FDCharDriver *s = chr->opaque;
1228
1229 switch(cmd) {
1230 case CHR_IOCTL_SERIAL_SET_PARAMS:
1231 {
1232 QEMUSerialSetParams *ssp = arg;
1233 tty_serial_init(s->fd_in, ssp->speed, ssp->parity,
1234 ssp->data_bits, ssp->stop_bits);
1235 }
1236 break;
1237 case CHR_IOCTL_SERIAL_SET_BREAK:
1238 {
1239 int enable = *(int *)arg;
1240 if (enable)
1241 tcsendbreak(s->fd_in, 1);
1242 }
1243 break;
1244 case CHR_IOCTL_SERIAL_GET_TIOCM:
1245 {
1246 int sarg = 0;
1247 int *targ = (int *)arg;
1248 ioctl(s->fd_in, TIOCMGET, &sarg);
1249 *targ = 0;
b4abdfa4 1250 if (sarg & TIOCM_CTS)
6f97dba0 1251 *targ |= CHR_TIOCM_CTS;
b4abdfa4 1252 if (sarg & TIOCM_CAR)
6f97dba0 1253 *targ |= CHR_TIOCM_CAR;
b4abdfa4 1254 if (sarg & TIOCM_DSR)
6f97dba0 1255 *targ |= CHR_TIOCM_DSR;
b4abdfa4 1256 if (sarg & TIOCM_RI)
6f97dba0 1257 *targ |= CHR_TIOCM_RI;
b4abdfa4 1258 if (sarg & TIOCM_DTR)
6f97dba0 1259 *targ |= CHR_TIOCM_DTR;
b4abdfa4 1260 if (sarg & TIOCM_RTS)
6f97dba0
AL
1261 *targ |= CHR_TIOCM_RTS;
1262 }
1263 break;
1264 case CHR_IOCTL_SERIAL_SET_TIOCM:
1265 {
1266 int sarg = *(int *)arg;
1267 int targ = 0;
b4abdfa4
AJ
1268 ioctl(s->fd_in, TIOCMGET, &targ);
1269 targ &= ~(CHR_TIOCM_CTS | CHR_TIOCM_CAR | CHR_TIOCM_DSR
1270 | CHR_TIOCM_RI | CHR_TIOCM_DTR | CHR_TIOCM_RTS);
1271 if (sarg & CHR_TIOCM_CTS)
1272 targ |= TIOCM_CTS;
1273 if (sarg & CHR_TIOCM_CAR)
1274 targ |= TIOCM_CAR;
1275 if (sarg & CHR_TIOCM_DSR)
1276 targ |= TIOCM_DSR;
1277 if (sarg & CHR_TIOCM_RI)
1278 targ |= TIOCM_RI;
1279 if (sarg & CHR_TIOCM_DTR)
6f97dba0 1280 targ |= TIOCM_DTR;
b4abdfa4 1281 if (sarg & CHR_TIOCM_RTS)
6f97dba0
AL
1282 targ |= TIOCM_RTS;
1283 ioctl(s->fd_in, TIOCMSET, &targ);
1284 }
1285 break;
1286 default:
1287 return -ENOTSUP;
1288 }
1289 return 0;
1290}
1291
4266a134
DA
1292static void qemu_chr_close_tty(CharDriverState *chr)
1293{
1294 FDCharDriver *s = chr->opaque;
1295 int fd = -1;
1296
1297 if (s) {
1298 fd = s->fd_in;
1299 }
1300
1301 fd_chr_close(chr);
1302
1303 if (fd >= 0) {
1304 close(fd);
1305 }
1306}
1307
d59044ef
GH
1308static CharDriverState *qemu_chr_open_tty_fd(int fd)
1309{
1310 CharDriverState *chr;
1311
1312 tty_serial_init(fd, 115200, 'N', 8, 1);
1313 chr = qemu_chr_open_fd(fd, fd);
1314 chr->chr_ioctl = tty_serial_ioctl;
1315 chr->chr_close = qemu_chr_close_tty;
1316 return chr;
1317}
1318
1f51470d 1319static CharDriverState *qemu_chr_open_tty(QemuOpts *opts)
6f97dba0 1320{
48b76496 1321 const char *filename = qemu_opt_get(opts, "path");
6f97dba0
AL
1322 int fd;
1323
b181e047 1324 TFR(fd = qemu_open(filename, O_RDWR | O_NONBLOCK));
afc535ac 1325 if (fd < 0) {
1f51470d 1326 return NULL;
afc535ac 1327 }
d59044ef 1328 return qemu_chr_open_tty_fd(fd);
6f97dba0 1329}
6f97dba0
AL
1330#endif /* __linux__ || __sun__ */
1331
1332#if defined(__linux__)
e551498e
GH
1333
1334#define HAVE_CHARDEV_PARPORT 1
1335
6f97dba0
AL
1336typedef struct {
1337 int fd;
1338 int mode;
1339} ParallelCharDriver;
1340
1341static int pp_hw_mode(ParallelCharDriver *s, uint16_t mode)
1342{
1343 if (s->mode != mode) {
1344 int m = mode;
1345 if (ioctl(s->fd, PPSETMODE, &m) < 0)
1346 return 0;
1347 s->mode = mode;
1348 }
1349 return 1;
1350}
1351
1352static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1353{
1354 ParallelCharDriver *drv = chr->opaque;
1355 int fd = drv->fd;
1356 uint8_t b;
1357
1358 switch(cmd) {
1359 case CHR_IOCTL_PP_READ_DATA:
1360 if (ioctl(fd, PPRDATA, &b) < 0)
1361 return -ENOTSUP;
1362 *(uint8_t *)arg = b;
1363 break;
1364 case CHR_IOCTL_PP_WRITE_DATA:
1365 b = *(uint8_t *)arg;
1366 if (ioctl(fd, PPWDATA, &b) < 0)
1367 return -ENOTSUP;
1368 break;
1369 case CHR_IOCTL_PP_READ_CONTROL:
1370 if (ioctl(fd, PPRCONTROL, &b) < 0)
1371 return -ENOTSUP;
1372 /* Linux gives only the lowest bits, and no way to know data
1373 direction! For better compatibility set the fixed upper
1374 bits. */
1375 *(uint8_t *)arg = b | 0xc0;
1376 break;
1377 case CHR_IOCTL_PP_WRITE_CONTROL:
1378 b = *(uint8_t *)arg;
1379 if (ioctl(fd, PPWCONTROL, &b) < 0)
1380 return -ENOTSUP;
1381 break;
1382 case CHR_IOCTL_PP_READ_STATUS:
1383 if (ioctl(fd, PPRSTATUS, &b) < 0)
1384 return -ENOTSUP;
1385 *(uint8_t *)arg = b;
1386 break;
1387 case CHR_IOCTL_PP_DATA_DIR:
1388 if (ioctl(fd, PPDATADIR, (int *)arg) < 0)
1389 return -ENOTSUP;
1390 break;
1391 case CHR_IOCTL_PP_EPP_READ_ADDR:
1392 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1393 struct ParallelIOArg *parg = arg;
1394 int n = read(fd, parg->buffer, parg->count);
1395 if (n != parg->count) {
1396 return -EIO;
1397 }
1398 }
1399 break;
1400 case CHR_IOCTL_PP_EPP_READ:
1401 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1402 struct ParallelIOArg *parg = arg;
1403 int n = read(fd, parg->buffer, parg->count);
1404 if (n != parg->count) {
1405 return -EIO;
1406 }
1407 }
1408 break;
1409 case CHR_IOCTL_PP_EPP_WRITE_ADDR:
1410 if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1411 struct ParallelIOArg *parg = arg;
1412 int n = write(fd, parg->buffer, parg->count);
1413 if (n != parg->count) {
1414 return -EIO;
1415 }
1416 }
1417 break;
1418 case CHR_IOCTL_PP_EPP_WRITE:
1419 if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1420 struct ParallelIOArg *parg = arg;
1421 int n = write(fd, parg->buffer, parg->count);
1422 if (n != parg->count) {
1423 return -EIO;
1424 }
1425 }
1426 break;
1427 default:
1428 return -ENOTSUP;
1429 }
1430 return 0;
1431}
1432
1433static void pp_close(CharDriverState *chr)
1434{
1435 ParallelCharDriver *drv = chr->opaque;
1436 int fd = drv->fd;
1437
1438 pp_hw_mode(drv, IEEE1284_MODE_COMPAT);
1439 ioctl(fd, PPRELEASE);
1440 close(fd);
7267c094 1441 g_free(drv);
a425d23f 1442 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
6f97dba0
AL
1443}
1444
88a946d3 1445static CharDriverState *qemu_chr_open_pp_fd(int fd)
6f97dba0
AL
1446{
1447 CharDriverState *chr;
1448 ParallelCharDriver *drv;
6f97dba0
AL
1449
1450 if (ioctl(fd, PPCLAIM) < 0) {
1451 close(fd);
1f51470d 1452 return NULL;
6f97dba0
AL
1453 }
1454
7267c094 1455 drv = g_malloc0(sizeof(ParallelCharDriver));
6f97dba0
AL
1456 drv->fd = fd;
1457 drv->mode = IEEE1284_MODE_COMPAT;
1458
7267c094 1459 chr = g_malloc0(sizeof(CharDriverState));
6f97dba0
AL
1460 chr->chr_write = null_chr_write;
1461 chr->chr_ioctl = pp_ioctl;
1462 chr->chr_close = pp_close;
1463 chr->opaque = drv;
1464
127338e6 1465 qemu_chr_generic_open(chr);
6f97dba0 1466
1f51470d 1467 return chr;
6f97dba0
AL
1468}
1469#endif /* __linux__ */
1470
a167ba50 1471#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
e551498e
GH
1472
1473#define HAVE_CHARDEV_PARPORT 1
1474
6972f935
BS
1475static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1476{
e0efb993 1477 int fd = (int)(intptr_t)chr->opaque;
6972f935
BS
1478 uint8_t b;
1479
1480 switch(cmd) {
1481 case CHR_IOCTL_PP_READ_DATA:
1482 if (ioctl(fd, PPIGDATA, &b) < 0)
1483 return -ENOTSUP;
1484 *(uint8_t *)arg = b;
1485 break;
1486 case CHR_IOCTL_PP_WRITE_DATA:
1487 b = *(uint8_t *)arg;
1488 if (ioctl(fd, PPISDATA, &b) < 0)
1489 return -ENOTSUP;
1490 break;
1491 case CHR_IOCTL_PP_READ_CONTROL:
1492 if (ioctl(fd, PPIGCTRL, &b) < 0)
1493 return -ENOTSUP;
1494 *(uint8_t *)arg = b;
1495 break;
1496 case CHR_IOCTL_PP_WRITE_CONTROL:
1497 b = *(uint8_t *)arg;
1498 if (ioctl(fd, PPISCTRL, &b) < 0)
1499 return -ENOTSUP;
1500 break;
1501 case CHR_IOCTL_PP_READ_STATUS:
1502 if (ioctl(fd, PPIGSTATUS, &b) < 0)
1503 return -ENOTSUP;
1504 *(uint8_t *)arg = b;
1505 break;
1506 default:
1507 return -ENOTSUP;
1508 }
1509 return 0;
1510}
1511
88a946d3 1512static CharDriverState *qemu_chr_open_pp_fd(int fd)
6972f935
BS
1513{
1514 CharDriverState *chr;
6972f935 1515
7267c094 1516 chr = g_malloc0(sizeof(CharDriverState));
e0efb993 1517 chr->opaque = (void *)(intptr_t)fd;
6972f935
BS
1518 chr->chr_write = null_chr_write;
1519 chr->chr_ioctl = pp_ioctl;
1f51470d 1520 return chr;
6972f935
BS
1521}
1522#endif
1523
6f97dba0
AL
1524#else /* _WIN32 */
1525
1526typedef struct {
1527 int max_size;
1528 HANDLE hcom, hrecv, hsend;
1529 OVERLAPPED orecv, osend;
1530 BOOL fpipe;
1531 DWORD len;
1532} WinCharState;
1533
db418a0a
FC
1534typedef struct {
1535 HANDLE hStdIn;
1536 HANDLE hInputReadyEvent;
1537 HANDLE hInputDoneEvent;
1538 HANDLE hInputThread;
1539 uint8_t win_stdio_buf;
1540} WinStdioCharState;
1541
6f97dba0
AL
1542#define NSENDBUF 2048
1543#define NRECVBUF 2048
1544#define MAXCONNECT 1
1545#define NTIMEOUT 5000
1546
1547static int win_chr_poll(void *opaque);
1548static int win_chr_pipe_poll(void *opaque);
1549
1550static void win_chr_close(CharDriverState *chr)
1551{
1552 WinCharState *s = chr->opaque;
1553
1554 if (s->hsend) {
1555 CloseHandle(s->hsend);
1556 s->hsend = NULL;
1557 }
1558 if (s->hrecv) {
1559 CloseHandle(s->hrecv);
1560 s->hrecv = NULL;
1561 }
1562 if (s->hcom) {
1563 CloseHandle(s->hcom);
1564 s->hcom = NULL;
1565 }
1566 if (s->fpipe)
1567 qemu_del_polling_cb(win_chr_pipe_poll, chr);
1568 else
1569 qemu_del_polling_cb(win_chr_poll, chr);
793cbfb5 1570
a425d23f 1571 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
6f97dba0
AL
1572}
1573
1574static int win_chr_init(CharDriverState *chr, const char *filename)
1575{
1576 WinCharState *s = chr->opaque;
1577 COMMCONFIG comcfg;
1578 COMMTIMEOUTS cto = { 0, 0, 0, 0, 0};
1579 COMSTAT comstat;
1580 DWORD size;
1581 DWORD err;
1582
1583 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1584 if (!s->hsend) {
1585 fprintf(stderr, "Failed CreateEvent\n");
1586 goto fail;
1587 }
1588 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1589 if (!s->hrecv) {
1590 fprintf(stderr, "Failed CreateEvent\n");
1591 goto fail;
1592 }
1593
1594 s->hcom = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, NULL,
1595 OPEN_EXISTING, FILE_FLAG_OVERLAPPED, 0);
1596 if (s->hcom == INVALID_HANDLE_VALUE) {
1597 fprintf(stderr, "Failed CreateFile (%lu)\n", GetLastError());
1598 s->hcom = NULL;
1599 goto fail;
1600 }
1601
1602 if (!SetupComm(s->hcom, NRECVBUF, NSENDBUF)) {
1603 fprintf(stderr, "Failed SetupComm\n");
1604 goto fail;
1605 }
1606
1607 ZeroMemory(&comcfg, sizeof(COMMCONFIG));
1608 size = sizeof(COMMCONFIG);
1609 GetDefaultCommConfig(filename, &comcfg, &size);
1610 comcfg.dcb.DCBlength = sizeof(DCB);
1611 CommConfigDialog(filename, NULL, &comcfg);
1612
1613 if (!SetCommState(s->hcom, &comcfg.dcb)) {
1614 fprintf(stderr, "Failed SetCommState\n");
1615 goto fail;
1616 }
1617
1618 if (!SetCommMask(s->hcom, EV_ERR)) {
1619 fprintf(stderr, "Failed SetCommMask\n");
1620 goto fail;
1621 }
1622
1623 cto.ReadIntervalTimeout = MAXDWORD;
1624 if (!SetCommTimeouts(s->hcom, &cto)) {
1625 fprintf(stderr, "Failed SetCommTimeouts\n");
1626 goto fail;
1627 }
1628
1629 if (!ClearCommError(s->hcom, &err, &comstat)) {
1630 fprintf(stderr, "Failed ClearCommError\n");
1631 goto fail;
1632 }
1633 qemu_add_polling_cb(win_chr_poll, chr);
1634 return 0;
1635
1636 fail:
1637 win_chr_close(chr);
1638 return -1;
1639}
1640
1641static int win_chr_write(CharDriverState *chr, const uint8_t *buf, int len1)
1642{
1643 WinCharState *s = chr->opaque;
1644 DWORD len, ret, size, err;
1645
1646 len = len1;
1647 ZeroMemory(&s->osend, sizeof(s->osend));
1648 s->osend.hEvent = s->hsend;
1649 while (len > 0) {
1650 if (s->hsend)
1651 ret = WriteFile(s->hcom, buf, len, &size, &s->osend);
1652 else
1653 ret = WriteFile(s->hcom, buf, len, &size, NULL);
1654 if (!ret) {
1655 err = GetLastError();
1656 if (err == ERROR_IO_PENDING) {
1657 ret = GetOverlappedResult(s->hcom, &s->osend, &size, TRUE);
1658 if (ret) {
1659 buf += size;
1660 len -= size;
1661 } else {
1662 break;
1663 }
1664 } else {
1665 break;
1666 }
1667 } else {
1668 buf += size;
1669 len -= size;
1670 }
1671 }
1672 return len1 - len;
1673}
1674
1675static int win_chr_read_poll(CharDriverState *chr)
1676{
1677 WinCharState *s = chr->opaque;
1678
909cda12 1679 s->max_size = qemu_chr_be_can_write(chr);
6f97dba0
AL
1680 return s->max_size;
1681}
1682
1683static void win_chr_readfile(CharDriverState *chr)
1684{
1685 WinCharState *s = chr->opaque;
1686 int ret, err;
9bd7854e 1687 uint8_t buf[READ_BUF_LEN];
6f97dba0
AL
1688 DWORD size;
1689
1690 ZeroMemory(&s->orecv, sizeof(s->orecv));
1691 s->orecv.hEvent = s->hrecv;
1692 ret = ReadFile(s->hcom, buf, s->len, &size, &s->orecv);
1693 if (!ret) {
1694 err = GetLastError();
1695 if (err == ERROR_IO_PENDING) {
1696 ret = GetOverlappedResult(s->hcom, &s->orecv, &size, TRUE);
1697 }
1698 }
1699
1700 if (size > 0) {
fa5efccb 1701 qemu_chr_be_write(chr, buf, size);
6f97dba0
AL
1702 }
1703}
1704
1705static void win_chr_read(CharDriverState *chr)
1706{
1707 WinCharState *s = chr->opaque;
1708
1709 if (s->len > s->max_size)
1710 s->len = s->max_size;
1711 if (s->len == 0)
1712 return;
1713
1714 win_chr_readfile(chr);
1715}
1716
1717static int win_chr_poll(void *opaque)
1718{
1719 CharDriverState *chr = opaque;
1720 WinCharState *s = chr->opaque;
1721 COMSTAT status;
1722 DWORD comerr;
1723
1724 ClearCommError(s->hcom, &comerr, &status);
1725 if (status.cbInQue > 0) {
1726 s->len = status.cbInQue;
1727 win_chr_read_poll(chr);
1728 win_chr_read(chr);
1729 return 1;
1730 }
1731 return 0;
1732}
1733
d59044ef 1734static CharDriverState *qemu_chr_open_win_path(const char *filename)
6f97dba0
AL
1735{
1736 CharDriverState *chr;
1737 WinCharState *s;
1738
7267c094
AL
1739 chr = g_malloc0(sizeof(CharDriverState));
1740 s = g_malloc0(sizeof(WinCharState));
6f97dba0
AL
1741 chr->opaque = s;
1742 chr->chr_write = win_chr_write;
1743 chr->chr_close = win_chr_close;
1744
1745 if (win_chr_init(chr, filename) < 0) {
2e02e18b
SW
1746 g_free(s);
1747 g_free(chr);
1f51470d 1748 return NULL;
6f97dba0 1749 }
127338e6 1750 qemu_chr_generic_open(chr);
1f51470d 1751 return chr;
6f97dba0
AL
1752}
1753
d59044ef
GH
1754static CharDriverState *qemu_chr_open_win(QemuOpts *opts)
1755{
1756 return qemu_chr_open_win_path(qemu_opt_get(opts, "path"));
1757}
1758
6f97dba0
AL
1759static int win_chr_pipe_poll(void *opaque)
1760{
1761 CharDriverState *chr = opaque;
1762 WinCharState *s = chr->opaque;
1763 DWORD size;
1764
1765 PeekNamedPipe(s->hcom, NULL, 0, NULL, &size, NULL);
1766 if (size > 0) {
1767 s->len = size;
1768 win_chr_read_poll(chr);
1769 win_chr_read(chr);
1770 return 1;
1771 }
1772 return 0;
1773}
1774
1775static int win_chr_pipe_init(CharDriverState *chr, const char *filename)
1776{
1777 WinCharState *s = chr->opaque;
1778 OVERLAPPED ov;
1779 int ret;
1780 DWORD size;
1781 char openname[256];
1782
1783 s->fpipe = TRUE;
1784
1785 s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1786 if (!s->hsend) {
1787 fprintf(stderr, "Failed CreateEvent\n");
1788 goto fail;
1789 }
1790 s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1791 if (!s->hrecv) {
1792 fprintf(stderr, "Failed CreateEvent\n");
1793 goto fail;
1794 }
1795
1796 snprintf(openname, sizeof(openname), "\\\\.\\pipe\\%s", filename);
1797 s->hcom = CreateNamedPipe(openname, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
1798 PIPE_TYPE_BYTE | PIPE_READMODE_BYTE |
1799 PIPE_WAIT,
1800 MAXCONNECT, NSENDBUF, NRECVBUF, NTIMEOUT, NULL);
1801 if (s->hcom == INVALID_HANDLE_VALUE) {
1802 fprintf(stderr, "Failed CreateNamedPipe (%lu)\n", GetLastError());
1803 s->hcom = NULL;
1804 goto fail;
1805 }
1806
1807 ZeroMemory(&ov, sizeof(ov));
1808 ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
1809 ret = ConnectNamedPipe(s->hcom, &ov);
1810 if (ret) {
1811 fprintf(stderr, "Failed ConnectNamedPipe\n");
1812 goto fail;
1813 }
1814
1815 ret = GetOverlappedResult(s->hcom, &ov, &size, TRUE);
1816 if (!ret) {
1817 fprintf(stderr, "Failed GetOverlappedResult\n");
1818 if (ov.hEvent) {
1819 CloseHandle(ov.hEvent);
1820 ov.hEvent = NULL;
1821 }
1822 goto fail;
1823 }
1824
1825 if (ov.hEvent) {
1826 CloseHandle(ov.hEvent);
1827 ov.hEvent = NULL;
1828 }
1829 qemu_add_polling_cb(win_chr_pipe_poll, chr);
1830 return 0;
1831
1832 fail:
1833 win_chr_close(chr);
1834 return -1;
1835}
1836
1837
1f51470d 1838static CharDriverState *qemu_chr_open_win_pipe(QemuOpts *opts)
6f97dba0 1839{
7d31544f 1840 const char *filename = qemu_opt_get(opts, "path");
6f97dba0
AL
1841 CharDriverState *chr;
1842 WinCharState *s;
1843
7267c094
AL
1844 chr = g_malloc0(sizeof(CharDriverState));
1845 s = g_malloc0(sizeof(WinCharState));
6f97dba0
AL
1846 chr->opaque = s;
1847 chr->chr_write = win_chr_write;
1848 chr->chr_close = win_chr_close;
1849
1850 if (win_chr_pipe_init(chr, filename) < 0) {
2e02e18b
SW
1851 g_free(s);
1852 g_free(chr);
1f51470d 1853 return NULL;
6f97dba0 1854 }
127338e6 1855 qemu_chr_generic_open(chr);
1f51470d 1856 return chr;
6f97dba0
AL
1857}
1858
1f51470d 1859static CharDriverState *qemu_chr_open_win_file(HANDLE fd_out)
6f97dba0
AL
1860{
1861 CharDriverState *chr;
1862 WinCharState *s;
1863
7267c094
AL
1864 chr = g_malloc0(sizeof(CharDriverState));
1865 s = g_malloc0(sizeof(WinCharState));
6f97dba0
AL
1866 s->hcom = fd_out;
1867 chr->opaque = s;
1868 chr->chr_write = win_chr_write;
127338e6 1869 qemu_chr_generic_open(chr);
1f51470d 1870 return chr;
6f97dba0
AL
1871}
1872
1f51470d 1873static CharDriverState *qemu_chr_open_win_con(QemuOpts *opts)
6f97dba0 1874{
1f51470d 1875 return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE));
6f97dba0
AL
1876}
1877
1f51470d 1878static CharDriverState *qemu_chr_open_win_file_out(QemuOpts *opts)
6f97dba0 1879{
7d31544f 1880 const char *file_out = qemu_opt_get(opts, "path");
6f97dba0
AL
1881 HANDLE fd_out;
1882
1883 fd_out = CreateFile(file_out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
1884 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
a89dd6c3 1885 if (fd_out == INVALID_HANDLE_VALUE) {
1f51470d 1886 return NULL;
a89dd6c3 1887 }
6f97dba0 1888
1f51470d 1889 return qemu_chr_open_win_file(fd_out);
6f97dba0 1890}
db418a0a
FC
1891
1892static int win_stdio_write(CharDriverState *chr, const uint8_t *buf, int len)
1893{
1894 HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
1895 DWORD dwSize;
1896 int len1;
1897
1898 len1 = len;
1899
1900 while (len1 > 0) {
1901 if (!WriteFile(hStdOut, buf, len1, &dwSize, NULL)) {
1902 break;
1903 }
1904 buf += dwSize;
1905 len1 -= dwSize;
1906 }
1907
1908 return len - len1;
1909}
1910
1911static void win_stdio_wait_func(void *opaque)
1912{
1913 CharDriverState *chr = opaque;
1914 WinStdioCharState *stdio = chr->opaque;
1915 INPUT_RECORD buf[4];
1916 int ret;
1917 DWORD dwSize;
1918 int i;
1919
1920 ret = ReadConsoleInput(stdio->hStdIn, buf, sizeof(buf) / sizeof(*buf),
1921 &dwSize);
1922
1923 if (!ret) {
1924 /* Avoid error storm */
1925 qemu_del_wait_object(stdio->hStdIn, NULL, NULL);
1926 return;
1927 }
1928
1929 for (i = 0; i < dwSize; i++) {
1930 KEY_EVENT_RECORD *kev = &buf[i].Event.KeyEvent;
1931
1932 if (buf[i].EventType == KEY_EVENT && kev->bKeyDown) {
1933 int j;
1934 if (kev->uChar.AsciiChar != 0) {
1935 for (j = 0; j < kev->wRepeatCount; j++) {
1936 if (qemu_chr_be_can_write(chr)) {
1937 uint8_t c = kev->uChar.AsciiChar;
1938 qemu_chr_be_write(chr, &c, 1);
1939 }
1940 }
1941 }
1942 }
1943 }
1944}
1945
1946static DWORD WINAPI win_stdio_thread(LPVOID param)
1947{
1948 CharDriverState *chr = param;
1949 WinStdioCharState *stdio = chr->opaque;
1950 int ret;
1951 DWORD dwSize;
1952
1953 while (1) {
1954
1955 /* Wait for one byte */
1956 ret = ReadFile(stdio->hStdIn, &stdio->win_stdio_buf, 1, &dwSize, NULL);
1957
1958 /* Exit in case of error, continue if nothing read */
1959 if (!ret) {
1960 break;
1961 }
1962 if (!dwSize) {
1963 continue;
1964 }
1965
1966 /* Some terminal emulator returns \r\n for Enter, just pass \n */
1967 if (stdio->win_stdio_buf == '\r') {
1968 continue;
1969 }
1970
1971 /* Signal the main thread and wait until the byte was eaten */
1972 if (!SetEvent(stdio->hInputReadyEvent)) {
1973 break;
1974 }
1975 if (WaitForSingleObject(stdio->hInputDoneEvent, INFINITE)
1976 != WAIT_OBJECT_0) {
1977 break;
1978 }
1979 }
1980
1981 qemu_del_wait_object(stdio->hInputReadyEvent, NULL, NULL);
1982 return 0;
1983}
1984
1985static void win_stdio_thread_wait_func(void *opaque)
1986{
1987 CharDriverState *chr = opaque;
1988 WinStdioCharState *stdio = chr->opaque;
1989
1990 if (qemu_chr_be_can_write(chr)) {
1991 qemu_chr_be_write(chr, &stdio->win_stdio_buf, 1);
1992 }
1993
1994 SetEvent(stdio->hInputDoneEvent);
1995}
1996
1997static void qemu_chr_set_echo_win_stdio(CharDriverState *chr, bool echo)
1998{
1999 WinStdioCharState *stdio = chr->opaque;
2000 DWORD dwMode = 0;
2001
2002 GetConsoleMode(stdio->hStdIn, &dwMode);
2003
2004 if (echo) {
2005 SetConsoleMode(stdio->hStdIn, dwMode | ENABLE_ECHO_INPUT);
2006 } else {
2007 SetConsoleMode(stdio->hStdIn, dwMode & ~ENABLE_ECHO_INPUT);
2008 }
2009}
2010
2011static void win_stdio_close(CharDriverState *chr)
2012{
2013 WinStdioCharState *stdio = chr->opaque;
2014
2015 if (stdio->hInputReadyEvent != INVALID_HANDLE_VALUE) {
2016 CloseHandle(stdio->hInputReadyEvent);
2017 }
2018 if (stdio->hInputDoneEvent != INVALID_HANDLE_VALUE) {
2019 CloseHandle(stdio->hInputDoneEvent);
2020 }
2021 if (stdio->hInputThread != INVALID_HANDLE_VALUE) {
2022 TerminateThread(stdio->hInputThread, 0);
2023 }
2024
2025 g_free(chr->opaque);
2026 g_free(chr);
db418a0a
FC
2027}
2028
1f51470d 2029static CharDriverState *qemu_chr_open_win_stdio(QemuOpts *opts)
db418a0a
FC
2030{
2031 CharDriverState *chr;
2032 WinStdioCharState *stdio;
2033 DWORD dwMode;
2034 int is_console = 0;
2035
db418a0a
FC
2036 chr = g_malloc0(sizeof(CharDriverState));
2037 stdio = g_malloc0(sizeof(WinStdioCharState));
2038
2039 stdio->hStdIn = GetStdHandle(STD_INPUT_HANDLE);
2040 if (stdio->hStdIn == INVALID_HANDLE_VALUE) {
2041 fprintf(stderr, "cannot open stdio: invalid handle\n");
2042 exit(1);
2043 }
2044
2045 is_console = GetConsoleMode(stdio->hStdIn, &dwMode) != 0;
2046
2047 chr->opaque = stdio;
2048 chr->chr_write = win_stdio_write;
2049 chr->chr_close = win_stdio_close;
2050
ed7a1540
AL
2051 if (is_console) {
2052 if (qemu_add_wait_object(stdio->hStdIn,
2053 win_stdio_wait_func, chr)) {
2054 fprintf(stderr, "qemu_add_wait_object: failed\n");
2055 }
2056 } else {
2057 DWORD dwId;
2058
2059 stdio->hInputReadyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2060 stdio->hInputDoneEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
2061 stdio->hInputThread = CreateThread(NULL, 0, win_stdio_thread,
2062 chr, 0, &dwId);
2063
2064 if (stdio->hInputThread == INVALID_HANDLE_VALUE
2065 || stdio->hInputReadyEvent == INVALID_HANDLE_VALUE
2066 || stdio->hInputDoneEvent == INVALID_HANDLE_VALUE) {
2067 fprintf(stderr, "cannot create stdio thread or event\n");
2068 exit(1);
2069 }
2070 if (qemu_add_wait_object(stdio->hInputReadyEvent,
2071 win_stdio_thread_wait_func, chr)) {
2072 fprintf(stderr, "qemu_add_wait_object: failed\n");
db418a0a
FC
2073 }
2074 }
2075
2076 dwMode |= ENABLE_LINE_INPUT;
2077
ed7a1540 2078 if (is_console) {
db418a0a
FC
2079 /* set the terminal in raw mode */
2080 /* ENABLE_QUICK_EDIT_MODE | ENABLE_EXTENDED_FLAGS */
2081 dwMode |= ENABLE_PROCESSED_INPUT;
2082 }
2083
2084 SetConsoleMode(stdio->hStdIn, dwMode);
2085
2086 chr->chr_set_echo = qemu_chr_set_echo_win_stdio;
2087 qemu_chr_fe_set_echo(chr, false);
2088
1f51470d 2089 return chr;
db418a0a 2090}
6f97dba0
AL
2091#endif /* !_WIN32 */
2092
2093/***********************************************************/
2094/* UDP Net console */
2095
2096typedef struct {
2097 int fd;
9bd7854e 2098 uint8_t buf[READ_BUF_LEN];
6f97dba0
AL
2099 int bufcnt;
2100 int bufptr;
2101 int max_size;
2102} NetCharDriver;
2103
2104static int udp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2105{
2106 NetCharDriver *s = chr->opaque;
2107
7e1b35b4 2108 return send(s->fd, (const void *)buf, len, 0);
6f97dba0
AL
2109}
2110
2111static int udp_chr_read_poll(void *opaque)
2112{
2113 CharDriverState *chr = opaque;
2114 NetCharDriver *s = chr->opaque;
2115
909cda12 2116 s->max_size = qemu_chr_be_can_write(chr);
6f97dba0
AL
2117
2118 /* If there were any stray characters in the queue process them
2119 * first
2120 */
2121 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
fa5efccb 2122 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
6f97dba0 2123 s->bufptr++;
909cda12 2124 s->max_size = qemu_chr_be_can_write(chr);
6f97dba0
AL
2125 }
2126 return s->max_size;
2127}
2128
2129static void udp_chr_read(void *opaque)
2130{
2131 CharDriverState *chr = opaque;
2132 NetCharDriver *s = chr->opaque;
2133
2134 if (s->max_size == 0)
2135 return;
00aa0040 2136 s->bufcnt = qemu_recv(s->fd, s->buf, sizeof(s->buf), 0);
6f97dba0
AL
2137 s->bufptr = s->bufcnt;
2138 if (s->bufcnt <= 0)
2139 return;
2140
2141 s->bufptr = 0;
2142 while (s->max_size > 0 && s->bufptr < s->bufcnt) {
fa5efccb 2143 qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
6f97dba0 2144 s->bufptr++;
909cda12 2145 s->max_size = qemu_chr_be_can_write(chr);
6f97dba0
AL
2146 }
2147}
2148
2149static void udp_chr_update_read_handler(CharDriverState *chr)
2150{
2151 NetCharDriver *s = chr->opaque;
2152
2153 if (s->fd >= 0) {
2154 qemu_set_fd_handler2(s->fd, udp_chr_read_poll,
2155 udp_chr_read, NULL, chr);
2156 }
2157}
2158
819f56b7
AL
2159static void udp_chr_close(CharDriverState *chr)
2160{
2161 NetCharDriver *s = chr->opaque;
2162 if (s->fd >= 0) {
069c159e 2163 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
819f56b7
AL
2164 closesocket(s->fd);
2165 }
7267c094 2166 g_free(s);
a425d23f 2167 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
819f56b7
AL
2168}
2169
1f51470d 2170static CharDriverState *qemu_chr_open_udp(QemuOpts *opts)
6f97dba0
AL
2171{
2172 CharDriverState *chr = NULL;
2173 NetCharDriver *s = NULL;
87d5f24f 2174 Error *local_err = NULL;
6f97dba0 2175 int fd = -1;
6f97dba0 2176
7267c094
AL
2177 chr = g_malloc0(sizeof(CharDriverState));
2178 s = g_malloc0(sizeof(NetCharDriver));
6f97dba0 2179
87d5f24f 2180 fd = inet_dgram_opts(opts, &local_err);
6f97dba0 2181 if (fd < 0) {
6f97dba0
AL
2182 goto return_err;
2183 }
2184
2185 s->fd = fd;
2186 s->bufcnt = 0;
2187 s->bufptr = 0;
2188 chr->opaque = s;
2189 chr->chr_write = udp_chr_write;
2190 chr->chr_update_read_handler = udp_chr_update_read_handler;
819f56b7 2191 chr->chr_close = udp_chr_close;
1f51470d 2192 return chr;
6f97dba0
AL
2193
2194return_err:
87d5f24f
PB
2195 if (local_err) {
2196 qerror_report_err(local_err);
2197 error_free(local_err);
2198 }
7267c094
AL
2199 g_free(chr);
2200 g_free(s);
6e1db57b 2201 if (fd >= 0) {
6f97dba0 2202 closesocket(fd);
6e1db57b 2203 }
1f51470d 2204 return NULL;
6f97dba0
AL
2205}
2206
2207/***********************************************************/
2208/* TCP Net console */
2209
2210typedef struct {
2211 int fd, listen_fd;
2212 int connected;
2213 int max_size;
2214 int do_telnetopt;
2215 int do_nodelay;
2216 int is_unix;
7d174059 2217 int msgfd;
6f97dba0
AL
2218} TCPCharDriver;
2219
2220static void tcp_chr_accept(void *opaque);
2221
2222static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2223{
2224 TCPCharDriver *s = chr->opaque;
2225 if (s->connected) {
2226 return send_all(s->fd, buf, len);
455aa1e0 2227 } else {
6db0fdce 2228 /* XXX: indicate an error ? */
455aa1e0 2229 return len;
6f97dba0
AL
2230 }
2231}
2232
2233static int tcp_chr_read_poll(void *opaque)
2234{
2235 CharDriverState *chr = opaque;
2236 TCPCharDriver *s = chr->opaque;
2237 if (!s->connected)
2238 return 0;
909cda12 2239 s->max_size = qemu_chr_be_can_write(chr);
6f97dba0
AL
2240 return s->max_size;
2241}
2242
2243#define IAC 255
2244#define IAC_BREAK 243
2245static void tcp_chr_process_IAC_bytes(CharDriverState *chr,
2246 TCPCharDriver *s,
2247 uint8_t *buf, int *size)
2248{
2249 /* Handle any telnet client's basic IAC options to satisfy char by
2250 * char mode with no echo. All IAC options will be removed from
2251 * the buf and the do_telnetopt variable will be used to track the
2252 * state of the width of the IAC information.
2253 *
2254 * IAC commands come in sets of 3 bytes with the exception of the
2255 * "IAC BREAK" command and the double IAC.
2256 */
2257
2258 int i;
2259 int j = 0;
2260
2261 for (i = 0; i < *size; i++) {
2262 if (s->do_telnetopt > 1) {
2263 if ((unsigned char)buf[i] == IAC && s->do_telnetopt == 2) {
2264 /* Double IAC means send an IAC */
2265 if (j != i)
2266 buf[j] = buf[i];
2267 j++;
2268 s->do_telnetopt = 1;
2269 } else {
2270 if ((unsigned char)buf[i] == IAC_BREAK && s->do_telnetopt == 2) {
2271 /* Handle IAC break commands by sending a serial break */
a425d23f 2272 qemu_chr_be_event(chr, CHR_EVENT_BREAK);
6f97dba0
AL
2273 s->do_telnetopt++;
2274 }
2275 s->do_telnetopt++;
2276 }
2277 if (s->do_telnetopt >= 4) {
2278 s->do_telnetopt = 1;
2279 }
2280 } else {
2281 if ((unsigned char)buf[i] == IAC) {
2282 s->do_telnetopt = 2;
2283 } else {
2284 if (j != i)
2285 buf[j] = buf[i];
2286 j++;
2287 }
2288 }
2289 }
2290 *size = j;
2291}
2292
7d174059
MM
2293static int tcp_get_msgfd(CharDriverState *chr)
2294{
2295 TCPCharDriver *s = chr->opaque;
e53f27b9
PB
2296 int fd = s->msgfd;
2297 s->msgfd = -1;
2298 return fd;
7d174059
MM
2299}
2300
73bcc2ac 2301#ifndef _WIN32
7d174059
MM
2302static void unix_process_msgfd(CharDriverState *chr, struct msghdr *msg)
2303{
2304 TCPCharDriver *s = chr->opaque;
2305 struct cmsghdr *cmsg;
2306
2307 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
2308 int fd;
2309
2310 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)) ||
2311 cmsg->cmsg_level != SOL_SOCKET ||
2312 cmsg->cmsg_type != SCM_RIGHTS)
2313 continue;
2314
2315 fd = *((int *)CMSG_DATA(cmsg));
2316 if (fd < 0)
2317 continue;
2318
06138651
CB
2319#ifndef MSG_CMSG_CLOEXEC
2320 qemu_set_cloexec(fd);
2321#endif
7d174059
MM
2322 if (s->msgfd != -1)
2323 close(s->msgfd);
2324 s->msgfd = fd;
2325 }
2326}
2327
9977c894
MM
2328static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2329{
2330 TCPCharDriver *s = chr->opaque;
7cba04f6 2331 struct msghdr msg = { NULL, };
9977c894 2332 struct iovec iov[1];
7d174059
MM
2333 union {
2334 struct cmsghdr cmsg;
2335 char control[CMSG_SPACE(sizeof(int))];
2336 } msg_control;
06138651 2337 int flags = 0;
7d174059 2338 ssize_t ret;
9977c894
MM
2339
2340 iov[0].iov_base = buf;
2341 iov[0].iov_len = len;
2342
2343 msg.msg_iov = iov;
2344 msg.msg_iovlen = 1;
7d174059
MM
2345 msg.msg_control = &msg_control;
2346 msg.msg_controllen = sizeof(msg_control);
2347
06138651
CB
2348#ifdef MSG_CMSG_CLOEXEC
2349 flags |= MSG_CMSG_CLOEXEC;
2350#endif
2351 ret = recvmsg(s->fd, &msg, flags);
2352 if (ret > 0 && s->is_unix) {
7d174059 2353 unix_process_msgfd(chr, &msg);
06138651 2354 }
9977c894 2355
7d174059 2356 return ret;
9977c894
MM
2357}
2358#else
2359static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
2360{
2361 TCPCharDriver *s = chr->opaque;
00aa0040 2362 return qemu_recv(s->fd, buf, len, 0);
9977c894
MM
2363}
2364#endif
2365
6f97dba0
AL
2366static void tcp_chr_read(void *opaque)
2367{
2368 CharDriverState *chr = opaque;
2369 TCPCharDriver *s = chr->opaque;
9bd7854e 2370 uint8_t buf[READ_BUF_LEN];
6f97dba0
AL
2371 int len, size;
2372
2373 if (!s->connected || s->max_size <= 0)
2374 return;
2375 len = sizeof(buf);
2376 if (len > s->max_size)
2377 len = s->max_size;
9977c894 2378 size = tcp_chr_recv(chr, (void *)buf, len);
6f97dba0
AL
2379 if (size == 0) {
2380 /* connection closed */
2381 s->connected = 0;
2382 if (s->listen_fd >= 0) {
069c159e 2383 qemu_set_fd_handler2(s->listen_fd, NULL, tcp_chr_accept, NULL, chr);
6f97dba0 2384 }
069c159e 2385 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
6f97dba0
AL
2386 closesocket(s->fd);
2387 s->fd = -1;
a425d23f 2388 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
6f97dba0
AL
2389 } else if (size > 0) {
2390 if (s->do_telnetopt)
2391 tcp_chr_process_IAC_bytes(chr, s, buf, &size);
2392 if (size > 0)
fa5efccb 2393 qemu_chr_be_write(chr, buf, size);
6f97dba0
AL
2394 }
2395}
2396
68c18d1c
BS
2397#ifndef _WIN32
2398CharDriverState *qemu_chr_open_eventfd(int eventfd)
2399{
6cbf4c8c 2400 return qemu_chr_open_fd(eventfd, eventfd);
6cbf4c8c 2401}
68c18d1c 2402#endif
6cbf4c8c 2403
6f97dba0
AL
2404static void tcp_chr_connect(void *opaque)
2405{
2406 CharDriverState *chr = opaque;
2407 TCPCharDriver *s = chr->opaque;
2408
2409 s->connected = 1;
bbdd2ad0
DG
2410 if (s->fd >= 0) {
2411 qemu_set_fd_handler2(s->fd, tcp_chr_read_poll,
2412 tcp_chr_read, NULL, chr);
2413 }
127338e6 2414 qemu_chr_generic_open(chr);
6f97dba0
AL
2415}
2416
2417#define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2418static void tcp_chr_telnet_init(int fd)
2419{
2420 char buf[3];
2421 /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2422 IACSET(buf, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
2423 send(fd, (char *)buf, 3, 0);
2424 IACSET(buf, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
2425 send(fd, (char *)buf, 3, 0);
2426 IACSET(buf, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
2427 send(fd, (char *)buf, 3, 0);
2428 IACSET(buf, 0xff, 0xfd, 0x00); /* IAC DO Binary */
2429 send(fd, (char *)buf, 3, 0);
2430}
2431
13661089
DB
2432static int tcp_chr_add_client(CharDriverState *chr, int fd)
2433{
2434 TCPCharDriver *s = chr->opaque;
2435 if (s->fd != -1)
2436 return -1;
2437
2438 socket_set_nonblock(fd);
2439 if (s->do_nodelay)
2440 socket_set_nodelay(fd);
2441 s->fd = fd;
069c159e 2442 qemu_set_fd_handler2(s->listen_fd, NULL, NULL, NULL, NULL);
13661089
DB
2443 tcp_chr_connect(chr);
2444
2445 return 0;
2446}
2447
6f97dba0
AL
2448static void tcp_chr_accept(void *opaque)
2449{
2450 CharDriverState *chr = opaque;
2451 TCPCharDriver *s = chr->opaque;
2452 struct sockaddr_in saddr;
2453#ifndef _WIN32
2454 struct sockaddr_un uaddr;
2455#endif
2456 struct sockaddr *addr;
2457 socklen_t len;
2458 int fd;
2459
2460 for(;;) {
2461#ifndef _WIN32
2462 if (s->is_unix) {
2463 len = sizeof(uaddr);
2464 addr = (struct sockaddr *)&uaddr;
2465 } else
2466#endif
2467 {
2468 len = sizeof(saddr);
2469 addr = (struct sockaddr *)&saddr;
2470 }
40ff6d7e 2471 fd = qemu_accept(s->listen_fd, addr, &len);
6f97dba0
AL
2472 if (fd < 0 && errno != EINTR) {
2473 return;
2474 } else if (fd >= 0) {
2475 if (s->do_telnetopt)
2476 tcp_chr_telnet_init(fd);
2477 break;
2478 }
2479 }
13661089
DB
2480 if (tcp_chr_add_client(chr, fd) < 0)
2481 close(fd);
6f97dba0
AL
2482}
2483
2484static void tcp_chr_close(CharDriverState *chr)
2485{
2486 TCPCharDriver *s = chr->opaque;
819f56b7 2487 if (s->fd >= 0) {
069c159e 2488 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
6f97dba0 2489 closesocket(s->fd);
819f56b7
AL
2490 }
2491 if (s->listen_fd >= 0) {
069c159e 2492 qemu_set_fd_handler2(s->listen_fd, NULL, NULL, NULL, NULL);
6f97dba0 2493 closesocket(s->listen_fd);
819f56b7 2494 }
7267c094 2495 g_free(s);
a425d23f 2496 qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
6f97dba0
AL
2497}
2498
f6bd5d6e
GH
2499static CharDriverState *qemu_chr_open_socket_fd(int fd, bool do_nodelay,
2500 bool is_listen, bool is_telnet,
2501 bool is_waitconnect,
2502 Error **errp)
6f97dba0
AL
2503{
2504 CharDriverState *chr = NULL;
2505 TCPCharDriver *s = NULL;
f6bd5d6e
GH
2506 char host[NI_MAXHOST], serv[NI_MAXSERV];
2507 const char *left = "", *right = "";
2508 struct sockaddr_storage ss;
2509 socklen_t ss_len = sizeof(ss);
2510
2511 memset(&ss, 0, ss_len);
2512 if (getsockname(fd, (struct sockaddr *) &ss, &ss_len) != 0) {
2513 error_setg(errp, "getsockname: %s", strerror(errno));
2514 return NULL;
2515 }
2516
2517 chr = g_malloc0(sizeof(CharDriverState));
2518 s = g_malloc0(sizeof(TCPCharDriver));
2519
2520 s->connected = 0;
2521 s->fd = -1;
2522 s->listen_fd = -1;
2523 s->msgfd = -1;
2524
2525 chr->filename = g_malloc(256);
2526 switch (ss.ss_family) {
2527#ifndef _WIN32
2528 case AF_UNIX:
2529 s->is_unix = 1;
2530 snprintf(chr->filename, 256, "unix:%s%s",
2531 ((struct sockaddr_un *)(&ss))->sun_path,
2532 is_listen ? ",server" : "");
2533 break;
2534#endif
2535 case AF_INET6:
2536 left = "[";
2537 right = "]";
2538 /* fall through */
2539 case AF_INET:
2540 s->do_nodelay = do_nodelay;
2541 getnameinfo((struct sockaddr *) &ss, ss_len, host, sizeof(host),
2542 serv, sizeof(serv), NI_NUMERICHOST | NI_NUMERICSERV);
2543 snprintf(chr->filename, 256, "%s:%s:%s%s%s%s",
2544 is_telnet ? "telnet" : "tcp",
2545 left, host, right, serv,
2546 is_listen ? ",server" : "");
2547 break;
2548 }
2549
2550 chr->opaque = s;
2551 chr->chr_write = tcp_chr_write;
2552 chr->chr_close = tcp_chr_close;
2553 chr->get_msgfd = tcp_get_msgfd;
2554 chr->chr_add_client = tcp_chr_add_client;
2555
2556 if (is_listen) {
2557 s->listen_fd = fd;
2558 qemu_set_fd_handler2(s->listen_fd, NULL, tcp_chr_accept, NULL, chr);
2559 if (is_telnet) {
2560 s->do_telnetopt = 1;
2561 }
2562 } else {
2563 s->connected = 1;
2564 s->fd = fd;
2565 socket_set_nodelay(fd);
2566 tcp_chr_connect(chr);
2567 }
2568
2569 if (is_listen && is_waitconnect) {
2570 printf("QEMU waiting for connection on: %s\n",
2571 chr->filename);
2572 tcp_chr_accept(chr);
2573 socket_set_nonblock(s->listen_fd);
2574 }
2575 return chr;
2576}
2577
2578static CharDriverState *qemu_chr_open_socket(QemuOpts *opts)
2579{
2580 CharDriverState *chr = NULL;
87d5f24f 2581 Error *local_err = NULL;
aeb2c47a
GH
2582 int fd = -1;
2583 int is_listen;
2584 int is_waitconnect;
2585 int do_nodelay;
2586 int is_unix;
2587 int is_telnet;
2588
2589 is_listen = qemu_opt_get_bool(opts, "server", 0);
2590 is_waitconnect = qemu_opt_get_bool(opts, "wait", 1);
2591 is_telnet = qemu_opt_get_bool(opts, "telnet", 0);
2592 do_nodelay = !qemu_opt_get_bool(opts, "delay", 1);
2593 is_unix = qemu_opt_get(opts, "path") != NULL;
6f97dba0
AL
2594 if (!is_listen)
2595 is_waitconnect = 0;
2596
f07b6003
AL
2597 if (is_unix) {
2598 if (is_listen) {
87d5f24f 2599 fd = unix_listen_opts(opts, &local_err);
f07b6003 2600 } else {
87d5f24f 2601 fd = unix_connect_opts(opts, &local_err, NULL, NULL);
f07b6003
AL
2602 }
2603 } else {
2604 if (is_listen) {
87d5f24f 2605 fd = inet_listen_opts(opts, 0, &local_err);
f07b6003 2606 } else {
87d5f24f 2607 fd = inet_connect_opts(opts, &local_err, NULL, NULL);
f07b6003
AL
2608 }
2609 }
a89dd6c3 2610 if (fd < 0) {
6f97dba0 2611 goto fail;
a89dd6c3 2612 }
6f97dba0
AL
2613
2614 if (!is_waitconnect)
2615 socket_set_nonblock(fd);
2616
f6bd5d6e
GH
2617 chr = qemu_chr_open_socket_fd(fd, do_nodelay, is_listen, is_telnet,
2618 is_waitconnect, &local_err);
2619 if (error_is_set(&local_err)) {
2620 goto fail;
6f97dba0 2621 }
1f51470d 2622 return chr;
aeb2c47a 2623
f6bd5d6e 2624
6f97dba0 2625 fail:
87d5f24f
PB
2626 if (local_err) {
2627 qerror_report_err(local_err);
2628 error_free(local_err);
2629 }
2630 if (fd >= 0) {
6f97dba0 2631 closesocket(fd);
87d5f24f 2632 }
f6bd5d6e
GH
2633 if (chr) {
2634 g_free(chr->opaque);
2635 g_free(chr);
2636 }
1f51470d 2637 return NULL;
6f97dba0
AL
2638}
2639
999bd67c
LC
2640/***********************************************************/
2641/* Memory chardev */
2642typedef struct {
2643 size_t outbuf_size;
2644 size_t outbuf_capacity;
2645 uint8_t *outbuf;
2646} MemoryDriver;
2647
2648static int mem_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
2649{
2650 MemoryDriver *d = chr->opaque;
2651
2652 /* TODO: the QString implementation has the same code, we should
2653 * introduce a generic way to do this in cutils.c */
2654 if (d->outbuf_capacity < d->outbuf_size + len) {
2655 /* grow outbuf */
2656 d->outbuf_capacity += len;
2657 d->outbuf_capacity *= 2;
7267c094 2658 d->outbuf = g_realloc(d->outbuf, d->outbuf_capacity);
999bd67c
LC
2659 }
2660
2661 memcpy(d->outbuf + d->outbuf_size, buf, len);
2662 d->outbuf_size += len;
2663
2664 return len;
2665}
2666
2667void qemu_chr_init_mem(CharDriverState *chr)
2668{
2669 MemoryDriver *d;
2670
7267c094 2671 d = g_malloc(sizeof(*d));
999bd67c
LC
2672 d->outbuf_size = 0;
2673 d->outbuf_capacity = 4096;
7267c094 2674 d->outbuf = g_malloc0(d->outbuf_capacity);
999bd67c
LC
2675
2676 memset(chr, 0, sizeof(*chr));
2677 chr->opaque = d;
2678 chr->chr_write = mem_chr_write;
2679}
2680
2681QString *qemu_chr_mem_to_qs(CharDriverState *chr)
2682{
2683 MemoryDriver *d = chr->opaque;
2684 return qstring_from_substr((char *) d->outbuf, 0, d->outbuf_size - 1);
2685}
2686
70f24fb6 2687/* NOTE: this driver can not be closed with qemu_chr_delete()! */
999bd67c
LC
2688void qemu_chr_close_mem(CharDriverState *chr)
2689{
2690 MemoryDriver *d = chr->opaque;
2691
7267c094
AL
2692 g_free(d->outbuf);
2693 g_free(chr->opaque);
999bd67c
LC
2694 chr->opaque = NULL;
2695 chr->chr_write = NULL;
2696}
2697
2698size_t qemu_chr_mem_osize(const CharDriverState *chr)
2699{
2700 const MemoryDriver *d = chr->opaque;
2701 return d->outbuf_size;
2702}
2703
51767e7c 2704/*********************************************************/
3949e594 2705/* Ring buffer chardev */
51767e7c
LL
2706
2707typedef struct {
2708 size_t size;
2709 size_t prod;
2710 size_t cons;
2711 uint8_t *cbuf;
3949e594 2712} RingBufCharDriver;
51767e7c 2713
3949e594 2714static size_t ringbuf_count(const CharDriverState *chr)
51767e7c 2715{
3949e594 2716 const RingBufCharDriver *d = chr->opaque;
51767e7c 2717
5c230105 2718 return d->prod - d->cons;
51767e7c
LL
2719}
2720
3949e594 2721static int ringbuf_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
51767e7c 2722{
3949e594 2723 RingBufCharDriver *d = chr->opaque;
51767e7c
LL
2724 int i;
2725
2726 if (!buf || (len < 0)) {
2727 return -1;
2728 }
2729
2730 for (i = 0; i < len; i++ ) {
5c230105
MA
2731 d->cbuf[d->prod++ & (d->size - 1)] = buf[i];
2732 if (d->prod - d->cons > d->size) {
51767e7c
LL
2733 d->cons = d->prod - d->size;
2734 }
2735 }
2736
2737 return 0;
2738}
2739
3949e594 2740static int ringbuf_chr_read(CharDriverState *chr, uint8_t *buf, int len)
51767e7c 2741{
3949e594 2742 RingBufCharDriver *d = chr->opaque;
51767e7c
LL
2743 int i;
2744
5c230105
MA
2745 for (i = 0; i < len && d->cons != d->prod; i++) {
2746 buf[i] = d->cbuf[d->cons++ & (d->size - 1)];
51767e7c
LL
2747 }
2748
2749 return i;
2750}
2751
3949e594 2752static void ringbuf_chr_close(struct CharDriverState *chr)
51767e7c 2753{
3949e594 2754 RingBufCharDriver *d = chr->opaque;
51767e7c
LL
2755
2756 g_free(d->cbuf);
2757 g_free(d);
2758 chr->opaque = NULL;
2759}
2760
3949e594 2761static CharDriverState *qemu_chr_open_ringbuf(QemuOpts *opts)
51767e7c
LL
2762{
2763 CharDriverState *chr;
3949e594 2764 RingBufCharDriver *d;
51767e7c
LL
2765
2766 chr = g_malloc0(sizeof(CharDriverState));
2767 d = g_malloc(sizeof(*d));
2768
de1cc36e 2769 d->size = qemu_opt_get_size(opts, "size", 0);
51767e7c 2770 if (d->size == 0) {
de1cc36e 2771 d->size = 65536;
51767e7c
LL
2772 }
2773
2774 /* The size must be power of 2 */
2775 if (d->size & (d->size - 1)) {
3949e594 2776 error_report("size of ringbuf device must be power of two");
51767e7c
LL
2777 goto fail;
2778 }
2779
2780 d->prod = 0;
2781 d->cons = 0;
2782 d->cbuf = g_malloc0(d->size);
2783
2784 chr->opaque = d;
3949e594
MA
2785 chr->chr_write = ringbuf_chr_write;
2786 chr->chr_close = ringbuf_chr_close;
51767e7c
LL
2787
2788 return chr;
2789
2790fail:
2791 g_free(d);
2792 g_free(chr);
2793 return NULL;
2794}
2795
3949e594 2796static bool chr_is_ringbuf(const CharDriverState *chr)
1f590cf9 2797{
3949e594 2798 return chr->chr_write == ringbuf_chr_write;
1f590cf9
LL
2799}
2800
3949e594 2801void qmp_ringbuf_write(const char *device, const char *data,
82e59a67 2802 bool has_format, enum DataFormat format,
1f590cf9
LL
2803 Error **errp)
2804{
2805 CharDriverState *chr;
c4f331b6 2806 const uint8_t *write_data;
1f590cf9 2807 int ret;
c4f331b6 2808 size_t write_count;
1f590cf9
LL
2809
2810 chr = qemu_chr_find(device);
2811 if (!chr) {
1a69278e 2812 error_setg(errp, "Device '%s' not found", device);
1f590cf9
LL
2813 return;
2814 }
2815
3949e594
MA
2816 if (!chr_is_ringbuf(chr)) {
2817 error_setg(errp,"%s is not a ringbuf device", device);
1f590cf9
LL
2818 return;
2819 }
2820
1f590cf9
LL
2821 if (has_format && (format == DATA_FORMAT_BASE64)) {
2822 write_data = g_base64_decode(data, &write_count);
2823 } else {
2824 write_data = (uint8_t *)data;
82e59a67 2825 write_count = strlen(data);
1f590cf9
LL
2826 }
2827
3949e594 2828 ret = ringbuf_chr_write(chr, write_data, write_count);
1f590cf9 2829
13289fb5
MA
2830 if (write_data != (uint8_t *)data) {
2831 g_free((void *)write_data);
2832 }
2833
1f590cf9
LL
2834 if (ret < 0) {
2835 error_setg(errp, "Failed to write to device %s", device);
2836 return;
2837 }
2838}
2839
3949e594 2840char *qmp_ringbuf_read(const char *device, int64_t size,
3ab651fc
MA
2841 bool has_format, enum DataFormat format,
2842 Error **errp)
49b6d722
LL
2843{
2844 CharDriverState *chr;
c4f331b6 2845 uint8_t *read_data;
49b6d722 2846 size_t count;
3ab651fc 2847 char *data;
49b6d722
LL
2848
2849 chr = qemu_chr_find(device);
2850 if (!chr) {
1a69278e 2851 error_setg(errp, "Device '%s' not found", device);
49b6d722
LL
2852 return NULL;
2853 }
2854
3949e594
MA
2855 if (!chr_is_ringbuf(chr)) {
2856 error_setg(errp,"%s is not a ringbuf device", device);
49b6d722
LL
2857 return NULL;
2858 }
2859
2860 if (size <= 0) {
2861 error_setg(errp, "size must be greater than zero");
2862 return NULL;
2863 }
2864
3949e594 2865 count = ringbuf_count(chr);
49b6d722 2866 size = size > count ? count : size;
44f3bcd2 2867 read_data = g_malloc(size + 1);
49b6d722 2868
3949e594 2869 ringbuf_chr_read(chr, read_data, size);
49b6d722
LL
2870
2871 if (has_format && (format == DATA_FORMAT_BASE64)) {
3ab651fc 2872 data = g_base64_encode(read_data, size);
13289fb5 2873 g_free(read_data);
49b6d722 2874 } else {
3949e594
MA
2875 /*
2876 * FIXME should read only complete, valid UTF-8 characters up
2877 * to @size bytes. Invalid sequences should be replaced by a
2878 * suitable replacement character. Except when (and only
2879 * when) ring buffer lost characters since last read, initial
2880 * continuation characters should be dropped.
2881 */
44f3bcd2 2882 read_data[size] = 0;
3ab651fc 2883 data = (char *)read_data;
49b6d722
LL
2884 }
2885
3ab651fc 2886 return data;
49b6d722
LL
2887}
2888
33521634 2889QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
191bc01b 2890{
6ea314d9 2891 char host[65], port[33], width[8], height[8];
aeb2c47a 2892 int pos;
7d31544f 2893 const char *p;
191bc01b 2894 QemuOpts *opts;
8be7e7e4 2895 Error *local_err = NULL;
191bc01b 2896
8be7e7e4
LC
2897 opts = qemu_opts_create(qemu_find_opts("chardev"), label, 1, &local_err);
2898 if (error_is_set(&local_err)) {
2899 qerror_report_err(local_err);
2900 error_free(local_err);
191bc01b 2901 return NULL;
8be7e7e4 2902 }
191bc01b 2903
7591c5c1
GH
2904 if (strstart(filename, "mon:", &p)) {
2905 filename = p;
2906 qemu_opt_set(opts, "mux", "on");
2907 }
2908
f0457e8d
GH
2909 if (strcmp(filename, "null") == 0 ||
2910 strcmp(filename, "pty") == 0 ||
2911 strcmp(filename, "msmouse") == 0 ||
dc1c21e6 2912 strcmp(filename, "braille") == 0 ||
f0457e8d 2913 strcmp(filename, "stdio") == 0) {
4490dadf 2914 qemu_opt_set(opts, "backend", filename);
191bc01b
GH
2915 return opts;
2916 }
6ea314d9
GH
2917 if (strstart(filename, "vc", &p)) {
2918 qemu_opt_set(opts, "backend", "vc");
2919 if (*p == ':') {
2920 if (sscanf(p+1, "%8[0-9]x%8[0-9]", width, height) == 2) {
2921 /* pixels */
2922 qemu_opt_set(opts, "width", width);
2923 qemu_opt_set(opts, "height", height);
2924 } else if (sscanf(p+1, "%8[0-9]Cx%8[0-9]C", width, height) == 2) {
2925 /* chars */
2926 qemu_opt_set(opts, "cols", width);
2927 qemu_opt_set(opts, "rows", height);
2928 } else {
2929 goto fail;
2930 }
2931 }
2932 return opts;
2933 }
d6c983cd
GH
2934 if (strcmp(filename, "con:") == 0) {
2935 qemu_opt_set(opts, "backend", "console");
2936 return opts;
2937 }
48b76496
GH
2938 if (strstart(filename, "COM", NULL)) {
2939 qemu_opt_set(opts, "backend", "serial");
2940 qemu_opt_set(opts, "path", filename);
2941 return opts;
2942 }
7d31544f
GH
2943 if (strstart(filename, "file:", &p)) {
2944 qemu_opt_set(opts, "backend", "file");
2945 qemu_opt_set(opts, "path", p);
2946 return opts;
2947 }
2948 if (strstart(filename, "pipe:", &p)) {
2949 qemu_opt_set(opts, "backend", "pipe");
2950 qemu_opt_set(opts, "path", p);
2951 return opts;
2952 }
aeb2c47a
GH
2953 if (strstart(filename, "tcp:", &p) ||
2954 strstart(filename, "telnet:", &p)) {
2955 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
2956 host[0] = 0;
2957 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1)
2958 goto fail;
2959 }
2960 qemu_opt_set(opts, "backend", "socket");
2961 qemu_opt_set(opts, "host", host);
2962 qemu_opt_set(opts, "port", port);
2963 if (p[pos] == ',') {
2964 if (qemu_opts_do_parse(opts, p+pos+1, NULL) != 0)
2965 goto fail;
2966 }
2967 if (strstart(filename, "telnet:", &p))
2968 qemu_opt_set(opts, "telnet", "on");
2969 return opts;
2970 }
7e1b35b4
GH
2971 if (strstart(filename, "udp:", &p)) {
2972 qemu_opt_set(opts, "backend", "udp");
2973 if (sscanf(p, "%64[^:]:%32[^@,]%n", host, port, &pos) < 2) {
2974 host[0] = 0;
39324ca4 2975 if (sscanf(p, ":%32[^@,]%n", port, &pos) < 1) {
7e1b35b4
GH
2976 goto fail;
2977 }
2978 }
2979 qemu_opt_set(opts, "host", host);
2980 qemu_opt_set(opts, "port", port);
2981 if (p[pos] == '@') {
2982 p += pos + 1;
2983 if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
2984 host[0] = 0;
2985 if (sscanf(p, ":%32[^,]%n", port, &pos) < 1) {
7e1b35b4
GH
2986 goto fail;
2987 }
2988 }
2989 qemu_opt_set(opts, "localaddr", host);
2990 qemu_opt_set(opts, "localport", port);
2991 }
2992 return opts;
2993 }
aeb2c47a
GH
2994 if (strstart(filename, "unix:", &p)) {
2995 qemu_opt_set(opts, "backend", "socket");
2996 if (qemu_opts_do_parse(opts, p, "path") != 0)
2997 goto fail;
2998 return opts;
2999 }
48b76496
GH
3000 if (strstart(filename, "/dev/parport", NULL) ||
3001 strstart(filename, "/dev/ppi", NULL)) {
3002 qemu_opt_set(opts, "backend", "parport");
3003 qemu_opt_set(opts, "path", filename);
3004 return opts;
3005 }
3006 if (strstart(filename, "/dev/", NULL)) {
3007 qemu_opt_set(opts, "backend", "tty");
3008 qemu_opt_set(opts, "path", filename);
3009 return opts;
3010 }
191bc01b 3011
aeb2c47a 3012fail:
191bc01b
GH
3013 qemu_opts_del(opts);
3014 return NULL;
3015}
3016
88a946d3
GH
3017#ifdef HAVE_CHARDEV_PARPORT
3018
3019static CharDriverState *qemu_chr_open_pp(QemuOpts *opts)
3020{
3021 const char *filename = qemu_opt_get(opts, "path");
3022 int fd;
3023
3024 fd = qemu_open(filename, O_RDWR);
3025 if (fd < 0) {
3026 return NULL;
3027 }
3028 return qemu_chr_open_pp_fd(fd);
3029}
3030
3031#endif
3032
191bc01b
GH
3033static const struct {
3034 const char *name;
1f51470d 3035 CharDriverState *(*open)(QemuOpts *opts);
191bc01b
GH
3036} backend_table[] = {
3037 { .name = "null", .open = qemu_chr_open_null },
aeb2c47a 3038 { .name = "socket", .open = qemu_chr_open_socket },
7e1b35b4 3039 { .name = "udp", .open = qemu_chr_open_udp },
f0457e8d 3040 { .name = "msmouse", .open = qemu_chr_open_msmouse },
d82831db 3041 { .name = "vc", .open = vc_init },
3949e594 3042 { .name = "memory", .open = qemu_chr_open_ringbuf },
7d31544f
GH
3043#ifdef _WIN32
3044 { .name = "file", .open = qemu_chr_open_win_file_out },
3045 { .name = "pipe", .open = qemu_chr_open_win_pipe },
d6c983cd 3046 { .name = "console", .open = qemu_chr_open_win_con },
48b76496 3047 { .name = "serial", .open = qemu_chr_open_win },
db418a0a 3048 { .name = "stdio", .open = qemu_chr_open_win_stdio },
7d31544f
GH
3049#else
3050 { .name = "file", .open = qemu_chr_open_file_out },
3051 { .name = "pipe", .open = qemu_chr_open_pipe },
3c17affb 3052 { .name = "stdio", .open = qemu_chr_open_stdio },
7d31544f 3053#endif
dc1c21e6
GH
3054#ifdef CONFIG_BRLAPI
3055 { .name = "braille", .open = chr_baum_init },
3056#endif
e551498e 3057#ifdef HAVE_CHARDEV_TTY
48b76496 3058 { .name = "tty", .open = qemu_chr_open_tty },
d59044ef 3059 { .name = "serial", .open = qemu_chr_open_tty },
e551498e 3060 { .name = "pty", .open = qemu_chr_open_pty },
48b76496 3061#endif
e551498e 3062#ifdef HAVE_CHARDEV_PARPORT
88a946d3 3063 { .name = "parallel", .open = qemu_chr_open_pp },
48b76496
GH
3064 { .name = "parport", .open = qemu_chr_open_pp },
3065#endif
cbcc6336
AL
3066#ifdef CONFIG_SPICE
3067 { .name = "spicevmc", .open = qemu_chr_open_spice },
5a49d3e9
MAL
3068#if SPICE_SERVER_VERSION >= 0x000c02
3069 { .name = "spiceport", .open = qemu_chr_open_spice_port },
3070#endif
cbcc6336 3071#endif
191bc01b
GH
3072};
3073
f69554b9 3074CharDriverState *qemu_chr_new_from_opts(QemuOpts *opts,
bd2d80b2
GH
3075 void (*init)(struct CharDriverState *s),
3076 Error **errp)
191bc01b
GH
3077{
3078 CharDriverState *chr;
3079 int i;
3080
3081 if (qemu_opts_id(opts) == NULL) {
312fd5f2 3082 error_setg(errp, "chardev: no id specified");
2274ae9d 3083 goto err;
191bc01b
GH
3084 }
3085
1bbd185f 3086 if (qemu_opt_get(opts, "backend") == NULL) {
312fd5f2 3087 error_setg(errp, "chardev: \"%s\" missing backend",
bd2d80b2 3088 qemu_opts_id(opts));
2274ae9d 3089 goto err;
1bbd185f 3090 }
191bc01b
GH
3091 for (i = 0; i < ARRAY_SIZE(backend_table); i++) {
3092 if (strcmp(backend_table[i].name, qemu_opt_get(opts, "backend")) == 0)
3093 break;
3094 }
3095 if (i == ARRAY_SIZE(backend_table)) {
312fd5f2 3096 error_setg(errp, "chardev: backend \"%s\" not found",
bd2d80b2 3097 qemu_opt_get(opts, "backend"));
2274ae9d 3098 goto err;
191bc01b
GH
3099 }
3100
1f51470d
MA
3101 chr = backend_table[i].open(opts);
3102 if (!chr) {
312fd5f2 3103 error_setg(errp, "chardev: opening backend \"%s\" failed",
bd2d80b2 3104 qemu_opt_get(opts, "backend"));
2274ae9d 3105 goto err;
191bc01b
GH
3106 }
3107
3108 if (!chr->filename)
7267c094 3109 chr->filename = g_strdup(qemu_opt_get(opts, "backend"));
191bc01b 3110 chr->init = init;
72cf2d4f 3111 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
7591c5c1
GH
3112
3113 if (qemu_opt_get_bool(opts, "mux", 0)) {
3114 CharDriverState *base = chr;
3115 int len = strlen(qemu_opts_id(opts)) + 6;
7267c094 3116 base->label = g_malloc(len);
7591c5c1
GH
3117 snprintf(base->label, len, "%s-base", qemu_opts_id(opts));
3118 chr = qemu_chr_open_mux(base);
3119 chr->filename = base->filename;
d5b27167 3120 chr->avail_connections = MAX_MUX;
72cf2d4f 3121 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
d5b27167
KK
3122 } else {
3123 chr->avail_connections = 1;
7591c5c1 3124 }
7267c094 3125 chr->label = g_strdup(qemu_opts_id(opts));
2274ae9d 3126 chr->opts = opts;
191bc01b 3127 return chr;
2274ae9d
GH
3128
3129err:
3130 qemu_opts_del(opts);
3131 return NULL;
191bc01b
GH
3132}
3133
27143a44 3134CharDriverState *qemu_chr_new(const char *label, const char *filename, void (*init)(struct CharDriverState *s))
6f97dba0
AL
3135{
3136 const char *p;
3137 CharDriverState *chr;
191bc01b 3138 QemuOpts *opts;
bd2d80b2 3139 Error *err = NULL;
191bc01b 3140
c845f401
GH
3141 if (strstart(filename, "chardev:", &p)) {
3142 return qemu_chr_find(p);
3143 }
3144
191bc01b 3145 opts = qemu_chr_parse_compat(label, filename);
7e1b35b4
GH
3146 if (!opts)
3147 return NULL;
6f97dba0 3148
bd2d80b2
GH
3149 chr = qemu_chr_new_from_opts(opts, init, &err);
3150 if (error_is_set(&err)) {
3151 fprintf(stderr, "%s\n", error_get_pretty(err));
3152 error_free(err);
3153 }
7e1b35b4
GH
3154 if (chr && qemu_opt_get_bool(opts, "mux", 0)) {
3155 monitor_init(chr, MONITOR_USE_READLINE);
6f97dba0
AL
3156 }
3157 return chr;
3158}
3159
15f31519 3160void qemu_chr_fe_set_echo(struct CharDriverState *chr, bool echo)
c48855e1
PB
3161{
3162 if (chr->chr_set_echo) {
3163 chr->chr_set_echo(chr, echo);
3164 }
3165}
3166
c9d830ed 3167void qemu_chr_fe_open(struct CharDriverState *chr)
7c32c4fe
HG
3168{
3169 if (chr->chr_guest_open) {
3170 chr->chr_guest_open(chr);
3171 }
3172}
3173
2817822d 3174void qemu_chr_fe_close(struct CharDriverState *chr)
7c32c4fe
HG
3175{
3176 if (chr->chr_guest_close) {
3177 chr->chr_guest_close(chr);
3178 }
3179}
3180
70f24fb6 3181void qemu_chr_delete(CharDriverState *chr)
6f97dba0 3182{
72cf2d4f 3183 QTAILQ_REMOVE(&chardevs, chr, next);
2274ae9d 3184 if (chr->chr_close) {
6f97dba0 3185 chr->chr_close(chr);
2274ae9d 3186 }
7267c094
AL
3187 g_free(chr->filename);
3188 g_free(chr->label);
2274ae9d
GH
3189 if (chr->opts) {
3190 qemu_opts_del(chr->opts);
3191 }
7267c094 3192 g_free(chr);
6f97dba0
AL
3193}
3194
c5a415a0 3195ChardevInfoList *qmp_query_chardev(Error **errp)
6f97dba0 3196{
c5a415a0 3197 ChardevInfoList *chr_list = NULL;
6f97dba0
AL
3198 CharDriverState *chr;
3199
72cf2d4f 3200 QTAILQ_FOREACH(chr, &chardevs, next) {
c5a415a0
LC
3201 ChardevInfoList *info = g_malloc0(sizeof(*info));
3202 info->value = g_malloc0(sizeof(*info->value));
3203 info->value->label = g_strdup(chr->label);
3204 info->value->filename = g_strdup(chr->filename);
3205
3206 info->next = chr_list;
3207 chr_list = info;
6f97dba0 3208 }
588b3832 3209
c5a415a0 3210 return chr_list;
6f97dba0 3211}
c845f401
GH
3212
3213CharDriverState *qemu_chr_find(const char *name)
3214{
3215 CharDriverState *chr;
3216
72cf2d4f 3217 QTAILQ_FOREACH(chr, &chardevs, next) {
c845f401
GH
3218 if (strcmp(chr->label, name) != 0)
3219 continue;
3220 return chr;
3221 }
3222 return NULL;
3223}
0beb4942
AL
3224
3225/* Get a character (serial) device interface. */
3226CharDriverState *qemu_char_get_next_serial(void)
3227{
3228 static int next_serial;
3229
3230 /* FIXME: This function needs to go away: use chardev properties! */
3231 return serial_hds[next_serial++];
3232}
3233
4d454574
PB
3234QemuOptsList qemu_chardev_opts = {
3235 .name = "chardev",
3236 .implied_opt_name = "backend",
3237 .head = QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
3238 .desc = {
3239 {
3240 .name = "backend",
3241 .type = QEMU_OPT_STRING,
3242 },{
3243 .name = "path",
3244 .type = QEMU_OPT_STRING,
3245 },{
3246 .name = "host",
3247 .type = QEMU_OPT_STRING,
3248 },{
3249 .name = "port",
3250 .type = QEMU_OPT_STRING,
3251 },{
3252 .name = "localaddr",
3253 .type = QEMU_OPT_STRING,
3254 },{
3255 .name = "localport",
3256 .type = QEMU_OPT_STRING,
3257 },{
3258 .name = "to",
3259 .type = QEMU_OPT_NUMBER,
3260 },{
3261 .name = "ipv4",
3262 .type = QEMU_OPT_BOOL,
3263 },{
3264 .name = "ipv6",
3265 .type = QEMU_OPT_BOOL,
3266 },{
3267 .name = "wait",
3268 .type = QEMU_OPT_BOOL,
3269 },{
3270 .name = "server",
3271 .type = QEMU_OPT_BOOL,
3272 },{
3273 .name = "delay",
3274 .type = QEMU_OPT_BOOL,
3275 },{
3276 .name = "telnet",
3277 .type = QEMU_OPT_BOOL,
3278 },{
3279 .name = "width",
3280 .type = QEMU_OPT_NUMBER,
3281 },{
3282 .name = "height",
3283 .type = QEMU_OPT_NUMBER,
3284 },{
3285 .name = "cols",
3286 .type = QEMU_OPT_NUMBER,
3287 },{
3288 .name = "rows",
3289 .type = QEMU_OPT_NUMBER,
3290 },{
3291 .name = "mux",
3292 .type = QEMU_OPT_BOOL,
3293 },{
3294 .name = "signal",
3295 .type = QEMU_OPT_BOOL,
3296 },{
3297 .name = "name",
3298 .type = QEMU_OPT_STRING,
3299 },{
3300 .name = "debug",
3301 .type = QEMU_OPT_NUMBER,
51767e7c 3302 },{
3949e594 3303 .name = "size",
de1cc36e 3304 .type = QEMU_OPT_SIZE,
4d454574
PB
3305 },
3306 { /* end of list */ }
3307 },
3308};
f1a1a356 3309
ffbdbe59
GH
3310#ifdef _WIN32
3311
3312static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
3313{
3314 HANDLE out;
3315
3316 if (file->in) {
3317 error_setg(errp, "input file not supported");
3318 return NULL;
3319 }
3320
3321 out = CreateFile(file->out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
3322 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
3323 if (out == INVALID_HANDLE_VALUE) {
3324 error_setg(errp, "open %s failed", file->out);
3325 return NULL;
3326 }
3327 return qemu_chr_open_win_file(out);
3328}
3329
d36b2b90
MA
3330static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
3331 Error **errp)
d59044ef 3332{
d36b2b90
MA
3333 return qemu_chr_open_win_path(serial->device);
3334}
3335
3336static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
3337 Error **errp)
3338{
3339 error_setg(errp, "character device backend type 'parallel' not supported");
3340 return NULL;
d59044ef
GH
3341}
3342
ffbdbe59
GH
3343#else /* WIN32 */
3344
3345static int qmp_chardev_open_file_source(char *src, int flags,
3346 Error **errp)
3347{
3348 int fd = -1;
3349
3350 TFR(fd = qemu_open(src, flags, 0666));
3351 if (fd == -1) {
3352 error_setg(errp, "open %s: %s", src, strerror(errno));
3353 }
3354 return fd;
3355}
3356
3357static CharDriverState *qmp_chardev_open_file(ChardevFile *file, Error **errp)
3358{
3359 int flags, in = -1, out = -1;
3360
3361 flags = O_WRONLY | O_TRUNC | O_CREAT | O_BINARY;
3362 out = qmp_chardev_open_file_source(file->out, flags, errp);
3363 if (error_is_set(errp)) {
3364 return NULL;
3365 }
3366
3367 if (file->in) {
3368 flags = O_RDONLY;
3369 in = qmp_chardev_open_file_source(file->in, flags, errp);
3370 if (error_is_set(errp)) {
3371 qemu_close(out);
3372 return NULL;
3373 }
3374 }
3375
3376 return qemu_chr_open_fd(in, out);
3377}
3378
d36b2b90
MA
3379static CharDriverState *qmp_chardev_open_serial(ChardevHostdev *serial,
3380 Error **errp)
d59044ef 3381{
d59044ef 3382#ifdef HAVE_CHARDEV_TTY
d36b2b90
MA
3383 int fd;
3384
3385 fd = qmp_chardev_open_file_source(serial->device, O_RDWR, errp);
3386 if (error_is_set(errp)) {
3387 return NULL;
39099991 3388 }
d36b2b90
MA
3389 socket_set_nonblock(fd);
3390 return qemu_chr_open_tty_fd(fd);
3391#else
3392 error_setg(errp, "character device backend type 'serial' not supported");
3393 return NULL;
88a946d3 3394#endif
d36b2b90
MA
3395}
3396
3397static CharDriverState *qmp_chardev_open_parallel(ChardevHostdev *parallel,
3398 Error **errp)
3399{
88a946d3 3400#ifdef HAVE_CHARDEV_PARPORT
d36b2b90
MA
3401 int fd;
3402
3403 fd = qmp_chardev_open_file_source(parallel->device, O_RDWR, errp);
3404 if (error_is_set(errp)) {
d59044ef
GH
3405 return NULL;
3406 }
d36b2b90
MA
3407 return qemu_chr_open_pp_fd(fd);
3408#else
3409 error_setg(errp, "character device backend type 'parallel' not supported");
3410 return NULL;
3411#endif
d59044ef
GH
3412}
3413
ffbdbe59
GH
3414#endif /* WIN32 */
3415
f6bd5d6e
GH
3416static CharDriverState *qmp_chardev_open_socket(ChardevSocket *sock,
3417 Error **errp)
3418{
3419 SocketAddress *addr = sock->addr;
3420 bool do_nodelay = sock->has_nodelay ? sock->nodelay : false;
3421 bool is_listen = sock->has_server ? sock->server : true;
3422 bool is_telnet = sock->has_telnet ? sock->telnet : false;
3423 bool is_waitconnect = sock->has_wait ? sock->wait : false;
3424 int fd;
3425
3426 if (is_listen) {
3427 fd = socket_listen(addr, errp);
3428 } else {
3429 fd = socket_connect(addr, errp, NULL, NULL);
3430 }
3431 if (error_is_set(errp)) {
3432 return NULL;
3433 }
3434 return qemu_chr_open_socket_fd(fd, do_nodelay, is_listen,
3435 is_telnet, is_waitconnect, errp);
3436}
3437
f1a1a356
GH
3438ChardevReturn *qmp_chardev_add(const char *id, ChardevBackend *backend,
3439 Error **errp)
3440{
3441 ChardevReturn *ret = g_new0(ChardevReturn, 1);
3442 CharDriverState *chr = NULL;
3443
3444 chr = qemu_chr_find(id);
3445 if (chr) {
3446 error_setg(errp, "Chardev '%s' already exists", id);
3447 g_free(ret);
3448 return NULL;
3449 }
3450
3451 switch (backend->kind) {
ffbdbe59
GH
3452 case CHARDEV_BACKEND_KIND_FILE:
3453 chr = qmp_chardev_open_file(backend->file, errp);
3454 break;
d36b2b90
MA
3455 case CHARDEV_BACKEND_KIND_SERIAL:
3456 chr = qmp_chardev_open_serial(backend->serial, errp);
3457 break;
3458 case CHARDEV_BACKEND_KIND_PARALLEL:
3459 chr = qmp_chardev_open_parallel(backend->parallel, errp);
d59044ef 3460 break;
f6bd5d6e
GH
3461 case CHARDEV_BACKEND_KIND_SOCKET:
3462 chr = qmp_chardev_open_socket(backend->socket, errp);
3463 break;
0a1a7fab
GH
3464#ifdef HAVE_CHARDEV_TTY
3465 case CHARDEV_BACKEND_KIND_PTY:
3466 {
3467 /* qemu_chr_open_pty sets "path" in opts */
3468 QemuOpts *opts;
3469 opts = qemu_opts_create_nofail(qemu_find_opts("chardev"));
3470 chr = qemu_chr_open_pty(opts);
3471 ret->pty = g_strdup(qemu_opt_get(opts, "path"));
3472 ret->has_pty = true;
3473 qemu_opts_del(opts);
3474 break;
3475 }
3476#endif
f1a1a356
GH
3477 case CHARDEV_BACKEND_KIND_NULL:
3478 chr = qemu_chr_open_null(NULL);
3479 break;
3480 default:
3481 error_setg(errp, "unknown chardev backend (%d)", backend->kind);
3482 break;
3483 }
3484
3485 if (chr == NULL && !error_is_set(errp)) {
3486 error_setg(errp, "Failed to create chardev");
3487 }
3488 if (chr) {
3489 chr->label = g_strdup(id);
3490 chr->avail_connections = 1;
3491 QTAILQ_INSERT_TAIL(&chardevs, chr, next);
3492 return ret;
3493 } else {
3494 g_free(ret);
3495 return NULL;
3496 }
3497}
3498
3499void qmp_chardev_remove(const char *id, Error **errp)
3500{
3501 CharDriverState *chr;
3502
3503 chr = qemu_chr_find(id);
3504 if (NULL == chr) {
3505 error_setg(errp, "Chardev '%s' not found", id);
3506 return;
3507 }
3508 if (chr->chr_can_read || chr->chr_read ||
3509 chr->chr_event || chr->handler_opaque) {
3510 error_setg(errp, "Chardev '%s' is busy", id);
3511 return;
3512 }
3513 qemu_chr_delete(chr);
3514}