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
25 #include "qemu/osdep.h"
26 #include "chardev/char.h"
27 #include "io/channel-socket.h"
28 #include "io/channel-tls.h"
29 #include "io/channel-websock.h"
30 #include "io/net-listener.h"
31 #include "qemu/error-report.h"
32 #include "qemu/module.h"
33 #include "qemu/option.h"
34 #include "qapi/error.h"
35 #include "qapi/clone-visitor.h"
36 #include "qapi/qapi-visit-sockets.h"
37 #include "qemu/yank.h"
39 #include "chardev/char-io.h"
40 #include "qom/object.h"
42 /***********************************************************/
45 #define TCP_MAX_FDS 16
50 } TCPChardevTelnetInit
;
53 TCP_CHARDEV_STATE_DISCONNECTED
,
54 TCP_CHARDEV_STATE_CONNECTING
,
55 TCP_CHARDEV_STATE_CONNECTED
,
58 struct SocketChardev
{
60 QIOChannel
*ioc
; /* Client I/O channel */
61 QIOChannelSocket
*sioc
; /* Client master channel */
62 QIONetListener
*listener
;
64 QCryptoTLSCreds
*tls_creds
;
66 TCPChardevState state
;
71 size_t read_msgfds_num
;
73 size_t write_msgfds_num
;
80 GSource
*telnet_source
;
81 TCPChardevTelnetInit
*telnet_init
;
85 GSource
*reconnect_timer
;
86 int64_t reconnect_time
;
87 bool connect_err_reported
;
89 QIOTask
*connect_task
;
91 typedef struct SocketChardev SocketChardev
;
93 DECLARE_INSTANCE_CHECKER(SocketChardev
, SOCKET_CHARDEV
,
96 static gboolean
socket_reconnect_timeout(gpointer opaque
);
97 static void tcp_chr_telnet_init(Chardev
*chr
);
99 static void tcp_chr_change_state(SocketChardev
*s
, TCPChardevState state
)
102 case TCP_CHARDEV_STATE_DISCONNECTED
:
104 case TCP_CHARDEV_STATE_CONNECTING
:
105 assert(s
->state
== TCP_CHARDEV_STATE_DISCONNECTED
);
107 case TCP_CHARDEV_STATE_CONNECTED
:
108 assert(s
->state
== TCP_CHARDEV_STATE_CONNECTING
);
114 static void tcp_chr_reconn_timer_cancel(SocketChardev
*s
)
116 if (s
->reconnect_timer
) {
117 g_source_destroy(s
->reconnect_timer
);
118 g_source_unref(s
->reconnect_timer
);
119 s
->reconnect_timer
= NULL
;
123 static void qemu_chr_socket_restart_timer(Chardev
*chr
)
125 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
128 assert(s
->state
== TCP_CHARDEV_STATE_DISCONNECTED
);
129 assert(!s
->reconnect_timer
);
130 name
= g_strdup_printf("chardev-socket-reconnect-%s", chr
->label
);
131 s
->reconnect_timer
= qemu_chr_timeout_add_ms(chr
,
132 s
->reconnect_time
* 1000,
133 socket_reconnect_timeout
,
135 g_source_set_name(s
->reconnect_timer
, name
);
139 static void check_report_connect_error(Chardev
*chr
,
142 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
144 if (!s
->connect_err_reported
) {
145 error_reportf_err(err
,
146 "Unable to connect character device %s: ",
148 s
->connect_err_reported
= true;
152 qemu_chr_socket_restart_timer(chr
);
155 static void tcp_chr_accept(QIONetListener
*listener
,
156 QIOChannelSocket
*cioc
,
159 static int tcp_chr_read_poll(void *opaque
);
160 static void tcp_chr_disconnect_locked(Chardev
*chr
);
162 /* Called with chr_write_lock held. */
163 static int tcp_chr_write(Chardev
*chr
, const uint8_t *buf
, int len
)
165 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
167 if (s
->state
== TCP_CHARDEV_STATE_CONNECTED
) {
168 int ret
= io_channel_send_full(s
->ioc
, buf
, len
,
170 s
->write_msgfds_num
);
172 /* free the written msgfds in any cases
173 * other than ret < 0 && errno == EAGAIN
175 if (!(ret
< 0 && EAGAIN
== errno
)
176 && s
->write_msgfds_num
) {
177 g_free(s
->write_msgfds
);
179 s
->write_msgfds_num
= 0;
182 if (ret
< 0 && errno
!= EAGAIN
) {
183 if (tcp_chr_read_poll(chr
) <= 0) {
184 /* Perform disconnect and return error. */
185 tcp_chr_disconnect_locked(chr
);
186 } /* else let the read handler finish it properly */
191 /* Indicate an error. */
197 static int tcp_chr_read_poll(void *opaque
)
199 Chardev
*chr
= CHARDEV(opaque
);
200 SocketChardev
*s
= SOCKET_CHARDEV(opaque
);
201 if (s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) {
204 s
->max_size
= qemu_chr_be_can_write(chr
);
208 static void tcp_chr_process_IAC_bytes(Chardev
*chr
,
210 uint8_t *buf
, int *size
)
212 /* Handle any telnet or tn3270 client's basic IAC options.
213 * For telnet options, it satisfies char by char mode with no echo.
214 * For tn3270 options, it satisfies binary mode with EOR.
215 * All IAC options will be removed from the buf and the do_opt
216 * pointer will be used to track the state of the width of the
219 * RFC854: "All TELNET commands consist of at least a two byte sequence.
220 * The commands dealing with option negotiation are three byte sequences,
221 * the third byte being the code for the option referenced."
222 * "IAC BREAK", "IAC IP", "IAC NOP" and the double IAC are two bytes.
223 * "IAC SB", "IAC SE" and "IAC EOR" are saved to split up data boundary
225 * NOP, Break and Interrupt Process(IP) might be encountered during a TN3270
226 * session, and NOP and IP need to be done later.
232 for (i
= 0; i
< *size
; i
++) {
233 if (s
->do_telnetopt
> 1) {
234 if ((unsigned char)buf
[i
] == IAC
&& s
->do_telnetopt
== 2) {
235 /* Double IAC means send an IAC */
242 if ((unsigned char)buf
[i
] == IAC_BREAK
243 && s
->do_telnetopt
== 2) {
244 /* Handle IAC break commands by sending a serial break */
245 qemu_chr_be_event(chr
, CHR_EVENT_BREAK
);
247 } else if (s
->is_tn3270
&& ((unsigned char)buf
[i
] == IAC_EOR
248 || (unsigned char)buf
[i
] == IAC_SB
249 || (unsigned char)buf
[i
] == IAC_SE
)
250 && s
->do_telnetopt
== 2) {
254 } else if (s
->is_tn3270
&& ((unsigned char)buf
[i
] == IAC_IP
255 || (unsigned char)buf
[i
] == IAC_NOP
)
256 && s
->do_telnetopt
== 2) {
257 /* TODO: IP and NOP need to be implemented later. */
262 if (s
->do_telnetopt
>= 4) {
266 if ((unsigned char)buf
[i
] == IAC
) {
279 static int tcp_get_msgfds(Chardev
*chr
, int *fds
, int num
)
281 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
283 int to_copy
= (s
->read_msgfds_num
< num
) ? s
->read_msgfds_num
: num
;
285 assert(num
<= TCP_MAX_FDS
);
290 memcpy(fds
, s
->read_msgfds
, to_copy
* sizeof(int));
292 /* Close unused fds */
293 for (i
= to_copy
; i
< s
->read_msgfds_num
; i
++) {
294 close(s
->read_msgfds
[i
]);
297 g_free(s
->read_msgfds
);
299 s
->read_msgfds_num
= 0;
305 static int tcp_set_msgfds(Chardev
*chr
, int *fds
, int num
)
307 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
309 /* clear old pending fd array */
310 g_free(s
->write_msgfds
);
311 s
->write_msgfds
= NULL
;
312 s
->write_msgfds_num
= 0;
314 if ((s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) ||
315 !qio_channel_has_feature(s
->ioc
,
316 QIO_CHANNEL_FEATURE_FD_PASS
)) {
321 s
->write_msgfds
= g_new(int, num
);
322 memcpy(s
->write_msgfds
, fds
, num
* sizeof(int));
325 s
->write_msgfds_num
= num
;
330 static ssize_t
tcp_chr_recv(Chardev
*chr
, char *buf
, size_t len
)
332 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
333 struct iovec iov
= { .iov_base
= buf
, .iov_len
= len
};
337 size_t msgfds_num
= 0;
339 if (qio_channel_has_feature(s
->ioc
, QIO_CHANNEL_FEATURE_FD_PASS
)) {
340 ret
= qio_channel_readv_full(s
->ioc
, &iov
, 1,
341 &msgfds
, &msgfds_num
,
344 ret
= qio_channel_readv_full(s
->ioc
, &iov
, 1,
349 if (ret
== QIO_CHANNEL_ERR_BLOCK
) {
352 } else if (ret
== -1) {
357 /* close and clean read_msgfds */
358 for (i
= 0; i
< s
->read_msgfds_num
; i
++) {
359 close(s
->read_msgfds
[i
]);
362 if (s
->read_msgfds_num
) {
363 g_free(s
->read_msgfds
);
366 s
->read_msgfds
= msgfds
;
367 s
->read_msgfds_num
= msgfds_num
;
370 for (i
= 0; i
< s
->read_msgfds_num
; i
++) {
371 int fd
= s
->read_msgfds
[i
];
376 /* O_NONBLOCK is preserved across SCM_RIGHTS so reset it */
379 #ifndef MSG_CMSG_CLOEXEC
380 qemu_set_cloexec(fd
);
387 static GSource
*tcp_chr_add_watch(Chardev
*chr
, GIOCondition cond
)
389 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
393 return qio_channel_create_watch(s
->ioc
, cond
);
396 static void remove_hup_source(SocketChardev
*s
)
398 if (s
->hup_source
!= NULL
) {
399 g_source_destroy(s
->hup_source
);
400 g_source_unref(s
->hup_source
);
401 s
->hup_source
= NULL
;
405 static void tcp_chr_free_connection(Chardev
*chr
)
407 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
410 if (s
->read_msgfds_num
) {
411 for (i
= 0; i
< s
->read_msgfds_num
; i
++) {
412 close(s
->read_msgfds
[i
]);
414 g_free(s
->read_msgfds
);
415 s
->read_msgfds
= NULL
;
416 s
->read_msgfds_num
= 0;
419 remove_hup_source(s
);
421 tcp_set_msgfds(chr
, NULL
, 0);
422 remove_fd_in_watch(chr
);
423 if (s
->registered_yank
&&
424 (s
->state
== TCP_CHARDEV_STATE_CONNECTING
425 || s
->state
== TCP_CHARDEV_STATE_CONNECTED
)) {
426 yank_unregister_function(CHARDEV_YANK_INSTANCE(chr
->label
),
427 yank_generic_iochannel
,
428 QIO_CHANNEL(s
->sioc
));
430 object_unref(OBJECT(s
->sioc
));
432 object_unref(OBJECT(s
->ioc
));
434 g_free(chr
->filename
);
435 chr
->filename
= NULL
;
436 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_DISCONNECTED
);
439 static const char *qemu_chr_socket_protocol(SocketChardev
*s
)
444 return s
->is_websock
? "websocket" : "tcp";
447 static char *qemu_chr_socket_address(SocketChardev
*s
, const char *prefix
)
449 switch (s
->addr
->type
) {
450 case SOCKET_ADDRESS_TYPE_INET
:
451 return g_strdup_printf("%s%s:%s:%s%s", prefix
,
452 qemu_chr_socket_protocol(s
),
453 s
->addr
->u
.inet
.host
,
454 s
->addr
->u
.inet
.port
,
455 s
->is_listen
? ",server=on" : "");
457 case SOCKET_ADDRESS_TYPE_UNIX
:
459 const char *tight
= "", *abstract
= "";
460 UnixSocketAddress
*sa
= &s
->addr
->u
.q_unix
;
463 if (sa
->has_abstract
&& sa
->abstract
) {
464 abstract
= ",abstract";
465 if (sa
->has_tight
&& sa
->tight
) {
471 return g_strdup_printf("%sunix:%s%s%s%s", prefix
, sa
->path
,
473 s
->is_listen
? ",server=on" : "");
476 case SOCKET_ADDRESS_TYPE_FD
:
477 return g_strdup_printf("%sfd:%s%s", prefix
, s
->addr
->u
.fd
.str
,
478 s
->is_listen
? ",server=on" : "");
480 case SOCKET_ADDRESS_TYPE_VSOCK
:
481 return g_strdup_printf("%svsock:%s:%s", prefix
,
482 s
->addr
->u
.vsock
.cid
,
483 s
->addr
->u
.vsock
.port
);
489 static void update_disconnected_filename(SocketChardev
*s
)
491 Chardev
*chr
= CHARDEV(s
);
493 g_free(chr
->filename
);
495 chr
->filename
= qemu_chr_socket_address(s
, "disconnected:");
497 chr
->filename
= g_strdup("disconnected:socket");
501 /* NB may be called even if tcp_chr_connect has not been
502 * reached, due to TLS or telnet initialization failure,
503 * so can *not* assume s->state == TCP_CHARDEV_STATE_CONNECTED
504 * This must be called with chr->chr_write_lock held.
506 static void tcp_chr_disconnect_locked(Chardev
*chr
)
508 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
509 bool emit_close
= s
->state
== TCP_CHARDEV_STATE_CONNECTED
;
511 tcp_chr_free_connection(chr
);
514 qio_net_listener_set_client_func_full(s
->listener
, tcp_chr_accept
,
515 chr
, NULL
, chr
->gcontext
);
517 update_disconnected_filename(s
);
519 qemu_chr_be_event(chr
, CHR_EVENT_CLOSED
);
521 if (s
->reconnect_time
&& !s
->reconnect_timer
) {
522 qemu_chr_socket_restart_timer(chr
);
526 static void tcp_chr_disconnect(Chardev
*chr
)
528 qemu_mutex_lock(&chr
->chr_write_lock
);
529 tcp_chr_disconnect_locked(chr
);
530 qemu_mutex_unlock(&chr
->chr_write_lock
);
533 static gboolean
tcp_chr_read(QIOChannel
*chan
, GIOCondition cond
, void *opaque
)
535 Chardev
*chr
= CHARDEV(opaque
);
536 SocketChardev
*s
= SOCKET_CHARDEV(opaque
);
537 uint8_t buf
[CHR_READ_BUF_LEN
];
540 if ((s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) ||
545 if (len
> s
->max_size
) {
548 size
= tcp_chr_recv(chr
, (void *)buf
, len
);
549 if (size
== 0 || (size
== -1 && errno
!= EAGAIN
)) {
550 /* connection closed */
551 tcp_chr_disconnect(chr
);
552 } else if (size
> 0) {
553 if (s
->do_telnetopt
) {
554 tcp_chr_process_IAC_bytes(chr
, s
, buf
, &size
);
557 qemu_chr_be_write(chr
, buf
, size
);
564 static gboolean
tcp_chr_hup(QIOChannel
*channel
,
568 Chardev
*chr
= CHARDEV(opaque
);
569 tcp_chr_disconnect(chr
);
570 return G_SOURCE_REMOVE
;
573 static int tcp_chr_sync_read(Chardev
*chr
, const uint8_t *buf
, int len
)
575 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
578 if (s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) {
582 qio_channel_set_blocking(s
->ioc
, true, NULL
);
583 size
= tcp_chr_recv(chr
, (void *) buf
, len
);
584 if (s
->state
!= TCP_CHARDEV_STATE_DISCONNECTED
) {
585 qio_channel_set_blocking(s
->ioc
, false, NULL
);
588 /* connection closed */
589 tcp_chr_disconnect(chr
);
595 static char *qemu_chr_compute_filename(SocketChardev
*s
)
597 struct sockaddr_storage
*ss
= &s
->sioc
->localAddr
;
598 struct sockaddr_storage
*ps
= &s
->sioc
->remoteAddr
;
599 socklen_t ss_len
= s
->sioc
->localAddrLen
;
600 socklen_t ps_len
= s
->sioc
->remoteAddrLen
;
601 char shost
[NI_MAXHOST
], sserv
[NI_MAXSERV
];
602 char phost
[NI_MAXHOST
], pserv
[NI_MAXSERV
];
603 const char *left
= "", *right
= "";
605 switch (ss
->ss_family
) {
608 return g_strdup_printf("unix:%s%s",
609 ((struct sockaddr_un
*)(ss
))->sun_path
,
610 s
->is_listen
? ",server=on" : "");
617 getnameinfo((struct sockaddr
*) ss
, ss_len
, shost
, sizeof(shost
),
618 sserv
, sizeof(sserv
), NI_NUMERICHOST
| NI_NUMERICSERV
);
619 getnameinfo((struct sockaddr
*) ps
, ps_len
, phost
, sizeof(phost
),
620 pserv
, sizeof(pserv
), NI_NUMERICHOST
| NI_NUMERICSERV
);
621 return g_strdup_printf("%s:%s%s%s:%s%s <-> %s%s%s:%s",
622 qemu_chr_socket_protocol(s
),
623 left
, shost
, right
, sserv
,
624 s
->is_listen
? ",server=on" : "",
625 left
, phost
, right
, pserv
);
628 return g_strdup_printf("unknown");
632 static void update_ioc_handlers(SocketChardev
*s
)
634 Chardev
*chr
= CHARDEV(s
);
636 if (s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) {
640 remove_fd_in_watch(chr
);
641 chr
->gsource
= io_add_watch_poll(chr
, s
->ioc
,
646 remove_hup_source(s
);
647 s
->hup_source
= qio_channel_create_watch(s
->ioc
, G_IO_HUP
);
648 g_source_set_callback(s
->hup_source
, (GSourceFunc
)tcp_chr_hup
,
650 g_source_attach(s
->hup_source
, chr
->gcontext
);
653 static void tcp_chr_connect(void *opaque
)
655 Chardev
*chr
= CHARDEV(opaque
);
656 SocketChardev
*s
= SOCKET_CHARDEV(opaque
);
658 g_free(chr
->filename
);
659 chr
->filename
= qemu_chr_compute_filename(s
);
661 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTED
);
662 update_ioc_handlers(s
);
663 qemu_chr_be_event(chr
, CHR_EVENT_OPENED
);
666 static void tcp_chr_telnet_destroy(SocketChardev
*s
)
668 if (s
->telnet_source
) {
669 g_source_destroy(s
->telnet_source
);
670 g_source_unref(s
->telnet_source
);
671 s
->telnet_source
= NULL
;
675 static void tcp_chr_update_read_handler(Chardev
*chr
)
677 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
679 if (s
->listener
&& s
->state
== TCP_CHARDEV_STATE_DISCONNECTED
) {
681 * It's possible that chardev context is changed in
682 * qemu_chr_be_update_read_handlers(). Reset it for QIO net
683 * listener if there is.
685 qio_net_listener_set_client_func_full(s
->listener
, tcp_chr_accept
,
686 chr
, NULL
, chr
->gcontext
);
689 if (s
->telnet_source
) {
690 tcp_chr_telnet_init(CHARDEV(s
));
693 update_ioc_handlers(s
);
696 static gboolean
tcp_chr_telnet_init_io(QIOChannel
*ioc
,
697 GIOCondition cond G_GNUC_UNUSED
,
700 SocketChardev
*s
= user_data
;
701 Chardev
*chr
= CHARDEV(s
);
702 TCPChardevTelnetInit
*init
= s
->telnet_init
;
707 ret
= qio_channel_write(ioc
, init
->buf
, init
->buflen
, NULL
);
709 if (ret
== QIO_CHANNEL_ERR_BLOCK
) {
712 tcp_chr_disconnect(chr
);
718 if (init
->buflen
== 0) {
719 tcp_chr_connect(chr
);
723 memmove(init
->buf
, init
->buf
+ ret
, init
->buflen
);
725 return G_SOURCE_CONTINUE
;
728 g_free(s
->telnet_init
);
729 s
->telnet_init
= NULL
;
730 g_source_unref(s
->telnet_source
);
731 s
->telnet_source
= NULL
;
732 return G_SOURCE_REMOVE
;
735 static void tcp_chr_telnet_init(Chardev
*chr
)
737 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
738 TCPChardevTelnetInit
*init
;
741 /* Destroy existing task */
742 tcp_chr_telnet_destroy(s
);
744 if (s
->telnet_init
) {
745 /* We are possibly during a handshake already */
749 s
->telnet_init
= g_new0(TCPChardevTelnetInit
, 1);
750 init
= s
->telnet_init
;
752 #define IACSET(x, a, b, c) \
761 /* Prep the telnet negotion to put telnet in binary,
762 * no echo, single char mode */
763 IACSET(init
->buf
, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
764 IACSET(init
->buf
, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
765 IACSET(init
->buf
, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
766 IACSET(init
->buf
, 0xff, 0xfd, 0x00); /* IAC DO Binary */
769 /* Prep the TN3270 negotion based on RFC1576 */
770 IACSET(init
->buf
, 0xff, 0xfd, 0x19); /* IAC DO EOR */
771 IACSET(init
->buf
, 0xff, 0xfb, 0x19); /* IAC WILL EOR */
772 IACSET(init
->buf
, 0xff, 0xfd, 0x00); /* IAC DO BINARY */
773 IACSET(init
->buf
, 0xff, 0xfb, 0x00); /* IAC WILL BINARY */
774 IACSET(init
->buf
, 0xff, 0xfd, 0x18); /* IAC DO TERMINAL TYPE */
775 IACSET(init
->buf
, 0xff, 0xfa, 0x18); /* IAC SB TERMINAL TYPE */
776 IACSET(init
->buf
, 0x01, 0xff, 0xf0); /* SEND IAC SE */
782 s
->telnet_source
= qio_channel_add_watch_source(s
->ioc
, G_IO_OUT
,
783 tcp_chr_telnet_init_io
,
789 static void tcp_chr_websock_handshake(QIOTask
*task
, gpointer user_data
)
791 Chardev
*chr
= user_data
;
792 SocketChardev
*s
= user_data
;
794 if (qio_task_propagate_error(task
, NULL
)) {
795 tcp_chr_disconnect(chr
);
797 if (s
->do_telnetopt
) {
798 tcp_chr_telnet_init(chr
);
800 tcp_chr_connect(chr
);
806 static void tcp_chr_websock_init(Chardev
*chr
)
808 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
809 QIOChannelWebsock
*wioc
= NULL
;
812 wioc
= qio_channel_websock_new_server(s
->ioc
);
814 name
= g_strdup_printf("chardev-websocket-server-%s", chr
->label
);
815 qio_channel_set_name(QIO_CHANNEL(wioc
), name
);
817 object_unref(OBJECT(s
->ioc
));
818 s
->ioc
= QIO_CHANNEL(wioc
);
820 qio_channel_websock_handshake(wioc
, tcp_chr_websock_handshake
, chr
, NULL
);
824 static void tcp_chr_tls_handshake(QIOTask
*task
,
827 Chardev
*chr
= user_data
;
828 SocketChardev
*s
= user_data
;
830 if (qio_task_propagate_error(task
, NULL
)) {
831 tcp_chr_disconnect(chr
);
834 tcp_chr_websock_init(chr
);
835 } else if (s
->do_telnetopt
) {
836 tcp_chr_telnet_init(chr
);
838 tcp_chr_connect(chr
);
844 static void tcp_chr_tls_init(Chardev
*chr
)
846 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
851 tioc
= qio_channel_tls_new_server(
852 s
->ioc
, s
->tls_creds
,
856 tioc
= qio_channel_tls_new_client(
857 s
->ioc
, s
->tls_creds
,
858 s
->addr
->u
.inet
.host
,
862 tcp_chr_disconnect(chr
);
865 name
= g_strdup_printf("chardev-tls-%s-%s",
866 s
->is_listen
? "server" : "client",
868 qio_channel_set_name(QIO_CHANNEL(tioc
), name
);
870 object_unref(OBJECT(s
->ioc
));
871 s
->ioc
= QIO_CHANNEL(tioc
);
873 qio_channel_tls_handshake(tioc
,
874 tcp_chr_tls_handshake
,
881 static void tcp_chr_set_client_ioc_name(Chardev
*chr
,
882 QIOChannelSocket
*sioc
)
884 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
886 name
= g_strdup_printf("chardev-tcp-%s-%s",
887 s
->is_listen
? "server" : "client",
889 qio_channel_set_name(QIO_CHANNEL(sioc
), name
);
894 static int tcp_chr_new_client(Chardev
*chr
, QIOChannelSocket
*sioc
)
896 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
898 if (s
->state
!= TCP_CHARDEV_STATE_CONNECTING
) {
902 s
->ioc
= QIO_CHANNEL(sioc
);
903 object_ref(OBJECT(sioc
));
905 object_ref(OBJECT(sioc
));
907 qio_channel_set_blocking(s
->ioc
, false, NULL
);
910 qio_channel_set_delay(s
->ioc
, false);
913 qio_net_listener_set_client_func_full(s
->listener
, NULL
, NULL
,
914 NULL
, chr
->gcontext
);
918 tcp_chr_tls_init(chr
);
919 } else if (s
->is_websock
) {
920 tcp_chr_websock_init(chr
);
921 } else if (s
->do_telnetopt
) {
922 tcp_chr_telnet_init(chr
);
924 tcp_chr_connect(chr
);
931 static int tcp_chr_add_client(Chardev
*chr
, int fd
)
934 QIOChannelSocket
*sioc
;
935 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
937 if (s
->state
!= TCP_CHARDEV_STATE_DISCONNECTED
) {
941 sioc
= qio_channel_socket_new_fd(fd
, NULL
);
945 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTING
);
946 tcp_chr_set_client_ioc_name(chr
, sioc
);
947 if (s
->registered_yank
) {
948 yank_register_function(CHARDEV_YANK_INSTANCE(chr
->label
),
949 yank_generic_iochannel
,
952 ret
= tcp_chr_new_client(chr
, sioc
);
953 object_unref(OBJECT(sioc
));
957 static void tcp_chr_accept(QIONetListener
*listener
,
958 QIOChannelSocket
*cioc
,
961 Chardev
*chr
= CHARDEV(opaque
);
962 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
964 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTING
);
965 tcp_chr_set_client_ioc_name(chr
, cioc
);
966 if (s
->registered_yank
) {
967 yank_register_function(CHARDEV_YANK_INSTANCE(chr
->label
),
968 yank_generic_iochannel
,
971 tcp_chr_new_client(chr
, cioc
);
975 static int tcp_chr_connect_client_sync(Chardev
*chr
, Error
**errp
)
977 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
978 QIOChannelSocket
*sioc
= qio_channel_socket_new();
979 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTING
);
980 tcp_chr_set_client_ioc_name(chr
, sioc
);
981 if (qio_channel_socket_connect_sync(sioc
, s
->addr
, errp
) < 0) {
982 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_DISCONNECTED
);
983 object_unref(OBJECT(sioc
));
986 if (s
->registered_yank
) {
987 yank_register_function(CHARDEV_YANK_INSTANCE(chr
->label
),
988 yank_generic_iochannel
,
991 tcp_chr_new_client(chr
, sioc
);
992 object_unref(OBJECT(sioc
));
997 static void tcp_chr_accept_server_sync(Chardev
*chr
)
999 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1000 QIOChannelSocket
*sioc
;
1001 info_report("QEMU waiting for connection on: %s",
1003 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTING
);
1004 sioc
= qio_net_listener_wait_client(s
->listener
);
1005 tcp_chr_set_client_ioc_name(chr
, sioc
);
1006 if (s
->registered_yank
) {
1007 yank_register_function(CHARDEV_YANK_INSTANCE(chr
->label
),
1008 yank_generic_iochannel
,
1011 tcp_chr_new_client(chr
, sioc
);
1012 object_unref(OBJECT(sioc
));
1016 static int tcp_chr_wait_connected(Chardev
*chr
, Error
**errp
)
1018 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1019 const char *opts
[] = { "telnet", "tn3270", "websock", "tls-creds" };
1020 bool optset
[] = { s
->is_telnet
, s
->is_tn3270
, s
->is_websock
, s
->tls_creds
};
1023 QEMU_BUILD_BUG_ON(G_N_ELEMENTS(opts
) != G_N_ELEMENTS(optset
));
1024 for (i
= 0; i
< G_N_ELEMENTS(opts
); i
++) {
1027 "'%s' option is incompatible with waiting for "
1028 "connection completion", opts
[i
]);
1033 tcp_chr_reconn_timer_cancel(s
);
1036 * We expect states to be as follows:
1039 * - wait -> CONNECTED
1040 * - nowait -> DISCONNECTED
1042 * - reconnect == 0 -> CONNECTED
1043 * - reconnect != 0 -> CONNECTING
1046 if (s
->state
== TCP_CHARDEV_STATE_CONNECTING
) {
1047 if (!s
->connect_task
) {
1049 "Unexpected 'connecting' state without connect task "
1050 "while waiting for connection completion");
1054 * tcp_chr_wait_connected should only ever be run from the
1055 * main loop thread associated with chr->gcontext, otherwise
1056 * qio_task_wait_thread has a dangerous race condition with
1057 * free'ing of the s->connect_task object.
1059 * Acquiring the main context doesn't 100% prove we're in
1060 * the main loop thread, but it does at least guarantee
1061 * that the main loop won't be executed by another thread
1062 * avoiding the race condition with the task idle callback.
1064 g_main_context_acquire(chr
->gcontext
);
1065 qio_task_wait_thread(s
->connect_task
);
1066 g_main_context_release(chr
->gcontext
);
1069 * The completion callback (qemu_chr_socket_connected) for
1070 * s->connect_task should have set this to NULL by the time
1071 * qio_task_wait_thread has returned.
1073 assert(!s
->connect_task
);
1076 * NB we are *not* guaranteed to have "s->state == ..CONNECTED"
1077 * at this point as this first connect may be failed, so
1078 * allow the next loop to run regardless.
1082 while (s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) {
1084 tcp_chr_accept_server_sync(chr
);
1087 if (tcp_chr_connect_client_sync(chr
, &err
) < 0) {
1088 if (s
->reconnect_time
) {
1090 g_usleep(s
->reconnect_time
* 1000ULL * 1000ULL);
1092 error_propagate(errp
, err
);
1102 static void char_socket_finalize(Object
*obj
)
1104 Chardev
*chr
= CHARDEV(obj
);
1105 SocketChardev
*s
= SOCKET_CHARDEV(obj
);
1107 tcp_chr_free_connection(chr
);
1108 tcp_chr_reconn_timer_cancel(s
);
1109 qapi_free_SocketAddress(s
->addr
);
1110 tcp_chr_telnet_destroy(s
);
1111 g_free(s
->telnet_init
);
1113 qio_net_listener_set_client_func_full(s
->listener
, NULL
, NULL
,
1114 NULL
, chr
->gcontext
);
1115 object_unref(OBJECT(s
->listener
));
1118 object_unref(OBJECT(s
->tls_creds
));
1120 g_free(s
->tls_authz
);
1121 if (s
->registered_yank
) {
1122 yank_unregister_instance(CHARDEV_YANK_INSTANCE(chr
->label
));
1125 qemu_chr_be_event(chr
, CHR_EVENT_CLOSED
);
1128 static void qemu_chr_socket_connected(QIOTask
*task
, void *opaque
)
1130 QIOChannelSocket
*sioc
= QIO_CHANNEL_SOCKET(qio_task_get_source(task
));
1131 Chardev
*chr
= CHARDEV(opaque
);
1132 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1135 s
->connect_task
= NULL
;
1137 if (qio_task_propagate_error(task
, &err
)) {
1138 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_DISCONNECTED
);
1139 if (s
->registered_yank
) {
1140 yank_unregister_function(CHARDEV_YANK_INSTANCE(chr
->label
),
1141 yank_generic_iochannel
,
1144 check_report_connect_error(chr
, err
);
1148 s
->connect_err_reported
= false;
1149 tcp_chr_new_client(chr
, sioc
);
1152 object_unref(OBJECT(sioc
));
1156 static void tcp_chr_connect_client_task(QIOTask
*task
,
1159 QIOChannelSocket
*ioc
= QIO_CHANNEL_SOCKET(qio_task_get_source(task
));
1160 SocketAddress
*addr
= opaque
;
1163 qio_channel_socket_connect_sync(ioc
, addr
, &err
);
1165 qio_task_set_error(task
, err
);
1169 static void tcp_chr_connect_client_async(Chardev
*chr
)
1171 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1172 QIOChannelSocket
*sioc
;
1174 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTING
);
1175 sioc
= qio_channel_socket_new();
1176 tcp_chr_set_client_ioc_name(chr
, sioc
);
1177 if (s
->registered_yank
) {
1178 yank_register_function(CHARDEV_YANK_INSTANCE(chr
->label
),
1179 yank_generic_iochannel
,
1183 * Normally code would use the qio_channel_socket_connect_async
1184 * method which uses a QIOTask + qio_task_set_error internally
1185 * to avoid blocking. The tcp_chr_wait_connected method, however,
1186 * needs a way to synchronize with completion of the background
1187 * connect task which can't be done with the QIOChannelSocket
1188 * async APIs. Thus we must use QIOTask directly to implement
1189 * the non-blocking concept locally.
1191 s
->connect_task
= qio_task_new(OBJECT(sioc
),
1192 qemu_chr_socket_connected
,
1193 object_ref(OBJECT(chr
)),
1194 (GDestroyNotify
)object_unref
);
1195 qio_task_run_in_thread(s
->connect_task
,
1196 tcp_chr_connect_client_task
,
1202 static gboolean
socket_reconnect_timeout(gpointer opaque
)
1204 Chardev
*chr
= CHARDEV(opaque
);
1205 SocketChardev
*s
= SOCKET_CHARDEV(opaque
);
1207 qemu_mutex_lock(&chr
->chr_write_lock
);
1208 g_source_unref(s
->reconnect_timer
);
1209 s
->reconnect_timer
= NULL
;
1210 qemu_mutex_unlock(&chr
->chr_write_lock
);
1216 tcp_chr_connect_client_async(chr
);
1222 static int qmp_chardev_open_socket_server(Chardev
*chr
,
1224 bool is_waitconnect
,
1227 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1230 s
->do_telnetopt
= 1;
1232 s
->listener
= qio_net_listener_new();
1234 name
= g_strdup_printf("chardev-tcp-listener-%s", chr
->label
);
1235 qio_net_listener_set_name(s
->listener
, name
);
1238 if (qio_net_listener_open_sync(s
->listener
, s
->addr
, 1, errp
) < 0) {
1239 object_unref(OBJECT(s
->listener
));
1244 qapi_free_SocketAddress(s
->addr
);
1245 s
->addr
= socket_local_address(s
->listener
->sioc
[0]->fd
, errp
);
1246 update_disconnected_filename(s
);
1248 if (is_waitconnect
) {
1249 tcp_chr_accept_server_sync(chr
);
1251 qio_net_listener_set_client_func_full(s
->listener
,
1261 static int qmp_chardev_open_socket_client(Chardev
*chr
,
1265 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1267 if (reconnect
> 0) {
1268 s
->reconnect_time
= reconnect
;
1269 tcp_chr_connect_client_async(chr
);
1272 return tcp_chr_connect_client_sync(chr
, errp
);
1277 static bool qmp_chardev_validate_socket(ChardevSocket
*sock
,
1278 SocketAddress
*addr
,
1281 /* Validate any options which have a dependency on address type */
1282 switch (addr
->type
) {
1283 case SOCKET_ADDRESS_TYPE_FD
:
1284 if (sock
->has_reconnect
) {
1286 "'reconnect' option is incompatible with "
1287 "'fd' address type");
1290 if (sock
->has_tls_creds
&&
1291 !(sock
->has_server
&& sock
->server
)) {
1293 "'tls_creds' option is incompatible with "
1294 "'fd' address type as client");
1299 case SOCKET_ADDRESS_TYPE_UNIX
:
1300 if (sock
->has_tls_creds
) {
1302 "'tls_creds' option is incompatible with "
1303 "'unix' address type");
1308 case SOCKET_ADDRESS_TYPE_INET
:
1311 case SOCKET_ADDRESS_TYPE_VSOCK
:
1312 if (sock
->has_tls_creds
) {
1314 "'tls_creds' option is incompatible with "
1315 "'vsock' address type");
1323 if (sock
->has_tls_authz
&& !sock
->has_tls_creds
) {
1324 error_setg(errp
, "'tls_authz' option requires 'tls_creds' option");
1328 /* Validate any options which have a dependancy on client vs server */
1329 if (!sock
->has_server
|| sock
->server
) {
1330 if (sock
->has_reconnect
) {
1332 "'reconnect' option is incompatible with "
1333 "socket in server listen mode");
1337 if (sock
->has_websocket
&& sock
->websocket
) {
1338 error_setg(errp
, "%s", "Websocket client is not implemented");
1341 if (sock
->has_wait
) {
1342 warn_report("'wait' option is deprecated with "
1343 "socket in client connect mode");
1345 error_setg(errp
, "%s",
1346 "'wait' option is incompatible with "
1347 "socket in client connect mode");
1357 static void qmp_chardev_open_socket(Chardev
*chr
,
1358 ChardevBackend
*backend
,
1362 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1363 ChardevSocket
*sock
= backend
->u
.socket
.data
;
1364 bool do_nodelay
= sock
->has_nodelay
? sock
->nodelay
: false;
1365 bool is_listen
= sock
->has_server
? sock
->server
: true;
1366 bool is_telnet
= sock
->has_telnet
? sock
->telnet
: false;
1367 bool is_tn3270
= sock
->has_tn3270
? sock
->tn3270
: false;
1368 bool is_waitconnect
= sock
->has_wait
? sock
->wait
: false;
1369 bool is_websock
= sock
->has_websocket
? sock
->websocket
: false;
1370 int64_t reconnect
= sock
->has_reconnect
? sock
->reconnect
: 0;
1371 SocketAddress
*addr
;
1373 s
->is_listen
= is_listen
;
1374 s
->is_telnet
= is_telnet
;
1375 s
->is_tn3270
= is_tn3270
;
1376 s
->is_websock
= is_websock
;
1377 s
->do_nodelay
= do_nodelay
;
1378 if (sock
->tls_creds
) {
1380 creds
= object_resolve_path_component(
1381 object_get_objects_root(), sock
->tls_creds
);
1383 error_setg(errp
, "No TLS credentials with id '%s'",
1387 s
->tls_creds
= (QCryptoTLSCreds
*)
1388 object_dynamic_cast(creds
,
1389 TYPE_QCRYPTO_TLS_CREDS
);
1390 if (!s
->tls_creds
) {
1391 error_setg(errp
, "Object with id '%s' is not TLS credentials",
1395 object_ref(OBJECT(s
->tls_creds
));
1397 if (s
->tls_creds
->endpoint
!= QCRYPTO_TLS_CREDS_ENDPOINT_SERVER
) {
1398 error_setg(errp
, "%s",
1399 "Expected TLS credentials for server endpoint");
1403 if (s
->tls_creds
->endpoint
!= QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT
) {
1404 error_setg(errp
, "%s",
1405 "Expected TLS credentials for client endpoint");
1410 s
->tls_authz
= g_strdup(sock
->tls_authz
);
1412 s
->addr
= addr
= socket_address_flatten(sock
->addr
);
1414 if (!qmp_chardev_validate_socket(sock
, addr
, errp
)) {
1418 qemu_chr_set_feature(chr
, QEMU_CHAR_FEATURE_RECONNECTABLE
);
1419 /* TODO SOCKET_ADDRESS_FD where fd has AF_UNIX */
1420 if (addr
->type
== SOCKET_ADDRESS_TYPE_UNIX
) {
1421 qemu_chr_set_feature(chr
, QEMU_CHAR_FEATURE_FD_PASS
);
1424 if (!yank_register_instance(CHARDEV_YANK_INSTANCE(chr
->label
), errp
)) {
1427 s
->registered_yank
= true;
1429 /* be isn't opened until we get a connection */
1432 update_disconnected_filename(s
);
1435 if (qmp_chardev_open_socket_server(chr
, is_telnet
|| is_tn3270
,
1436 is_waitconnect
, errp
) < 0) {
1440 if (qmp_chardev_open_socket_client(chr
, reconnect
, errp
) < 0) {
1446 static void qemu_chr_parse_socket(QemuOpts
*opts
, ChardevBackend
*backend
,
1449 const char *path
= qemu_opt_get(opts
, "path");
1450 const char *host
= qemu_opt_get(opts
, "host");
1451 const char *port
= qemu_opt_get(opts
, "port");
1452 const char *fd
= qemu_opt_get(opts
, "fd");
1454 bool tight
= qemu_opt_get_bool(opts
, "tight", true);
1455 bool abstract
= qemu_opt_get_bool(opts
, "abstract", false);
1457 SocketAddressLegacy
*addr
;
1458 ChardevSocket
*sock
;
1460 if ((!!path
+ !!fd
+ !!host
) != 1) {
1462 "Exactly one of 'path', 'fd' or 'host' required");
1466 if (host
&& !port
) {
1467 error_setg(errp
, "chardev: socket: no port given");
1471 backend
->type
= CHARDEV_BACKEND_KIND_SOCKET
;
1472 sock
= backend
->u
.socket
.data
= g_new0(ChardevSocket
, 1);
1473 qemu_chr_parse_common(opts
, qapi_ChardevSocket_base(sock
));
1475 sock
->has_nodelay
= qemu_opt_get(opts
, "delay");
1476 sock
->nodelay
= !qemu_opt_get_bool(opts
, "delay", true);
1478 * We have different default to QMP for 'server', hence
1479 * we can't just check for existence of 'server'
1481 sock
->has_server
= true;
1482 sock
->server
= qemu_opt_get_bool(opts
, "server", false);
1483 sock
->has_telnet
= qemu_opt_get(opts
, "telnet");
1484 sock
->telnet
= qemu_opt_get_bool(opts
, "telnet", false);
1485 sock
->has_tn3270
= qemu_opt_get(opts
, "tn3270");
1486 sock
->tn3270
= qemu_opt_get_bool(opts
, "tn3270", false);
1487 sock
->has_websocket
= qemu_opt_get(opts
, "websocket");
1488 sock
->websocket
= qemu_opt_get_bool(opts
, "websocket", false);
1490 * We have different default to QMP for 'wait' when 'server'
1491 * is set, hence we can't just check for existence of 'wait'
1493 sock
->has_wait
= qemu_opt_find(opts
, "wait") || sock
->server
;
1494 sock
->wait
= qemu_opt_get_bool(opts
, "wait", true);
1495 sock
->has_reconnect
= qemu_opt_find(opts
, "reconnect");
1496 sock
->reconnect
= qemu_opt_get_number(opts
, "reconnect", 0);
1497 sock
->has_tls_creds
= qemu_opt_get(opts
, "tls-creds");
1498 sock
->tls_creds
= g_strdup(qemu_opt_get(opts
, "tls-creds"));
1499 sock
->has_tls_authz
= qemu_opt_get(opts
, "tls-authz");
1500 sock
->tls_authz
= g_strdup(qemu_opt_get(opts
, "tls-authz"));
1502 addr
= g_new0(SocketAddressLegacy
, 1);
1504 UnixSocketAddress
*q_unix
;
1505 addr
->type
= SOCKET_ADDRESS_LEGACY_KIND_UNIX
;
1506 q_unix
= addr
->u
.q_unix
.data
= g_new0(UnixSocketAddress
, 1);
1507 q_unix
->path
= g_strdup(path
);
1509 q_unix
->has_tight
= true;
1510 q_unix
->tight
= tight
;
1511 q_unix
->has_abstract
= true;
1512 q_unix
->abstract
= abstract
;
1515 addr
->type
= SOCKET_ADDRESS_LEGACY_KIND_INET
;
1516 addr
->u
.inet
.data
= g_new(InetSocketAddress
, 1);
1517 *addr
->u
.inet
.data
= (InetSocketAddress
) {
1518 .host
= g_strdup(host
),
1519 .port
= g_strdup(port
),
1520 .has_to
= qemu_opt_get(opts
, "to"),
1521 .to
= qemu_opt_get_number(opts
, "to", 0),
1522 .has_ipv4
= qemu_opt_get(opts
, "ipv4"),
1523 .ipv4
= qemu_opt_get_bool(opts
, "ipv4", 0),
1524 .has_ipv6
= qemu_opt_get(opts
, "ipv6"),
1525 .ipv6
= qemu_opt_get_bool(opts
, "ipv6", 0),
1528 addr
->type
= SOCKET_ADDRESS_LEGACY_KIND_FD
;
1529 addr
->u
.fd
.data
= g_new(String
, 1);
1530 addr
->u
.fd
.data
->str
= g_strdup(fd
);
1532 g_assert_not_reached();
1538 char_socket_get_addr(Object
*obj
, Visitor
*v
, const char *name
,
1539 void *opaque
, Error
**errp
)
1541 SocketChardev
*s
= SOCKET_CHARDEV(obj
);
1543 visit_type_SocketAddress(v
, name
, &s
->addr
, errp
);
1547 char_socket_get_connected(Object
*obj
, Error
**errp
)
1549 SocketChardev
*s
= SOCKET_CHARDEV(obj
);
1551 return s
->state
== TCP_CHARDEV_STATE_CONNECTED
;
1554 static void char_socket_class_init(ObjectClass
*oc
, void *data
)
1556 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
1558 cc
->parse
= qemu_chr_parse_socket
;
1559 cc
->open
= qmp_chardev_open_socket
;
1560 cc
->chr_wait_connected
= tcp_chr_wait_connected
;
1561 cc
->chr_write
= tcp_chr_write
;
1562 cc
->chr_sync_read
= tcp_chr_sync_read
;
1563 cc
->chr_disconnect
= tcp_chr_disconnect
;
1564 cc
->get_msgfds
= tcp_get_msgfds
;
1565 cc
->set_msgfds
= tcp_set_msgfds
;
1566 cc
->chr_add_client
= tcp_chr_add_client
;
1567 cc
->chr_add_watch
= tcp_chr_add_watch
;
1568 cc
->chr_update_read_handler
= tcp_chr_update_read_handler
;
1570 object_class_property_add(oc
, "addr", "SocketAddress",
1571 char_socket_get_addr
, NULL
,
1574 object_class_property_add_bool(oc
, "connected", char_socket_get_connected
,
1578 static const TypeInfo char_socket_type_info
= {
1579 .name
= TYPE_CHARDEV_SOCKET
,
1580 .parent
= TYPE_CHARDEV
,
1581 .instance_size
= sizeof(SocketChardev
),
1582 .instance_finalize
= char_socket_finalize
,
1583 .class_init
= char_socket_class_init
,
1586 static void register_types(void)
1588 type_register_static(&char_socket_type_info
);
1591 type_init(register_types
);