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