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"
33 #include "hw/msmouse.h"
34 #include "qemu-objects.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>
54 #include <arpa/inet.h>
57 #include <sys/select.h>
60 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
62 #include <dev/ppbus/ppi.h>
63 #include <dev/ppbus/ppbconf.h>
64 #if defined(__GLIBC__)
67 #elif defined(__DragonFly__)
69 #include <dev/misc/ppi/ppi.h>
70 #include <bus/ppbus/ppbconf.h>
78 #include <linux/ppdev.h>
79 #include <linux/parport.h>
83 #include <sys/ethernet.h>
84 #include <sys/sockio.h>
85 #include <netinet/arp.h>
86 #include <netinet/in.h>
87 #include <netinet/in_systm.h>
88 #include <netinet/ip.h>
89 #include <netinet/ip_icmp.h> // must come after ip.h
90 #include <netinet/udp.h>
91 #include <netinet/tcp.h>
99 #include "qemu_socket.h"
100 #include "ui/qemu-spice.h"
102 #define READ_BUF_LEN 4096
104 /***********************************************************/
105 /* character device */
107 static QTAILQ_HEAD(CharDriverStateHead
, CharDriverState
) chardevs
=
108 QTAILQ_HEAD_INITIALIZER(chardevs
);
110 static void qemu_chr_event(CharDriverState
*s
, int event
)
112 /* Keep track if the char device is open */
114 case CHR_EVENT_OPENED
:
117 case CHR_EVENT_CLOSED
:
124 s
->chr_event(s
->handler_opaque
, event
);
127 static void qemu_chr_generic_open_bh(void *opaque
)
129 CharDriverState
*s
= opaque
;
130 qemu_chr_event(s
, CHR_EVENT_OPENED
);
131 qemu_bh_delete(s
->bh
);
135 void qemu_chr_generic_open(CharDriverState
*s
)
138 s
->bh
= qemu_bh_new(qemu_chr_generic_open_bh
, s
);
139 qemu_bh_schedule(s
->bh
);
143 int qemu_chr_write(CharDriverState
*s
, const uint8_t *buf
, int len
)
145 return s
->chr_write(s
, buf
, len
);
148 int qemu_chr_ioctl(CharDriverState
*s
, int cmd
, void *arg
)
152 return s
->chr_ioctl(s
, cmd
, arg
);
155 int qemu_chr_can_read(CharDriverState
*s
)
157 if (!s
->chr_can_read
)
159 return s
->chr_can_read(s
->handler_opaque
);
162 void qemu_chr_read(CharDriverState
*s
, uint8_t *buf
, int len
)
164 s
->chr_read(s
->handler_opaque
, buf
, len
);
167 int qemu_chr_get_msgfd(CharDriverState
*s
)
169 return s
->get_msgfd
? s
->get_msgfd(s
) : -1;
172 void qemu_chr_accept_input(CharDriverState
*s
)
174 if (s
->chr_accept_input
)
175 s
->chr_accept_input(s
);
178 void qemu_chr_printf(CharDriverState
*s
, const char *fmt
, ...)
180 char buf
[READ_BUF_LEN
];
183 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
184 qemu_chr_write(s
, (uint8_t *)buf
, strlen(buf
));
188 void qemu_chr_send_event(CharDriverState
*s
, int event
)
190 if (s
->chr_send_event
)
191 s
->chr_send_event(s
, event
);
194 void qemu_chr_add_handlers(CharDriverState
*s
,
195 IOCanReadHandler
*fd_can_read
,
196 IOReadHandler
*fd_read
,
197 IOEventHandler
*fd_event
,
200 s
->chr_can_read
= fd_can_read
;
201 s
->chr_read
= fd_read
;
202 s
->chr_event
= fd_event
;
203 s
->handler_opaque
= opaque
;
204 if (s
->chr_update_read_handler
)
205 s
->chr_update_read_handler(s
);
207 /* We're connecting to an already opened device, so let's make sure we
208 also get the open event */
210 qemu_chr_generic_open(s
);
214 static int null_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
219 static CharDriverState
*qemu_chr_open_null(QemuOpts
*opts
)
221 CharDriverState
*chr
;
223 chr
= qemu_mallocz(sizeof(CharDriverState
));
224 chr
->chr_write
= null_chr_write
;
228 /* MUX driver for serial I/O splitting */
230 #define MUX_BUFFER_SIZE 32 /* Must be a power of 2. */
231 #define MUX_BUFFER_MASK (MUX_BUFFER_SIZE - 1)
233 IOCanReadHandler
*chr_can_read
[MAX_MUX
];
234 IOReadHandler
*chr_read
[MAX_MUX
];
235 IOEventHandler
*chr_event
[MAX_MUX
];
236 void *ext_opaque
[MAX_MUX
];
237 CharDriverState
*drv
;
242 /* Intermediate input buffer allows to catch escape sequences even if the
243 currently active device is not accepting any input - but only until it
245 unsigned char buffer
[MAX_MUX
][MUX_BUFFER_SIZE
];
250 int64_t timestamps_start
;
254 static int mux_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
256 MuxDriver
*d
= chr
->opaque
;
258 if (!d
->timestamps
) {
259 ret
= d
->drv
->chr_write(d
->drv
, buf
, len
);
264 for (i
= 0; i
< len
; i
++) {
270 ti
= qemu_get_clock_ms(rt_clock
);
271 if (d
->timestamps_start
== -1)
272 d
->timestamps_start
= ti
;
273 ti
-= d
->timestamps_start
;
275 snprintf(buf1
, sizeof(buf1
),
276 "[%02d:%02d:%02d.%03d] ",
281 d
->drv
->chr_write(d
->drv
, (uint8_t *)buf1
, strlen(buf1
));
284 ret
+= d
->drv
->chr_write(d
->drv
, buf
+i
, 1);
285 if (buf
[i
] == '\n') {
293 static const char * const mux_help
[] = {
294 "% h print this help\n\r",
295 "% x exit emulator\n\r",
296 "% s save disk data back to file (if -snapshot)\n\r",
297 "% t toggle console timestamps\n\r"
298 "% b send break (magic sysrq)\n\r",
299 "% c switch between console and monitor\n\r",
304 int term_escape_char
= 0x01; /* ctrl-a is used for escape */
305 static void mux_print_help(CharDriverState
*chr
)
308 char ebuf
[15] = "Escape-Char";
309 char cbuf
[50] = "\n\r";
311 if (term_escape_char
> 0 && term_escape_char
< 26) {
312 snprintf(cbuf
, sizeof(cbuf
), "\n\r");
313 snprintf(ebuf
, sizeof(ebuf
), "C-%c", term_escape_char
- 1 + 'a');
315 snprintf(cbuf
, sizeof(cbuf
),
316 "\n\rEscape-Char set to Ascii: 0x%02x\n\r\n\r",
319 chr
->chr_write(chr
, (uint8_t *)cbuf
, strlen(cbuf
));
320 for (i
= 0; mux_help
[i
] != NULL
; i
++) {
321 for (j
=0; mux_help
[i
][j
] != '\0'; j
++) {
322 if (mux_help
[i
][j
] == '%')
323 chr
->chr_write(chr
, (uint8_t *)ebuf
, strlen(ebuf
));
325 chr
->chr_write(chr
, (uint8_t *)&mux_help
[i
][j
], 1);
330 static void mux_chr_send_event(MuxDriver
*d
, int mux_nr
, int event
)
332 if (d
->chr_event
[mux_nr
])
333 d
->chr_event
[mux_nr
](d
->ext_opaque
[mux_nr
], event
);
336 static int mux_proc_byte(CharDriverState
*chr
, MuxDriver
*d
, int ch
)
338 if (d
->term_got_escape
) {
339 d
->term_got_escape
= 0;
340 if (ch
== term_escape_char
)
349 const char *term
= "QEMU: Terminated\n\r";
350 chr
->chr_write(chr
,(uint8_t *)term
,strlen(term
));
358 qemu_chr_event(chr
, CHR_EVENT_BREAK
);
361 /* Switch to the next registered device */
362 mux_chr_send_event(d
, d
->focus
, CHR_EVENT_MUX_OUT
);
364 if (d
->focus
>= d
->mux_cnt
)
366 mux_chr_send_event(d
, d
->focus
, CHR_EVENT_MUX_IN
);
369 d
->timestamps
= !d
->timestamps
;
370 d
->timestamps_start
= -1;
374 } else if (ch
== term_escape_char
) {
375 d
->term_got_escape
= 1;
383 static void mux_chr_accept_input(CharDriverState
*chr
)
385 MuxDriver
*d
= chr
->opaque
;
388 while (d
->prod
[m
] != d
->cons
[m
] &&
389 d
->chr_can_read
[m
] &&
390 d
->chr_can_read
[m
](d
->ext_opaque
[m
])) {
391 d
->chr_read
[m
](d
->ext_opaque
[m
],
392 &d
->buffer
[m
][d
->cons
[m
]++ & MUX_BUFFER_MASK
], 1);
396 static int mux_chr_can_read(void *opaque
)
398 CharDriverState
*chr
= opaque
;
399 MuxDriver
*d
= chr
->opaque
;
402 if ((d
->prod
[m
] - d
->cons
[m
]) < MUX_BUFFER_SIZE
)
404 if (d
->chr_can_read
[m
])
405 return d
->chr_can_read
[m
](d
->ext_opaque
[m
]);
409 static void mux_chr_read(void *opaque
, const uint8_t *buf
, int size
)
411 CharDriverState
*chr
= opaque
;
412 MuxDriver
*d
= chr
->opaque
;
416 mux_chr_accept_input (opaque
);
418 for(i
= 0; i
< size
; i
++)
419 if (mux_proc_byte(chr
, d
, buf
[i
])) {
420 if (d
->prod
[m
] == d
->cons
[m
] &&
421 d
->chr_can_read
[m
] &&
422 d
->chr_can_read
[m
](d
->ext_opaque
[m
]))
423 d
->chr_read
[m
](d
->ext_opaque
[m
], &buf
[i
], 1);
425 d
->buffer
[m
][d
->prod
[m
]++ & MUX_BUFFER_MASK
] = buf
[i
];
429 static void mux_chr_event(void *opaque
, int event
)
431 CharDriverState
*chr
= opaque
;
432 MuxDriver
*d
= chr
->opaque
;
435 /* Send the event to all registered listeners */
436 for (i
= 0; i
< d
->mux_cnt
; i
++)
437 mux_chr_send_event(d
, i
, event
);
440 static void mux_chr_update_read_handler(CharDriverState
*chr
)
442 MuxDriver
*d
= chr
->opaque
;
444 if (d
->mux_cnt
>= MAX_MUX
) {
445 fprintf(stderr
, "Cannot add I/O handlers, MUX array is full\n");
448 d
->ext_opaque
[d
->mux_cnt
] = chr
->handler_opaque
;
449 d
->chr_can_read
[d
->mux_cnt
] = chr
->chr_can_read
;
450 d
->chr_read
[d
->mux_cnt
] = chr
->chr_read
;
451 d
->chr_event
[d
->mux_cnt
] = chr
->chr_event
;
452 /* Fix up the real driver with mux routines */
453 if (d
->mux_cnt
== 0) {
454 qemu_chr_add_handlers(d
->drv
, mux_chr_can_read
, mux_chr_read
,
457 if (d
->focus
!= -1) {
458 mux_chr_send_event(d
, d
->focus
, CHR_EVENT_MUX_OUT
);
460 d
->focus
= d
->mux_cnt
;
462 mux_chr_send_event(d
, d
->focus
, CHR_EVENT_MUX_IN
);
465 static CharDriverState
*qemu_chr_open_mux(CharDriverState
*drv
)
467 CharDriverState
*chr
;
470 chr
= qemu_mallocz(sizeof(CharDriverState
));
471 d
= qemu_mallocz(sizeof(MuxDriver
));
476 chr
->chr_write
= mux_chr_write
;
477 chr
->chr_update_read_handler
= mux_chr_update_read_handler
;
478 chr
->chr_accept_input
= mux_chr_accept_input
;
480 /* Muxes are always open on creation */
481 qemu_chr_generic_open(chr
);
488 int send_all(int fd
, const void *buf
, int len1
)
494 ret
= send(fd
, buf
, len
, 0);
496 errno
= WSAGetLastError();
497 if (errno
!= WSAEWOULDBLOCK
) {
500 } else if (ret
== 0) {
512 int send_all(int fd
, const void *_buf
, int len1
)
515 const uint8_t *buf
= _buf
;
519 ret
= write(fd
, buf
, len
);
521 if (errno
!= EINTR
&& errno
!= EAGAIN
)
523 } else if (ret
== 0) {
541 #define STDIO_MAX_CLIENTS 1
542 static int stdio_nb_clients
= 0;
544 static int fd_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
546 FDCharDriver
*s
= chr
->opaque
;
547 return send_all(s
->fd_out
, buf
, len
);
550 static int fd_chr_read_poll(void *opaque
)
552 CharDriverState
*chr
= opaque
;
553 FDCharDriver
*s
= chr
->opaque
;
555 s
->max_size
= qemu_chr_can_read(chr
);
559 static void fd_chr_read(void *opaque
)
561 CharDriverState
*chr
= opaque
;
562 FDCharDriver
*s
= chr
->opaque
;
564 uint8_t buf
[READ_BUF_LEN
];
567 if (len
> s
->max_size
)
571 size
= read(s
->fd_in
, buf
, len
);
573 /* FD has been closed. Remove it from the active list. */
574 qemu_set_fd_handler2(s
->fd_in
, NULL
, NULL
, NULL
, NULL
);
575 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
579 qemu_chr_read(chr
, buf
, size
);
583 static void fd_chr_update_read_handler(CharDriverState
*chr
)
585 FDCharDriver
*s
= chr
->opaque
;
588 if (display_type
== DT_NOGRAPHIC
&& s
->fd_in
== 0) {
590 qemu_set_fd_handler2(s
->fd_in
, fd_chr_read_poll
,
591 fd_chr_read
, NULL
, chr
);
596 static void fd_chr_close(struct CharDriverState
*chr
)
598 FDCharDriver
*s
= chr
->opaque
;
601 if (display_type
== DT_NOGRAPHIC
&& s
->fd_in
== 0) {
603 qemu_set_fd_handler2(s
->fd_in
, NULL
, NULL
, NULL
, NULL
);
608 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
611 /* open a character device to a unix fd */
612 static CharDriverState
*qemu_chr_open_fd(int fd_in
, int fd_out
)
614 CharDriverState
*chr
;
617 chr
= qemu_mallocz(sizeof(CharDriverState
));
618 s
= qemu_mallocz(sizeof(FDCharDriver
));
622 chr
->chr_write
= fd_chr_write
;
623 chr
->chr_update_read_handler
= fd_chr_update_read_handler
;
624 chr
->chr_close
= fd_chr_close
;
626 qemu_chr_generic_open(chr
);
631 static CharDriverState
*qemu_chr_open_file_out(QemuOpts
*opts
)
635 TFR(fd_out
= qemu_open(qemu_opt_get(opts
, "path"),
636 O_WRONLY
| O_TRUNC
| O_CREAT
| O_BINARY
, 0666));
639 return qemu_chr_open_fd(-1, fd_out
);
642 static CharDriverState
*qemu_chr_open_pipe(QemuOpts
*opts
)
645 char filename_in
[256], filename_out
[256];
646 const char *filename
= qemu_opt_get(opts
, "path");
648 if (filename
== NULL
) {
649 fprintf(stderr
, "chardev: pipe: no filename given\n");
653 snprintf(filename_in
, 256, "%s.in", filename
);
654 snprintf(filename_out
, 256, "%s.out", filename
);
655 TFR(fd_in
= qemu_open(filename_in
, O_RDWR
| O_BINARY
));
656 TFR(fd_out
= qemu_open(filename_out
, O_RDWR
| O_BINARY
));
657 if (fd_in
< 0 || fd_out
< 0) {
662 TFR(fd_in
= fd_out
= open(filename
, O_RDWR
| O_BINARY
));
666 return qemu_chr_open_fd(fd_in
, fd_out
);
670 /* for STDIO, we handle the case where several clients use it
673 #define TERM_FIFO_MAX_SIZE 1
675 static uint8_t term_fifo
[TERM_FIFO_MAX_SIZE
];
676 static int term_fifo_size
;
678 static int stdio_read_poll(void *opaque
)
680 CharDriverState
*chr
= opaque
;
682 /* try to flush the queue if needed */
683 if (term_fifo_size
!= 0 && qemu_chr_can_read(chr
) > 0) {
684 qemu_chr_read(chr
, term_fifo
, 1);
687 /* see if we can absorb more chars */
688 if (term_fifo_size
== 0)
694 static void stdio_read(void *opaque
)
698 CharDriverState
*chr
= opaque
;
700 size
= read(0, buf
, 1);
702 /* stdin has been closed. Remove it from the active list. */
703 qemu_set_fd_handler2(0, NULL
, NULL
, NULL
, NULL
);
704 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
708 if (qemu_chr_can_read(chr
) > 0) {
709 qemu_chr_read(chr
, buf
, 1);
710 } else if (term_fifo_size
== 0) {
711 term_fifo
[term_fifo_size
++] = buf
[0];
716 /* init terminal so that we can grab keys */
717 static struct termios oldtty
;
718 static int old_fd0_flags
;
719 static bool stdio_allow_signal
;
721 static void term_exit(void)
723 tcsetattr (0, TCSANOW
, &oldtty
);
724 fcntl(0, F_SETFL
, old_fd0_flags
);
727 static void qemu_chr_set_echo_stdio(CharDriverState
*chr
, bool echo
)
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 tty
.c_cflag
&= ~(CSIZE
|PARENB
);
742 /* if graphical mode, we allow Ctrl-C handling */
743 if (!stdio_allow_signal
)
744 tty
.c_lflag
&= ~ISIG
;
746 tcsetattr (0, TCSANOW
, &tty
);
749 static void qemu_chr_close_stdio(struct CharDriverState
*chr
)
753 qemu_set_fd_handler2(0, NULL
, NULL
, NULL
, NULL
);
757 static CharDriverState
*qemu_chr_open_stdio(QemuOpts
*opts
)
759 CharDriverState
*chr
;
761 if (stdio_nb_clients
>= STDIO_MAX_CLIENTS
)
763 if (stdio_nb_clients
== 0) {
764 old_fd0_flags
= fcntl(0, F_GETFL
);
765 tcgetattr (0, &oldtty
);
766 fcntl(0, F_SETFL
, O_NONBLOCK
);
770 chr
= qemu_chr_open_fd(0, 1);
771 chr
->chr_close
= qemu_chr_close_stdio
;
772 chr
->chr_set_echo
= qemu_chr_set_echo_stdio
;
773 qemu_set_fd_handler2(0, stdio_read_poll
, stdio_read
, NULL
, chr
);
775 stdio_allow_signal
= qemu_opt_get_bool(opts
, "signal",
776 display_type
!= DT_NOGRAPHIC
);
777 qemu_chr_set_echo(chr
, false);
783 /* Once Solaris has openpty(), this is going to be removed. */
784 static int openpty(int *amaster
, int *aslave
, char *name
,
785 struct termios
*termp
, struct winsize
*winp
)
788 int mfd
= -1, sfd
= -1;
790 *amaster
= *aslave
= -1;
792 mfd
= open("/dev/ptmx", O_RDWR
| O_NOCTTY
);
796 if (grantpt(mfd
) == -1 || unlockpt(mfd
) == -1)
799 if ((slave
= ptsname(mfd
)) == NULL
)
802 if ((sfd
= open(slave
, O_RDONLY
| O_NOCTTY
)) == -1)
805 if (ioctl(sfd
, I_PUSH
, "ptem") == -1 ||
806 (termp
!= NULL
&& tcgetattr(sfd
, termp
) < 0))
814 ioctl(sfd
, TIOCSWINSZ
, winp
);
825 static void cfmakeraw (struct termios
*termios_p
)
827 termios_p
->c_iflag
&=
828 ~(IGNBRK
|BRKINT
|PARMRK
|ISTRIP
|INLCR
|IGNCR
|ICRNL
|IXON
);
829 termios_p
->c_oflag
&= ~OPOST
;
830 termios_p
->c_lflag
&= ~(ECHO
|ECHONL
|ICANON
|ISIG
|IEXTEN
);
831 termios_p
->c_cflag
&= ~(CSIZE
|PARENB
);
832 termios_p
->c_cflag
|= CS8
;
834 termios_p
->c_cc
[VMIN
] = 0;
835 termios_p
->c_cc
[VTIME
] = 0;
839 #if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
840 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
841 || defined(__GLIBC__)
851 static void pty_chr_update_read_handler(CharDriverState
*chr
);
852 static void pty_chr_state(CharDriverState
*chr
, int connected
);
854 static int pty_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
856 PtyCharDriver
*s
= chr
->opaque
;
859 /* guest sends data, check for (re-)connect */
860 pty_chr_update_read_handler(chr
);
863 return send_all(s
->fd
, buf
, len
);
866 static int pty_chr_read_poll(void *opaque
)
868 CharDriverState
*chr
= opaque
;
869 PtyCharDriver
*s
= chr
->opaque
;
871 s
->read_bytes
= qemu_chr_can_read(chr
);
872 return s
->read_bytes
;
875 static void pty_chr_read(void *opaque
)
877 CharDriverState
*chr
= opaque
;
878 PtyCharDriver
*s
= chr
->opaque
;
880 uint8_t buf
[READ_BUF_LEN
];
883 if (len
> s
->read_bytes
)
887 size
= read(s
->fd
, buf
, len
);
888 if ((size
== -1 && errno
== EIO
) ||
890 pty_chr_state(chr
, 0);
894 pty_chr_state(chr
, 1);
895 qemu_chr_read(chr
, buf
, size
);
899 static void pty_chr_update_read_handler(CharDriverState
*chr
)
901 PtyCharDriver
*s
= chr
->opaque
;
903 qemu_set_fd_handler2(s
->fd
, pty_chr_read_poll
,
904 pty_chr_read
, NULL
, chr
);
907 * Short timeout here: just need wait long enougth that qemu makes
908 * it through the poll loop once. When reconnected we want a
909 * short timeout so we notice it almost instantly. Otherwise
910 * read() gives us -EIO instantly, making pty_chr_state() reset the
911 * timeout to the normal (much longer) poll interval before the
914 qemu_mod_timer(s
->timer
, qemu_get_clock_ms(rt_clock
) + 10);
917 static void pty_chr_state(CharDriverState
*chr
, int connected
)
919 PtyCharDriver
*s
= chr
->opaque
;
922 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
925 /* (re-)connect poll interval for idle guests: once per second.
926 * We check more frequently in case the guests sends data to
927 * the virtual device linked to our pty. */
928 qemu_mod_timer(s
->timer
, qemu_get_clock_ms(rt_clock
) + 1000);
931 qemu_chr_generic_open(chr
);
936 static void pty_chr_timer(void *opaque
)
938 struct CharDriverState
*chr
= opaque
;
939 PtyCharDriver
*s
= chr
->opaque
;
944 /* If we arrive here without polling being cleared due
945 * read returning -EIO, then we are (re-)connected */
946 pty_chr_state(chr
, 1);
951 pty_chr_update_read_handler(chr
);
954 static void pty_chr_close(struct CharDriverState
*chr
)
956 PtyCharDriver
*s
= chr
->opaque
;
958 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
960 qemu_del_timer(s
->timer
);
961 qemu_free_timer(s
->timer
);
963 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
966 static CharDriverState
*qemu_chr_open_pty(QemuOpts
*opts
)
968 CharDriverState
*chr
;
972 #if defined(__OpenBSD__) || defined(__DragonFly__)
973 char pty_name
[PATH_MAX
];
974 #define q_ptsname(x) pty_name
976 char *pty_name
= NULL
;
977 #define q_ptsname(x) ptsname(x)
980 chr
= qemu_mallocz(sizeof(CharDriverState
));
981 s
= qemu_mallocz(sizeof(PtyCharDriver
));
983 if (openpty(&s
->fd
, &slave_fd
, pty_name
, NULL
, NULL
) < 0) {
987 /* Set raw attributes on the pty. */
988 tcgetattr(slave_fd
, &tty
);
990 tcsetattr(slave_fd
, TCSAFLUSH
, &tty
);
993 len
= strlen(q_ptsname(s
->fd
)) + 5;
994 chr
->filename
= qemu_malloc(len
);
995 snprintf(chr
->filename
, len
, "pty:%s", q_ptsname(s
->fd
));
996 qemu_opt_set(opts
, "path", q_ptsname(s
->fd
));
997 fprintf(stderr
, "char device redirected to %s\n", q_ptsname(s
->fd
));
1000 chr
->chr_write
= pty_chr_write
;
1001 chr
->chr_update_read_handler
= pty_chr_update_read_handler
;
1002 chr
->chr_close
= pty_chr_close
;
1004 s
->timer
= qemu_new_timer_ms(rt_clock
, pty_chr_timer
, chr
);
1009 static void tty_serial_init(int fd
, int speed
,
1010 int parity
, int data_bits
, int stop_bits
)
1016 printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
1017 speed
, parity
, data_bits
, stop_bits
);
1019 tcgetattr (fd
, &tty
);
1021 #define check_speed(val) if (speed <= val) { spd = B##val; break; }
1022 speed
= speed
* 10 / 11;
1039 /* Non-Posix values follow. They may be unsupported on some systems. */
1041 check_speed(115200);
1043 check_speed(230400);
1046 check_speed(460800);
1049 check_speed(500000);
1052 check_speed(576000);
1055 check_speed(921600);
1058 check_speed(1000000);
1061 check_speed(1152000);
1064 check_speed(1500000);
1067 check_speed(2000000);
1070 check_speed(2500000);
1073 check_speed(3000000);
1076 check_speed(3500000);
1079 check_speed(4000000);
1084 cfsetispeed(&tty
, spd
);
1085 cfsetospeed(&tty
, spd
);
1087 tty
.c_iflag
&= ~(IGNBRK
|BRKINT
|PARMRK
|ISTRIP
1088 |INLCR
|IGNCR
|ICRNL
|IXON
);
1089 tty
.c_oflag
|= OPOST
;
1090 tty
.c_lflag
&= ~(ECHO
|ECHONL
|ICANON
|IEXTEN
|ISIG
);
1091 tty
.c_cflag
&= ~(CSIZE
|PARENB
|PARODD
|CRTSCTS
|CSTOPB
);
1112 tty
.c_cflag
|= PARENB
;
1115 tty
.c_cflag
|= PARENB
| PARODD
;
1119 tty
.c_cflag
|= CSTOPB
;
1121 tcsetattr (fd
, TCSANOW
, &tty
);
1124 static int tty_serial_ioctl(CharDriverState
*chr
, int cmd
, void *arg
)
1126 FDCharDriver
*s
= chr
->opaque
;
1129 case CHR_IOCTL_SERIAL_SET_PARAMS
:
1131 QEMUSerialSetParams
*ssp
= arg
;
1132 tty_serial_init(s
->fd_in
, ssp
->speed
, ssp
->parity
,
1133 ssp
->data_bits
, ssp
->stop_bits
);
1136 case CHR_IOCTL_SERIAL_SET_BREAK
:
1138 int enable
= *(int *)arg
;
1140 tcsendbreak(s
->fd_in
, 1);
1143 case CHR_IOCTL_SERIAL_GET_TIOCM
:
1146 int *targ
= (int *)arg
;
1147 ioctl(s
->fd_in
, TIOCMGET
, &sarg
);
1149 if (sarg
& TIOCM_CTS
)
1150 *targ
|= CHR_TIOCM_CTS
;
1151 if (sarg
& TIOCM_CAR
)
1152 *targ
|= CHR_TIOCM_CAR
;
1153 if (sarg
& TIOCM_DSR
)
1154 *targ
|= CHR_TIOCM_DSR
;
1155 if (sarg
& TIOCM_RI
)
1156 *targ
|= CHR_TIOCM_RI
;
1157 if (sarg
& TIOCM_DTR
)
1158 *targ
|= CHR_TIOCM_DTR
;
1159 if (sarg
& TIOCM_RTS
)
1160 *targ
|= CHR_TIOCM_RTS
;
1163 case CHR_IOCTL_SERIAL_SET_TIOCM
:
1165 int sarg
= *(int *)arg
;
1167 ioctl(s
->fd_in
, TIOCMGET
, &targ
);
1168 targ
&= ~(CHR_TIOCM_CTS
| CHR_TIOCM_CAR
| CHR_TIOCM_DSR
1169 | CHR_TIOCM_RI
| CHR_TIOCM_DTR
| CHR_TIOCM_RTS
);
1170 if (sarg
& CHR_TIOCM_CTS
)
1172 if (sarg
& CHR_TIOCM_CAR
)
1174 if (sarg
& CHR_TIOCM_DSR
)
1176 if (sarg
& CHR_TIOCM_RI
)
1178 if (sarg
& CHR_TIOCM_DTR
)
1180 if (sarg
& CHR_TIOCM_RTS
)
1182 ioctl(s
->fd_in
, TIOCMSET
, &targ
);
1191 static void qemu_chr_close_tty(CharDriverState
*chr
)
1193 FDCharDriver
*s
= chr
->opaque
;
1207 static CharDriverState
*qemu_chr_open_tty(QemuOpts
*opts
)
1209 const char *filename
= qemu_opt_get(opts
, "path");
1210 CharDriverState
*chr
;
1213 TFR(fd
= open(filename
, O_RDWR
| O_NONBLOCK
));
1217 tty_serial_init(fd
, 115200, 'N', 8, 1);
1218 chr
= qemu_chr_open_fd(fd
, fd
);
1223 chr
->chr_ioctl
= tty_serial_ioctl
;
1224 chr
->chr_close
= qemu_chr_close_tty
;
1227 #else /* ! __linux__ && ! __sun__ */
1228 static CharDriverState
*qemu_chr_open_pty(QemuOpts
*opts
)
1232 #endif /* __linux__ || __sun__ */
1234 #if defined(__linux__)
1238 } ParallelCharDriver
;
1240 static int pp_hw_mode(ParallelCharDriver
*s
, uint16_t mode
)
1242 if (s
->mode
!= mode
) {
1244 if (ioctl(s
->fd
, PPSETMODE
, &m
) < 0)
1251 static int pp_ioctl(CharDriverState
*chr
, int cmd
, void *arg
)
1253 ParallelCharDriver
*drv
= chr
->opaque
;
1258 case CHR_IOCTL_PP_READ_DATA
:
1259 if (ioctl(fd
, PPRDATA
, &b
) < 0)
1261 *(uint8_t *)arg
= b
;
1263 case CHR_IOCTL_PP_WRITE_DATA
:
1264 b
= *(uint8_t *)arg
;
1265 if (ioctl(fd
, PPWDATA
, &b
) < 0)
1268 case CHR_IOCTL_PP_READ_CONTROL
:
1269 if (ioctl(fd
, PPRCONTROL
, &b
) < 0)
1271 /* Linux gives only the lowest bits, and no way to know data
1272 direction! For better compatibility set the fixed upper
1274 *(uint8_t *)arg
= b
| 0xc0;
1276 case CHR_IOCTL_PP_WRITE_CONTROL
:
1277 b
= *(uint8_t *)arg
;
1278 if (ioctl(fd
, PPWCONTROL
, &b
) < 0)
1281 case CHR_IOCTL_PP_READ_STATUS
:
1282 if (ioctl(fd
, PPRSTATUS
, &b
) < 0)
1284 *(uint8_t *)arg
= b
;
1286 case CHR_IOCTL_PP_DATA_DIR
:
1287 if (ioctl(fd
, PPDATADIR
, (int *)arg
) < 0)
1290 case CHR_IOCTL_PP_EPP_READ_ADDR
:
1291 if (pp_hw_mode(drv
, IEEE1284_MODE_EPP
|IEEE1284_ADDR
)) {
1292 struct ParallelIOArg
*parg
= arg
;
1293 int n
= read(fd
, parg
->buffer
, parg
->count
);
1294 if (n
!= parg
->count
) {
1299 case CHR_IOCTL_PP_EPP_READ
:
1300 if (pp_hw_mode(drv
, IEEE1284_MODE_EPP
)) {
1301 struct ParallelIOArg
*parg
= arg
;
1302 int n
= read(fd
, parg
->buffer
, parg
->count
);
1303 if (n
!= parg
->count
) {
1308 case CHR_IOCTL_PP_EPP_WRITE_ADDR
:
1309 if (pp_hw_mode(drv
, IEEE1284_MODE_EPP
|IEEE1284_ADDR
)) {
1310 struct ParallelIOArg
*parg
= arg
;
1311 int n
= write(fd
, parg
->buffer
, parg
->count
);
1312 if (n
!= parg
->count
) {
1317 case CHR_IOCTL_PP_EPP_WRITE
:
1318 if (pp_hw_mode(drv
, IEEE1284_MODE_EPP
)) {
1319 struct ParallelIOArg
*parg
= arg
;
1320 int n
= write(fd
, parg
->buffer
, parg
->count
);
1321 if (n
!= parg
->count
) {
1332 static void pp_close(CharDriverState
*chr
)
1334 ParallelCharDriver
*drv
= chr
->opaque
;
1337 pp_hw_mode(drv
, IEEE1284_MODE_COMPAT
);
1338 ioctl(fd
, PPRELEASE
);
1341 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
1344 static CharDriverState
*qemu_chr_open_pp(QemuOpts
*opts
)
1346 const char *filename
= qemu_opt_get(opts
, "path");
1347 CharDriverState
*chr
;
1348 ParallelCharDriver
*drv
;
1351 TFR(fd
= open(filename
, O_RDWR
));
1355 if (ioctl(fd
, PPCLAIM
) < 0) {
1360 drv
= qemu_mallocz(sizeof(ParallelCharDriver
));
1362 drv
->mode
= IEEE1284_MODE_COMPAT
;
1364 chr
= qemu_mallocz(sizeof(CharDriverState
));
1365 chr
->chr_write
= null_chr_write
;
1366 chr
->chr_ioctl
= pp_ioctl
;
1367 chr
->chr_close
= pp_close
;
1370 qemu_chr_generic_open(chr
);
1374 #endif /* __linux__ */
1376 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
1377 static int pp_ioctl(CharDriverState
*chr
, int cmd
, void *arg
)
1379 int fd
= (int)(intptr_t)chr
->opaque
;
1383 case CHR_IOCTL_PP_READ_DATA
:
1384 if (ioctl(fd
, PPIGDATA
, &b
) < 0)
1386 *(uint8_t *)arg
= b
;
1388 case CHR_IOCTL_PP_WRITE_DATA
:
1389 b
= *(uint8_t *)arg
;
1390 if (ioctl(fd
, PPISDATA
, &b
) < 0)
1393 case CHR_IOCTL_PP_READ_CONTROL
:
1394 if (ioctl(fd
, PPIGCTRL
, &b
) < 0)
1396 *(uint8_t *)arg
= b
;
1398 case CHR_IOCTL_PP_WRITE_CONTROL
:
1399 b
= *(uint8_t *)arg
;
1400 if (ioctl(fd
, PPISCTRL
, &b
) < 0)
1403 case CHR_IOCTL_PP_READ_STATUS
:
1404 if (ioctl(fd
, PPIGSTATUS
, &b
) < 0)
1406 *(uint8_t *)arg
= b
;
1414 static CharDriverState
*qemu_chr_open_pp(QemuOpts
*opts
)
1416 const char *filename
= qemu_opt_get(opts
, "path");
1417 CharDriverState
*chr
;
1420 fd
= open(filename
, O_RDWR
);
1424 chr
= qemu_mallocz(sizeof(CharDriverState
));
1425 chr
->opaque
= (void *)(intptr_t)fd
;
1426 chr
->chr_write
= null_chr_write
;
1427 chr
->chr_ioctl
= pp_ioctl
;
1436 HANDLE hcom
, hrecv
, hsend
;
1437 OVERLAPPED orecv
, osend
;
1442 #define NSENDBUF 2048
1443 #define NRECVBUF 2048
1444 #define MAXCONNECT 1
1445 #define NTIMEOUT 5000
1447 static int win_chr_poll(void *opaque
);
1448 static int win_chr_pipe_poll(void *opaque
);
1450 static void win_chr_close(CharDriverState
*chr
)
1452 WinCharState
*s
= chr
->opaque
;
1455 CloseHandle(s
->hsend
);
1459 CloseHandle(s
->hrecv
);
1463 CloseHandle(s
->hcom
);
1467 qemu_del_polling_cb(win_chr_pipe_poll
, chr
);
1469 qemu_del_polling_cb(win_chr_poll
, chr
);
1471 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
1474 static int win_chr_init(CharDriverState
*chr
, const char *filename
)
1476 WinCharState
*s
= chr
->opaque
;
1478 COMMTIMEOUTS cto
= { 0, 0, 0, 0, 0};
1483 s
->hsend
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1485 fprintf(stderr
, "Failed CreateEvent\n");
1488 s
->hrecv
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1490 fprintf(stderr
, "Failed CreateEvent\n");
1494 s
->hcom
= CreateFile(filename
, GENERIC_READ
|GENERIC_WRITE
, 0, NULL
,
1495 OPEN_EXISTING
, FILE_FLAG_OVERLAPPED
, 0);
1496 if (s
->hcom
== INVALID_HANDLE_VALUE
) {
1497 fprintf(stderr
, "Failed CreateFile (%lu)\n", GetLastError());
1502 if (!SetupComm(s
->hcom
, NRECVBUF
, NSENDBUF
)) {
1503 fprintf(stderr
, "Failed SetupComm\n");
1507 ZeroMemory(&comcfg
, sizeof(COMMCONFIG
));
1508 size
= sizeof(COMMCONFIG
);
1509 GetDefaultCommConfig(filename
, &comcfg
, &size
);
1510 comcfg
.dcb
.DCBlength
= sizeof(DCB
);
1511 CommConfigDialog(filename
, NULL
, &comcfg
);
1513 if (!SetCommState(s
->hcom
, &comcfg
.dcb
)) {
1514 fprintf(stderr
, "Failed SetCommState\n");
1518 if (!SetCommMask(s
->hcom
, EV_ERR
)) {
1519 fprintf(stderr
, "Failed SetCommMask\n");
1523 cto
.ReadIntervalTimeout
= MAXDWORD
;
1524 if (!SetCommTimeouts(s
->hcom
, &cto
)) {
1525 fprintf(stderr
, "Failed SetCommTimeouts\n");
1529 if (!ClearCommError(s
->hcom
, &err
, &comstat
)) {
1530 fprintf(stderr
, "Failed ClearCommError\n");
1533 qemu_add_polling_cb(win_chr_poll
, chr
);
1541 static int win_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len1
)
1543 WinCharState
*s
= chr
->opaque
;
1544 DWORD len
, ret
, size
, err
;
1547 ZeroMemory(&s
->osend
, sizeof(s
->osend
));
1548 s
->osend
.hEvent
= s
->hsend
;
1551 ret
= WriteFile(s
->hcom
, buf
, len
, &size
, &s
->osend
);
1553 ret
= WriteFile(s
->hcom
, buf
, len
, &size
, NULL
);
1555 err
= GetLastError();
1556 if (err
== ERROR_IO_PENDING
) {
1557 ret
= GetOverlappedResult(s
->hcom
, &s
->osend
, &size
, TRUE
);
1575 static int win_chr_read_poll(CharDriverState
*chr
)
1577 WinCharState
*s
= chr
->opaque
;
1579 s
->max_size
= qemu_chr_can_read(chr
);
1583 static void win_chr_readfile(CharDriverState
*chr
)
1585 WinCharState
*s
= chr
->opaque
;
1587 uint8_t buf
[READ_BUF_LEN
];
1590 ZeroMemory(&s
->orecv
, sizeof(s
->orecv
));
1591 s
->orecv
.hEvent
= s
->hrecv
;
1592 ret
= ReadFile(s
->hcom
, buf
, s
->len
, &size
, &s
->orecv
);
1594 err
= GetLastError();
1595 if (err
== ERROR_IO_PENDING
) {
1596 ret
= GetOverlappedResult(s
->hcom
, &s
->orecv
, &size
, TRUE
);
1601 qemu_chr_read(chr
, buf
, size
);
1605 static void win_chr_read(CharDriverState
*chr
)
1607 WinCharState
*s
= chr
->opaque
;
1609 if (s
->len
> s
->max_size
)
1610 s
->len
= s
->max_size
;
1614 win_chr_readfile(chr
);
1617 static int win_chr_poll(void *opaque
)
1619 CharDriverState
*chr
= opaque
;
1620 WinCharState
*s
= chr
->opaque
;
1624 ClearCommError(s
->hcom
, &comerr
, &status
);
1625 if (status
.cbInQue
> 0) {
1626 s
->len
= status
.cbInQue
;
1627 win_chr_read_poll(chr
);
1634 static CharDriverState
*qemu_chr_open_win(QemuOpts
*opts
)
1636 const char *filename
= qemu_opt_get(opts
, "path");
1637 CharDriverState
*chr
;
1640 chr
= qemu_mallocz(sizeof(CharDriverState
));
1641 s
= qemu_mallocz(sizeof(WinCharState
));
1643 chr
->chr_write
= win_chr_write
;
1644 chr
->chr_close
= win_chr_close
;
1646 if (win_chr_init(chr
, filename
) < 0) {
1651 qemu_chr_generic_open(chr
);
1655 static int win_chr_pipe_poll(void *opaque
)
1657 CharDriverState
*chr
= opaque
;
1658 WinCharState
*s
= chr
->opaque
;
1661 PeekNamedPipe(s
->hcom
, NULL
, 0, NULL
, &size
, NULL
);
1664 win_chr_read_poll(chr
);
1671 static int win_chr_pipe_init(CharDriverState
*chr
, const char *filename
)
1673 WinCharState
*s
= chr
->opaque
;
1681 s
->hsend
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1683 fprintf(stderr
, "Failed CreateEvent\n");
1686 s
->hrecv
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1688 fprintf(stderr
, "Failed CreateEvent\n");
1692 snprintf(openname
, sizeof(openname
), "\\\\.\\pipe\\%s", filename
);
1693 s
->hcom
= CreateNamedPipe(openname
, PIPE_ACCESS_DUPLEX
| FILE_FLAG_OVERLAPPED
,
1694 PIPE_TYPE_BYTE
| PIPE_READMODE_BYTE
|
1696 MAXCONNECT
, NSENDBUF
, NRECVBUF
, NTIMEOUT
, NULL
);
1697 if (s
->hcom
== INVALID_HANDLE_VALUE
) {
1698 fprintf(stderr
, "Failed CreateNamedPipe (%lu)\n", GetLastError());
1703 ZeroMemory(&ov
, sizeof(ov
));
1704 ov
.hEvent
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1705 ret
= ConnectNamedPipe(s
->hcom
, &ov
);
1707 fprintf(stderr
, "Failed ConnectNamedPipe\n");
1711 ret
= GetOverlappedResult(s
->hcom
, &ov
, &size
, TRUE
);
1713 fprintf(stderr
, "Failed GetOverlappedResult\n");
1715 CloseHandle(ov
.hEvent
);
1722 CloseHandle(ov
.hEvent
);
1725 qemu_add_polling_cb(win_chr_pipe_poll
, chr
);
1734 static CharDriverState
*qemu_chr_open_win_pipe(QemuOpts
*opts
)
1736 const char *filename
= qemu_opt_get(opts
, "path");
1737 CharDriverState
*chr
;
1740 chr
= qemu_mallocz(sizeof(CharDriverState
));
1741 s
= qemu_mallocz(sizeof(WinCharState
));
1743 chr
->chr_write
= win_chr_write
;
1744 chr
->chr_close
= win_chr_close
;
1746 if (win_chr_pipe_init(chr
, filename
) < 0) {
1751 qemu_chr_generic_open(chr
);
1755 static CharDriverState
*qemu_chr_open_win_file(HANDLE fd_out
)
1757 CharDriverState
*chr
;
1760 chr
= qemu_mallocz(sizeof(CharDriverState
));
1761 s
= qemu_mallocz(sizeof(WinCharState
));
1764 chr
->chr_write
= win_chr_write
;
1765 qemu_chr_generic_open(chr
);
1769 static CharDriverState
*qemu_chr_open_win_con(QemuOpts
*opts
)
1771 return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE
));
1774 static CharDriverState
*qemu_chr_open_win_file_out(QemuOpts
*opts
)
1776 const char *file_out
= qemu_opt_get(opts
, "path");
1779 fd_out
= CreateFile(file_out
, GENERIC_WRITE
, FILE_SHARE_READ
, NULL
,
1780 OPEN_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
1781 if (fd_out
== INVALID_HANDLE_VALUE
)
1784 return qemu_chr_open_win_file(fd_out
);
1786 #endif /* !_WIN32 */
1788 /***********************************************************/
1789 /* UDP Net console */
1793 uint8_t buf
[READ_BUF_LEN
];
1799 static int udp_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
1801 NetCharDriver
*s
= chr
->opaque
;
1803 return send(s
->fd
, (const void *)buf
, len
, 0);
1806 static int udp_chr_read_poll(void *opaque
)
1808 CharDriverState
*chr
= opaque
;
1809 NetCharDriver
*s
= chr
->opaque
;
1811 s
->max_size
= qemu_chr_can_read(chr
);
1813 /* If there were any stray characters in the queue process them
1816 while (s
->max_size
> 0 && s
->bufptr
< s
->bufcnt
) {
1817 qemu_chr_read(chr
, &s
->buf
[s
->bufptr
], 1);
1819 s
->max_size
= qemu_chr_can_read(chr
);
1824 static void udp_chr_read(void *opaque
)
1826 CharDriverState
*chr
= opaque
;
1827 NetCharDriver
*s
= chr
->opaque
;
1829 if (s
->max_size
== 0)
1831 s
->bufcnt
= recv(s
->fd
, (void *)s
->buf
, sizeof(s
->buf
), 0);
1832 s
->bufptr
= s
->bufcnt
;
1837 while (s
->max_size
> 0 && s
->bufptr
< s
->bufcnt
) {
1838 qemu_chr_read(chr
, &s
->buf
[s
->bufptr
], 1);
1840 s
->max_size
= qemu_chr_can_read(chr
);
1844 static void udp_chr_update_read_handler(CharDriverState
*chr
)
1846 NetCharDriver
*s
= chr
->opaque
;
1849 qemu_set_fd_handler2(s
->fd
, udp_chr_read_poll
,
1850 udp_chr_read
, NULL
, chr
);
1854 static void udp_chr_close(CharDriverState
*chr
)
1856 NetCharDriver
*s
= chr
->opaque
;
1858 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1862 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
1865 static CharDriverState
*qemu_chr_open_udp(QemuOpts
*opts
)
1867 CharDriverState
*chr
= NULL
;
1868 NetCharDriver
*s
= NULL
;
1871 chr
= qemu_mallocz(sizeof(CharDriverState
));
1872 s
= qemu_mallocz(sizeof(NetCharDriver
));
1874 fd
= inet_dgram_opts(opts
);
1876 fprintf(stderr
, "inet_dgram_opts failed\n");
1884 chr
->chr_write
= udp_chr_write
;
1885 chr
->chr_update_read_handler
= udp_chr_update_read_handler
;
1886 chr
->chr_close
= udp_chr_close
;
1899 /***********************************************************/
1900 /* TCP Net console */
1912 static void tcp_chr_accept(void *opaque
);
1914 static int tcp_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
1916 TCPCharDriver
*s
= chr
->opaque
;
1918 return send_all(s
->fd
, buf
, len
);
1920 /* XXX: indicate an error ? */
1925 static int tcp_chr_read_poll(void *opaque
)
1927 CharDriverState
*chr
= opaque
;
1928 TCPCharDriver
*s
= chr
->opaque
;
1931 s
->max_size
= qemu_chr_can_read(chr
);
1936 #define IAC_BREAK 243
1937 static void tcp_chr_process_IAC_bytes(CharDriverState
*chr
,
1939 uint8_t *buf
, int *size
)
1941 /* Handle any telnet client's basic IAC options to satisfy char by
1942 * char mode with no echo. All IAC options will be removed from
1943 * the buf and the do_telnetopt variable will be used to track the
1944 * state of the width of the IAC information.
1946 * IAC commands come in sets of 3 bytes with the exception of the
1947 * "IAC BREAK" command and the double IAC.
1953 for (i
= 0; i
< *size
; i
++) {
1954 if (s
->do_telnetopt
> 1) {
1955 if ((unsigned char)buf
[i
] == IAC
&& s
->do_telnetopt
== 2) {
1956 /* Double IAC means send an IAC */
1960 s
->do_telnetopt
= 1;
1962 if ((unsigned char)buf
[i
] == IAC_BREAK
&& s
->do_telnetopt
== 2) {
1963 /* Handle IAC break commands by sending a serial break */
1964 qemu_chr_event(chr
, CHR_EVENT_BREAK
);
1969 if (s
->do_telnetopt
>= 4) {
1970 s
->do_telnetopt
= 1;
1973 if ((unsigned char)buf
[i
] == IAC
) {
1974 s
->do_telnetopt
= 2;
1985 static int tcp_get_msgfd(CharDriverState
*chr
)
1987 TCPCharDriver
*s
= chr
->opaque
;
1994 static void unix_process_msgfd(CharDriverState
*chr
, struct msghdr
*msg
)
1996 TCPCharDriver
*s
= chr
->opaque
;
1997 struct cmsghdr
*cmsg
;
1999 for (cmsg
= CMSG_FIRSTHDR(msg
); cmsg
; cmsg
= CMSG_NXTHDR(msg
, cmsg
)) {
2002 if (cmsg
->cmsg_len
!= CMSG_LEN(sizeof(int)) ||
2003 cmsg
->cmsg_level
!= SOL_SOCKET
||
2004 cmsg
->cmsg_type
!= SCM_RIGHTS
)
2007 fd
= *((int *)CMSG_DATA(cmsg
));
2017 static ssize_t
tcp_chr_recv(CharDriverState
*chr
, char *buf
, size_t len
)
2019 TCPCharDriver
*s
= chr
->opaque
;
2020 struct msghdr msg
= { NULL
, };
2021 struct iovec iov
[1];
2023 struct cmsghdr cmsg
;
2024 char control
[CMSG_SPACE(sizeof(int))];
2028 iov
[0].iov_base
= buf
;
2029 iov
[0].iov_len
= len
;
2033 msg
.msg_control
= &msg_control
;
2034 msg
.msg_controllen
= sizeof(msg_control
);
2036 ret
= recvmsg(s
->fd
, &msg
, 0);
2037 if (ret
> 0 && s
->is_unix
)
2038 unix_process_msgfd(chr
, &msg
);
2043 static ssize_t
tcp_chr_recv(CharDriverState
*chr
, char *buf
, size_t len
)
2045 TCPCharDriver
*s
= chr
->opaque
;
2046 return recv(s
->fd
, buf
, len
, 0);
2050 static void tcp_chr_read(void *opaque
)
2052 CharDriverState
*chr
= opaque
;
2053 TCPCharDriver
*s
= chr
->opaque
;
2054 uint8_t buf
[READ_BUF_LEN
];
2057 if (!s
->connected
|| s
->max_size
<= 0)
2060 if (len
> s
->max_size
)
2062 size
= tcp_chr_recv(chr
, (void *)buf
, len
);
2064 /* connection closed */
2066 if (s
->listen_fd
>= 0) {
2067 qemu_set_fd_handler(s
->listen_fd
, tcp_chr_accept
, NULL
, chr
);
2069 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
2072 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
2073 } else if (size
> 0) {
2074 if (s
->do_telnetopt
)
2075 tcp_chr_process_IAC_bytes(chr
, s
, buf
, &size
);
2077 qemu_chr_read(chr
, buf
, size
);
2082 CharDriverState
*qemu_chr_open_eventfd(int eventfd
)
2084 return qemu_chr_open_fd(eventfd
, eventfd
);
2088 static void tcp_chr_connect(void *opaque
)
2090 CharDriverState
*chr
= opaque
;
2091 TCPCharDriver
*s
= chr
->opaque
;
2094 qemu_set_fd_handler2(s
->fd
, tcp_chr_read_poll
,
2095 tcp_chr_read
, NULL
, chr
);
2096 qemu_chr_generic_open(chr
);
2099 #define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2100 static void tcp_chr_telnet_init(int fd
)
2103 /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2104 IACSET(buf
, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
2105 send(fd
, (char *)buf
, 3, 0);
2106 IACSET(buf
, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
2107 send(fd
, (char *)buf
, 3, 0);
2108 IACSET(buf
, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
2109 send(fd
, (char *)buf
, 3, 0);
2110 IACSET(buf
, 0xff, 0xfd, 0x00); /* IAC DO Binary */
2111 send(fd
, (char *)buf
, 3, 0);
2114 static void socket_set_nodelay(int fd
)
2117 setsockopt(fd
, IPPROTO_TCP
, TCP_NODELAY
, (char *)&val
, sizeof(val
));
2120 static void tcp_chr_accept(void *opaque
)
2122 CharDriverState
*chr
= opaque
;
2123 TCPCharDriver
*s
= chr
->opaque
;
2124 struct sockaddr_in saddr
;
2126 struct sockaddr_un uaddr
;
2128 struct sockaddr
*addr
;
2135 len
= sizeof(uaddr
);
2136 addr
= (struct sockaddr
*)&uaddr
;
2140 len
= sizeof(saddr
);
2141 addr
= (struct sockaddr
*)&saddr
;
2143 fd
= qemu_accept(s
->listen_fd
, addr
, &len
);
2144 if (fd
< 0 && errno
!= EINTR
) {
2146 } else if (fd
>= 0) {
2147 if (s
->do_telnetopt
)
2148 tcp_chr_telnet_init(fd
);
2152 socket_set_nonblock(fd
);
2154 socket_set_nodelay(fd
);
2156 qemu_set_fd_handler(s
->listen_fd
, NULL
, NULL
, NULL
);
2157 tcp_chr_connect(chr
);
2160 static void tcp_chr_close(CharDriverState
*chr
)
2162 TCPCharDriver
*s
= chr
->opaque
;
2164 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
2167 if (s
->listen_fd
>= 0) {
2168 qemu_set_fd_handler(s
->listen_fd
, NULL
, NULL
, NULL
);
2169 closesocket(s
->listen_fd
);
2172 qemu_chr_event(chr
, CHR_EVENT_CLOSED
);
2175 static CharDriverState
*qemu_chr_open_socket(QemuOpts
*opts
)
2177 CharDriverState
*chr
= NULL
;
2178 TCPCharDriver
*s
= NULL
;
2186 is_listen
= qemu_opt_get_bool(opts
, "server", 0);
2187 is_waitconnect
= qemu_opt_get_bool(opts
, "wait", 1);
2188 is_telnet
= qemu_opt_get_bool(opts
, "telnet", 0);
2189 do_nodelay
= !qemu_opt_get_bool(opts
, "delay", 1);
2190 is_unix
= qemu_opt_get(opts
, "path") != NULL
;
2194 chr
= qemu_mallocz(sizeof(CharDriverState
));
2195 s
= qemu_mallocz(sizeof(TCPCharDriver
));
2199 fd
= unix_listen_opts(opts
);
2201 fd
= unix_connect_opts(opts
);
2205 fd
= inet_listen_opts(opts
, 0);
2207 fd
= inet_connect_opts(opts
);
2213 if (!is_waitconnect
)
2214 socket_set_nonblock(fd
);
2220 s
->is_unix
= is_unix
;
2221 s
->do_nodelay
= do_nodelay
&& !is_unix
;
2224 chr
->chr_write
= tcp_chr_write
;
2225 chr
->chr_close
= tcp_chr_close
;
2226 chr
->get_msgfd
= tcp_get_msgfd
;
2230 qemu_set_fd_handler(s
->listen_fd
, tcp_chr_accept
, NULL
, chr
);
2232 s
->do_telnetopt
= 1;
2237 socket_set_nodelay(fd
);
2238 tcp_chr_connect(chr
);
2241 /* for "info chardev" monitor command */
2242 chr
->filename
= qemu_malloc(256);
2244 snprintf(chr
->filename
, 256, "unix:%s%s",
2245 qemu_opt_get(opts
, "path"),
2246 qemu_opt_get_bool(opts
, "server", 0) ? ",server" : "");
2247 } else if (is_telnet
) {
2248 snprintf(chr
->filename
, 256, "telnet:%s:%s%s",
2249 qemu_opt_get(opts
, "host"), qemu_opt_get(opts
, "port"),
2250 qemu_opt_get_bool(opts
, "server", 0) ? ",server" : "");
2252 snprintf(chr
->filename
, 256, "tcp:%s:%s%s",
2253 qemu_opt_get(opts
, "host"), qemu_opt_get(opts
, "port"),
2254 qemu_opt_get_bool(opts
, "server", 0) ? ",server" : "");
2257 if (is_listen
&& is_waitconnect
) {
2258 printf("QEMU waiting for connection on: %s\n",
2260 tcp_chr_accept(chr
);
2261 socket_set_nonblock(s
->listen_fd
);
2273 /***********************************************************/
2274 /* Memory chardev */
2277 size_t outbuf_capacity
;
2281 static int mem_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
2283 MemoryDriver
*d
= chr
->opaque
;
2285 /* TODO: the QString implementation has the same code, we should
2286 * introduce a generic way to do this in cutils.c */
2287 if (d
->outbuf_capacity
< d
->outbuf_size
+ len
) {
2289 d
->outbuf_capacity
+= len
;
2290 d
->outbuf_capacity
*= 2;
2291 d
->outbuf
= qemu_realloc(d
->outbuf
, d
->outbuf_capacity
);
2294 memcpy(d
->outbuf
+ d
->outbuf_size
, buf
, len
);
2295 d
->outbuf_size
+= len
;
2300 void qemu_chr_init_mem(CharDriverState
*chr
)
2304 d
= qemu_malloc(sizeof(*d
));
2306 d
->outbuf_capacity
= 4096;
2307 d
->outbuf
= qemu_mallocz(d
->outbuf_capacity
);
2309 memset(chr
, 0, sizeof(*chr
));
2311 chr
->chr_write
= mem_chr_write
;
2314 QString
*qemu_chr_mem_to_qs(CharDriverState
*chr
)
2316 MemoryDriver
*d
= chr
->opaque
;
2317 return qstring_from_substr((char *) d
->outbuf
, 0, d
->outbuf_size
- 1);
2320 /* NOTE: this driver can not be closed with qemu_chr_close()! */
2321 void qemu_chr_close_mem(CharDriverState
*chr
)
2323 MemoryDriver
*d
= chr
->opaque
;
2325 qemu_free(d
->outbuf
);
2326 qemu_free(chr
->opaque
);
2328 chr
->chr_write
= NULL
;
2331 size_t qemu_chr_mem_osize(const CharDriverState
*chr
)
2333 const MemoryDriver
*d
= chr
->opaque
;
2334 return d
->outbuf_size
;
2337 QemuOpts
*qemu_chr_parse_compat(const char *label
, const char *filename
)
2339 char host
[65], port
[33], width
[8], height
[8];
2344 opts
= qemu_opts_create(qemu_find_opts("chardev"), label
, 1);
2348 if (strstart(filename
, "mon:", &p
)) {
2350 qemu_opt_set(opts
, "mux", "on");
2353 if (strcmp(filename
, "null") == 0 ||
2354 strcmp(filename
, "pty") == 0 ||
2355 strcmp(filename
, "msmouse") == 0 ||
2356 strcmp(filename
, "braille") == 0 ||
2357 strcmp(filename
, "stdio") == 0) {
2358 qemu_opt_set(opts
, "backend", filename
);
2361 if (strstart(filename
, "vc", &p
)) {
2362 qemu_opt_set(opts
, "backend", "vc");
2364 if (sscanf(p
+1, "%8[0-9]x%8[0-9]", width
, height
) == 2) {
2366 qemu_opt_set(opts
, "width", width
);
2367 qemu_opt_set(opts
, "height", height
);
2368 } else if (sscanf(p
+1, "%8[0-9]Cx%8[0-9]C", width
, height
) == 2) {
2370 qemu_opt_set(opts
, "cols", width
);
2371 qemu_opt_set(opts
, "rows", height
);
2378 if (strcmp(filename
, "con:") == 0) {
2379 qemu_opt_set(opts
, "backend", "console");
2382 if (strstart(filename
, "COM", NULL
)) {
2383 qemu_opt_set(opts
, "backend", "serial");
2384 qemu_opt_set(opts
, "path", filename
);
2387 if (strstart(filename
, "file:", &p
)) {
2388 qemu_opt_set(opts
, "backend", "file");
2389 qemu_opt_set(opts
, "path", p
);
2392 if (strstart(filename
, "pipe:", &p
)) {
2393 qemu_opt_set(opts
, "backend", "pipe");
2394 qemu_opt_set(opts
, "path", p
);
2397 if (strstart(filename
, "tcp:", &p
) ||
2398 strstart(filename
, "telnet:", &p
)) {
2399 if (sscanf(p
, "%64[^:]:%32[^,]%n", host
, port
, &pos
) < 2) {
2401 if (sscanf(p
, ":%32[^,]%n", port
, &pos
) < 1)
2404 qemu_opt_set(opts
, "backend", "socket");
2405 qemu_opt_set(opts
, "host", host
);
2406 qemu_opt_set(opts
, "port", port
);
2407 if (p
[pos
] == ',') {
2408 if (qemu_opts_do_parse(opts
, p
+pos
+1, NULL
) != 0)
2411 if (strstart(filename
, "telnet:", &p
))
2412 qemu_opt_set(opts
, "telnet", "on");
2415 if (strstart(filename
, "udp:", &p
)) {
2416 qemu_opt_set(opts
, "backend", "udp");
2417 if (sscanf(p
, "%64[^:]:%32[^@,]%n", host
, port
, &pos
) < 2) {
2419 if (sscanf(p
, ":%32[^@,]%n", port
, &pos
) < 1) {
2423 qemu_opt_set(opts
, "host", host
);
2424 qemu_opt_set(opts
, "port", port
);
2425 if (p
[pos
] == '@') {
2427 if (sscanf(p
, "%64[^:]:%32[^,]%n", host
, port
, &pos
) < 2) {
2429 if (sscanf(p
, ":%32[^,]%n", port
, &pos
) < 1) {
2433 qemu_opt_set(opts
, "localaddr", host
);
2434 qemu_opt_set(opts
, "localport", port
);
2438 if (strstart(filename
, "unix:", &p
)) {
2439 qemu_opt_set(opts
, "backend", "socket");
2440 if (qemu_opts_do_parse(opts
, p
, "path") != 0)
2444 if (strstart(filename
, "/dev/parport", NULL
) ||
2445 strstart(filename
, "/dev/ppi", NULL
)) {
2446 qemu_opt_set(opts
, "backend", "parport");
2447 qemu_opt_set(opts
, "path", filename
);
2450 if (strstart(filename
, "/dev/", NULL
)) {
2451 qemu_opt_set(opts
, "backend", "tty");
2452 qemu_opt_set(opts
, "path", filename
);
2457 qemu_opts_del(opts
);
2461 static const struct {
2463 CharDriverState
*(*open
)(QemuOpts
*opts
);
2464 } backend_table
[] = {
2465 { .name
= "null", .open
= qemu_chr_open_null
},
2466 { .name
= "socket", .open
= qemu_chr_open_socket
},
2467 { .name
= "udp", .open
= qemu_chr_open_udp
},
2468 { .name
= "msmouse", .open
= qemu_chr_open_msmouse
},
2469 { .name
= "vc", .open
= text_console_init
},
2471 { .name
= "file", .open
= qemu_chr_open_win_file_out
},
2472 { .name
= "pipe", .open
= qemu_chr_open_win_pipe
},
2473 { .name
= "console", .open
= qemu_chr_open_win_con
},
2474 { .name
= "serial", .open
= qemu_chr_open_win
},
2476 { .name
= "file", .open
= qemu_chr_open_file_out
},
2477 { .name
= "pipe", .open
= qemu_chr_open_pipe
},
2478 { .name
= "pty", .open
= qemu_chr_open_pty
},
2479 { .name
= "stdio", .open
= qemu_chr_open_stdio
},
2481 #ifdef CONFIG_BRLAPI
2482 { .name
= "braille", .open
= chr_baum_init
},
2484 #if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
2485 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
2486 || defined(__FreeBSD_kernel__)
2487 { .name
= "tty", .open
= qemu_chr_open_tty
},
2489 #if defined(__linux__) || defined(__FreeBSD__) || defined(__DragonFly__) \
2490 || defined(__FreeBSD_kernel__)
2491 { .name
= "parport", .open
= qemu_chr_open_pp
},
2494 { .name
= "spicevmc", .open
= qemu_chr_open_spice
},
2498 CharDriverState
*qemu_chr_open_opts(QemuOpts
*opts
,
2499 void (*init
)(struct CharDriverState
*s
))
2501 CharDriverState
*chr
;
2504 if (qemu_opts_id(opts
) == NULL
) {
2505 fprintf(stderr
, "chardev: no id specified\n");
2509 if (qemu_opt_get(opts
, "backend") == NULL
) {
2510 fprintf(stderr
, "chardev: \"%s\" missing backend\n",
2511 qemu_opts_id(opts
));
2514 for (i
= 0; i
< ARRAY_SIZE(backend_table
); i
++) {
2515 if (strcmp(backend_table
[i
].name
, qemu_opt_get(opts
, "backend")) == 0)
2518 if (i
== ARRAY_SIZE(backend_table
)) {
2519 fprintf(stderr
, "chardev: backend \"%s\" not found\n",
2520 qemu_opt_get(opts
, "backend"));
2524 chr
= backend_table
[i
].open(opts
);
2526 fprintf(stderr
, "chardev: opening backend \"%s\" failed\n",
2527 qemu_opt_get(opts
, "backend"));
2532 chr
->filename
= qemu_strdup(qemu_opt_get(opts
, "backend"));
2534 QTAILQ_INSERT_TAIL(&chardevs
, chr
, next
);
2536 if (qemu_opt_get_bool(opts
, "mux", 0)) {
2537 CharDriverState
*base
= chr
;
2538 int len
= strlen(qemu_opts_id(opts
)) + 6;
2539 base
->label
= qemu_malloc(len
);
2540 snprintf(base
->label
, len
, "%s-base", qemu_opts_id(opts
));
2541 chr
= qemu_chr_open_mux(base
);
2542 chr
->filename
= base
->filename
;
2543 QTAILQ_INSERT_TAIL(&chardevs
, chr
, next
);
2545 chr
->label
= qemu_strdup(qemu_opts_id(opts
));
2549 CharDriverState
*qemu_chr_open(const char *label
, const char *filename
, void (*init
)(struct CharDriverState
*s
))
2552 CharDriverState
*chr
;
2555 if (strstart(filename
, "chardev:", &p
)) {
2556 return qemu_chr_find(p
);
2559 opts
= qemu_chr_parse_compat(label
, filename
);
2563 chr
= qemu_chr_open_opts(opts
, init
);
2564 if (chr
&& qemu_opt_get_bool(opts
, "mux", 0)) {
2565 monitor_init(chr
, MONITOR_USE_READLINE
);
2567 qemu_opts_del(opts
);
2571 void qemu_chr_set_echo(struct CharDriverState
*chr
, bool echo
)
2573 if (chr
->chr_set_echo
) {
2574 chr
->chr_set_echo(chr
, echo
);
2578 void qemu_chr_close(CharDriverState
*chr
)
2580 QTAILQ_REMOVE(&chardevs
, chr
, next
);
2582 chr
->chr_close(chr
);
2583 qemu_free(chr
->filename
);
2584 qemu_free(chr
->label
);
2588 static void qemu_chr_qlist_iter(QObject
*obj
, void *opaque
)
2591 Monitor
*mon
= opaque
;
2593 chr_dict
= qobject_to_qdict(obj
);
2594 monitor_printf(mon
, "%s: filename=%s\n", qdict_get_str(chr_dict
, "label"),
2595 qdict_get_str(chr_dict
, "filename"));
2598 void qemu_chr_info_print(Monitor
*mon
, const QObject
*ret_data
)
2600 qlist_iter(qobject_to_qlist(ret_data
), qemu_chr_qlist_iter
, mon
);
2603 void qemu_chr_info(Monitor
*mon
, QObject
**ret_data
)
2606 CharDriverState
*chr
;
2608 chr_list
= qlist_new();
2610 QTAILQ_FOREACH(chr
, &chardevs
, next
) {
2611 QObject
*obj
= qobject_from_jsonf("{ 'label': %s, 'filename': %s }",
2612 chr
->label
, chr
->filename
);
2613 qlist_append_obj(chr_list
, obj
);
2616 *ret_data
= QOBJECT(chr_list
);
2619 CharDriverState
*qemu_chr_find(const char *name
)
2621 CharDriverState
*chr
;
2623 QTAILQ_FOREACH(chr
, &chardevs
, next
) {
2624 if (strcmp(chr
->label
, name
) != 0)