3240e138a9788bf6ab7ae46f38eb4f050a1283ce
[qemu] / 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 "net.h"
26 #include "monitor.h"
27 #include "console.h"
28 #include "sysemu.h"
29 #include "qemu-timer.h"
30 #include "qemu-char.h"
31 #include "block.h"
32 #include "hw/usb.h"
33 #include "hw/baum.h"
34 #include "hw/msmouse.h"
35
36 #include <unistd.h>
37 #include <fcntl.h>
38 #include <signal.h>
39 #include <time.h>
40 #include <errno.h>
41 #include <sys/time.h>
42 #include <zlib.h>
43
44 #ifndef _WIN32
45 #include <sys/times.h>
46 #include <sys/wait.h>
47 #include <termios.h>
48 #include <sys/mman.h>
49 #include <sys/ioctl.h>
50 #include <sys/resource.h>
51 #include <sys/socket.h>
52 #include <netinet/in.h>
53 #include <net/if.h>
54 #ifdef __NetBSD__
55 #include <net/if_tap.h>
56 #endif
57 #ifdef __linux__
58 #include <linux/if_tun.h>
59 #endif
60 #include <arpa/inet.h>
61 #include <dirent.h>
62 #include <netdb.h>
63 #include <sys/select.h>
64 #ifdef CONFIG_BSD
65 #include <sys/stat.h>
66 #ifdef __FreeBSD__
67 #include <libutil.h>
68 #include <dev/ppbus/ppi.h>
69 #include <dev/ppbus/ppbconf.h>
70 #elif defined(__DragonFly__)
71 #include <libutil.h>
72 #include <dev/misc/ppi/ppi.h>
73 #include <bus/ppbus/ppbconf.h>
74 #else
75 #include <util.h>
76 #endif
77 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
78 #include <freebsd/stdlib.h>
79 #else
80 #ifdef __linux__
81 #include <pty.h>
82
83 #include <linux/ppdev.h>
84 #include <linux/parport.h>
85 #endif
86 #ifdef __sun__
87 #include <sys/stat.h>
88 #include <sys/ethernet.h>
89 #include <sys/sockio.h>
90 #include <netinet/arp.h>
91 #include <netinet/in.h>
92 #include <netinet/in_systm.h>
93 #include <netinet/ip.h>
94 #include <netinet/ip_icmp.h> // must come after ip.h
95 #include <netinet/udp.h>
96 #include <netinet/tcp.h>
97 #include <net/if.h>
98 #include <syslog.h>
99 #include <stropts.h>
100 #endif
101 #endif
102 #endif
103
104 #include "qemu_socket.h"
105
106 /***********************************************************/
107 /* character device */
108
109 static TAILQ_HEAD(CharDriverStateHead, CharDriverState) chardevs =
110     TAILQ_HEAD_INITIALIZER(chardevs);
111 static int initial_reset_issued;
112
113 static void qemu_chr_event(CharDriverState *s, int event)
114 {
115     if (!s->chr_event)
116         return;
117     s->chr_event(s->handler_opaque, event);
118 }
119
120 static void qemu_chr_reset_bh(void *opaque)
121 {
122     CharDriverState *s = opaque;
123     qemu_chr_event(s, CHR_EVENT_RESET);
124     qemu_bh_delete(s->bh);
125     s->bh = NULL;
126 }
127
128 void qemu_chr_reset(CharDriverState *s)
129 {
130     if (s->bh == NULL && initial_reset_issued) {
131         s->bh = qemu_bh_new(qemu_chr_reset_bh, s);
132         qemu_bh_schedule(s->bh);
133     }
134 }
135
136 void qemu_chr_initial_reset(void)
137 {
138     CharDriverState *chr;
139
140     initial_reset_issued = 1;
141
142     TAILQ_FOREACH(chr, &chardevs, next) {
143         qemu_chr_reset(chr);
144     }
145 }
146
147 int qemu_chr_write(CharDriverState *s, const uint8_t *buf, int len)
148 {
149     return s->chr_write(s, buf, len);
150 }
151
152 int qemu_chr_ioctl(CharDriverState *s, int cmd, void *arg)
153 {
154     if (!s->chr_ioctl)
155         return -ENOTSUP;
156     return s->chr_ioctl(s, cmd, arg);
157 }
158
159 int qemu_chr_can_read(CharDriverState *s)
160 {
161     if (!s->chr_can_read)
162         return 0;
163     return s->chr_can_read(s->handler_opaque);
164 }
165
166 void qemu_chr_read(CharDriverState *s, uint8_t *buf, int len)
167 {
168     s->chr_read(s->handler_opaque, buf, len);
169 }
170
171 int qemu_chr_get_msgfd(CharDriverState *s)
172 {
173     return s->get_msgfd ? s->get_msgfd(s) : -1;
174 }
175
176 void qemu_chr_accept_input(CharDriverState *s)
177 {
178     if (s->chr_accept_input)
179         s->chr_accept_input(s);
180 }
181
182 void qemu_chr_printf(CharDriverState *s, const char *fmt, ...)
183 {
184     char buf[4096];
185     va_list ap;
186     va_start(ap, fmt);
187     vsnprintf(buf, sizeof(buf), fmt, ap);
188     qemu_chr_write(s, (uint8_t *)buf, strlen(buf));
189     va_end(ap);
190 }
191
192 void qemu_chr_send_event(CharDriverState *s, int event)
193 {
194     if (s->chr_send_event)
195         s->chr_send_event(s, event);
196 }
197
198 void qemu_chr_add_handlers(CharDriverState *s,
199                            IOCanRWHandler *fd_can_read,
200                            IOReadHandler *fd_read,
201                            IOEventHandler *fd_event,
202                            void *opaque)
203 {
204     s->chr_can_read = fd_can_read;
205     s->chr_read = fd_read;
206     s->chr_event = fd_event;
207     s->handler_opaque = opaque;
208     if (s->chr_update_read_handler)
209         s->chr_update_read_handler(s);
210 }
211
212 static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
213 {
214     return len;
215 }
216
217 static CharDriverState *qemu_chr_open_null(QemuOpts *opts)
218 {
219     CharDriverState *chr;
220
221     chr = qemu_mallocz(sizeof(CharDriverState));
222     chr->chr_write = null_chr_write;
223     return chr;
224 }
225
226 /* MUX driver for serial I/O splitting */
227 #define MAX_MUX 4
228 #define MUX_BUFFER_SIZE 32      /* Must be a power of 2.  */
229 #define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
230 typedef struct {
231     IOCanRWHandler *chr_can_read[MAX_MUX];
232     IOReadHandler *chr_read[MAX_MUX];
233     IOEventHandler *chr_event[MAX_MUX];
234     void *ext_opaque[MAX_MUX];
235     CharDriverState *drv;
236     int mux_cnt;
237     int term_got_escape;
238     int max_size;
239     /* Intermediate input buffer allows to catch escape sequences even if the
240        currently active device is not accepting any input - but only until it
241        is full as well. */
242     unsigned char buffer[MAX_MUX][MUX_BUFFER_SIZE];
243     int prod[MAX_MUX];
244     int cons[MAX_MUX];
245     int timestamps;
246     int linestart;
247     int64_t timestamps_start;
248 } MuxDriver;
249
250
251 static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
252 {
253     MuxDriver *d = chr->opaque;
254     int ret;
255     if (!d->timestamps) {
256         ret = d->drv->chr_write(d->drv, buf, len);
257     } else {
258         int i;
259
260         ret = 0;
261         for (i = 0; i < len; i++) {
262             if (d->linestart) {
263                 char buf1[64];
264                 int64_t ti;
265                 int secs;
266
267                 ti = qemu_get_clock(rt_clock);
268                 if (d->timestamps_start == -1)
269                     d->timestamps_start = ti;
270                 ti -= d->timestamps_start;
271                 secs = ti / 1000;
272                 snprintf(buf1, sizeof(buf1),
273                          "[%02d:%02d:%02d.%03d] ",
274                          secs / 3600,
275                          (secs / 60) % 60,
276                          secs % 60,
277                          (int)(ti % 1000));
278                 d->drv->chr_write(d->drv, (uint8_t *)buf1, strlen(buf1));
279                 d->linestart = 0;
280             }
281             ret += d->drv->chr_write(d->drv, buf+i, 1);
282             if (buf[i] == '\n') {
283                 d->linestart = 1;
284             }
285         }
286     }
287     return ret;
288 }
289
290 static const char * const mux_help[] = {
291     "% h    print this help\n\r",
292     "% x    exit emulator\n\r",
293     "% s    save disk data back to file (if -snapshot)\n\r",
294     "% t    toggle console timestamps\n\r"
295     "% b    send break (magic sysrq)\n\r",
296     "% c    switch between console and monitor\n\r",
297     "% %  sends %\n\r",
298     NULL
299 };
300
301 int term_escape_char = 0x01; /* ctrl-a is used for escape */
302 static void mux_print_help(CharDriverState *chr)
303 {
304     int i, j;
305     char ebuf[15] = "Escape-Char";
306     char cbuf[50] = "\n\r";
307
308     if (term_escape_char > 0 && term_escape_char < 26) {
309         snprintf(cbuf, sizeof(cbuf), "\n\r");
310         snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
311     } else {
312         snprintf(cbuf, sizeof(cbuf),
313                  "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
314                  term_escape_char);
315     }
316     chr->chr_write(chr, (uint8_t *)cbuf, strlen(cbuf));
317     for (i = 0; mux_help[i] != NULL; i++) {
318         for (j=0; mux_help[i][j] != '\0'; j++) {
319             if (mux_help[i][j] == '%')
320                 chr->chr_write(chr, (uint8_t *)ebuf, strlen(ebuf));
321             else
322                 chr->chr_write(chr, (uint8_t *)&mux_help[i][j], 1);
323         }
324     }
325 }
326
327 static void mux_chr_send_event(MuxDriver *d, int mux_nr, int event)
328 {
329     if (d->chr_event[mux_nr])
330         d->chr_event[mux_nr](d->ext_opaque[mux_nr], event);
331 }
332
333 static int mux_proc_byte(CharDriverState *chr, MuxDriver *d, int ch)
334 {
335     if (d->term_got_escape) {
336         d->term_got_escape = 0;
337         if (ch == term_escape_char)
338             goto send_char;
339         switch(ch) {
340         case '?':
341         case 'h':
342             mux_print_help(chr);
343             break;
344         case 'x':
345             {
346                  const char *term =  "QEMU: Terminated\n\r";
347                  chr->chr_write(chr,(uint8_t *)term,strlen(term));
348                  exit(0);
349                  break;
350             }
351         case 's':
352             {
353                 DriveInfo *dinfo;
354                 TAILQ_FOREACH(dinfo, &drives, next) {
355                     bdrv_commit(dinfo->bdrv);
356                 }
357             }
358             break;
359         case 'b':
360             qemu_chr_event(chr, CHR_EVENT_BREAK);
361             break;
362         case 'c':
363             /* Switch to the next registered device */
364             mux_chr_send_event(d, chr->focus, CHR_EVENT_MUX_OUT);
365             chr->focus++;
366             if (chr->focus >= d->mux_cnt)
367                 chr->focus = 0;
368             mux_chr_send_event(d, chr->focus, CHR_EVENT_MUX_IN);
369             break;
370         case 't':
371             d->timestamps = !d->timestamps;
372             d->timestamps_start = -1;
373             d->linestart = 0;
374             break;
375         }
376     } else if (ch == term_escape_char) {
377         d->term_got_escape = 1;
378     } else {
379     send_char:
380         return 1;
381     }
382     return 0;
383 }
384
385 static void mux_chr_accept_input(CharDriverState *chr)
386 {
387     int m = chr->focus;
388     MuxDriver *d = chr->opaque;
389
390     while (d->prod[m] != d->cons[m] &&
391            d->chr_can_read[m] &&
392            d->chr_can_read[m](d->ext_opaque[m])) {
393         d->chr_read[m](d->ext_opaque[m],
394                        &d->buffer[m][d->cons[m]++ & MUX_BUFFER_MASK], 1);
395     }
396 }
397
398 static int mux_chr_can_read(void *opaque)
399 {
400     CharDriverState *chr = opaque;
401     MuxDriver *d = chr->opaque;
402     int m = chr->focus;
403
404     if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE)
405         return 1;
406     if (d->chr_can_read[m])
407         return d->chr_can_read[m](d->ext_opaque[m]);
408     return 0;
409 }
410
411 static void mux_chr_read(void *opaque, const uint8_t *buf, int size)
412 {
413     CharDriverState *chr = opaque;
414     MuxDriver *d = chr->opaque;
415     int m = chr->focus;
416     int i;
417
418     mux_chr_accept_input (opaque);
419
420     for(i = 0; i < size; i++)
421         if (mux_proc_byte(chr, d, buf[i])) {
422             if (d->prod[m] == d->cons[m] &&
423                 d->chr_can_read[m] &&
424                 d->chr_can_read[m](d->ext_opaque[m]))
425                 d->chr_read[m](d->ext_opaque[m], &buf[i], 1);
426             else
427                 d->buffer[m][d->prod[m]++ & MUX_BUFFER_MASK] = buf[i];
428         }
429 }
430
431 static void mux_chr_event(void *opaque, int event)
432 {
433     CharDriverState *chr = opaque;
434     MuxDriver *d = chr->opaque;
435     int i;
436
437     /* Send the event to all registered listeners */
438     for (i = 0; i < d->mux_cnt; i++)
439         mux_chr_send_event(d, i, event);
440 }
441
442 static void mux_chr_update_read_handler(CharDriverState *chr)
443 {
444     MuxDriver *d = chr->opaque;
445
446     if (d->mux_cnt >= MAX_MUX) {
447         fprintf(stderr, "Cannot add I/O handlers, MUX array is full\n");
448         return;
449     }
450     d->ext_opaque[d->mux_cnt] = chr->handler_opaque;
451     d->chr_can_read[d->mux_cnt] = chr->chr_can_read;
452     d->chr_read[d->mux_cnt] = chr->chr_read;
453     d->chr_event[d->mux_cnt] = chr->chr_event;
454     /* Fix up the real driver with mux routines */
455     if (d->mux_cnt == 0) {
456         qemu_chr_add_handlers(d->drv, mux_chr_can_read, mux_chr_read,
457                               mux_chr_event, chr);
458     }
459     chr->focus = d->mux_cnt;
460     d->mux_cnt++;
461 }
462
463 static CharDriverState *qemu_chr_open_mux(CharDriverState *drv)
464 {
465     CharDriverState *chr;
466     MuxDriver *d;
467
468     chr = qemu_mallocz(sizeof(CharDriverState));
469     d = qemu_mallocz(sizeof(MuxDriver));
470
471     chr->opaque = d;
472     d->drv = drv;
473     chr->focus = -1;
474     chr->chr_write = mux_chr_write;
475     chr->chr_update_read_handler = mux_chr_update_read_handler;
476     chr->chr_accept_input = mux_chr_accept_input;
477     return chr;
478 }
479
480
481 #ifdef _WIN32
482 int send_all(int fd, const void *buf, int len1)
483 {
484     int ret, len;
485
486     len = len1;
487     while (len > 0) {
488         ret = send(fd, buf, len, 0);
489         if (ret < 0) {
490             errno = WSAGetLastError();
491             if (errno != WSAEWOULDBLOCK) {
492                 return -1;
493             }
494         } else if (ret == 0) {
495             break;
496         } else {
497             buf += ret;
498             len -= ret;
499         }
500     }
501     return len1 - len;
502 }
503
504 #else
505
506 static int unix_write(int fd, const uint8_t *buf, int len1)
507 {
508     int ret, len;
509
510     len = len1;
511     while (len > 0) {
512         ret = write(fd, buf, len);
513         if (ret < 0) {
514             if (errno != EINTR && errno != EAGAIN)
515                 return -1;
516         } else if (ret == 0) {
517             break;
518         } else {
519             buf += ret;
520             len -= ret;
521         }
522     }
523     return len1 - len;
524 }
525
526 int send_all(int fd, const void *buf, int len1)
527 {
528     return unix_write(fd, buf, len1);
529 }
530 #endif /* !_WIN32 */
531
532 #ifndef _WIN32
533
534 typedef struct {
535     int fd_in, fd_out;
536     int max_size;
537 } FDCharDriver;
538
539 #define STDIO_MAX_CLIENTS 1
540 static int stdio_nb_clients = 0;
541
542 static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
543 {
544     FDCharDriver *s = chr->opaque;
545     return send_all(s->fd_out, buf, len);
546 }
547
548 static int fd_chr_read_poll(void *opaque)
549 {
550     CharDriverState *chr = opaque;
551     FDCharDriver *s = chr->opaque;
552
553     s->max_size = qemu_chr_can_read(chr);
554     return s->max_size;
555 }
556
557 static void fd_chr_read(void *opaque)
558 {
559     CharDriverState *chr = opaque;
560     FDCharDriver *s = chr->opaque;
561     int size, len;
562     uint8_t buf[1024];
563
564     len = sizeof(buf);
565     if (len > s->max_size)
566         len = s->max_size;
567     if (len == 0)
568         return;
569     size = read(s->fd_in, buf, len);
570     if (size == 0) {
571         /* FD has been closed. Remove it from the active list.  */
572         qemu_set_fd_handler2(s->fd_in, NULL, NULL, NULL, NULL);
573         qemu_chr_event(chr, CHR_EVENT_CLOSED);
574         return;
575     }
576     if (size > 0) {
577         qemu_chr_read(chr, buf, size);
578     }
579 }
580
581 static void fd_chr_update_read_handler(CharDriverState *chr)
582 {
583     FDCharDriver *s = chr->opaque;
584
585     if (s->fd_in >= 0) {
586         if (display_type == DT_NOGRAPHIC && s->fd_in == 0) {
587         } else {
588             qemu_set_fd_handler2(s->fd_in, fd_chr_read_poll,
589                                  fd_chr_read, NULL, chr);
590         }
591     }
592 }
593
594 static void fd_chr_close(struct CharDriverState *chr)
595 {
596     FDCharDriver *s = chr->opaque;
597
598     if (s->fd_in >= 0) {
599         if (display_type == DT_NOGRAPHIC && s->fd_in == 0) {
600         } else {
601             qemu_set_fd_handler2(s->fd_in, NULL, NULL, NULL, NULL);
602         }
603     }
604
605     qemu_free(s);
606     qemu_chr_event(chr, CHR_EVENT_CLOSED);
607 }
608
609 /* open a character device to a unix fd */
610 static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
611 {
612     CharDriverState *chr;
613     FDCharDriver *s;
614
615     chr = qemu_mallocz(sizeof(CharDriverState));
616     s = qemu_mallocz(sizeof(FDCharDriver));
617     s->fd_in = fd_in;
618     s->fd_out = fd_out;
619     chr->opaque = s;
620     chr->chr_write = fd_chr_write;
621     chr->chr_update_read_handler = fd_chr_update_read_handler;
622     chr->chr_close = fd_chr_close;
623
624     qemu_chr_reset(chr);
625
626     return chr;
627 }
628
629 static CharDriverState *qemu_chr_open_file_out(QemuOpts *opts)
630 {
631     int fd_out;
632
633     TFR(fd_out = open(qemu_opt_get(opts, "path"),
634                       O_WRONLY | O_TRUNC | O_CREAT | O_BINARY, 0666));
635     if (fd_out < 0)
636         return NULL;
637     return qemu_chr_open_fd(-1, fd_out);
638 }
639
640 static CharDriverState *qemu_chr_open_pipe(QemuOpts *opts)
641 {
642     int fd_in, fd_out;
643     char filename_in[256], filename_out[256];
644     const char *filename = qemu_opt_get(opts, "path");
645
646     if (filename == NULL) {
647         fprintf(stderr, "chardev: pipe: no filename given\n");
648         return NULL;
649     }
650
651     snprintf(filename_in, 256, "%s.in", filename);
652     snprintf(filename_out, 256, "%s.out", filename);
653     TFR(fd_in = open(filename_in, O_RDWR | O_BINARY));
654     TFR(fd_out = open(filename_out, O_RDWR | O_BINARY));
655     if (fd_in < 0 || fd_out < 0) {
656         if (fd_in >= 0)
657             close(fd_in);
658         if (fd_out >= 0)
659             close(fd_out);
660         TFR(fd_in = fd_out = open(filename, O_RDWR | O_BINARY));
661         if (fd_in < 0)
662             return NULL;
663     }
664     return qemu_chr_open_fd(fd_in, fd_out);
665 }
666
667
668 /* for STDIO, we handle the case where several clients use it
669    (nographic mode) */
670
671 #define TERM_FIFO_MAX_SIZE 1
672
673 static uint8_t term_fifo[TERM_FIFO_MAX_SIZE];
674 static int term_fifo_size;
675
676 static int stdio_read_poll(void *opaque)
677 {
678     CharDriverState *chr = opaque;
679
680     /* try to flush the queue if needed */
681     if (term_fifo_size != 0 && qemu_chr_can_read(chr) > 0) {
682         qemu_chr_read(chr, term_fifo, 1);
683         term_fifo_size = 0;
684     }
685     /* see if we can absorb more chars */
686     if (term_fifo_size == 0)
687         return 1;
688     else
689         return 0;
690 }
691
692 static void stdio_read(void *opaque)
693 {
694     int size;
695     uint8_t buf[1];
696     CharDriverState *chr = opaque;
697
698     size = read(0, buf, 1);
699     if (size == 0) {
700         /* stdin has been closed. Remove it from the active list.  */
701         qemu_set_fd_handler2(0, NULL, NULL, NULL, NULL);
702         qemu_chr_event(chr, CHR_EVENT_CLOSED);
703         return;
704     }
705     if (size > 0) {
706         if (qemu_chr_can_read(chr) > 0) {
707             qemu_chr_read(chr, buf, 1);
708         } else if (term_fifo_size == 0) {
709             term_fifo[term_fifo_size++] = buf[0];
710         }
711     }
712 }
713
714 /* init terminal so that we can grab keys */
715 static struct termios oldtty;
716 static int old_fd0_flags;
717 static int term_atexit_done;
718
719 static void term_exit(void)
720 {
721     tcsetattr (0, TCSANOW, &oldtty);
722     fcntl(0, F_SETFL, old_fd0_flags);
723 }
724
725 static void term_init(void)
726 {
727     struct termios tty;
728
729     tcgetattr (0, &tty);
730     oldtty = tty;
731     old_fd0_flags = fcntl(0, F_GETFL);
732
733     tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
734                           |INLCR|IGNCR|ICRNL|IXON);
735     tty.c_oflag |= OPOST;
736     tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
737     /* if graphical mode, we allow Ctrl-C handling */
738     if (display_type == DT_NOGRAPHIC)
739         tty.c_lflag &= ~ISIG;
740     tty.c_cflag &= ~(CSIZE|PARENB);
741     tty.c_cflag |= CS8;
742     tty.c_cc[VMIN] = 1;
743     tty.c_cc[VTIME] = 0;
744
745     tcsetattr (0, TCSANOW, &tty);
746
747     if (!term_atexit_done++)
748         atexit(term_exit);
749
750     fcntl(0, F_SETFL, O_NONBLOCK);
751 }
752
753 static void qemu_chr_close_stdio(struct CharDriverState *chr)
754 {
755     term_exit();
756     stdio_nb_clients--;
757     qemu_set_fd_handler2(0, NULL, NULL, NULL, NULL);
758     fd_chr_close(chr);
759 }
760
761 static CharDriverState *qemu_chr_open_stdio(QemuOpts *opts)
762 {
763     CharDriverState *chr;
764
765     if (stdio_nb_clients >= STDIO_MAX_CLIENTS)
766         return NULL;
767     chr = qemu_chr_open_fd(0, 1);
768     chr->chr_close = qemu_chr_close_stdio;
769     qemu_set_fd_handler2(0, stdio_read_poll, stdio_read, NULL, chr);
770     stdio_nb_clients++;
771     term_init();
772
773     return chr;
774 }
775
776 #ifdef __sun__
777 /* Once Solaris has openpty(), this is going to be removed. */
778 static int openpty(int *amaster, int *aslave, char *name,
779                    struct termios *termp, struct winsize *winp)
780 {
781         const char *slave;
782         int mfd = -1, sfd = -1;
783
784         *amaster = *aslave = -1;
785
786         mfd = open("/dev/ptmx", O_RDWR | O_NOCTTY);
787         if (mfd < 0)
788                 goto err;
789
790         if (grantpt(mfd) == -1 || unlockpt(mfd) == -1)
791                 goto err;
792
793         if ((slave = ptsname(mfd)) == NULL)
794                 goto err;
795
796         if ((sfd = open(slave, O_RDONLY | O_NOCTTY)) == -1)
797                 goto err;
798
799         if (ioctl(sfd, I_PUSH, "ptem") == -1 ||
800             (termp != NULL && tcgetattr(sfd, termp) < 0))
801                 goto err;
802
803         if (amaster)
804                 *amaster = mfd;
805         if (aslave)
806                 *aslave = sfd;
807         if (winp)
808                 ioctl(sfd, TIOCSWINSZ, winp);
809
810         return 0;
811
812 err:
813         if (sfd != -1)
814                 close(sfd);
815         close(mfd);
816         return -1;
817 }
818
819 static void cfmakeraw (struct termios *termios_p)
820 {
821         termios_p->c_iflag &=
822                 ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
823         termios_p->c_oflag &= ~OPOST;
824         termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
825         termios_p->c_cflag &= ~(CSIZE|PARENB);
826         termios_p->c_cflag |= CS8;
827
828         termios_p->c_cc[VMIN] = 0;
829         termios_p->c_cc[VTIME] = 0;
830 }
831 #endif
832
833 #if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
834     || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
835
836 typedef struct {
837     int fd;
838     int connected;
839     int polling;
840     int read_bytes;
841     QEMUTimer *timer;
842 } PtyCharDriver;
843
844 static void pty_chr_update_read_handler(CharDriverState *chr);
845 static void pty_chr_state(CharDriverState *chr, int connected);
846
847 static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
848 {
849     PtyCharDriver *s = chr->opaque;
850
851     if (!s->connected) {
852         /* guest sends data, check for (re-)connect */
853         pty_chr_update_read_handler(chr);
854         return 0;
855     }
856     return send_all(s->fd, buf, len);
857 }
858
859 static int pty_chr_read_poll(void *opaque)
860 {
861     CharDriverState *chr = opaque;
862     PtyCharDriver *s = chr->opaque;
863
864     s->read_bytes = qemu_chr_can_read(chr);
865     return s->read_bytes;
866 }
867
868 static void pty_chr_read(void *opaque)
869 {
870     CharDriverState *chr = opaque;
871     PtyCharDriver *s = chr->opaque;
872     int size, len;
873     uint8_t buf[1024];
874
875     len = sizeof(buf);
876     if (len > s->read_bytes)
877         len = s->read_bytes;
878     if (len == 0)
879         return;
880     size = read(s->fd, buf, len);
881     if ((size == -1 && errno == EIO) ||
882         (size == 0)) {
883         pty_chr_state(chr, 0);
884         return;
885     }
886     if (size > 0) {
887         pty_chr_state(chr, 1);
888         qemu_chr_read(chr, buf, size);
889     }
890 }
891
892 static void pty_chr_update_read_handler(CharDriverState *chr)
893 {
894     PtyCharDriver *s = chr->opaque;
895
896     qemu_set_fd_handler2(s->fd, pty_chr_read_poll,
897                          pty_chr_read, NULL, chr);
898     s->polling = 1;
899     /*
900      * Short timeout here: just need wait long enougth that qemu makes
901      * it through the poll loop once.  When reconnected we want a
902      * short timeout so we notice it almost instantly.  Otherwise
903      * read() gives us -EIO instantly, making pty_chr_state() reset the
904      * timeout to the normal (much longer) poll interval before the
905      * timer triggers.
906      */
907     qemu_mod_timer(s->timer, qemu_get_clock(rt_clock) + 10);
908 }
909
910 static void pty_chr_state(CharDriverState *chr, int connected)
911 {
912     PtyCharDriver *s = chr->opaque;
913
914     if (!connected) {
915         qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
916         s->connected = 0;
917         s->polling = 0;
918         /* (re-)connect poll interval for idle guests: once per second.
919          * We check more frequently in case the guests sends data to
920          * the virtual device linked to our pty. */
921         qemu_mod_timer(s->timer, qemu_get_clock(rt_clock) + 1000);
922     } else {
923         if (!s->connected)
924             qemu_chr_reset(chr);
925         s->connected = 1;
926     }
927 }
928
929 static void pty_chr_timer(void *opaque)
930 {
931     struct CharDriverState *chr = opaque;
932     PtyCharDriver *s = chr->opaque;
933
934     if (s->connected)
935         return;
936     if (s->polling) {
937         /* If we arrive here without polling being cleared due
938          * read returning -EIO, then we are (re-)connected */
939         pty_chr_state(chr, 1);
940         return;
941     }
942
943     /* Next poll ... */
944     pty_chr_update_read_handler(chr);
945 }
946
947 static void pty_chr_close(struct CharDriverState *chr)
948 {
949     PtyCharDriver *s = chr->opaque;
950
951     qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
952     close(s->fd);
953     qemu_del_timer(s->timer);
954     qemu_free_timer(s->timer);
955     qemu_free(s);
956     qemu_chr_event(chr, CHR_EVENT_CLOSED);
957 }
958
959 static CharDriverState *qemu_chr_open_pty(QemuOpts *opts)
960 {
961     CharDriverState *chr;
962     PtyCharDriver *s;
963     struct termios tty;
964     int slave_fd, len;
965 #if defined(__OpenBSD__) || defined(__DragonFly__)
966     char pty_name[PATH_MAX];
967 #define q_ptsname(x) pty_name
968 #else
969     char *pty_name = NULL;
970 #define q_ptsname(x) ptsname(x)
971 #endif
972
973     chr = qemu_mallocz(sizeof(CharDriverState));
974     s = qemu_mallocz(sizeof(PtyCharDriver));
975
976     if (openpty(&s->fd, &slave_fd, pty_name, NULL, NULL) < 0) {
977         return NULL;
978     }
979
980     /* Set raw attributes on the pty. */
981     tcgetattr(slave_fd, &tty);
982     cfmakeraw(&tty);
983     tcsetattr(slave_fd, TCSAFLUSH, &tty);
984     close(slave_fd);
985
986     len = strlen(q_ptsname(s->fd)) + 5;
987     chr->filename = qemu_malloc(len);
988     snprintf(chr->filename, len, "pty:%s", q_ptsname(s->fd));
989     qemu_opt_set(opts, "path", q_ptsname(s->fd));
990     fprintf(stderr, "char device redirected to %s\n", q_ptsname(s->fd));
991
992     chr->opaque = s;
993     chr->chr_write = pty_chr_write;
994     chr->chr_update_read_handler = pty_chr_update_read_handler;
995     chr->chr_close = pty_chr_close;
996
997     s->timer = qemu_new_timer(rt_clock, pty_chr_timer, chr);
998
999     return chr;
1000 }
1001
1002 static void tty_serial_init(int fd, int speed,
1003                             int parity, int data_bits, int stop_bits)
1004 {
1005     struct termios tty;
1006     speed_t spd;
1007
1008 #if 0
1009     printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
1010            speed, parity, data_bits, stop_bits);
1011 #endif
1012     tcgetattr (fd, &tty);
1013
1014 #define MARGIN 1.1
1015     if (speed <= 50 * MARGIN)
1016         spd = B50;
1017     else if (speed <= 75 * MARGIN)
1018         spd = B75;
1019     else if (speed <= 300 * MARGIN)
1020         spd = B300;
1021     else if (speed <= 600 * MARGIN)
1022         spd = B600;
1023     else if (speed <= 1200 * MARGIN)
1024         spd = B1200;
1025     else if (speed <= 2400 * MARGIN)
1026         spd = B2400;
1027     else if (speed <= 4800 * MARGIN)
1028         spd = B4800;
1029     else if (speed <= 9600 * MARGIN)
1030         spd = B9600;
1031     else if (speed <= 19200 * MARGIN)
1032         spd = B19200;
1033     else if (speed <= 38400 * MARGIN)
1034         spd = B38400;
1035     else if (speed <= 57600 * MARGIN)
1036         spd = B57600;
1037     else if (speed <= 115200 * MARGIN)
1038         spd = B115200;
1039     else
1040         spd = B115200;
1041
1042     cfsetispeed(&tty, spd);
1043     cfsetospeed(&tty, spd);
1044
1045     tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
1046                           |INLCR|IGNCR|ICRNL|IXON);
1047     tty.c_oflag |= OPOST;
1048     tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN|ISIG);
1049     tty.c_cflag &= ~(CSIZE|PARENB|PARODD|CRTSCTS|CSTOPB);
1050     switch(data_bits) {
1051     default:
1052     case 8:
1053         tty.c_cflag |= CS8;
1054         break;
1055     case 7:
1056         tty.c_cflag |= CS7;
1057         break;
1058     case 6:
1059         tty.c_cflag |= CS6;
1060         break;
1061     case 5:
1062         tty.c_cflag |= CS5;
1063         break;
1064     }
1065     switch(parity) {
1066     default:
1067     case 'N':
1068         break;
1069     case 'E':
1070         tty.c_cflag |= PARENB;
1071         break;
1072     case 'O':
1073         tty.c_cflag |= PARENB | PARODD;
1074         break;
1075     }
1076     if (stop_bits == 2)
1077         tty.c_cflag |= CSTOPB;
1078
1079     tcsetattr (fd, TCSANOW, &tty);
1080 }
1081
1082 static int tty_serial_ioctl(CharDriverState *chr, int cmd, void *arg)
1083 {
1084     FDCharDriver *s = chr->opaque;
1085
1086     switch(cmd) {
1087     case CHR_IOCTL_SERIAL_SET_PARAMS:
1088         {
1089             QEMUSerialSetParams *ssp = arg;
1090             tty_serial_init(s->fd_in, ssp->speed, ssp->parity,
1091                             ssp->data_bits, ssp->stop_bits);
1092         }
1093         break;
1094     case CHR_IOCTL_SERIAL_SET_BREAK:
1095         {
1096             int enable = *(int *)arg;
1097             if (enable)
1098                 tcsendbreak(s->fd_in, 1);
1099         }
1100         break;
1101     case CHR_IOCTL_SERIAL_GET_TIOCM:
1102         {
1103             int sarg = 0;
1104             int *targ = (int *)arg;
1105             ioctl(s->fd_in, TIOCMGET, &sarg);
1106             *targ = 0;
1107             if (sarg & TIOCM_CTS)
1108                 *targ |= CHR_TIOCM_CTS;
1109             if (sarg & TIOCM_CAR)
1110                 *targ |= CHR_TIOCM_CAR;
1111             if (sarg & TIOCM_DSR)
1112                 *targ |= CHR_TIOCM_DSR;
1113             if (sarg & TIOCM_RI)
1114                 *targ |= CHR_TIOCM_RI;
1115             if (sarg & TIOCM_DTR)
1116                 *targ |= CHR_TIOCM_DTR;
1117             if (sarg & TIOCM_RTS)
1118                 *targ |= CHR_TIOCM_RTS;
1119         }
1120         break;
1121     case CHR_IOCTL_SERIAL_SET_TIOCM:
1122         {
1123             int sarg = *(int *)arg;
1124             int targ = 0;
1125             ioctl(s->fd_in, TIOCMGET, &targ);
1126             targ &= ~(CHR_TIOCM_CTS | CHR_TIOCM_CAR | CHR_TIOCM_DSR
1127                      | CHR_TIOCM_RI | CHR_TIOCM_DTR | CHR_TIOCM_RTS);
1128             if (sarg & CHR_TIOCM_CTS)
1129                 targ |= TIOCM_CTS;
1130             if (sarg & CHR_TIOCM_CAR)
1131                 targ |= TIOCM_CAR;
1132             if (sarg & CHR_TIOCM_DSR)
1133                 targ |= TIOCM_DSR;
1134             if (sarg & CHR_TIOCM_RI)
1135                 targ |= TIOCM_RI;
1136             if (sarg & CHR_TIOCM_DTR)
1137                 targ |= TIOCM_DTR;
1138             if (sarg & CHR_TIOCM_RTS)
1139                 targ |= TIOCM_RTS;
1140             ioctl(s->fd_in, TIOCMSET, &targ);
1141         }
1142         break;
1143     default:
1144         return -ENOTSUP;
1145     }
1146     return 0;
1147 }
1148
1149 static CharDriverState *qemu_chr_open_tty(QemuOpts *opts)
1150 {
1151     const char *filename = qemu_opt_get(opts, "path");
1152     CharDriverState *chr;
1153     int fd;
1154
1155     TFR(fd = open(filename, O_RDWR | O_NONBLOCK));
1156     tty_serial_init(fd, 115200, 'N', 8, 1);
1157     chr = qemu_chr_open_fd(fd, fd);
1158     if (!chr) {
1159         close(fd);
1160         return NULL;
1161     }
1162     chr->chr_ioctl = tty_serial_ioctl;
1163     qemu_chr_reset(chr);
1164     return chr;
1165 }
1166 #else  /* ! __linux__ && ! __sun__ */
1167 static CharDriverState *qemu_chr_open_pty(void)
1168 {
1169     return NULL;
1170 }
1171 #endif /* __linux__ || __sun__ */
1172
1173 #if defined(__linux__)
1174 typedef struct {
1175     int fd;
1176     int mode;
1177 } ParallelCharDriver;
1178
1179 static int pp_hw_mode(ParallelCharDriver *s, uint16_t mode)
1180 {
1181     if (s->mode != mode) {
1182         int m = mode;
1183         if (ioctl(s->fd, PPSETMODE, &m) < 0)
1184             return 0;
1185         s->mode = mode;
1186     }
1187     return 1;
1188 }
1189
1190 static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1191 {
1192     ParallelCharDriver *drv = chr->opaque;
1193     int fd = drv->fd;
1194     uint8_t b;
1195
1196     switch(cmd) {
1197     case CHR_IOCTL_PP_READ_DATA:
1198         if (ioctl(fd, PPRDATA, &b) < 0)
1199             return -ENOTSUP;
1200         *(uint8_t *)arg = b;
1201         break;
1202     case CHR_IOCTL_PP_WRITE_DATA:
1203         b = *(uint8_t *)arg;
1204         if (ioctl(fd, PPWDATA, &b) < 0)
1205             return -ENOTSUP;
1206         break;
1207     case CHR_IOCTL_PP_READ_CONTROL:
1208         if (ioctl(fd, PPRCONTROL, &b) < 0)
1209             return -ENOTSUP;
1210         /* Linux gives only the lowest bits, and no way to know data
1211            direction! For better compatibility set the fixed upper
1212            bits. */
1213         *(uint8_t *)arg = b | 0xc0;
1214         break;
1215     case CHR_IOCTL_PP_WRITE_CONTROL:
1216         b = *(uint8_t *)arg;
1217         if (ioctl(fd, PPWCONTROL, &b) < 0)
1218             return -ENOTSUP;
1219         break;
1220     case CHR_IOCTL_PP_READ_STATUS:
1221         if (ioctl(fd, PPRSTATUS, &b) < 0)
1222             return -ENOTSUP;
1223         *(uint8_t *)arg = b;
1224         break;
1225     case CHR_IOCTL_PP_DATA_DIR:
1226         if (ioctl(fd, PPDATADIR, (int *)arg) < 0)
1227             return -ENOTSUP;
1228         break;
1229     case CHR_IOCTL_PP_EPP_READ_ADDR:
1230         if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1231             struct ParallelIOArg *parg = arg;
1232             int n = read(fd, parg->buffer, parg->count);
1233             if (n != parg->count) {
1234                 return -EIO;
1235             }
1236         }
1237         break;
1238     case CHR_IOCTL_PP_EPP_READ:
1239         if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1240             struct ParallelIOArg *parg = arg;
1241             int n = read(fd, parg->buffer, parg->count);
1242             if (n != parg->count) {
1243                 return -EIO;
1244             }
1245         }
1246         break;
1247     case CHR_IOCTL_PP_EPP_WRITE_ADDR:
1248         if (pp_hw_mode(drv, IEEE1284_MODE_EPP|IEEE1284_ADDR)) {
1249             struct ParallelIOArg *parg = arg;
1250             int n = write(fd, parg->buffer, parg->count);
1251             if (n != parg->count) {
1252                 return -EIO;
1253             }
1254         }
1255         break;
1256     case CHR_IOCTL_PP_EPP_WRITE:
1257         if (pp_hw_mode(drv, IEEE1284_MODE_EPP)) {
1258             struct ParallelIOArg *parg = arg;
1259             int n = write(fd, parg->buffer, parg->count);
1260             if (n != parg->count) {
1261                 return -EIO;
1262             }
1263         }
1264         break;
1265     default:
1266         return -ENOTSUP;
1267     }
1268     return 0;
1269 }
1270
1271 static void pp_close(CharDriverState *chr)
1272 {
1273     ParallelCharDriver *drv = chr->opaque;
1274     int fd = drv->fd;
1275
1276     pp_hw_mode(drv, IEEE1284_MODE_COMPAT);
1277     ioctl(fd, PPRELEASE);
1278     close(fd);
1279     qemu_free(drv);
1280     qemu_chr_event(chr, CHR_EVENT_CLOSED);
1281 }
1282
1283 static CharDriverState *qemu_chr_open_pp(QemuOpts *opts)
1284 {
1285     const char *filename = qemu_opt_get(opts, "path");
1286     CharDriverState *chr;
1287     ParallelCharDriver *drv;
1288     int fd;
1289
1290     TFR(fd = open(filename, O_RDWR));
1291     if (fd < 0)
1292         return NULL;
1293
1294     if (ioctl(fd, PPCLAIM) < 0) {
1295         close(fd);
1296         return NULL;
1297     }
1298
1299     drv = qemu_mallocz(sizeof(ParallelCharDriver));
1300     drv->fd = fd;
1301     drv->mode = IEEE1284_MODE_COMPAT;
1302
1303     chr = qemu_mallocz(sizeof(CharDriverState));
1304     chr->chr_write = null_chr_write;
1305     chr->chr_ioctl = pp_ioctl;
1306     chr->chr_close = pp_close;
1307     chr->opaque = drv;
1308
1309     qemu_chr_reset(chr);
1310
1311     return chr;
1312 }
1313 #endif /* __linux__ */
1314
1315 #if defined(__FreeBSD__) || defined(__DragonFly__)
1316 static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1317 {
1318     int fd = (int)chr->opaque;
1319     uint8_t b;
1320
1321     switch(cmd) {
1322     case CHR_IOCTL_PP_READ_DATA:
1323         if (ioctl(fd, PPIGDATA, &b) < 0)
1324             return -ENOTSUP;
1325         *(uint8_t *)arg = b;
1326         break;
1327     case CHR_IOCTL_PP_WRITE_DATA:
1328         b = *(uint8_t *)arg;
1329         if (ioctl(fd, PPISDATA, &b) < 0)
1330             return -ENOTSUP;
1331         break;
1332     case CHR_IOCTL_PP_READ_CONTROL:
1333         if (ioctl(fd, PPIGCTRL, &b) < 0)
1334             return -ENOTSUP;
1335         *(uint8_t *)arg = b;
1336         break;
1337     case CHR_IOCTL_PP_WRITE_CONTROL:
1338         b = *(uint8_t *)arg;
1339         if (ioctl(fd, PPISCTRL, &b) < 0)
1340             return -ENOTSUP;
1341         break;
1342     case CHR_IOCTL_PP_READ_STATUS:
1343         if (ioctl(fd, PPIGSTATUS, &b) < 0)
1344             return -ENOTSUP;
1345         *(uint8_t *)arg = b;
1346         break;
1347     default:
1348         return -ENOTSUP;
1349     }
1350     return 0;
1351 }
1352
1353 static CharDriverState *qemu_chr_open_pp(QemuOpts *opts)
1354 {
1355     const char *filename = qemu_opt_get(opts, "path");
1356     CharDriverState *chr;
1357     int fd;
1358
1359     fd = open(filename, O_RDWR);
1360     if (fd < 0)
1361         return NULL;
1362
1363     chr = qemu_mallocz(sizeof(CharDriverState));
1364     chr->opaque = (void *)fd;
1365     chr->chr_write = null_chr_write;
1366     chr->chr_ioctl = pp_ioctl;
1367     return chr;
1368 }
1369 #endif
1370
1371 #else /* _WIN32 */
1372
1373 typedef struct {
1374     int max_size;
1375     HANDLE hcom, hrecv, hsend;
1376     OVERLAPPED orecv, osend;
1377     BOOL fpipe;
1378     DWORD len;
1379 } WinCharState;
1380
1381 #define NSENDBUF 2048
1382 #define NRECVBUF 2048
1383 #define MAXCONNECT 1
1384 #define NTIMEOUT 5000
1385
1386 static int win_chr_poll(void *opaque);
1387 static int win_chr_pipe_poll(void *opaque);
1388
1389 static void win_chr_close(CharDriverState *chr)
1390 {
1391     WinCharState *s = chr->opaque;
1392
1393     if (s->hsend) {
1394         CloseHandle(s->hsend);
1395         s->hsend = NULL;
1396     }
1397     if (s->hrecv) {
1398         CloseHandle(s->hrecv);
1399         s->hrecv = NULL;
1400     }
1401     if (s->hcom) {
1402         CloseHandle(s->hcom);
1403         s->hcom = NULL;
1404     }
1405     if (s->fpipe)
1406         qemu_del_polling_cb(win_chr_pipe_poll, chr);
1407     else
1408         qemu_del_polling_cb(win_chr_poll, chr);
1409
1410     qemu_chr_event(chr, CHR_EVENT_CLOSED);
1411 }
1412
1413 static int win_chr_init(CharDriverState *chr, const char *filename)
1414 {
1415     WinCharState *s = chr->opaque;
1416     COMMCONFIG comcfg;
1417     COMMTIMEOUTS cto = { 0, 0, 0, 0, 0};
1418     COMSTAT comstat;
1419     DWORD size;
1420     DWORD err;
1421
1422     s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1423     if (!s->hsend) {
1424         fprintf(stderr, "Failed CreateEvent\n");
1425         goto fail;
1426     }
1427     s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1428     if (!s->hrecv) {
1429         fprintf(stderr, "Failed CreateEvent\n");
1430         goto fail;
1431     }
1432
1433     s->hcom = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, NULL,
1434                       OPEN_EXISTING, FILE_FLAG_OVERLAPPED, 0);
1435     if (s->hcom == INVALID_HANDLE_VALUE) {
1436         fprintf(stderr, "Failed CreateFile (%lu)\n", GetLastError());
1437         s->hcom = NULL;
1438         goto fail;
1439     }
1440
1441     if (!SetupComm(s->hcom, NRECVBUF, NSENDBUF)) {
1442         fprintf(stderr, "Failed SetupComm\n");
1443         goto fail;
1444     }
1445
1446     ZeroMemory(&comcfg, sizeof(COMMCONFIG));
1447     size = sizeof(COMMCONFIG);
1448     GetDefaultCommConfig(filename, &comcfg, &size);
1449     comcfg.dcb.DCBlength = sizeof(DCB);
1450     CommConfigDialog(filename, NULL, &comcfg);
1451
1452     if (!SetCommState(s->hcom, &comcfg.dcb)) {
1453         fprintf(stderr, "Failed SetCommState\n");
1454         goto fail;
1455     }
1456
1457     if (!SetCommMask(s->hcom, EV_ERR)) {
1458         fprintf(stderr, "Failed SetCommMask\n");
1459         goto fail;
1460     }
1461
1462     cto.ReadIntervalTimeout = MAXDWORD;
1463     if (!SetCommTimeouts(s->hcom, &cto)) {
1464         fprintf(stderr, "Failed SetCommTimeouts\n");
1465         goto fail;
1466     }
1467
1468     if (!ClearCommError(s->hcom, &err, &comstat)) {
1469         fprintf(stderr, "Failed ClearCommError\n");
1470         goto fail;
1471     }
1472     qemu_add_polling_cb(win_chr_poll, chr);
1473     return 0;
1474
1475  fail:
1476     win_chr_close(chr);
1477     return -1;
1478 }
1479
1480 static int win_chr_write(CharDriverState *chr, const uint8_t *buf, int len1)
1481 {
1482     WinCharState *s = chr->opaque;
1483     DWORD len, ret, size, err;
1484
1485     len = len1;
1486     ZeroMemory(&s->osend, sizeof(s->osend));
1487     s->osend.hEvent = s->hsend;
1488     while (len > 0) {
1489         if (s->hsend)
1490             ret = WriteFile(s->hcom, buf, len, &size, &s->osend);
1491         else
1492             ret = WriteFile(s->hcom, buf, len, &size, NULL);
1493         if (!ret) {
1494             err = GetLastError();
1495             if (err == ERROR_IO_PENDING) {
1496                 ret = GetOverlappedResult(s->hcom, &s->osend, &size, TRUE);
1497                 if (ret) {
1498                     buf += size;
1499                     len -= size;
1500                 } else {
1501                     break;
1502                 }
1503             } else {
1504                 break;
1505             }
1506         } else {
1507             buf += size;
1508             len -= size;
1509         }
1510     }
1511     return len1 - len;
1512 }
1513
1514 static int win_chr_read_poll(CharDriverState *chr)
1515 {
1516     WinCharState *s = chr->opaque;
1517
1518     s->max_size = qemu_chr_can_read(chr);
1519     return s->max_size;
1520 }
1521
1522 static void win_chr_readfile(CharDriverState *chr)
1523 {
1524     WinCharState *s = chr->opaque;
1525     int ret, err;
1526     uint8_t buf[1024];
1527     DWORD size;
1528
1529     ZeroMemory(&s->orecv, sizeof(s->orecv));
1530     s->orecv.hEvent = s->hrecv;
1531     ret = ReadFile(s->hcom, buf, s->len, &size, &s->orecv);
1532     if (!ret) {
1533         err = GetLastError();
1534         if (err == ERROR_IO_PENDING) {
1535             ret = GetOverlappedResult(s->hcom, &s->orecv, &size, TRUE);
1536         }
1537     }
1538
1539     if (size > 0) {
1540         qemu_chr_read(chr, buf, size);
1541     }
1542 }
1543
1544 static void win_chr_read(CharDriverState *chr)
1545 {
1546     WinCharState *s = chr->opaque;
1547
1548     if (s->len > s->max_size)
1549         s->len = s->max_size;
1550     if (s->len == 0)
1551         return;
1552
1553     win_chr_readfile(chr);
1554 }
1555
1556 static int win_chr_poll(void *opaque)
1557 {
1558     CharDriverState *chr = opaque;
1559     WinCharState *s = chr->opaque;
1560     COMSTAT status;
1561     DWORD comerr;
1562
1563     ClearCommError(s->hcom, &comerr, &status);
1564     if (status.cbInQue > 0) {
1565         s->len = status.cbInQue;
1566         win_chr_read_poll(chr);
1567         win_chr_read(chr);
1568         return 1;
1569     }
1570     return 0;
1571 }
1572
1573 static CharDriverState *qemu_chr_open_win(QemuOpts *opts)
1574 {
1575     const char *filename = qemu_opt_get(opts, "path");
1576     CharDriverState *chr;
1577     WinCharState *s;
1578
1579     chr = qemu_mallocz(sizeof(CharDriverState));
1580     s = qemu_mallocz(sizeof(WinCharState));
1581     chr->opaque = s;
1582     chr->chr_write = win_chr_write;
1583     chr->chr_close = win_chr_close;
1584
1585     if (win_chr_init(chr, filename) < 0) {
1586         free(s);
1587         free(chr);
1588         return NULL;
1589     }
1590     qemu_chr_reset(chr);
1591     return chr;
1592 }
1593
1594 static int win_chr_pipe_poll(void *opaque)
1595 {
1596     CharDriverState *chr = opaque;
1597     WinCharState *s = chr->opaque;
1598     DWORD size;
1599
1600     PeekNamedPipe(s->hcom, NULL, 0, NULL, &size, NULL);
1601     if (size > 0) {
1602         s->len = size;
1603         win_chr_read_poll(chr);
1604         win_chr_read(chr);
1605         return 1;
1606     }
1607     return 0;
1608 }
1609
1610 static int win_chr_pipe_init(CharDriverState *chr, const char *filename)
1611 {
1612     WinCharState *s = chr->opaque;
1613     OVERLAPPED ov;
1614     int ret;
1615     DWORD size;
1616     char openname[256];
1617
1618     s->fpipe = TRUE;
1619
1620     s->hsend = CreateEvent(NULL, TRUE, FALSE, NULL);
1621     if (!s->hsend) {
1622         fprintf(stderr, "Failed CreateEvent\n");
1623         goto fail;
1624     }
1625     s->hrecv = CreateEvent(NULL, TRUE, FALSE, NULL);
1626     if (!s->hrecv) {
1627         fprintf(stderr, "Failed CreateEvent\n");
1628         goto fail;
1629     }
1630
1631     snprintf(openname, sizeof(openname), "\\\\.\\pipe\\%s", filename);
1632     s->hcom = CreateNamedPipe(openname, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
1633                               PIPE_TYPE_BYTE | PIPE_READMODE_BYTE |
1634                               PIPE_WAIT,
1635                               MAXCONNECT, NSENDBUF, NRECVBUF, NTIMEOUT, NULL);
1636     if (s->hcom == INVALID_HANDLE_VALUE) {
1637         fprintf(stderr, "Failed CreateNamedPipe (%lu)\n", GetLastError());
1638         s->hcom = NULL;
1639         goto fail;
1640     }
1641
1642     ZeroMemory(&ov, sizeof(ov));
1643     ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
1644     ret = ConnectNamedPipe(s->hcom, &ov);
1645     if (ret) {
1646         fprintf(stderr, "Failed ConnectNamedPipe\n");
1647         goto fail;
1648     }
1649
1650     ret = GetOverlappedResult(s->hcom, &ov, &size, TRUE);
1651     if (!ret) {
1652         fprintf(stderr, "Failed GetOverlappedResult\n");
1653         if (ov.hEvent) {
1654             CloseHandle(ov.hEvent);
1655             ov.hEvent = NULL;
1656         }
1657         goto fail;
1658     }
1659
1660     if (ov.hEvent) {
1661         CloseHandle(ov.hEvent);
1662         ov.hEvent = NULL;
1663     }
1664     qemu_add_polling_cb(win_chr_pipe_poll, chr);
1665     return 0;
1666
1667  fail:
1668     win_chr_close(chr);
1669     return -1;
1670 }
1671
1672
1673 static CharDriverState *qemu_chr_open_win_pipe(QemuOpts *opts)
1674 {
1675     const char *filename = qemu_opt_get(opts, "path");
1676     CharDriverState *chr;
1677     WinCharState *s;
1678
1679     chr = qemu_mallocz(sizeof(CharDriverState));
1680     s = qemu_mallocz(sizeof(WinCharState));
1681     chr->opaque = s;
1682     chr->chr_write = win_chr_write;
1683     chr->chr_close = win_chr_close;
1684
1685     if (win_chr_pipe_init(chr, filename) < 0) {
1686         free(s);
1687         free(chr);
1688         return NULL;
1689     }
1690     qemu_chr_reset(chr);
1691     return chr;
1692 }
1693
1694 static CharDriverState *qemu_chr_open_win_file(HANDLE fd_out)
1695 {
1696     CharDriverState *chr;
1697     WinCharState *s;
1698
1699     chr = qemu_mallocz(sizeof(CharDriverState));
1700     s = qemu_mallocz(sizeof(WinCharState));
1701     s->hcom = fd_out;
1702     chr->opaque = s;
1703     chr->chr_write = win_chr_write;
1704     qemu_chr_reset(chr);
1705     return chr;
1706 }
1707
1708 static CharDriverState *qemu_chr_open_win_con(QemuOpts *opts)
1709 {
1710     return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE));
1711 }
1712
1713 static CharDriverState *qemu_chr_open_win_file_out(QemuOpts *opts)
1714 {
1715     const char *file_out = qemu_opt_get(opts, "path");
1716     HANDLE fd_out;
1717
1718     fd_out = CreateFile(file_out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
1719                         OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
1720     if (fd_out == INVALID_HANDLE_VALUE)
1721         return NULL;
1722
1723     return qemu_chr_open_win_file(fd_out);
1724 }
1725 #endif /* !_WIN32 */
1726
1727 /***********************************************************/
1728 /* UDP Net console */
1729
1730 typedef struct {
1731     int fd;
1732     struct sockaddr_in daddr;
1733     uint8_t buf[1024];
1734     int bufcnt;
1735     int bufptr;
1736     int max_size;
1737 } NetCharDriver;
1738
1739 static int udp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
1740 {
1741     NetCharDriver *s = chr->opaque;
1742
1743     return sendto(s->fd, (const void *)buf, len, 0,
1744                   (struct sockaddr *)&s->daddr, sizeof(struct sockaddr_in));
1745 }
1746
1747 static int udp_chr_read_poll(void *opaque)
1748 {
1749     CharDriverState *chr = opaque;
1750     NetCharDriver *s = chr->opaque;
1751
1752     s->max_size = qemu_chr_can_read(chr);
1753
1754     /* If there were any stray characters in the queue process them
1755      * first
1756      */
1757     while (s->max_size > 0 && s->bufptr < s->bufcnt) {
1758         qemu_chr_read(chr, &s->buf[s->bufptr], 1);
1759         s->bufptr++;
1760         s->max_size = qemu_chr_can_read(chr);
1761     }
1762     return s->max_size;
1763 }
1764
1765 static void udp_chr_read(void *opaque)
1766 {
1767     CharDriverState *chr = opaque;
1768     NetCharDriver *s = chr->opaque;
1769
1770     if (s->max_size == 0)
1771         return;
1772     s->bufcnt = recv(s->fd, (void *)s->buf, sizeof(s->buf), 0);
1773     s->bufptr = s->bufcnt;
1774     if (s->bufcnt <= 0)
1775         return;
1776
1777     s->bufptr = 0;
1778     while (s->max_size > 0 && s->bufptr < s->bufcnt) {
1779         qemu_chr_read(chr, &s->buf[s->bufptr], 1);
1780         s->bufptr++;
1781         s->max_size = qemu_chr_can_read(chr);
1782     }
1783 }
1784
1785 static void udp_chr_update_read_handler(CharDriverState *chr)
1786 {
1787     NetCharDriver *s = chr->opaque;
1788
1789     if (s->fd >= 0) {
1790         qemu_set_fd_handler2(s->fd, udp_chr_read_poll,
1791                              udp_chr_read, NULL, chr);
1792     }
1793 }
1794
1795 static void udp_chr_close(CharDriverState *chr)
1796 {
1797     NetCharDriver *s = chr->opaque;
1798     if (s->fd >= 0) {
1799         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1800         closesocket(s->fd);
1801     }
1802     qemu_free(s);
1803     qemu_chr_event(chr, CHR_EVENT_CLOSED);
1804 }
1805
1806 static CharDriverState *qemu_chr_open_udp(const char *def)
1807 {
1808     CharDriverState *chr = NULL;
1809     NetCharDriver *s = NULL;
1810     int fd = -1;
1811     struct sockaddr_in saddr;
1812
1813     chr = qemu_mallocz(sizeof(CharDriverState));
1814     s = qemu_mallocz(sizeof(NetCharDriver));
1815
1816     fd = socket(PF_INET, SOCK_DGRAM, 0);
1817     if (fd < 0) {
1818         perror("socket(PF_INET, SOCK_DGRAM)");
1819         goto return_err;
1820     }
1821
1822     if (parse_host_src_port(&s->daddr, &saddr, def) < 0) {
1823         printf("Could not parse: %s\n", def);
1824         goto return_err;
1825     }
1826
1827     if (bind(fd, (struct sockaddr *)&saddr, sizeof(saddr)) < 0)
1828     {
1829         perror("bind");
1830         goto return_err;
1831     }
1832
1833     s->fd = fd;
1834     s->bufcnt = 0;
1835     s->bufptr = 0;
1836     chr->opaque = s;
1837     chr->chr_write = udp_chr_write;
1838     chr->chr_update_read_handler = udp_chr_update_read_handler;
1839     chr->chr_close = udp_chr_close;
1840     return chr;
1841
1842 return_err:
1843     if (chr)
1844         free(chr);
1845     if (s)
1846         free(s);
1847     if (fd >= 0)
1848         closesocket(fd);
1849     return NULL;
1850 }
1851
1852 /***********************************************************/
1853 /* TCP Net console */
1854
1855 typedef struct {
1856     int fd, listen_fd;
1857     int connected;
1858     int max_size;
1859     int do_telnetopt;
1860     int do_nodelay;
1861     int is_unix;
1862     int msgfd;
1863 } TCPCharDriver;
1864
1865 static void tcp_chr_accept(void *opaque);
1866
1867 static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
1868 {
1869     TCPCharDriver *s = chr->opaque;
1870     if (s->connected) {
1871         return send_all(s->fd, buf, len);
1872     } else {
1873         /* XXX: indicate an error ? */
1874         return len;
1875     }
1876 }
1877
1878 static int tcp_chr_read_poll(void *opaque)
1879 {
1880     CharDriverState *chr = opaque;
1881     TCPCharDriver *s = chr->opaque;
1882     if (!s->connected)
1883         return 0;
1884     s->max_size = qemu_chr_can_read(chr);
1885     return s->max_size;
1886 }
1887
1888 #define IAC 255
1889 #define IAC_BREAK 243
1890 static void tcp_chr_process_IAC_bytes(CharDriverState *chr,
1891                                       TCPCharDriver *s,
1892                                       uint8_t *buf, int *size)
1893 {
1894     /* Handle any telnet client's basic IAC options to satisfy char by
1895      * char mode with no echo.  All IAC options will be removed from
1896      * the buf and the do_telnetopt variable will be used to track the
1897      * state of the width of the IAC information.
1898      *
1899      * IAC commands come in sets of 3 bytes with the exception of the
1900      * "IAC BREAK" command and the double IAC.
1901      */
1902
1903     int i;
1904     int j = 0;
1905
1906     for (i = 0; i < *size; i++) {
1907         if (s->do_telnetopt > 1) {
1908             if ((unsigned char)buf[i] == IAC && s->do_telnetopt == 2) {
1909                 /* Double IAC means send an IAC */
1910                 if (j != i)
1911                     buf[j] = buf[i];
1912                 j++;
1913                 s->do_telnetopt = 1;
1914             } else {
1915                 if ((unsigned char)buf[i] == IAC_BREAK && s->do_telnetopt == 2) {
1916                     /* Handle IAC break commands by sending a serial break */
1917                     qemu_chr_event(chr, CHR_EVENT_BREAK);
1918                     s->do_telnetopt++;
1919                 }
1920                 s->do_telnetopt++;
1921             }
1922             if (s->do_telnetopt >= 4) {
1923                 s->do_telnetopt = 1;
1924             }
1925         } else {
1926             if ((unsigned char)buf[i] == IAC) {
1927                 s->do_telnetopt = 2;
1928             } else {
1929                 if (j != i)
1930                     buf[j] = buf[i];
1931                 j++;
1932             }
1933         }
1934     }
1935     *size = j;
1936 }
1937
1938 static int tcp_get_msgfd(CharDriverState *chr)
1939 {
1940     TCPCharDriver *s = chr->opaque;
1941
1942     return s->msgfd;
1943 }
1944
1945 #ifndef _WIN32
1946 static void unix_process_msgfd(CharDriverState *chr, struct msghdr *msg)
1947 {
1948     TCPCharDriver *s = chr->opaque;
1949     struct cmsghdr *cmsg;
1950
1951     for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
1952         int fd;
1953
1954         if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)) ||
1955             cmsg->cmsg_level != SOL_SOCKET ||
1956             cmsg->cmsg_type != SCM_RIGHTS)
1957             continue;
1958
1959         fd = *((int *)CMSG_DATA(cmsg));
1960         if (fd < 0)
1961             continue;
1962
1963         if (s->msgfd != -1)
1964             close(s->msgfd);
1965         s->msgfd = fd;
1966     }
1967 }
1968
1969 static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
1970 {
1971     TCPCharDriver *s = chr->opaque;
1972     struct msghdr msg = { NULL, };
1973     struct iovec iov[1];
1974     union {
1975         struct cmsghdr cmsg;
1976         char control[CMSG_SPACE(sizeof(int))];
1977     } msg_control;
1978     ssize_t ret;
1979
1980     iov[0].iov_base = buf;
1981     iov[0].iov_len = len;
1982
1983     msg.msg_iov = iov;
1984     msg.msg_iovlen = 1;
1985     msg.msg_control = &msg_control;
1986     msg.msg_controllen = sizeof(msg_control);
1987
1988     ret = recvmsg(s->fd, &msg, 0);
1989     if (ret > 0 && s->is_unix)
1990         unix_process_msgfd(chr, &msg);
1991
1992     return ret;
1993 }
1994 #else
1995 static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
1996 {
1997     TCPCharDriver *s = chr->opaque;
1998     return recv(s->fd, buf, len, 0);
1999 }
2000 #endif
2001
2002 static void tcp_chr_read(void *opaque)
2003 {
2004     CharDriverState *chr = opaque;
2005     TCPCharDriver *s = chr->opaque;
2006     uint8_t buf[1024];
2007     int len, size;
2008
2009     if (!s->connected || s->max_size <= 0)
2010         return;
2011     len = sizeof(buf);
2012     if (len > s->max_size)
2013         len = s->max_size;
2014     size = tcp_chr_recv(chr, (void *)buf, len);
2015     if (size == 0) {
2016         /* connection closed */
2017         s->connected = 0;
2018         if (s->listen_fd >= 0) {
2019             qemu_set_fd_handler(s->listen_fd, tcp_chr_accept, NULL, chr);
2020         }
2021         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
2022         closesocket(s->fd);
2023         s->fd = -1;
2024         qemu_chr_event(chr, CHR_EVENT_CLOSED);
2025     } else if (size > 0) {
2026         if (s->do_telnetopt)
2027             tcp_chr_process_IAC_bytes(chr, s, buf, &size);
2028         if (size > 0)
2029             qemu_chr_read(chr, buf, size);
2030         if (s->msgfd != -1) {
2031             close(s->msgfd);
2032             s->msgfd = -1;
2033         }
2034     }
2035 }
2036
2037 static void tcp_chr_connect(void *opaque)
2038 {
2039     CharDriverState *chr = opaque;
2040     TCPCharDriver *s = chr->opaque;
2041
2042     s->connected = 1;
2043     qemu_set_fd_handler2(s->fd, tcp_chr_read_poll,
2044                          tcp_chr_read, NULL, chr);
2045     qemu_chr_reset(chr);
2046 }
2047
2048 #define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2049 static void tcp_chr_telnet_init(int fd)
2050 {
2051     char buf[3];
2052     /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2053     IACSET(buf, 0xff, 0xfb, 0x01);  /* IAC WILL ECHO */
2054     send(fd, (char *)buf, 3, 0);
2055     IACSET(buf, 0xff, 0xfb, 0x03);  /* IAC WILL Suppress go ahead */
2056     send(fd, (char *)buf, 3, 0);
2057     IACSET(buf, 0xff, 0xfb, 0x00);  /* IAC WILL Binary */
2058     send(fd, (char *)buf, 3, 0);
2059     IACSET(buf, 0xff, 0xfd, 0x00);  /* IAC DO Binary */
2060     send(fd, (char *)buf, 3, 0);
2061 }
2062
2063 static void socket_set_nodelay(int fd)
2064 {
2065     int val = 1;
2066     setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *)&val, sizeof(val));
2067 }
2068
2069 static void tcp_chr_accept(void *opaque)
2070 {
2071     CharDriverState *chr = opaque;
2072     TCPCharDriver *s = chr->opaque;
2073     struct sockaddr_in saddr;
2074 #ifndef _WIN32
2075     struct sockaddr_un uaddr;
2076 #endif
2077     struct sockaddr *addr;
2078     socklen_t len;
2079     int fd;
2080
2081     for(;;) {
2082 #ifndef _WIN32
2083         if (s->is_unix) {
2084             len = sizeof(uaddr);
2085             addr = (struct sockaddr *)&uaddr;
2086         } else
2087 #endif
2088         {
2089             len = sizeof(saddr);
2090             addr = (struct sockaddr *)&saddr;
2091         }
2092         fd = accept(s->listen_fd, addr, &len);
2093         if (fd < 0 && errno != EINTR) {
2094             return;
2095         } else if (fd >= 0) {
2096             if (s->do_telnetopt)
2097                 tcp_chr_telnet_init(fd);
2098             break;
2099         }
2100     }
2101     socket_set_nonblock(fd);
2102     if (s->do_nodelay)
2103         socket_set_nodelay(fd);
2104     s->fd = fd;
2105     qemu_set_fd_handler(s->listen_fd, NULL, NULL, NULL);
2106     tcp_chr_connect(chr);
2107 }
2108
2109 static void tcp_chr_close(CharDriverState *chr)
2110 {
2111     TCPCharDriver *s = chr->opaque;
2112     if (s->fd >= 0) {
2113         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
2114         closesocket(s->fd);
2115     }
2116     if (s->listen_fd >= 0) {
2117         qemu_set_fd_handler(s->listen_fd, NULL, NULL, NULL);
2118         closesocket(s->listen_fd);
2119     }
2120     qemu_free(s);
2121     qemu_chr_event(chr, CHR_EVENT_CLOSED);
2122 }
2123
2124 static CharDriverState *qemu_chr_open_socket(QemuOpts *opts)
2125 {
2126     CharDriverState *chr = NULL;
2127     TCPCharDriver *s = NULL;
2128     int fd = -1;
2129     int is_listen;
2130     int is_waitconnect;
2131     int do_nodelay;
2132     int is_unix;
2133     int is_telnet;
2134
2135     is_listen      = qemu_opt_get_bool(opts, "server", 0);
2136     is_waitconnect = qemu_opt_get_bool(opts, "wait", 1);
2137     is_telnet      = qemu_opt_get_bool(opts, "telnet", 0);
2138     do_nodelay     = !qemu_opt_get_bool(opts, "delay", 1);
2139     is_unix        = qemu_opt_get(opts, "path") != NULL;
2140     if (!is_listen)
2141         is_waitconnect = 0;
2142
2143     chr = qemu_mallocz(sizeof(CharDriverState));
2144     s = qemu_mallocz(sizeof(TCPCharDriver));
2145
2146     if (is_unix) {
2147         if (is_listen) {
2148             fd = unix_listen_opts(opts);
2149         } else {
2150             fd = unix_connect_opts(opts);
2151         }
2152     } else {
2153         if (is_listen) {
2154             fd = inet_listen_opts(opts, 0);
2155         } else {
2156             fd = inet_connect_opts(opts);
2157         }
2158     }
2159     if (fd < 0)
2160         goto fail;
2161
2162     if (!is_waitconnect)
2163         socket_set_nonblock(fd);
2164
2165     s->connected = 0;
2166     s->fd = -1;
2167     s->listen_fd = -1;
2168     s->msgfd = -1;
2169     s->is_unix = is_unix;
2170     s->do_nodelay = do_nodelay && !is_unix;
2171
2172     chr->opaque = s;
2173     chr->chr_write = tcp_chr_write;
2174     chr->chr_close = tcp_chr_close;
2175     chr->get_msgfd = tcp_get_msgfd;
2176
2177     if (is_listen) {
2178         s->listen_fd = fd;
2179         qemu_set_fd_handler(s->listen_fd, tcp_chr_accept, NULL, chr);
2180         if (is_telnet)
2181             s->do_telnetopt = 1;
2182
2183     } else {
2184         s->connected = 1;
2185         s->fd = fd;
2186         socket_set_nodelay(fd);
2187         tcp_chr_connect(chr);
2188     }
2189
2190     /* for "info chardev" monitor command */
2191     chr->filename = qemu_malloc(256);
2192     if (is_unix) {
2193         snprintf(chr->filename, 256, "unix:%s%s",
2194                  qemu_opt_get(opts, "path"),
2195                  qemu_opt_get_bool(opts, "server", 0) ? ",server" : "");
2196     } else if (is_telnet) {
2197         snprintf(chr->filename, 256, "telnet:%s:%s%s",
2198                  qemu_opt_get(opts, "host"), qemu_opt_get(opts, "port"),
2199                  qemu_opt_get_bool(opts, "server", 0) ? ",server" : "");
2200     } else {
2201         snprintf(chr->filename, 256, "tcp:%s:%s%s",
2202                  qemu_opt_get(opts, "host"), qemu_opt_get(opts, "port"),
2203                  qemu_opt_get_bool(opts, "server", 0) ? ",server" : "");
2204     }
2205
2206     if (is_listen && is_waitconnect) {
2207         printf("QEMU waiting for connection on: %s\n",
2208                chr->filename);
2209         tcp_chr_accept(chr);
2210         socket_set_nonblock(s->listen_fd);
2211     }
2212     return chr;
2213
2214  fail:
2215     if (fd >= 0)
2216         closesocket(fd);
2217     qemu_free(s);
2218     qemu_free(chr);
2219     return NULL;
2220 }
2221
2222 static QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
2223 {
2224     char host[65], port[33], width[8], height[8];
2225     int pos;
2226     const char *p;
2227     QemuOpts *opts;
2228
2229     opts = qemu_opts_create(&qemu_chardev_opts, label, 1);
2230     if (NULL == opts)
2231         return NULL;
2232
2233     if (strcmp(filename, "null")    == 0 ||
2234         strcmp(filename, "pty")     == 0 ||
2235         strcmp(filename, "msmouse") == 0 ||
2236         strcmp(filename, "braille") == 0 ||
2237         strcmp(filename, "stdio")   == 0) {
2238         qemu_opt_set(opts, "backend", filename);
2239         return opts;
2240     }
2241     if (strstart(filename, "vc", &p)) {
2242         qemu_opt_set(opts, "backend", "vc");
2243         if (*p == ':') {
2244             if (sscanf(p+1, "%8[0-9]x%8[0-9]", width, height) == 2) {
2245                 /* pixels */
2246                 qemu_opt_set(opts, "width", width);
2247                 qemu_opt_set(opts, "height", height);
2248             } else if (sscanf(p+1, "%8[0-9]Cx%8[0-9]C", width, height) == 2) {
2249                 /* chars */
2250                 qemu_opt_set(opts, "cols", width);
2251                 qemu_opt_set(opts, "rows", height);
2252             } else {
2253                 goto fail;
2254             }
2255         }
2256         return opts;
2257     }
2258     if (strcmp(filename, "con:") == 0) {
2259         qemu_opt_set(opts, "backend", "console");
2260         return opts;
2261     }
2262     if (strstart(filename, "COM", NULL)) {
2263         qemu_opt_set(opts, "backend", "serial");
2264         qemu_opt_set(opts, "path", filename);
2265         return opts;
2266     }
2267     if (strstart(filename, "file:", &p)) {
2268         qemu_opt_set(opts, "backend", "file");
2269         qemu_opt_set(opts, "path", p);
2270         return opts;
2271     }
2272     if (strstart(filename, "pipe:", &p)) {
2273         qemu_opt_set(opts, "backend", "pipe");
2274         qemu_opt_set(opts, "path", p);
2275         return opts;
2276     }
2277     if (strstart(filename, "tcp:", &p) ||
2278         strstart(filename, "telnet:", &p)) {
2279         if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) {
2280             host[0] = 0;
2281             if (sscanf(p, ":%32[^,]%n", port, &pos) < 1)
2282                 goto fail;
2283         }
2284         qemu_opt_set(opts, "backend", "socket");
2285         qemu_opt_set(opts, "host", host);
2286         qemu_opt_set(opts, "port", port);
2287         if (p[pos] == ',') {
2288             if (qemu_opts_do_parse(opts, p+pos+1, NULL) != 0)
2289                 goto fail;
2290         }
2291         if (strstart(filename, "telnet:", &p))
2292             qemu_opt_set(opts, "telnet", "on");
2293         return opts;
2294     }
2295     if (strstart(filename, "unix:", &p)) {
2296         qemu_opt_set(opts, "backend", "socket");
2297         if (qemu_opts_do_parse(opts, p, "path") != 0)
2298             goto fail;
2299         return opts;
2300     }
2301     if (strstart(filename, "/dev/parport", NULL) ||
2302         strstart(filename, "/dev/ppi", NULL)) {
2303         qemu_opt_set(opts, "backend", "parport");
2304         qemu_opt_set(opts, "path", filename);
2305         return opts;
2306     }
2307     if (strstart(filename, "/dev/", NULL)) {
2308         qemu_opt_set(opts, "backend", "tty");
2309         qemu_opt_set(opts, "path", filename);
2310         return opts;
2311     }
2312
2313 fail:
2314     fprintf(stderr, "%s: fail on \"%s\"\n", __FUNCTION__, filename);
2315     qemu_opts_del(opts);
2316     return NULL;
2317 }
2318
2319 static const struct {
2320     const char *name;
2321     CharDriverState *(*open)(QemuOpts *opts);
2322 } backend_table[] = {
2323     { .name = "null",      .open = qemu_chr_open_null },
2324     { .name = "socket",    .open = qemu_chr_open_socket },
2325     { .name = "msmouse",   .open = qemu_chr_open_msmouse },
2326     { .name = "vc",        .open = text_console_init },
2327 #ifdef _WIN32
2328     { .name = "file",      .open = qemu_chr_open_win_file_out },
2329     { .name = "pipe",      .open = qemu_chr_open_win_pipe },
2330     { .name = "console",   .open = qemu_chr_open_win_con },
2331     { .name = "serial",    .open = qemu_chr_open_win },
2332 #else
2333     { .name = "file",      .open = qemu_chr_open_file_out },
2334     { .name = "pipe",      .open = qemu_chr_open_pipe },
2335     { .name = "pty",       .open = qemu_chr_open_pty },
2336     { .name = "stdio",     .open = qemu_chr_open_stdio },
2337 #endif
2338 #ifdef CONFIG_BRLAPI
2339     { .name = "braille",   .open = chr_baum_init },
2340 #endif
2341 #if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
2342     || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
2343     { .name = "tty",       .open = qemu_chr_open_tty },
2344 #endif
2345 #if defined(__linux__) || defined(__FreeBSD__) || defined(__DragonFly__)
2346     { .name = "parport",   .open = qemu_chr_open_pp },
2347 #endif
2348 };
2349
2350 CharDriverState *qemu_chr_open_opts(QemuOpts *opts,
2351                                     void (*init)(struct CharDriverState *s))
2352 {
2353     CharDriverState *chr;
2354     int i;
2355
2356     if (qemu_opts_id(opts) == NULL) {
2357         fprintf(stderr, "chardev: no id specified\n");
2358         return NULL;
2359     }
2360
2361     for (i = 0; i < ARRAY_SIZE(backend_table); i++) {
2362         if (strcmp(backend_table[i].name, qemu_opt_get(opts, "backend")) == 0)
2363             break;
2364     }
2365     if (i == ARRAY_SIZE(backend_table)) {
2366         fprintf(stderr, "chardev: backend \"%s\" not found\n",
2367                 qemu_opt_get(opts, "backend"));
2368         return NULL;
2369     }
2370
2371     chr = backend_table[i].open(opts);
2372     if (!chr) {
2373         fprintf(stderr, "chardev: opening backend \"%s\" failed\n",
2374                 qemu_opt_get(opts, "backend"));
2375         return NULL;
2376     }
2377
2378     if (!chr->filename)
2379         chr->filename = qemu_strdup(qemu_opt_get(opts, "backend"));
2380     chr->init = init;
2381     chr->label = qemu_strdup(qemu_opts_id(opts));
2382     TAILQ_INSERT_TAIL(&chardevs, chr, next);
2383     return chr;
2384 }
2385
2386 CharDriverState *qemu_chr_open(const char *label, const char *filename, void (*init)(struct CharDriverState *s))
2387 {
2388     const char *p;
2389     CharDriverState *chr;
2390     QemuOpts *opts;
2391
2392     opts = qemu_chr_parse_compat(label, filename);
2393     if (opts) {
2394         return qemu_chr_open_opts(opts, init);
2395     }
2396
2397     if (strstart(filename, "udp:", &p)) {
2398         chr = qemu_chr_open_udp(p);
2399     } else
2400     if (strstart(filename, "mon:", &p)) {
2401         chr = qemu_chr_open(label, p, NULL);
2402         if (chr) {
2403             chr = qemu_chr_open_mux(chr);
2404             monitor_init(chr, MONITOR_USE_READLINE);
2405         } else {
2406             printf("Unable to open driver: %s\n", p);
2407         }
2408     } else
2409     {
2410         chr = NULL;
2411     }
2412
2413     if (chr) {
2414         if (!chr->filename)
2415             chr->filename = qemu_strdup(filename);
2416         chr->init = init;
2417         chr->label = qemu_strdup(label);
2418         TAILQ_INSERT_TAIL(&chardevs, chr, next);
2419     }
2420     return chr;
2421 }
2422
2423 void qemu_chr_close(CharDriverState *chr)
2424 {
2425     TAILQ_REMOVE(&chardevs, chr, next);
2426     if (chr->chr_close)
2427         chr->chr_close(chr);
2428     qemu_free(chr->filename);
2429     qemu_free(chr->label);
2430     qemu_free(chr);
2431 }
2432
2433 void qemu_chr_info(Monitor *mon)
2434 {
2435     CharDriverState *chr;
2436
2437     TAILQ_FOREACH(chr, &chardevs, next) {
2438         monitor_printf(mon, "%s: filename=%s\n", chr->label, chr->filename);
2439     }
2440 }