4 * Copyright (c) 2003-2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
24 #include "qemu-common.h"
29 #include "qemu-timer.h"
30 #include "qemu-char.h"
34 #include "hw/msmouse.h"
45 #include <sys/times.h>
49 #include <sys/ioctl.h>
50 #include <sys/resource.h>
51 #include <sys/socket.h>
52 #include <netinet/in.h>
55 #include <net/if_tap.h>
58 #include <linux/if_tun.h>
60 #include <arpa/inet.h>
63 #include <sys/select.h>
68 #include <dev/ppbus/ppi.h>
69 #include <dev/ppbus/ppbconf.h>
70 #elif defined(__DragonFly__)
72 #include <dev/misc/ppi/ppi.h>
73 #include <bus/ppbus/ppbconf.h>
77 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
78 #include <freebsd/stdlib.h>
83 #include <linux/ppdev.h>
84 #include <linux/parport.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>
104 #include "qemu_socket.h"
106 /***********************************************************/
107 /* character device */
109 static TAILQ_HEAD(CharDriverStateHead
, CharDriverState
) chardevs
=
110 TAILQ_HEAD_INITIALIZER(chardevs
);
111 static int initial_reset_issued
;
113 static void qemu_chr_event(CharDriverState
*s
, int event
)
117 s
->chr_event(s
->handler_opaque
, event
);
120 static void qemu_chr_reset_bh(void *opaque
)
122 CharDriverState
*s
= opaque
;
123 qemu_chr_event(s
, CHR_EVENT_RESET
);
124 qemu_bh_delete(s
->bh
);
128 void qemu_chr_reset(CharDriverState
*s
)
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
);
136 void qemu_chr_initial_reset(void)
138 CharDriverState
*chr
;
140 initial_reset_issued
= 1;
142 TAILQ_FOREACH(chr
, &chardevs
, next
) {
147 int qemu_chr_write(CharDriverState
*s
, const uint8_t *buf
, int len
)
149 return s
->chr_write(s
, buf
, len
);
152 int qemu_chr_ioctl(CharDriverState
*s
, int cmd
, void *arg
)
156 return s
->chr_ioctl(s
, cmd
, arg
);
159 int qemu_chr_can_read(CharDriverState
*s
)
161 if (!s
->chr_can_read
)
163 return s
->chr_can_read(s
->handler_opaque
);
166 void qemu_chr_read(CharDriverState
*s
, uint8_t *buf
, int len
)
168 s
->chr_read(s
->handler_opaque
, buf
, len
);
171 int qemu_chr_get_msgfd(CharDriverState
*s
)
173 return s
->get_msgfd
? s
->get_msgfd(s
) : -1;
176 void qemu_chr_accept_input(CharDriverState
*s
)
178 if (s
->chr_accept_input
)
179 s
->chr_accept_input(s
);
182 void qemu_chr_printf(CharDriverState
*s
, const char *fmt
, ...)
187 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
188 qemu_chr_write(s
, (uint8_t *)buf
, strlen(buf
));
192 void qemu_chr_send_event(CharDriverState
*s
, int event
)
194 if (s
->chr_send_event
)
195 s
->chr_send_event(s
, event
);
198 void qemu_chr_add_handlers(CharDriverState
*s
,
199 IOCanRWHandler
*fd_can_read
,
200 IOReadHandler
*fd_read
,
201 IOEventHandler
*fd_event
,
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
);
212 static int null_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
217 static CharDriverState
*qemu_chr_open_null(QemuOpts
*opts
)
219 CharDriverState
*chr
;
221 chr
= qemu_mallocz(sizeof(CharDriverState
));
222 chr
->chr_write
= null_chr_write
;
226 /* MUX driver for serial I/O splitting */
228 #define MUX_BUFFER_SIZE 32 /* Must be a power of 2. */
229 #define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
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
;
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
242 unsigned char buffer
[MAX_MUX
][MUX_BUFFER_SIZE
];
247 int64_t timestamps_start
;
251 static int mux_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
253 MuxDriver
*d
= chr
->opaque
;
255 if (!d
->timestamps
) {
256 ret
= d
->drv
->chr_write(d
->drv
, buf
, len
);
261 for (i
= 0; i
< len
; i
++) {
267 ti
= qemu_get_clock(rt_clock
);
268 if (d
->timestamps_start
== -1)
269 d
->timestamps_start
= ti
;
270 ti
-= d
->timestamps_start
;
272 snprintf(buf1
, sizeof(buf1
),
273 "[%02d:%02d:%02d.%03d] ",
278 d
->drv
->chr_write(d
->drv
, (uint8_t *)buf1
, strlen(buf1
));
281 ret
+= d
->drv
->chr_write(d
->drv
, buf
+i
, 1);
282 if (buf
[i
] == '\n') {
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",
301 int term_escape_char
= 0x01; /* ctrl-a is used for escape */
302 static void mux_print_help(CharDriverState
*chr
)
305 char ebuf
[15] = "Escape-Char";
306 char cbuf
[50] = "\n\r";
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');
312 snprintf(cbuf
, sizeof(cbuf
),
313 "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
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
));
322 chr
->chr_write(chr
, (uint8_t *)&mux_help
[i
][j
], 1);
327 static void mux_chr_send_event(MuxDriver
*d
, int mux_nr
, int event
)
329 if (d
->chr_event
[mux_nr
])
330 d
->chr_event
[mux_nr
](d
->ext_opaque
[mux_nr
], event
);
333 static int mux_proc_byte(CharDriverState
*chr
, MuxDriver
*d
, int ch
)
335 if (d
->term_got_escape
) {
336 d
->term_got_escape
= 0;
337 if (ch
== term_escape_char
)
346 const char *term
= "QEMU: Terminated\n\r";
347 chr
->chr_write(chr
,(uint8_t *)term
,strlen(term
));
354 TAILQ_FOREACH(dinfo
, &drives
, next
) {
355 bdrv_commit(dinfo
->bdrv
);
360 qemu_chr_event(chr
, CHR_EVENT_BREAK
);
363 /* Switch to the next registered device */
364 mux_chr_send_event(d
, chr
->focus
, CHR_EVENT_MUX_OUT
);
366 if (chr
->focus
>= d
->mux_cnt
)
368 mux_chr_send_event(d
, chr
->focus
, CHR_EVENT_MUX_IN
);
371 d
->timestamps
= !d
->timestamps
;
372 d
->timestamps_start
= -1;
376 } else if (ch
== term_escape_char
) {
377 d
->term_got_escape
= 1;
385 static void mux_chr_accept_input(CharDriverState
*chr
)
388 MuxDriver
*d
= chr
->opaque
;
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);
398 static int mux_chr_can_read(void *opaque
)
400 CharDriverState
*chr
= opaque
;
401 MuxDriver
*d
= chr
->opaque
;
404 if ((d
->prod
[m
] - d
->cons
[m
]) < MUX_BUFFER_SIZE
)
406 if (d
->chr_can_read
[m
])
407 return d
->chr_can_read
[m
](d
->ext_opaque
[m
]);
411 static void mux_chr_read(void *opaque
, const uint8_t *buf
, int size
)
413 CharDriverState
*chr
= opaque
;
414 MuxDriver
*d
= chr
->opaque
;
418 mux_chr_accept_input (opaque
);
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);
427 d
->buffer
[m
][d
->prod
[m
]++ & MUX_BUFFER_MASK
] = buf
[i
];
431 static void mux_chr_event(void *opaque
, int event
)
433 CharDriverState
*chr
= opaque
;
434 MuxDriver
*d
= chr
->opaque
;
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
);
442 static void mux_chr_update_read_handler(CharDriverState
*chr
)
444 MuxDriver
*d
= chr
->opaque
;
446 if (d
->mux_cnt
>= MAX_MUX
) {
447 fprintf(stderr
, "Cannot add I/O handlers, MUX array is full\n");
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
,
459 chr
->focus
= d
->mux_cnt
;
463 static CharDriverState
*qemu_chr_open_mux(CharDriverState
*drv
)
465 CharDriverState
*chr
;
468 chr
= qemu_mallocz(sizeof(CharDriverState
));
469 d
= qemu_mallocz(sizeof(MuxDriver
));
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
;
482 int send_all(int fd
, const void *buf
, int len1
)
488 ret
= send(fd
, buf
, len
, 0);
490 errno
= WSAGetLastError();
491 if (errno
!= WSAEWOULDBLOCK
) {
494 } else if (ret
== 0) {
506 static int unix_write(int fd
, const uint8_t *buf
, int len1
)
512 ret
= write(fd
, buf
, len
);
514 if (errno
!= EINTR
&& errno
!= EAGAIN
)
516 } else if (ret
== 0) {
526 int send_all(int fd
, const void *buf
, int len1
)
528 return unix_write(fd
, buf
, len1
);
539 #define STDIO_MAX_CLIENTS 1
540 static int stdio_nb_clients
= 0;
542 static int fd_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
544 FDCharDriver
*s
= chr
->opaque
;
545 return send_all(s
->fd_out
, buf
, len
);
548 static int fd_chr_read_poll(void *opaque
)
550 CharDriverState
*chr
= opaque
;
551 FDCharDriver
*s
= chr
->opaque
;
553 s
->max_size
= qemu_chr_can_read(chr
);
557 static void fd_chr_read(void *opaque
)
559 CharDriverState
*chr
= opaque
;
560 FDCharDriver
*s
= chr
->opaque
;
565 if (len
> s
->max_size
)
569 size
= read(s
->fd_in
, buf
, len
);
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
);
577 qemu_chr_read(chr
, buf
, size
);
581 static void fd_chr_update_read_handler(CharDriverState
*chr
)
583 FDCharDriver
*s
= chr
->opaque
;
586 if (display_type
== DT_NOGRAPHIC
&& s
->fd_in
== 0) {
588 qemu_set_fd_handler2(s
->fd_in
, fd_chr_read_poll
,
589 fd_chr_read
, NULL
, chr
);
594 static void fd_chr_close(struct CharDriverState
*chr
)
596 FDCharDriver
*s
= chr
->opaque
;
599 if (display_type
== DT_NOGRAPHIC
&& s
->fd_in
== 0) {
601 qemu_set_fd_handler2(s
->fd_in
, NULL
, NULL
, NULL
, NULL
);
606 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
609 /* open a character device to a unix fd */
610 static CharDriverState
*qemu_chr_open_fd(int fd_in
, int fd_out
)
612 CharDriverState
*chr
;
615 chr
= qemu_mallocz(sizeof(CharDriverState
));
616 s
= qemu_mallocz(sizeof(FDCharDriver
));
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
;
629 static CharDriverState
*qemu_chr_open_file_out(QemuOpts
*opts
)
633 TFR(fd_out
= open(qemu_opt_get(opts
, "path"),
634 O_WRONLY
| O_TRUNC
| O_CREAT
| O_BINARY
, 0666));
637 return qemu_chr_open_fd(-1, fd_out
);
640 static CharDriverState
*qemu_chr_open_pipe(QemuOpts
*opts
)
643 char filename_in
[256], filename_out
[256];
644 const char *filename
= qemu_opt_get(opts
, "path");
646 if (filename
== NULL
) {
647 fprintf(stderr
, "chardev: pipe: no filename given\n");
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) {
660 TFR(fd_in
= fd_out
= open(filename
, O_RDWR
| O_BINARY
));
664 return qemu_chr_open_fd(fd_in
, fd_out
);
668 /* for STDIO, we handle the case where several clients use it
671 #define TERM_FIFO_MAX_SIZE 1
673 static uint8_t term_fifo
[TERM_FIFO_MAX_SIZE
];
674 static int term_fifo_size
;
676 static int stdio_read_poll(void *opaque
)
678 CharDriverState
*chr
= opaque
;
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);
685 /* see if we can absorb more chars */
686 if (term_fifo_size
== 0)
692 static void stdio_read(void *opaque
)
696 CharDriverState
*chr
= opaque
;
698 size
= read(0, buf
, 1);
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
);
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];
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
;
719 static void term_exit(void)
721 tcsetattr (0, TCSANOW
, &oldtty
);
722 fcntl(0, F_SETFL
, old_fd0_flags
);
725 static void term_init(void)
731 old_fd0_flags
= fcntl(0, F_GETFL
);
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
);
745 tcsetattr (0, TCSANOW
, &tty
);
747 if (!term_atexit_done
++)
750 fcntl(0, F_SETFL
, O_NONBLOCK
);
753 static void qemu_chr_close_stdio(struct CharDriverState
*chr
)
757 qemu_set_fd_handler2(0, NULL
, NULL
, NULL
, NULL
);
761 static CharDriverState
*qemu_chr_open_stdio(void)
763 CharDriverState
*chr
;
765 if (stdio_nb_clients
>= STDIO_MAX_CLIENTS
)
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
);
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
)
782 int mfd
= -1, sfd
= -1;
784 *amaster
= *aslave
= -1;
786 mfd
= open("/dev/ptmx", O_RDWR
| O_NOCTTY
);
790 if (grantpt(mfd
) == -1 || unlockpt(mfd
) == -1)
793 if ((slave
= ptsname(mfd
)) == NULL
)
796 if ((sfd
= open(slave
, O_RDONLY
| O_NOCTTY
)) == -1)
799 if (ioctl(sfd
, I_PUSH
, "ptem") == -1 ||
800 (termp
!= NULL
&& tcgetattr(sfd
, termp
) < 0))
808 ioctl(sfd
, TIOCSWINSZ
, winp
);
819 static void cfmakeraw (struct termios
*termios_p
)
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
;
828 termios_p
->c_cc
[VMIN
] = 0;
829 termios_p
->c_cc
[VTIME
] = 0;
833 #if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
834 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
844 static void pty_chr_update_read_handler(CharDriverState
*chr
);
845 static void pty_chr_state(CharDriverState
*chr
, int connected
);
847 static int pty_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
849 PtyCharDriver
*s
= chr
->opaque
;
852 /* guest sends data, check for (re-)connect */
853 pty_chr_update_read_handler(chr
);
856 return send_all(s
->fd
, buf
, len
);
859 static int pty_chr_read_poll(void *opaque
)
861 CharDriverState
*chr
= opaque
;
862 PtyCharDriver
*s
= chr
->opaque
;
864 s
->read_bytes
= qemu_chr_can_read(chr
);
865 return s
->read_bytes
;
868 static void pty_chr_read(void *opaque
)
870 CharDriverState
*chr
= opaque
;
871 PtyCharDriver
*s
= chr
->opaque
;
876 if (len
> s
->read_bytes
)
880 size
= read(s
->fd
, buf
, len
);
881 if ((size
== -1 && errno
== EIO
) ||
883 pty_chr_state(chr
, 0);
887 pty_chr_state(chr
, 1);
888 qemu_chr_read(chr
, buf
, size
);
892 static void pty_chr_update_read_handler(CharDriverState
*chr
)
894 PtyCharDriver
*s
= chr
->opaque
;
896 qemu_set_fd_handler2(s
->fd
, pty_chr_read_poll
,
897 pty_chr_read
, NULL
, chr
);
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
907 qemu_mod_timer(s
->timer
, qemu_get_clock(rt_clock
) + 10);
910 static void pty_chr_state(CharDriverState
*chr
, int connected
)
912 PtyCharDriver
*s
= chr
->opaque
;
915 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
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);
929 static void pty_chr_timer(void *opaque
)
931 struct CharDriverState
*chr
= opaque
;
932 PtyCharDriver
*s
= chr
->opaque
;
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);
944 pty_chr_update_read_handler(chr
);
947 static void pty_chr_close(struct CharDriverState
*chr
)
949 PtyCharDriver
*s
= chr
->opaque
;
951 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
953 qemu_del_timer(s
->timer
);
954 qemu_free_timer(s
->timer
);
956 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
959 static CharDriverState
*qemu_chr_open_pty(QemuOpts
*opts
)
961 CharDriverState
*chr
;
965 #if defined(__OpenBSD__) || defined(__DragonFly__)
966 char pty_name
[PATH_MAX
];
967 #define q_ptsname(x) pty_name
969 char *pty_name
= NULL
;
970 #define q_ptsname(x) ptsname(x)
973 chr
= qemu_mallocz(sizeof(CharDriverState
));
974 s
= qemu_mallocz(sizeof(PtyCharDriver
));
976 if (openpty(&s
->fd
, &slave_fd
, pty_name
, NULL
, NULL
) < 0) {
980 /* Set raw attributes on the pty. */
981 tcgetattr(slave_fd
, &tty
);
983 tcsetattr(slave_fd
, TCSAFLUSH
, &tty
);
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
));
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
;
997 s
->timer
= qemu_new_timer(rt_clock
, pty_chr_timer
, chr
);
1002 static void tty_serial_init(int fd
, int speed
,
1003 int parity
, int data_bits
, int stop_bits
)
1009 printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
1010 speed
, parity
, data_bits
, stop_bits
);
1012 tcgetattr (fd
, &tty
);
1015 if (speed
<= 50 * MARGIN
)
1017 else if (speed
<= 75 * MARGIN
)
1019 else if (speed
<= 300 * MARGIN
)
1021 else if (speed
<= 600 * MARGIN
)
1023 else if (speed
<= 1200 * MARGIN
)
1025 else if (speed
<= 2400 * MARGIN
)
1027 else if (speed
<= 4800 * MARGIN
)
1029 else if (speed
<= 9600 * MARGIN
)
1031 else if (speed
<= 19200 * MARGIN
)
1033 else if (speed
<= 38400 * MARGIN
)
1035 else if (speed
<= 57600 * MARGIN
)
1037 else if (speed
<= 115200 * MARGIN
)
1042 cfsetispeed(&tty
, spd
);
1043 cfsetospeed(&tty
, spd
);
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
);
1070 tty
.c_cflag
|= PARENB
;
1073 tty
.c_cflag
|= PARENB
| PARODD
;
1077 tty
.c_cflag
|= CSTOPB
;
1079 tcsetattr (fd
, TCSANOW
, &tty
);
1082 static int tty_serial_ioctl(CharDriverState
*chr
, int cmd
, void *arg
)
1084 FDCharDriver
*s
= chr
->opaque
;
1087 case CHR_IOCTL_SERIAL_SET_PARAMS
:
1089 QEMUSerialSetParams
*ssp
= arg
;
1090 tty_serial_init(s
->fd_in
, ssp
->speed
, ssp
->parity
,
1091 ssp
->data_bits
, ssp
->stop_bits
);
1094 case CHR_IOCTL_SERIAL_SET_BREAK
:
1096 int enable
= *(int *)arg
;
1098 tcsendbreak(s
->fd_in
, 1);
1101 case CHR_IOCTL_SERIAL_GET_TIOCM
:
1104 int *targ
= (int *)arg
;
1105 ioctl(s
->fd_in
, TIOCMGET
, &sarg
);
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
;
1121 case CHR_IOCTL_SERIAL_SET_TIOCM
:
1123 int sarg
= *(int *)arg
;
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
)
1130 if (sarg
& CHR_TIOCM_CAR
)
1132 if (sarg
& CHR_TIOCM_DSR
)
1134 if (sarg
& CHR_TIOCM_RI
)
1136 if (sarg
& CHR_TIOCM_DTR
)
1138 if (sarg
& CHR_TIOCM_RTS
)
1140 ioctl(s
->fd_in
, TIOCMSET
, &targ
);
1149 static CharDriverState
*qemu_chr_open_tty(const char *filename
)
1151 CharDriverState
*chr
;
1154 TFR(fd
= open(filename
, O_RDWR
| O_NONBLOCK
));
1155 tty_serial_init(fd
, 115200, 'N', 8, 1);
1156 chr
= qemu_chr_open_fd(fd
, fd
);
1161 chr
->chr_ioctl
= tty_serial_ioctl
;
1162 qemu_chr_reset(chr
);
1165 #else /* ! __linux__ && ! __sun__ */
1166 static CharDriverState
*qemu_chr_open_pty(void)
1170 #endif /* __linux__ || __sun__ */
1172 #if defined(__linux__)
1176 } ParallelCharDriver
;
1178 static int pp_hw_mode(ParallelCharDriver
*s
, uint16_t mode
)
1180 if (s
->mode
!= mode
) {
1182 if (ioctl(s
->fd
, PPSETMODE
, &m
) < 0)
1189 static int pp_ioctl(CharDriverState
*chr
, int cmd
, void *arg
)
1191 ParallelCharDriver
*drv
= chr
->opaque
;
1196 case CHR_IOCTL_PP_READ_DATA
:
1197 if (ioctl(fd
, PPRDATA
, &b
) < 0)
1199 *(uint8_t *)arg
= b
;
1201 case CHR_IOCTL_PP_WRITE_DATA
:
1202 b
= *(uint8_t *)arg
;
1203 if (ioctl(fd
, PPWDATA
, &b
) < 0)
1206 case CHR_IOCTL_PP_READ_CONTROL
:
1207 if (ioctl(fd
, PPRCONTROL
, &b
) < 0)
1209 /* Linux gives only the lowest bits, and no way to know data
1210 direction! For better compatibility set the fixed upper
1212 *(uint8_t *)arg
= b
| 0xc0;
1214 case CHR_IOCTL_PP_WRITE_CONTROL
:
1215 b
= *(uint8_t *)arg
;
1216 if (ioctl(fd
, PPWCONTROL
, &b
) < 0)
1219 case CHR_IOCTL_PP_READ_STATUS
:
1220 if (ioctl(fd
, PPRSTATUS
, &b
) < 0)
1222 *(uint8_t *)arg
= b
;
1224 case CHR_IOCTL_PP_DATA_DIR
:
1225 if (ioctl(fd
, PPDATADIR
, (int *)arg
) < 0)
1228 case CHR_IOCTL_PP_EPP_READ_ADDR
:
1229 if (pp_hw_mode(drv
, IEEE1284_MODE_EPP
|IEEE1284_ADDR
)) {
1230 struct ParallelIOArg
*parg
= arg
;
1231 int n
= read(fd
, parg
->buffer
, parg
->count
);
1232 if (n
!= parg
->count
) {
1237 case CHR_IOCTL_PP_EPP_READ
:
1238 if (pp_hw_mode(drv
, IEEE1284_MODE_EPP
)) {
1239 struct ParallelIOArg
*parg
= arg
;
1240 int n
= read(fd
, parg
->buffer
, parg
->count
);
1241 if (n
!= parg
->count
) {
1246 case CHR_IOCTL_PP_EPP_WRITE_ADDR
:
1247 if (pp_hw_mode(drv
, IEEE1284_MODE_EPP
|IEEE1284_ADDR
)) {
1248 struct ParallelIOArg
*parg
= arg
;
1249 int n
= write(fd
, parg
->buffer
, parg
->count
);
1250 if (n
!= parg
->count
) {
1255 case CHR_IOCTL_PP_EPP_WRITE
:
1256 if (pp_hw_mode(drv
, IEEE1284_MODE_EPP
)) {
1257 struct ParallelIOArg
*parg
= arg
;
1258 int n
= write(fd
, parg
->buffer
, parg
->count
);
1259 if (n
!= parg
->count
) {
1270 static void pp_close(CharDriverState
*chr
)
1272 ParallelCharDriver
*drv
= chr
->opaque
;
1275 pp_hw_mode(drv
, IEEE1284_MODE_COMPAT
);
1276 ioctl(fd
, PPRELEASE
);
1279 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
1282 static CharDriverState
*qemu_chr_open_pp(const char *filename
)
1284 CharDriverState
*chr
;
1285 ParallelCharDriver
*drv
;
1288 TFR(fd
= open(filename
, O_RDWR
));
1292 if (ioctl(fd
, PPCLAIM
) < 0) {
1297 drv
= qemu_mallocz(sizeof(ParallelCharDriver
));
1299 drv
->mode
= IEEE1284_MODE_COMPAT
;
1301 chr
= qemu_mallocz(sizeof(CharDriverState
));
1302 chr
->chr_write
= null_chr_write
;
1303 chr
->chr_ioctl
= pp_ioctl
;
1304 chr
->chr_close
= pp_close
;
1307 qemu_chr_reset(chr
);
1311 #endif /* __linux__ */
1313 #if defined(__FreeBSD__) || defined(__DragonFly__)
1314 static int pp_ioctl(CharDriverState
*chr
, int cmd
, void *arg
)
1316 int fd
= (int)chr
->opaque
;
1320 case CHR_IOCTL_PP_READ_DATA
:
1321 if (ioctl(fd
, PPIGDATA
, &b
) < 0)
1323 *(uint8_t *)arg
= b
;
1325 case CHR_IOCTL_PP_WRITE_DATA
:
1326 b
= *(uint8_t *)arg
;
1327 if (ioctl(fd
, PPISDATA
, &b
) < 0)
1330 case CHR_IOCTL_PP_READ_CONTROL
:
1331 if (ioctl(fd
, PPIGCTRL
, &b
) < 0)
1333 *(uint8_t *)arg
= b
;
1335 case CHR_IOCTL_PP_WRITE_CONTROL
:
1336 b
= *(uint8_t *)arg
;
1337 if (ioctl(fd
, PPISCTRL
, &b
) < 0)
1340 case CHR_IOCTL_PP_READ_STATUS
:
1341 if (ioctl(fd
, PPIGSTATUS
, &b
) < 0)
1343 *(uint8_t *)arg
= b
;
1351 static CharDriverState
*qemu_chr_open_pp(const char *filename
)
1353 CharDriverState
*chr
;
1356 fd
= open(filename
, O_RDWR
);
1360 chr
= qemu_mallocz(sizeof(CharDriverState
));
1361 chr
->opaque
= (void *)fd
;
1362 chr
->chr_write
= null_chr_write
;
1363 chr
->chr_ioctl
= pp_ioctl
;
1372 HANDLE hcom
, hrecv
, hsend
;
1373 OVERLAPPED orecv
, osend
;
1378 #define NSENDBUF 2048
1379 #define NRECVBUF 2048
1380 #define MAXCONNECT 1
1381 #define NTIMEOUT 5000
1383 static int win_chr_poll(void *opaque
);
1384 static int win_chr_pipe_poll(void *opaque
);
1386 static void win_chr_close(CharDriverState
*chr
)
1388 WinCharState
*s
= chr
->opaque
;
1391 CloseHandle(s
->hsend
);
1395 CloseHandle(s
->hrecv
);
1399 CloseHandle(s
->hcom
);
1403 qemu_del_polling_cb(win_chr_pipe_poll
, chr
);
1405 qemu_del_polling_cb(win_chr_poll
, chr
);
1407 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
1410 static int win_chr_init(CharDriverState
*chr
, const char *filename
)
1412 WinCharState
*s
= chr
->opaque
;
1414 COMMTIMEOUTS cto
= { 0, 0, 0, 0, 0};
1419 s
->hsend
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1421 fprintf(stderr
, "Failed CreateEvent\n");
1424 s
->hrecv
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1426 fprintf(stderr
, "Failed CreateEvent\n");
1430 s
->hcom
= CreateFile(filename
, GENERIC_READ
|GENERIC_WRITE
, 0, NULL
,
1431 OPEN_EXISTING
, FILE_FLAG_OVERLAPPED
, 0);
1432 if (s
->hcom
== INVALID_HANDLE_VALUE
) {
1433 fprintf(stderr
, "Failed CreateFile (%lu)\n", GetLastError());
1438 if (!SetupComm(s
->hcom
, NRECVBUF
, NSENDBUF
)) {
1439 fprintf(stderr
, "Failed SetupComm\n");
1443 ZeroMemory(&comcfg
, sizeof(COMMCONFIG
));
1444 size
= sizeof(COMMCONFIG
);
1445 GetDefaultCommConfig(filename
, &comcfg
, &size
);
1446 comcfg
.dcb
.DCBlength
= sizeof(DCB
);
1447 CommConfigDialog(filename
, NULL
, &comcfg
);
1449 if (!SetCommState(s
->hcom
, &comcfg
.dcb
)) {
1450 fprintf(stderr
, "Failed SetCommState\n");
1454 if (!SetCommMask(s
->hcom
, EV_ERR
)) {
1455 fprintf(stderr
, "Failed SetCommMask\n");
1459 cto
.ReadIntervalTimeout
= MAXDWORD
;
1460 if (!SetCommTimeouts(s
->hcom
, &cto
)) {
1461 fprintf(stderr
, "Failed SetCommTimeouts\n");
1465 if (!ClearCommError(s
->hcom
, &err
, &comstat
)) {
1466 fprintf(stderr
, "Failed ClearCommError\n");
1469 qemu_add_polling_cb(win_chr_poll
, chr
);
1477 static int win_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len1
)
1479 WinCharState
*s
= chr
->opaque
;
1480 DWORD len
, ret
, size
, err
;
1483 ZeroMemory(&s
->osend
, sizeof(s
->osend
));
1484 s
->osend
.hEvent
= s
->hsend
;
1487 ret
= WriteFile(s
->hcom
, buf
, len
, &size
, &s
->osend
);
1489 ret
= WriteFile(s
->hcom
, buf
, len
, &size
, NULL
);
1491 err
= GetLastError();
1492 if (err
== ERROR_IO_PENDING
) {
1493 ret
= GetOverlappedResult(s
->hcom
, &s
->osend
, &size
, TRUE
);
1511 static int win_chr_read_poll(CharDriverState
*chr
)
1513 WinCharState
*s
= chr
->opaque
;
1515 s
->max_size
= qemu_chr_can_read(chr
);
1519 static void win_chr_readfile(CharDriverState
*chr
)
1521 WinCharState
*s
= chr
->opaque
;
1526 ZeroMemory(&s
->orecv
, sizeof(s
->orecv
));
1527 s
->orecv
.hEvent
= s
->hrecv
;
1528 ret
= ReadFile(s
->hcom
, buf
, s
->len
, &size
, &s
->orecv
);
1530 err
= GetLastError();
1531 if (err
== ERROR_IO_PENDING
) {
1532 ret
= GetOverlappedResult(s
->hcom
, &s
->orecv
, &size
, TRUE
);
1537 qemu_chr_read(chr
, buf
, size
);
1541 static void win_chr_read(CharDriverState
*chr
)
1543 WinCharState
*s
= chr
->opaque
;
1545 if (s
->len
> s
->max_size
)
1546 s
->len
= s
->max_size
;
1550 win_chr_readfile(chr
);
1553 static int win_chr_poll(void *opaque
)
1555 CharDriverState
*chr
= opaque
;
1556 WinCharState
*s
= chr
->opaque
;
1560 ClearCommError(s
->hcom
, &comerr
, &status
);
1561 if (status
.cbInQue
> 0) {
1562 s
->len
= status
.cbInQue
;
1563 win_chr_read_poll(chr
);
1570 static CharDriverState
*qemu_chr_open_win(const char *filename
)
1572 CharDriverState
*chr
;
1575 chr
= qemu_mallocz(sizeof(CharDriverState
));
1576 s
= qemu_mallocz(sizeof(WinCharState
));
1578 chr
->chr_write
= win_chr_write
;
1579 chr
->chr_close
= win_chr_close
;
1581 if (win_chr_init(chr
, filename
) < 0) {
1586 qemu_chr_reset(chr
);
1590 static int win_chr_pipe_poll(void *opaque
)
1592 CharDriverState
*chr
= opaque
;
1593 WinCharState
*s
= chr
->opaque
;
1596 PeekNamedPipe(s
->hcom
, NULL
, 0, NULL
, &size
, NULL
);
1599 win_chr_read_poll(chr
);
1606 static int win_chr_pipe_init(CharDriverState
*chr
, const char *filename
)
1608 WinCharState
*s
= chr
->opaque
;
1616 s
->hsend
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1618 fprintf(stderr
, "Failed CreateEvent\n");
1621 s
->hrecv
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1623 fprintf(stderr
, "Failed CreateEvent\n");
1627 snprintf(openname
, sizeof(openname
), "\\\\.\\pipe\\%s", filename
);
1628 s
->hcom
= CreateNamedPipe(openname
, PIPE_ACCESS_DUPLEX
| FILE_FLAG_OVERLAPPED
,
1629 PIPE_TYPE_BYTE
| PIPE_READMODE_BYTE
|
1631 MAXCONNECT
, NSENDBUF
, NRECVBUF
, NTIMEOUT
, NULL
);
1632 if (s
->hcom
== INVALID_HANDLE_VALUE
) {
1633 fprintf(stderr
, "Failed CreateNamedPipe (%lu)\n", GetLastError());
1638 ZeroMemory(&ov
, sizeof(ov
));
1639 ov
.hEvent
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1640 ret
= ConnectNamedPipe(s
->hcom
, &ov
);
1642 fprintf(stderr
, "Failed ConnectNamedPipe\n");
1646 ret
= GetOverlappedResult(s
->hcom
, &ov
, &size
, TRUE
);
1648 fprintf(stderr
, "Failed GetOverlappedResult\n");
1650 CloseHandle(ov
.hEvent
);
1657 CloseHandle(ov
.hEvent
);
1660 qemu_add_polling_cb(win_chr_pipe_poll
, chr
);
1669 static CharDriverState
*qemu_chr_open_win_pipe(QemuOpts
*opts
)
1671 const char *filename
= qemu_opt_get(opts
, "path");
1672 CharDriverState
*chr
;
1675 chr
= qemu_mallocz(sizeof(CharDriverState
));
1676 s
= qemu_mallocz(sizeof(WinCharState
));
1678 chr
->chr_write
= win_chr_write
;
1679 chr
->chr_close
= win_chr_close
;
1681 if (win_chr_pipe_init(chr
, filename
) < 0) {
1686 qemu_chr_reset(chr
);
1690 static CharDriverState
*qemu_chr_open_win_file(HANDLE fd_out
)
1692 CharDriverState
*chr
;
1695 chr
= qemu_mallocz(sizeof(CharDriverState
));
1696 s
= qemu_mallocz(sizeof(WinCharState
));
1699 chr
->chr_write
= win_chr_write
;
1700 qemu_chr_reset(chr
);
1704 static CharDriverState
*qemu_chr_open_win_con(const char *filename
)
1706 return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE
));
1709 static CharDriverState
*qemu_chr_open_win_file_out(QemuOpts
*opts
)
1711 const char *file_out
= qemu_opt_get(opts
, "path");
1714 fd_out
= CreateFile(file_out
, GENERIC_WRITE
, FILE_SHARE_READ
, NULL
,
1715 OPEN_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
1716 if (fd_out
== INVALID_HANDLE_VALUE
)
1719 return qemu_chr_open_win_file(fd_out
);
1721 #endif /* !_WIN32 */
1723 /***********************************************************/
1724 /* UDP Net console */
1728 struct sockaddr_in daddr
;
1735 static int udp_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
1737 NetCharDriver
*s
= chr
->opaque
;
1739 return sendto(s
->fd
, (const void *)buf
, len
, 0,
1740 (struct sockaddr
*)&s
->daddr
, sizeof(struct sockaddr_in
));
1743 static int udp_chr_read_poll(void *opaque
)
1745 CharDriverState
*chr
= opaque
;
1746 NetCharDriver
*s
= chr
->opaque
;
1748 s
->max_size
= qemu_chr_can_read(chr
);
1750 /* If there were any stray characters in the queue process them
1753 while (s
->max_size
> 0 && s
->bufptr
< s
->bufcnt
) {
1754 qemu_chr_read(chr
, &s
->buf
[s
->bufptr
], 1);
1756 s
->max_size
= qemu_chr_can_read(chr
);
1761 static void udp_chr_read(void *opaque
)
1763 CharDriverState
*chr
= opaque
;
1764 NetCharDriver
*s
= chr
->opaque
;
1766 if (s
->max_size
== 0)
1768 s
->bufcnt
= recv(s
->fd
, (void *)s
->buf
, sizeof(s
->buf
), 0);
1769 s
->bufptr
= s
->bufcnt
;
1774 while (s
->max_size
> 0 && s
->bufptr
< s
->bufcnt
) {
1775 qemu_chr_read(chr
, &s
->buf
[s
->bufptr
], 1);
1777 s
->max_size
= qemu_chr_can_read(chr
);
1781 static void udp_chr_update_read_handler(CharDriverState
*chr
)
1783 NetCharDriver
*s
= chr
->opaque
;
1786 qemu_set_fd_handler2(s
->fd
, udp_chr_read_poll
,
1787 udp_chr_read
, NULL
, chr
);
1791 static void udp_chr_close(CharDriverState
*chr
)
1793 NetCharDriver
*s
= chr
->opaque
;
1795 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1799 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
1802 static CharDriverState
*qemu_chr_open_udp(const char *def
)
1804 CharDriverState
*chr
= NULL
;
1805 NetCharDriver
*s
= NULL
;
1807 struct sockaddr_in saddr
;
1809 chr
= qemu_mallocz(sizeof(CharDriverState
));
1810 s
= qemu_mallocz(sizeof(NetCharDriver
));
1812 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
1814 perror("socket(PF_INET, SOCK_DGRAM)");
1818 if (parse_host_src_port(&s
->daddr
, &saddr
, def
) < 0) {
1819 printf("Could not parse: %s\n", def
);
1823 if (bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
)) < 0)
1833 chr
->chr_write
= udp_chr_write
;
1834 chr
->chr_update_read_handler
= udp_chr_update_read_handler
;
1835 chr
->chr_close
= udp_chr_close
;
1848 /***********************************************************/
1849 /* TCP Net console */
1861 static void tcp_chr_accept(void *opaque
);
1863 static int tcp_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
1865 TCPCharDriver
*s
= chr
->opaque
;
1867 return send_all(s
->fd
, buf
, len
);
1869 /* XXX: indicate an error ? */
1874 static int tcp_chr_read_poll(void *opaque
)
1876 CharDriverState
*chr
= opaque
;
1877 TCPCharDriver
*s
= chr
->opaque
;
1880 s
->max_size
= qemu_chr_can_read(chr
);
1885 #define IAC_BREAK 243
1886 static void tcp_chr_process_IAC_bytes(CharDriverState
*chr
,
1888 uint8_t *buf
, int *size
)
1890 /* Handle any telnet client's basic IAC options to satisfy char by
1891 * char mode with no echo. All IAC options will be removed from
1892 * the buf and the do_telnetopt variable will be used to track the
1893 * state of the width of the IAC information.
1895 * IAC commands come in sets of 3 bytes with the exception of the
1896 * "IAC BREAK" command and the double IAC.
1902 for (i
= 0; i
< *size
; i
++) {
1903 if (s
->do_telnetopt
> 1) {
1904 if ((unsigned char)buf
[i
] == IAC
&& s
->do_telnetopt
== 2) {
1905 /* Double IAC means send an IAC */
1909 s
->do_telnetopt
= 1;
1911 if ((unsigned char)buf
[i
] == IAC_BREAK
&& s
->do_telnetopt
== 2) {
1912 /* Handle IAC break commands by sending a serial break */
1913 qemu_chr_event(chr
, CHR_EVENT_BREAK
);
1918 if (s
->do_telnetopt
>= 4) {
1919 s
->do_telnetopt
= 1;
1922 if ((unsigned char)buf
[i
] == IAC
) {
1923 s
->do_telnetopt
= 2;
1934 static int tcp_get_msgfd(CharDriverState
*chr
)
1936 TCPCharDriver
*s
= chr
->opaque
;
1942 static void unix_process_msgfd(CharDriverState
*chr
, struct msghdr
*msg
)
1944 TCPCharDriver
*s
= chr
->opaque
;
1945 struct cmsghdr
*cmsg
;
1947 for (cmsg
= CMSG_FIRSTHDR(msg
); cmsg
; cmsg
= CMSG_NXTHDR(msg
, cmsg
)) {
1950 if (cmsg
->cmsg_len
!= CMSG_LEN(sizeof(int)) ||
1951 cmsg
->cmsg_level
!= SOL_SOCKET
||
1952 cmsg
->cmsg_type
!= SCM_RIGHTS
)
1955 fd
= *((int *)CMSG_DATA(cmsg
));
1965 static ssize_t
tcp_chr_recv(CharDriverState
*chr
, char *buf
, size_t len
)
1967 TCPCharDriver
*s
= chr
->opaque
;
1968 struct msghdr msg
= { NULL
, };
1969 struct iovec iov
[1];
1971 struct cmsghdr cmsg
;
1972 char control
[CMSG_SPACE(sizeof(int))];
1976 iov
[0].iov_base
= buf
;
1977 iov
[0].iov_len
= len
;
1981 msg
.msg_control
= &msg_control
;
1982 msg
.msg_controllen
= sizeof(msg_control
);
1984 ret
= recvmsg(s
->fd
, &msg
, 0);
1985 if (ret
> 0 && s
->is_unix
)
1986 unix_process_msgfd(chr
, &msg
);
1991 static ssize_t
tcp_chr_recv(CharDriverState
*chr
, char *buf
, size_t len
)
1993 TCPCharDriver
*s
= chr
->opaque
;
1994 return recv(s
->fd
, buf
, len
, 0);
1998 static void tcp_chr_read(void *opaque
)
2000 CharDriverState
*chr
= opaque
;
2001 TCPCharDriver
*s
= chr
->opaque
;
2005 if (!s
->connected
|| s
->max_size
<= 0)
2008 if (len
> s
->max_size
)
2010 size
= tcp_chr_recv(chr
, (void *)buf
, len
);
2012 /* connection closed */
2014 if (s
->listen_fd
>= 0) {
2015 qemu_set_fd_handler(s
->listen_fd
, tcp_chr_accept
, NULL
, chr
);
2017 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
2020 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
2021 } else if (size
> 0) {
2022 if (s
->do_telnetopt
)
2023 tcp_chr_process_IAC_bytes(chr
, s
, buf
, &size
);
2025 qemu_chr_read(chr
, buf
, size
);
2026 if (s
->msgfd
!= -1) {
2033 static void tcp_chr_connect(void *opaque
)
2035 CharDriverState
*chr
= opaque
;
2036 TCPCharDriver
*s
= chr
->opaque
;
2039 qemu_set_fd_handler2(s
->fd
, tcp_chr_read_poll
,
2040 tcp_chr_read
, NULL
, chr
);
2041 qemu_chr_reset(chr
);
2044 #define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2045 static void tcp_chr_telnet_init(int fd
)
2048 /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2049 IACSET(buf
, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
2050 send(fd
, (char *)buf
, 3, 0);
2051 IACSET(buf
, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
2052 send(fd
, (char *)buf
, 3, 0);
2053 IACSET(buf
, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
2054 send(fd
, (char *)buf
, 3, 0);
2055 IACSET(buf
, 0xff, 0xfd, 0x00); /* IAC DO Binary */
2056 send(fd
, (char *)buf
, 3, 0);
2059 static void socket_set_nodelay(int fd
)
2062 setsockopt(fd
, IPPROTO_TCP
, TCP_NODELAY
, (char *)&val
, sizeof(val
));
2065 static void tcp_chr_accept(void *opaque
)
2067 CharDriverState
*chr
= opaque
;
2068 TCPCharDriver
*s
= chr
->opaque
;
2069 struct sockaddr_in saddr
;
2071 struct sockaddr_un uaddr
;
2073 struct sockaddr
*addr
;
2080 len
= sizeof(uaddr
);
2081 addr
= (struct sockaddr
*)&uaddr
;
2085 len
= sizeof(saddr
);
2086 addr
= (struct sockaddr
*)&saddr
;
2088 fd
= accept(s
->listen_fd
, addr
, &len
);
2089 if (fd
< 0 && errno
!= EINTR
) {
2091 } else if (fd
>= 0) {
2092 if (s
->do_telnetopt
)
2093 tcp_chr_telnet_init(fd
);
2097 socket_set_nonblock(fd
);
2099 socket_set_nodelay(fd
);
2101 qemu_set_fd_handler(s
->listen_fd
, NULL
, NULL
, NULL
);
2102 tcp_chr_connect(chr
);
2105 static void tcp_chr_close(CharDriverState
*chr
)
2107 TCPCharDriver
*s
= chr
->opaque
;
2109 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
2112 if (s
->listen_fd
>= 0) {
2113 qemu_set_fd_handler(s
->listen_fd
, NULL
, NULL
, NULL
);
2114 closesocket(s
->listen_fd
);
2117 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
2120 static CharDriverState
*qemu_chr_open_socket(QemuOpts
*opts
)
2122 CharDriverState
*chr
= NULL
;
2123 TCPCharDriver
*s
= NULL
;
2131 is_listen
= qemu_opt_get_bool(opts
, "server", 0);
2132 is_waitconnect
= qemu_opt_get_bool(opts
, "wait", 1);
2133 is_telnet
= qemu_opt_get_bool(opts
, "telnet", 0);
2134 do_nodelay
= !qemu_opt_get_bool(opts
, "delay", 1);
2135 is_unix
= qemu_opt_get(opts
, "path") != NULL
;
2139 chr
= qemu_mallocz(sizeof(CharDriverState
));
2140 s
= qemu_mallocz(sizeof(TCPCharDriver
));
2144 fd
= unix_listen_opts(opts
);
2146 fd
= unix_connect_opts(opts
);
2150 fd
= inet_listen_opts(opts
, 0);
2152 fd
= inet_connect_opts(opts
);
2158 if (!is_waitconnect
)
2159 socket_set_nonblock(fd
);
2165 s
->is_unix
= is_unix
;
2166 s
->do_nodelay
= do_nodelay
&& !is_unix
;
2169 chr
->chr_write
= tcp_chr_write
;
2170 chr
->chr_close
= tcp_chr_close
;
2171 chr
->get_msgfd
= tcp_get_msgfd
;
2175 qemu_set_fd_handler(s
->listen_fd
, tcp_chr_accept
, NULL
, chr
);
2177 s
->do_telnetopt
= 1;
2182 socket_set_nodelay(fd
);
2183 tcp_chr_connect(chr
);
2186 /* for "info chardev" monitor command */
2187 chr
->filename
= qemu_malloc(256);
2189 snprintf(chr
->filename
, 256, "unix:%s%s",
2190 qemu_opt_get(opts
, "path"),
2191 qemu_opt_get_bool(opts
, "server", 0) ? ",server" : "");
2192 } else if (is_telnet
) {
2193 snprintf(chr
->filename
, 256, "telnet:%s:%s%s",
2194 qemu_opt_get(opts
, "host"), qemu_opt_get(opts
, "port"),
2195 qemu_opt_get_bool(opts
, "server", 0) ? ",server" : "");
2197 snprintf(chr
->filename
, 256, "tcp:%s:%s%s",
2198 qemu_opt_get(opts
, "host"), qemu_opt_get(opts
, "port"),
2199 qemu_opt_get_bool(opts
, "server", 0) ? ",server" : "");
2202 if (is_listen
&& is_waitconnect
) {
2203 printf("QEMU waiting for connection on: %s\n",
2205 tcp_chr_accept(chr
);
2206 socket_set_nonblock(s
->listen_fd
);
2218 static QemuOpts
*qemu_chr_parse_compat(const char *label
, const char *filename
)
2220 char host
[65], port
[33];
2225 opts
= qemu_opts_create(&qemu_chardev_opts
, label
, 1);
2229 if (strcmp(filename
, "null") == 0 ||
2230 strcmp(filename
, "pty") == 0) {
2231 qemu_opt_set(opts
, "backend", filename
);
2234 if (strstart(filename
, "file:", &p
)) {
2235 qemu_opt_set(opts
, "backend", "file");
2236 qemu_opt_set(opts
, "path", p
);
2239 if (strstart(filename
, "pipe:", &p
)) {
2240 qemu_opt_set(opts
, "backend", "pipe");
2241 qemu_opt_set(opts
, "path", p
);
2244 if (strstart(filename
, "tcp:", &p
) ||
2245 strstart(filename
, "telnet:", &p
)) {
2246 if (sscanf(p
, "%64[^:]:%32[^,]%n", host
, port
, &pos
) < 2) {
2248 if (sscanf(p
, ":%32[^,]%n", port
, &pos
) < 1)
2251 qemu_opt_set(opts
, "backend", "socket");
2252 qemu_opt_set(opts
, "host", host
);
2253 qemu_opt_set(opts
, "port", port
);
2254 if (p
[pos
] == ',') {
2255 if (qemu_opts_do_parse(opts
, p
+pos
+1, NULL
) != 0)
2258 if (strstart(filename
, "telnet:", &p
))
2259 qemu_opt_set(opts
, "telnet", "on");
2262 if (strstart(filename
, "unix:", &p
)) {
2263 qemu_opt_set(opts
, "backend", "socket");
2264 if (qemu_opts_do_parse(opts
, p
, "path") != 0)
2270 fprintf(stderr
, "%s: fail on \"%s\"\n", __FUNCTION__
, filename
);
2271 qemu_opts_del(opts
);
2275 static const struct {
2277 CharDriverState
*(*open
)(QemuOpts
*opts
);
2278 } backend_table
[] = {
2279 { .name
= "null", .open
= qemu_chr_open_null
},
2280 { .name
= "socket", .open
= qemu_chr_open_socket
},
2282 { .name
= "file", .open
= qemu_chr_open_win_file_out
},
2283 { .name
= "pipe", .open
= qemu_chr_open_win_pipe
},
2285 { .name
= "file", .open
= qemu_chr_open_file_out
},
2286 { .name
= "pipe", .open
= qemu_chr_open_pipe
},
2287 { .name
= "pty", .open
= qemu_chr_open_pty
},
2291 CharDriverState
*qemu_chr_open_opts(QemuOpts
*opts
,
2292 void (*init
)(struct CharDriverState
*s
))
2294 CharDriverState
*chr
;
2297 if (qemu_opts_id(opts
) == NULL
) {
2298 fprintf(stderr
, "chardev: no id specified\n");
2302 for (i
= 0; i
< ARRAY_SIZE(backend_table
); i
++) {
2303 if (strcmp(backend_table
[i
].name
, qemu_opt_get(opts
, "backend")) == 0)
2306 if (i
== ARRAY_SIZE(backend_table
)) {
2307 fprintf(stderr
, "chardev: backend \"%s\" not found\n",
2308 qemu_opt_get(opts
, "backend"));
2312 chr
= backend_table
[i
].open(opts
);
2314 fprintf(stderr
, "chardev: opening backend \"%s\" failed\n",
2315 qemu_opt_get(opts
, "backend"));
2320 chr
->filename
= qemu_strdup(qemu_opt_get(opts
, "backend"));
2322 chr
->label
= qemu_strdup(qemu_opts_id(opts
));
2323 TAILQ_INSERT_TAIL(&chardevs
, chr
, next
);
2327 CharDriverState
*qemu_chr_open(const char *label
, const char *filename
, void (*init
)(struct CharDriverState
*s
))
2330 CharDriverState
*chr
;
2333 opts
= qemu_chr_parse_compat(label
, filename
);
2335 return qemu_chr_open_opts(opts
, init
);
2338 if (!strcmp(filename
, "vc")) {
2339 chr
= text_console_init(NULL
);
2341 if (strstart(filename
, "vc:", &p
)) {
2342 chr
= text_console_init(p
);
2344 if (strstart(filename
, "udp:", &p
)) {
2345 chr
= qemu_chr_open_udp(p
);
2347 if (strstart(filename
, "mon:", &p
)) {
2348 chr
= qemu_chr_open(label
, p
, NULL
);
2350 chr
= qemu_chr_open_mux(chr
);
2351 monitor_init(chr
, MONITOR_USE_READLINE
);
2353 printf("Unable to open driver: %s\n", p
);
2355 } else if (!strcmp(filename
, "msmouse")) {
2356 chr
= qemu_chr_open_msmouse();
2359 if (!strcmp(filename
, "stdio")) {
2360 chr
= qemu_chr_open_stdio();
2362 #if defined(__linux__)
2363 if (strstart(filename
, "/dev/parport", NULL
)) {
2364 chr
= qemu_chr_open_pp(filename
);
2366 #elif defined(__FreeBSD__) || defined(__DragonFly__)
2367 if (strstart(filename
, "/dev/ppi", NULL
)) {
2368 chr
= qemu_chr_open_pp(filename
);
2371 #if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
2372 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
2373 if (strstart(filename
, "/dev/", NULL
)) {
2374 chr
= qemu_chr_open_tty(filename
);
2378 if (strstart(filename
, "COM", NULL
)) {
2379 chr
= qemu_chr_open_win(filename
);
2381 if (strstart(filename
, "con:", NULL
)) {
2382 chr
= qemu_chr_open_win_con(filename
);
2385 #ifdef CONFIG_BRLAPI
2386 if (!strcmp(filename
, "braille")) {
2387 chr
= chr_baum_init();
2396 chr
->filename
= qemu_strdup(filename
);
2398 chr
->label
= qemu_strdup(label
);
2399 TAILQ_INSERT_TAIL(&chardevs
, chr
, next
);
2404 void qemu_chr_close(CharDriverState
*chr
)
2406 TAILQ_REMOVE(&chardevs
, chr
, next
);
2408 chr
->chr_close(chr
);
2409 qemu_free(chr
->filename
);
2410 qemu_free(chr
->label
);
2414 void qemu_chr_info(Monitor
*mon
)
2416 CharDriverState
*chr
;
2418 TAILQ_FOREACH(chr
, &chardevs
, next
) {
2419 monitor_printf(mon
, "%s: filename=%s\n", chr
->label
, chr
->filename
);