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-websock.h"
29 #include "qemu/error-report.h"
30 #include "qemu/module.h"
31 #include "qemu/option.h"
32 #include "qapi/error.h"
33 #include "qapi/clone-visitor.h"
34 #include "qapi/qapi-visit-sockets.h"
35 #include "qemu/yank.h"
37 #include "chardev/char-io.h"
38 #include "chardev/char-socket.h"
40 static gboolean
socket_reconnect_timeout(gpointer opaque
);
41 static void tcp_chr_telnet_init(Chardev
*chr
);
43 static void tcp_chr_change_state(SocketChardev
*s
, TCPChardevState state
)
46 case TCP_CHARDEV_STATE_DISCONNECTED
:
48 case TCP_CHARDEV_STATE_CONNECTING
:
49 assert(s
->state
== TCP_CHARDEV_STATE_DISCONNECTED
);
51 case TCP_CHARDEV_STATE_CONNECTED
:
52 assert(s
->state
== TCP_CHARDEV_STATE_CONNECTING
);
58 static void tcp_chr_reconn_timer_cancel(SocketChardev
*s
)
60 if (s
->reconnect_timer
) {
61 g_source_destroy(s
->reconnect_timer
);
62 g_source_unref(s
->reconnect_timer
);
63 s
->reconnect_timer
= NULL
;
67 static void qemu_chr_socket_restart_timer(Chardev
*chr
)
69 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
72 assert(s
->state
== TCP_CHARDEV_STATE_DISCONNECTED
);
73 assert(!s
->reconnect_timer
);
74 name
= g_strdup_printf("chardev-socket-reconnect-%s", chr
->label
);
75 s
->reconnect_timer
= qemu_chr_timeout_add_ms(chr
,
76 s
->reconnect_time
* 1000,
77 socket_reconnect_timeout
,
79 g_source_set_name(s
->reconnect_timer
, name
);
83 static void check_report_connect_error(Chardev
*chr
,
86 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
88 if (!s
->connect_err_reported
) {
89 error_reportf_err(err
,
90 "Unable to connect character device %s: ",
92 s
->connect_err_reported
= true;
96 qemu_chr_socket_restart_timer(chr
);
99 static void tcp_chr_accept(QIONetListener
*listener
,
100 QIOChannelSocket
*cioc
,
103 static int tcp_chr_read_poll(void *opaque
);
104 static void tcp_chr_disconnect_locked(Chardev
*chr
);
106 /* Called with chr_write_lock held. */
107 static int tcp_chr_write(Chardev
*chr
, const uint8_t *buf
, int len
)
109 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
111 if (s
->state
== TCP_CHARDEV_STATE_CONNECTED
) {
112 int ret
= io_channel_send_full(s
->ioc
, buf
, len
,
114 s
->write_msgfds_num
);
116 /* free the written msgfds in any cases
117 * other than ret < 0 && errno == EAGAIN
119 if (!(ret
< 0 && EAGAIN
== errno
)
120 && s
->write_msgfds_num
) {
121 g_free(s
->write_msgfds
);
123 s
->write_msgfds_num
= 0;
126 if (ret
< 0 && errno
!= EAGAIN
) {
127 if (tcp_chr_read_poll(chr
) <= 0) {
128 /* Perform disconnect and return error. */
129 tcp_chr_disconnect_locked(chr
);
130 } /* else let the read handler finish it properly */
135 /* Indicate an error. */
141 static int tcp_chr_read_poll(void *opaque
)
143 Chardev
*chr
= CHARDEV(opaque
);
144 SocketChardev
*s
= SOCKET_CHARDEV(opaque
);
145 if (s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) {
148 s
->max_size
= qemu_chr_be_can_write(chr
);
152 static void tcp_chr_process_IAC_bytes(Chardev
*chr
,
154 uint8_t *buf
, int *size
)
156 /* Handle any telnet or tn3270 client's basic IAC options.
157 * For telnet options, it satisfies char by char mode with no echo.
158 * For tn3270 options, it satisfies binary mode with EOR.
159 * All IAC options will be removed from the buf and the do_opt
160 * pointer will be used to track the state of the width of the
163 * RFC854: "All TELNET commands consist of at least a two byte sequence.
164 * The commands dealing with option negotiation are three byte sequences,
165 * the third byte being the code for the option referenced."
166 * "IAC BREAK", "IAC IP", "IAC NOP" and the double IAC are two bytes.
167 * "IAC SB", "IAC SE" and "IAC EOR" are saved to split up data boundary
169 * NOP, Break and Interrupt Process(IP) might be encountered during a TN3270
170 * session, and NOP and IP need to be done later.
176 for (i
= 0; i
< *size
; i
++) {
177 if (s
->do_telnetopt
> 1) {
178 if ((unsigned char)buf
[i
] == IAC
&& s
->do_telnetopt
== 2) {
179 /* Double IAC means send an IAC */
186 if ((unsigned char)buf
[i
] == IAC_BREAK
187 && s
->do_telnetopt
== 2) {
188 /* Handle IAC break commands by sending a serial break */
189 qemu_chr_be_event(chr
, CHR_EVENT_BREAK
);
191 } else if (s
->is_tn3270
&& ((unsigned char)buf
[i
] == IAC_EOR
192 || (unsigned char)buf
[i
] == IAC_SB
193 || (unsigned char)buf
[i
] == IAC_SE
)
194 && s
->do_telnetopt
== 2) {
198 } else if (s
->is_tn3270
&& ((unsigned char)buf
[i
] == IAC_IP
199 || (unsigned char)buf
[i
] == IAC_NOP
)
200 && s
->do_telnetopt
== 2) {
201 /* TODO: IP and NOP need to be implemented later. */
206 if (s
->do_telnetopt
>= 4) {
210 if ((unsigned char)buf
[i
] == IAC
) {
223 static int tcp_get_msgfds(Chardev
*chr
, int *fds
, int num
)
225 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
227 int to_copy
= (s
->read_msgfds_num
< num
) ? s
->read_msgfds_num
: num
;
229 assert(num
<= TCP_MAX_FDS
);
234 memcpy(fds
, s
->read_msgfds
, to_copy
* sizeof(int));
236 /* Close unused fds */
237 for (i
= to_copy
; i
< s
->read_msgfds_num
; i
++) {
238 close(s
->read_msgfds
[i
]);
241 g_free(s
->read_msgfds
);
243 s
->read_msgfds_num
= 0;
249 static int tcp_set_msgfds(Chardev
*chr
, int *fds
, int num
)
251 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
253 /* clear old pending fd array */
254 g_free(s
->write_msgfds
);
255 s
->write_msgfds
= NULL
;
256 s
->write_msgfds_num
= 0;
258 if ((s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) ||
259 !qio_channel_has_feature(s
->ioc
,
260 QIO_CHANNEL_FEATURE_FD_PASS
)) {
265 s
->write_msgfds
= g_new(int, num
);
266 memcpy(s
->write_msgfds
, fds
, num
* sizeof(int));
269 s
->write_msgfds_num
= num
;
274 static ssize_t
tcp_chr_recv(Chardev
*chr
, char *buf
, size_t len
)
276 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
277 struct iovec iov
= { .iov_base
= buf
, .iov_len
= len
};
281 size_t msgfds_num
= 0;
283 if (qio_channel_has_feature(s
->ioc
, QIO_CHANNEL_FEATURE_FD_PASS
)) {
284 ret
= qio_channel_readv_full(s
->ioc
, &iov
, 1,
285 &msgfds
, &msgfds_num
,
288 ret
= qio_channel_readv_full(s
->ioc
, &iov
, 1,
294 /* close and clean read_msgfds */
295 for (i
= 0; i
< s
->read_msgfds_num
; i
++) {
296 close(s
->read_msgfds
[i
]);
299 if (s
->read_msgfds_num
) {
300 g_free(s
->read_msgfds
);
303 s
->read_msgfds
= msgfds
;
304 s
->read_msgfds_num
= msgfds_num
;
307 for (i
= 0; i
< s
->read_msgfds_num
; i
++) {
308 int fd
= s
->read_msgfds
[i
];
313 /* O_NONBLOCK is preserved across SCM_RIGHTS so reset it */
314 qemu_socket_set_block(fd
);
316 #ifndef MSG_CMSG_CLOEXEC
317 qemu_set_cloexec(fd
);
321 if (ret
== QIO_CHANNEL_ERR_BLOCK
) {
324 } else if (ret
== -1) {
331 static GSource
*tcp_chr_add_watch(Chardev
*chr
, GIOCondition cond
)
333 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
337 return qio_channel_create_watch(s
->ioc
, cond
);
340 static void remove_hup_source(SocketChardev
*s
)
342 if (s
->hup_source
!= NULL
) {
343 g_source_destroy(s
->hup_source
);
344 g_source_unref(s
->hup_source
);
345 s
->hup_source
= NULL
;
349 static void char_socket_yank_iochannel(void *opaque
)
351 QIOChannel
*ioc
= QIO_CHANNEL(opaque
);
353 qio_channel_shutdown(ioc
, QIO_CHANNEL_SHUTDOWN_BOTH
, NULL
);
356 static void tcp_chr_free_connection(Chardev
*chr
)
358 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
361 if (s
->read_msgfds_num
) {
362 for (i
= 0; i
< s
->read_msgfds_num
; i
++) {
363 close(s
->read_msgfds
[i
]);
365 g_free(s
->read_msgfds
);
366 s
->read_msgfds
= NULL
;
367 s
->read_msgfds_num
= 0;
370 remove_hup_source(s
);
372 tcp_set_msgfds(chr
, NULL
, 0);
373 remove_fd_in_watch(chr
);
374 if (s
->registered_yank
&&
375 (s
->state
== TCP_CHARDEV_STATE_CONNECTING
376 || s
->state
== TCP_CHARDEV_STATE_CONNECTED
)) {
377 yank_unregister_function(CHARDEV_YANK_INSTANCE(chr
->label
),
378 char_socket_yank_iochannel
,
379 QIO_CHANNEL(s
->sioc
));
383 qio_channel_close(s
->ioc
, NULL
);
385 object_unref(OBJECT(s
->sioc
));
387 object_unref(OBJECT(s
->ioc
));
389 g_free(chr
->filename
);
390 chr
->filename
= NULL
;
391 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_DISCONNECTED
);
394 static const char *qemu_chr_socket_protocol(SocketChardev
*s
)
399 return s
->is_websock
? "websocket" : "tcp";
402 static char *qemu_chr_socket_address(SocketChardev
*s
, const char *prefix
)
404 switch (s
->addr
->type
) {
405 case SOCKET_ADDRESS_TYPE_INET
:
406 return g_strdup_printf("%s%s:%s:%s%s", prefix
,
407 qemu_chr_socket_protocol(s
),
408 s
->addr
->u
.inet
.host
,
409 s
->addr
->u
.inet
.port
,
410 s
->is_listen
? ",server=on" : "");
412 case SOCKET_ADDRESS_TYPE_UNIX
:
414 const char *tight
= "", *abstract
= "";
415 UnixSocketAddress
*sa
= &s
->addr
->u
.q_unix
;
418 if (sa
->has_abstract
&& sa
->abstract
) {
419 abstract
= ",abstract=on";
420 if (sa
->has_tight
&& sa
->tight
) {
426 return g_strdup_printf("%sunix:%s%s%s%s", prefix
, sa
->path
,
428 s
->is_listen
? ",server=on" : "");
431 case SOCKET_ADDRESS_TYPE_FD
:
432 return g_strdup_printf("%sfd:%s%s", prefix
, s
->addr
->u
.fd
.str
,
433 s
->is_listen
? ",server=on" : "");
435 case SOCKET_ADDRESS_TYPE_VSOCK
:
436 return g_strdup_printf("%svsock:%s:%s", prefix
,
437 s
->addr
->u
.vsock
.cid
,
438 s
->addr
->u
.vsock
.port
);
444 static void update_disconnected_filename(SocketChardev
*s
)
446 Chardev
*chr
= CHARDEV(s
);
448 g_free(chr
->filename
);
450 chr
->filename
= qemu_chr_socket_address(s
, "disconnected:");
452 chr
->filename
= g_strdup("disconnected:socket");
456 /* NB may be called even if tcp_chr_connect has not been
457 * reached, due to TLS or telnet initialization failure,
458 * so can *not* assume s->state == TCP_CHARDEV_STATE_CONNECTED
459 * This must be called with chr->chr_write_lock held.
461 static void tcp_chr_disconnect_locked(Chardev
*chr
)
463 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
464 bool emit_close
= s
->state
== TCP_CHARDEV_STATE_CONNECTED
;
466 tcp_chr_free_connection(chr
);
469 qio_net_listener_set_client_func_full(s
->listener
, tcp_chr_accept
,
470 chr
, NULL
, chr
->gcontext
);
472 update_disconnected_filename(s
);
474 qemu_chr_be_event(chr
, CHR_EVENT_CLOSED
);
476 if (s
->reconnect_time
&& !s
->reconnect_timer
) {
477 qemu_chr_socket_restart_timer(chr
);
481 static void tcp_chr_disconnect(Chardev
*chr
)
483 qemu_mutex_lock(&chr
->chr_write_lock
);
484 tcp_chr_disconnect_locked(chr
);
485 qemu_mutex_unlock(&chr
->chr_write_lock
);
488 static gboolean
tcp_chr_read(QIOChannel
*chan
, GIOCondition cond
, void *opaque
)
490 Chardev
*chr
= CHARDEV(opaque
);
491 SocketChardev
*s
= SOCKET_CHARDEV(opaque
);
492 uint8_t buf
[CHR_READ_BUF_LEN
];
495 if ((s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) ||
500 if (len
> s
->max_size
) {
503 size
= tcp_chr_recv(chr
, (void *)buf
, len
);
504 if (size
== 0 || (size
== -1 && errno
!= EAGAIN
)) {
505 /* connection closed */
506 tcp_chr_disconnect(chr
);
507 } else if (size
> 0) {
508 if (s
->do_telnetopt
) {
509 tcp_chr_process_IAC_bytes(chr
, s
, buf
, &size
);
512 qemu_chr_be_write(chr
, buf
, size
);
519 static gboolean
tcp_chr_hup(QIOChannel
*channel
,
523 Chardev
*chr
= CHARDEV(opaque
);
524 tcp_chr_disconnect(chr
);
525 return G_SOURCE_REMOVE
;
528 static int tcp_chr_sync_read(Chardev
*chr
, const uint8_t *buf
, int len
)
530 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
534 if (s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) {
538 qio_channel_set_blocking(s
->ioc
, true, NULL
);
539 size
= tcp_chr_recv(chr
, (void *) buf
, len
);
541 if (s
->state
!= TCP_CHARDEV_STATE_DISCONNECTED
) {
542 qio_channel_set_blocking(s
->ioc
, false, NULL
);
545 /* connection closed */
546 tcp_chr_disconnect(chr
);
553 static char *qemu_chr_compute_filename(SocketChardev
*s
)
555 struct sockaddr_storage
*ss
= &s
->sioc
->localAddr
;
556 struct sockaddr_storage
*ps
= &s
->sioc
->remoteAddr
;
557 socklen_t ss_len
= s
->sioc
->localAddrLen
;
558 socklen_t ps_len
= s
->sioc
->remoteAddrLen
;
559 char shost
[NI_MAXHOST
], sserv
[NI_MAXSERV
];
560 char phost
[NI_MAXHOST
], pserv
[NI_MAXSERV
];
561 const char *left
= "", *right
= "";
563 switch (ss
->ss_family
) {
565 return g_strdup_printf("unix:%s%s",
566 ((struct sockaddr_un
*)(ss
))->sun_path
,
567 s
->is_listen
? ",server=on" : "");
573 getnameinfo((struct sockaddr
*) ss
, ss_len
, shost
, sizeof(shost
),
574 sserv
, sizeof(sserv
), NI_NUMERICHOST
| NI_NUMERICSERV
);
575 getnameinfo((struct sockaddr
*) ps
, ps_len
, phost
, sizeof(phost
),
576 pserv
, sizeof(pserv
), NI_NUMERICHOST
| NI_NUMERICSERV
);
577 return g_strdup_printf("%s:%s%s%s:%s%s <-> %s%s%s:%s",
578 qemu_chr_socket_protocol(s
),
579 left
, shost
, right
, sserv
,
580 s
->is_listen
? ",server=on" : "",
581 left
, phost
, right
, pserv
);
584 return g_strdup_printf("unknown");
588 static void update_ioc_handlers(SocketChardev
*s
)
590 Chardev
*chr
= CHARDEV(s
);
592 if (s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) {
596 remove_fd_in_watch(chr
);
597 chr
->gsource
= io_add_watch_poll(chr
, s
->ioc
,
602 remove_hup_source(s
);
603 s
->hup_source
= qio_channel_create_watch(s
->ioc
, G_IO_HUP
);
605 * poll() is liable to return POLLHUP even when there is
606 * still incoming data available to read on the FD. If
607 * we have the hup_source at the same priority as the
608 * main io_add_watch_poll GSource, then we might end up
609 * processing the POLLHUP event first, closing the FD,
610 * and as a result silently discard data we should have
613 * By setting the hup_source to G_PRIORITY_DEFAULT + 1,
614 * we ensure that io_add_watch_poll GSource will always
615 * be dispatched first, thus guaranteeing we will be
616 * able to process all incoming data before closing the
619 g_source_set_priority(s
->hup_source
, G_PRIORITY_DEFAULT
+ 1);
620 g_source_set_callback(s
->hup_source
, (GSourceFunc
)tcp_chr_hup
,
622 g_source_attach(s
->hup_source
, chr
->gcontext
);
625 static void tcp_chr_connect(void *opaque
)
627 Chardev
*chr
= CHARDEV(opaque
);
628 SocketChardev
*s
= SOCKET_CHARDEV(opaque
);
630 g_free(chr
->filename
);
631 chr
->filename
= qemu_chr_compute_filename(s
);
633 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTED
);
634 update_ioc_handlers(s
);
635 qemu_chr_be_event(chr
, CHR_EVENT_OPENED
);
638 static void tcp_chr_telnet_destroy(SocketChardev
*s
)
640 if (s
->telnet_source
) {
641 g_source_destroy(s
->telnet_source
);
642 g_source_unref(s
->telnet_source
);
643 s
->telnet_source
= NULL
;
647 static void tcp_chr_update_read_handler(Chardev
*chr
)
649 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
651 if (s
->listener
&& s
->state
== TCP_CHARDEV_STATE_DISCONNECTED
) {
653 * It's possible that chardev context is changed in
654 * qemu_chr_be_update_read_handlers(). Reset it for QIO net
655 * listener if there is.
657 qio_net_listener_set_client_func_full(s
->listener
, tcp_chr_accept
,
658 chr
, NULL
, chr
->gcontext
);
661 if (s
->telnet_source
) {
662 tcp_chr_telnet_init(CHARDEV(s
));
665 update_ioc_handlers(s
);
668 static gboolean
tcp_chr_telnet_init_io(QIOChannel
*ioc
,
669 GIOCondition cond G_GNUC_UNUSED
,
672 SocketChardev
*s
= user_data
;
673 Chardev
*chr
= CHARDEV(s
);
674 TCPChardevTelnetInit
*init
= s
->telnet_init
;
679 ret
= qio_channel_write(ioc
, init
->buf
, init
->buflen
, NULL
);
681 if (ret
== QIO_CHANNEL_ERR_BLOCK
) {
684 tcp_chr_disconnect(chr
);
690 if (init
->buflen
== 0) {
691 tcp_chr_connect(chr
);
695 memmove(init
->buf
, init
->buf
+ ret
, init
->buflen
);
697 return G_SOURCE_CONTINUE
;
700 g_free(s
->telnet_init
);
701 s
->telnet_init
= NULL
;
702 g_source_unref(s
->telnet_source
);
703 s
->telnet_source
= NULL
;
704 return G_SOURCE_REMOVE
;
707 static void tcp_chr_telnet_init(Chardev
*chr
)
709 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
710 TCPChardevTelnetInit
*init
;
713 /* Destroy existing task */
714 tcp_chr_telnet_destroy(s
);
716 if (s
->telnet_init
) {
717 /* We are possibly during a handshake already */
721 s
->telnet_init
= g_new0(TCPChardevTelnetInit
, 1);
722 init
= s
->telnet_init
;
724 #define IACSET(x, a, b, c) \
733 /* Prep the telnet negotiation to put telnet in binary,
734 * no echo, single char mode */
735 IACSET(init
->buf
, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
736 IACSET(init
->buf
, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
737 IACSET(init
->buf
, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
738 IACSET(init
->buf
, 0xff, 0xfd, 0x00); /* IAC DO Binary */
741 /* Prep the TN3270 negotiation based on RFC1576 */
742 IACSET(init
->buf
, 0xff, 0xfd, 0x19); /* IAC DO EOR */
743 IACSET(init
->buf
, 0xff, 0xfb, 0x19); /* IAC WILL EOR */
744 IACSET(init
->buf
, 0xff, 0xfd, 0x00); /* IAC DO BINARY */
745 IACSET(init
->buf
, 0xff, 0xfb, 0x00); /* IAC WILL BINARY */
746 IACSET(init
->buf
, 0xff, 0xfd, 0x18); /* IAC DO TERMINAL TYPE */
747 IACSET(init
->buf
, 0xff, 0xfa, 0x18); /* IAC SB TERMINAL TYPE */
748 IACSET(init
->buf
, 0x01, 0xff, 0xf0); /* SEND IAC SE */
754 s
->telnet_source
= qio_channel_add_watch_source(s
->ioc
, G_IO_OUT
,
755 tcp_chr_telnet_init_io
,
761 static void tcp_chr_websock_handshake(QIOTask
*task
, gpointer user_data
)
763 Chardev
*chr
= user_data
;
764 SocketChardev
*s
= user_data
;
767 if (qio_task_propagate_error(task
, &err
)) {
768 error_reportf_err(err
,
769 "websock handshake of character device %s failed: ",
771 tcp_chr_disconnect(chr
);
773 if (s
->do_telnetopt
) {
774 tcp_chr_telnet_init(chr
);
776 tcp_chr_connect(chr
);
782 static void tcp_chr_websock_init(Chardev
*chr
)
784 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
785 QIOChannelWebsock
*wioc
= NULL
;
788 wioc
= qio_channel_websock_new_server(s
->ioc
);
790 name
= g_strdup_printf("chardev-websocket-server-%s", chr
->label
);
791 qio_channel_set_name(QIO_CHANNEL(wioc
), name
);
793 object_unref(OBJECT(s
->ioc
));
794 s
->ioc
= QIO_CHANNEL(wioc
);
796 qio_channel_websock_handshake(wioc
, tcp_chr_websock_handshake
, chr
, NULL
);
800 static void tcp_chr_tls_handshake(QIOTask
*task
,
803 Chardev
*chr
= user_data
;
804 SocketChardev
*s
= user_data
;
807 if (qio_task_propagate_error(task
, &err
)) {
808 error_reportf_err(err
,
809 "TLS handshake of character device %s failed: ",
811 tcp_chr_disconnect(chr
);
814 tcp_chr_websock_init(chr
);
815 } else if (s
->do_telnetopt
) {
816 tcp_chr_telnet_init(chr
);
818 tcp_chr_connect(chr
);
824 static void tcp_chr_tls_init(Chardev
*chr
)
826 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
831 tioc
= qio_channel_tls_new_server(
832 s
->ioc
, s
->tls_creds
,
836 tioc
= qio_channel_tls_new_client(
837 s
->ioc
, s
->tls_creds
,
838 s
->addr
->u
.inet
.host
,
842 tcp_chr_disconnect(chr
);
845 name
= g_strdup_printf("chardev-tls-%s-%s",
846 s
->is_listen
? "server" : "client",
848 qio_channel_set_name(QIO_CHANNEL(tioc
), name
);
850 object_unref(OBJECT(s
->ioc
));
851 s
->ioc
= QIO_CHANNEL(tioc
);
853 qio_channel_tls_handshake(tioc
,
854 tcp_chr_tls_handshake
,
861 static void tcp_chr_set_client_ioc_name(Chardev
*chr
,
862 QIOChannelSocket
*sioc
)
864 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
866 name
= g_strdup_printf("chardev-tcp-%s-%s",
867 s
->is_listen
? "server" : "client",
869 qio_channel_set_name(QIO_CHANNEL(sioc
), name
);
874 static int tcp_chr_new_client(Chardev
*chr
, QIOChannelSocket
*sioc
)
876 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
878 if (s
->state
!= TCP_CHARDEV_STATE_CONNECTING
) {
882 s
->ioc
= QIO_CHANNEL(sioc
);
883 object_ref(OBJECT(sioc
));
885 object_ref(OBJECT(sioc
));
887 qio_channel_set_blocking(s
->ioc
, false, NULL
);
890 qio_channel_set_delay(s
->ioc
, false);
893 qio_net_listener_set_client_func_full(s
->listener
, NULL
, NULL
,
894 NULL
, chr
->gcontext
);
898 tcp_chr_tls_init(chr
);
899 } else if (s
->is_websock
) {
900 tcp_chr_websock_init(chr
);
901 } else if (s
->do_telnetopt
) {
902 tcp_chr_telnet_init(chr
);
904 tcp_chr_connect(chr
);
911 static int tcp_chr_add_client(Chardev
*chr
, int fd
)
914 QIOChannelSocket
*sioc
;
915 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
917 if (s
->state
!= TCP_CHARDEV_STATE_DISCONNECTED
) {
921 sioc
= qio_channel_socket_new_fd(fd
, NULL
);
925 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTING
);
926 tcp_chr_set_client_ioc_name(chr
, sioc
);
927 if (s
->registered_yank
) {
928 yank_register_function(CHARDEV_YANK_INSTANCE(chr
->label
),
929 char_socket_yank_iochannel
,
932 ret
= tcp_chr_new_client(chr
, sioc
);
933 object_unref(OBJECT(sioc
));
937 static void tcp_chr_accept(QIONetListener
*listener
,
938 QIOChannelSocket
*cioc
,
941 Chardev
*chr
= CHARDEV(opaque
);
942 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
944 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTING
);
945 tcp_chr_set_client_ioc_name(chr
, cioc
);
946 if (s
->registered_yank
) {
947 yank_register_function(CHARDEV_YANK_INSTANCE(chr
->label
),
948 char_socket_yank_iochannel
,
951 tcp_chr_new_client(chr
, cioc
);
955 static int tcp_chr_connect_client_sync(Chardev
*chr
, Error
**errp
)
957 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
958 QIOChannelSocket
*sioc
= qio_channel_socket_new();
959 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTING
);
960 tcp_chr_set_client_ioc_name(chr
, sioc
);
961 if (qio_channel_socket_connect_sync(sioc
, s
->addr
, errp
) < 0) {
962 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_DISCONNECTED
);
963 object_unref(OBJECT(sioc
));
966 if (s
->registered_yank
) {
967 yank_register_function(CHARDEV_YANK_INSTANCE(chr
->label
),
968 char_socket_yank_iochannel
,
971 tcp_chr_new_client(chr
, sioc
);
972 object_unref(OBJECT(sioc
));
977 static void tcp_chr_accept_server_sync(Chardev
*chr
)
979 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
980 QIOChannelSocket
*sioc
;
981 info_report("QEMU waiting for connection on: %s",
983 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTING
);
984 sioc
= qio_net_listener_wait_client(s
->listener
);
985 tcp_chr_set_client_ioc_name(chr
, sioc
);
986 if (s
->registered_yank
) {
987 yank_register_function(CHARDEV_YANK_INSTANCE(chr
->label
),
988 char_socket_yank_iochannel
,
991 tcp_chr_new_client(chr
, sioc
);
992 object_unref(OBJECT(sioc
));
996 static int tcp_chr_wait_connected(Chardev
*chr
, Error
**errp
)
998 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
999 const char *opts
[] = { "telnet", "tn3270", "websock", "tls-creds" };
1000 bool optset
[] = { s
->is_telnet
, s
->is_tn3270
, s
->is_websock
, s
->tls_creds
};
1003 QEMU_BUILD_BUG_ON(G_N_ELEMENTS(opts
) != G_N_ELEMENTS(optset
));
1004 for (i
= 0; i
< G_N_ELEMENTS(opts
); i
++) {
1007 "'%s' option is incompatible with waiting for "
1008 "connection completion", opts
[i
]);
1013 tcp_chr_reconn_timer_cancel(s
);
1016 * We expect states to be as follows:
1019 * - wait -> CONNECTED
1020 * - nowait -> DISCONNECTED
1022 * - reconnect == 0 -> CONNECTED
1023 * - reconnect != 0 -> CONNECTING
1026 if (s
->state
== TCP_CHARDEV_STATE_CONNECTING
) {
1027 if (!s
->connect_task
) {
1029 "Unexpected 'connecting' state without connect task "
1030 "while waiting for connection completion");
1034 * tcp_chr_wait_connected should only ever be run from the
1035 * main loop thread associated with chr->gcontext, otherwise
1036 * qio_task_wait_thread has a dangerous race condition with
1037 * free'ing of the s->connect_task object.
1039 * Acquiring the main context doesn't 100% prove we're in
1040 * the main loop thread, but it does at least guarantee
1041 * that the main loop won't be executed by another thread
1042 * avoiding the race condition with the task idle callback.
1044 g_main_context_acquire(chr
->gcontext
);
1045 qio_task_wait_thread(s
->connect_task
);
1046 g_main_context_release(chr
->gcontext
);
1049 * The completion callback (qemu_chr_socket_connected) for
1050 * s->connect_task should have set this to NULL by the time
1051 * qio_task_wait_thread has returned.
1053 assert(!s
->connect_task
);
1056 * NB we are *not* guaranteed to have "s->state == ..CONNECTED"
1057 * at this point as this first connect may be failed, so
1058 * allow the next loop to run regardless.
1062 while (s
->state
!= TCP_CHARDEV_STATE_CONNECTED
) {
1064 tcp_chr_accept_server_sync(chr
);
1067 if (tcp_chr_connect_client_sync(chr
, &err
) < 0) {
1068 if (s
->reconnect_time
) {
1070 g_usleep(s
->reconnect_time
* 1000ULL * 1000ULL);
1072 error_propagate(errp
, err
);
1082 static void char_socket_finalize(Object
*obj
)
1084 Chardev
*chr
= CHARDEV(obj
);
1085 SocketChardev
*s
= SOCKET_CHARDEV(obj
);
1087 tcp_chr_free_connection(chr
);
1088 tcp_chr_reconn_timer_cancel(s
);
1089 qapi_free_SocketAddress(s
->addr
);
1090 tcp_chr_telnet_destroy(s
);
1091 g_free(s
->telnet_init
);
1093 qio_net_listener_set_client_func_full(s
->listener
, NULL
, NULL
,
1094 NULL
, chr
->gcontext
);
1095 object_unref(OBJECT(s
->listener
));
1099 object_unref(OBJECT(s
->tls_creds
));
1101 g_free(s
->tls_authz
);
1102 if (s
->registered_yank
) {
1104 * In the chardev-change special-case, we shouldn't unregister the yank
1105 * instance, as it still may be needed.
1107 if (!chr
->handover_yank_instance
) {
1108 yank_unregister_instance(CHARDEV_YANK_INSTANCE(chr
->label
));
1112 qemu_chr_be_event(chr
, CHR_EVENT_CLOSED
);
1115 static void qemu_chr_socket_connected(QIOTask
*task
, void *opaque
)
1117 QIOChannelSocket
*sioc
= QIO_CHANNEL_SOCKET(qio_task_get_source(task
));
1118 Chardev
*chr
= CHARDEV(opaque
);
1119 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1122 s
->connect_task
= NULL
;
1124 if (qio_task_propagate_error(task
, &err
)) {
1125 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_DISCONNECTED
);
1126 if (s
->registered_yank
) {
1127 yank_unregister_function(CHARDEV_YANK_INSTANCE(chr
->label
),
1128 char_socket_yank_iochannel
,
1131 check_report_connect_error(chr
, err
);
1135 s
->connect_err_reported
= false;
1136 tcp_chr_new_client(chr
, sioc
);
1139 object_unref(OBJECT(sioc
));
1143 static void tcp_chr_connect_client_task(QIOTask
*task
,
1146 QIOChannelSocket
*ioc
= QIO_CHANNEL_SOCKET(qio_task_get_source(task
));
1147 SocketAddress
*addr
= opaque
;
1150 qio_channel_socket_connect_sync(ioc
, addr
, &err
);
1152 qio_task_set_error(task
, err
);
1156 static void tcp_chr_connect_client_async(Chardev
*chr
)
1158 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1159 QIOChannelSocket
*sioc
;
1161 tcp_chr_change_state(s
, TCP_CHARDEV_STATE_CONNECTING
);
1162 sioc
= qio_channel_socket_new();
1163 tcp_chr_set_client_ioc_name(chr
, sioc
);
1164 if (s
->registered_yank
) {
1165 yank_register_function(CHARDEV_YANK_INSTANCE(chr
->label
),
1166 char_socket_yank_iochannel
,
1170 * Normally code would use the qio_channel_socket_connect_async
1171 * method which uses a QIOTask + qio_task_set_error internally
1172 * to avoid blocking. The tcp_chr_wait_connected method, however,
1173 * needs a way to synchronize with completion of the background
1174 * connect task which can't be done with the QIOChannelSocket
1175 * async APIs. Thus we must use QIOTask directly to implement
1176 * the non-blocking concept locally.
1178 s
->connect_task
= qio_task_new(OBJECT(sioc
),
1179 qemu_chr_socket_connected
,
1180 object_ref(OBJECT(chr
)),
1181 (GDestroyNotify
)object_unref
);
1182 qio_task_run_in_thread(s
->connect_task
,
1183 tcp_chr_connect_client_task
,
1189 static gboolean
socket_reconnect_timeout(gpointer opaque
)
1191 Chardev
*chr
= CHARDEV(opaque
);
1192 SocketChardev
*s
= SOCKET_CHARDEV(opaque
);
1194 qemu_mutex_lock(&chr
->chr_write_lock
);
1195 g_source_unref(s
->reconnect_timer
);
1196 s
->reconnect_timer
= NULL
;
1197 qemu_mutex_unlock(&chr
->chr_write_lock
);
1203 tcp_chr_connect_client_async(chr
);
1209 static int qmp_chardev_open_socket_server(Chardev
*chr
,
1211 bool is_waitconnect
,
1214 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1217 s
->do_telnetopt
= 1;
1219 s
->listener
= qio_net_listener_new();
1221 name
= g_strdup_printf("chardev-tcp-listener-%s", chr
->label
);
1222 qio_net_listener_set_name(s
->listener
, name
);
1225 if (s
->addr
->type
== SOCKET_ADDRESS_TYPE_FD
&& !*s
->addr
->u
.fd
.str
) {
1229 if (qio_net_listener_open_sync(s
->listener
, s
->addr
, 1, errp
) < 0) {
1230 object_unref(OBJECT(s
->listener
));
1235 qapi_free_SocketAddress(s
->addr
);
1236 s
->addr
= socket_local_address(s
->listener
->sioc
[0]->fd
, errp
);
1239 update_disconnected_filename(s
);
1241 if (is_waitconnect
) {
1242 tcp_chr_accept_server_sync(chr
);
1244 qio_net_listener_set_client_func_full(s
->listener
,
1254 static int qmp_chardev_open_socket_client(Chardev
*chr
,
1258 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1260 if (reconnect
> 0) {
1261 s
->reconnect_time
= reconnect
;
1262 tcp_chr_connect_client_async(chr
);
1265 return tcp_chr_connect_client_sync(chr
, errp
);
1270 static bool qmp_chardev_validate_socket(ChardevSocket
*sock
,
1271 SocketAddress
*addr
,
1274 /* Validate any options which have a dependency on address type */
1275 switch (addr
->type
) {
1276 case SOCKET_ADDRESS_TYPE_FD
:
1277 if (sock
->has_reconnect
) {
1279 "'reconnect' option is incompatible with "
1280 "'fd' address type");
1283 if (sock
->tls_creds
&&
1284 !(sock
->has_server
&& sock
->server
)) {
1286 "'tls_creds' option is incompatible with "
1287 "'fd' address type as client");
1292 case SOCKET_ADDRESS_TYPE_UNIX
:
1293 if (sock
->tls_creds
) {
1295 "'tls_creds' option is incompatible with "
1296 "'unix' address type");
1301 case SOCKET_ADDRESS_TYPE_INET
:
1304 case SOCKET_ADDRESS_TYPE_VSOCK
:
1305 if (sock
->tls_creds
) {
1307 "'tls_creds' option is incompatible with "
1308 "'vsock' address type");
1316 if (sock
->tls_authz
&& !sock
->tls_creds
) {
1317 error_setg(errp
, "'tls_authz' option requires 'tls_creds' option");
1321 /* Validate any options which have a dependency on client vs server */
1322 if (!sock
->has_server
|| sock
->server
) {
1323 if (sock
->has_reconnect
) {
1325 "'reconnect' option is incompatible with "
1326 "socket in server listen mode");
1330 if (sock
->has_websocket
&& sock
->websocket
) {
1331 error_setg(errp
, "%s", "Websocket client is not implemented");
1334 if (sock
->has_wait
) {
1335 error_setg(errp
, "%s",
1336 "'wait' option is incompatible with "
1337 "socket in client connect mode");
1346 static void qmp_chardev_open_socket(Chardev
*chr
,
1347 ChardevBackend
*backend
,
1351 SocketChardev
*s
= SOCKET_CHARDEV(chr
);
1352 ChardevSocket
*sock
= backend
->u
.socket
.data
;
1353 bool do_nodelay
= sock
->has_nodelay
? sock
->nodelay
: false;
1354 bool is_listen
= sock
->has_server
? sock
->server
: true;
1355 bool is_telnet
= sock
->has_telnet
? sock
->telnet
: false;
1356 bool is_tn3270
= sock
->has_tn3270
? sock
->tn3270
: false;
1357 bool is_waitconnect
= sock
->has_wait
? sock
->wait
: false;
1358 bool is_websock
= sock
->has_websocket
? sock
->websocket
: false;
1359 int64_t reconnect
= sock
->has_reconnect
? sock
->reconnect
: 0;
1360 SocketAddress
*addr
;
1362 s
->is_listen
= is_listen
;
1363 s
->is_telnet
= is_telnet
;
1364 s
->is_tn3270
= is_tn3270
;
1365 s
->is_websock
= is_websock
;
1366 s
->do_nodelay
= do_nodelay
;
1367 if (sock
->tls_creds
) {
1369 creds
= object_resolve_path_component(
1370 object_get_objects_root(), sock
->tls_creds
);
1372 error_setg(errp
, "No TLS credentials with id '%s'",
1376 s
->tls_creds
= (QCryptoTLSCreds
*)
1377 object_dynamic_cast(creds
,
1378 TYPE_QCRYPTO_TLS_CREDS
);
1379 if (!s
->tls_creds
) {
1380 error_setg(errp
, "Object with id '%s' is not TLS credentials",
1384 object_ref(OBJECT(s
->tls_creds
));
1385 if (!qcrypto_tls_creds_check_endpoint(s
->tls_creds
,
1387 ? QCRYPTO_TLS_CREDS_ENDPOINT_SERVER
1388 : QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT
,
1393 s
->tls_authz
= g_strdup(sock
->tls_authz
);
1395 s
->addr
= addr
= socket_address_flatten(sock
->addr
);
1397 if (!qmp_chardev_validate_socket(sock
, addr
, errp
)) {
1401 qemu_chr_set_feature(chr
, QEMU_CHAR_FEATURE_RECONNECTABLE
);
1403 /* TODO SOCKET_ADDRESS_FD where fd has AF_UNIX */
1404 if (addr
->type
== SOCKET_ADDRESS_TYPE_UNIX
) {
1405 qemu_chr_set_feature(chr
, QEMU_CHAR_FEATURE_FD_PASS
);
1410 * In the chardev-change special-case, we shouldn't register a new yank
1411 * instance, as there already may be one.
1413 if (!chr
->handover_yank_instance
) {
1414 if (!yank_register_instance(CHARDEV_YANK_INSTANCE(chr
->label
), errp
)) {
1418 s
->registered_yank
= true;
1420 /* be isn't opened until we get a connection */
1423 update_disconnected_filename(s
);
1426 if (qmp_chardev_open_socket_server(chr
, is_telnet
|| is_tn3270
,
1427 is_waitconnect
, errp
) < 0) {
1431 if (qmp_chardev_open_socket_client(chr
, reconnect
, errp
) < 0) {
1437 static void qemu_chr_parse_socket(QemuOpts
*opts
, ChardevBackend
*backend
,
1440 const char *path
= qemu_opt_get(opts
, "path");
1441 const char *host
= qemu_opt_get(opts
, "host");
1442 const char *port
= qemu_opt_get(opts
, "port");
1443 const char *fd
= qemu_opt_get(opts
, "fd");
1445 bool tight
= qemu_opt_get_bool(opts
, "tight", true);
1446 bool abstract
= qemu_opt_get_bool(opts
, "abstract", false);
1448 SocketAddressLegacy
*addr
;
1449 ChardevSocket
*sock
;
1451 if ((!!path
+ !!fd
+ !!host
) > 1) {
1453 "None or one of 'path', 'fd' or 'host' option required.");
1457 if (host
&& !port
) {
1458 error_setg(errp
, "chardev: socket: no port given");
1462 backend
->type
= CHARDEV_BACKEND_KIND_SOCKET
;
1463 sock
= backend
->u
.socket
.data
= g_new0(ChardevSocket
, 1);
1464 qemu_chr_parse_common(opts
, qapi_ChardevSocket_base(sock
));
1466 if (qemu_opt_get(opts
, "delay") && qemu_opt_get(opts
, "nodelay")) {
1467 error_setg(errp
, "'delay' and 'nodelay' are mutually exclusive");
1471 qemu_opt_get(opts
, "delay") ||
1472 qemu_opt_get(opts
, "nodelay");
1474 !qemu_opt_get_bool(opts
, "delay", true) ||
1475 qemu_opt_get_bool(opts
, "nodelay", false);
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
->tls_creds
= g_strdup(qemu_opt_get(opts
, "tls-creds"));
1498 sock
->tls_authz
= g_strdup(qemu_opt_get(opts
, "tls-authz"));
1500 addr
= g_new0(SocketAddressLegacy
, 1);
1502 UnixSocketAddress
*q_unix
;
1503 addr
->type
= SOCKET_ADDRESS_TYPE_UNIX
;
1504 q_unix
= addr
->u
.q_unix
.data
= g_new0(UnixSocketAddress
, 1);
1505 q_unix
->path
= g_strdup(path
);
1507 q_unix
->has_tight
= true;
1508 q_unix
->tight
= tight
;
1509 q_unix
->has_abstract
= true;
1510 q_unix
->abstract
= abstract
;
1513 addr
->type
= SOCKET_ADDRESS_TYPE_INET
;
1514 addr
->u
.inet
.data
= g_new(InetSocketAddress
, 1);
1515 *addr
->u
.inet
.data
= (InetSocketAddress
) {
1516 .host
= g_strdup(host
),
1517 .port
= g_strdup(port
),
1518 .has_to
= qemu_opt_get(opts
, "to"),
1519 .to
= qemu_opt_get_number(opts
, "to", 0),
1520 .has_ipv4
= qemu_opt_get(opts
, "ipv4"),
1521 .ipv4
= qemu_opt_get_bool(opts
, "ipv4", 0),
1522 .has_ipv6
= qemu_opt_get(opts
, "ipv6"),
1523 .ipv6
= qemu_opt_get_bool(opts
, "ipv6", 0),
1526 addr
->type
= SOCKET_ADDRESS_TYPE_FD
;
1527 addr
->u
.fd
.data
= g_new(FdSocketAddress
, 1);
1528 addr
->u
.fd
.data
->str
= g_strdup(fd
);
1534 char_socket_get_addr(Object
*obj
, Visitor
*v
, const char *name
,
1535 void *opaque
, Error
**errp
)
1537 SocketChardev
*s
= SOCKET_CHARDEV(obj
);
1539 visit_type_SocketAddress(v
, name
, &s
->addr
, errp
);
1543 char_socket_get_connected(Object
*obj
, Error
**errp
)
1545 SocketChardev
*s
= SOCKET_CHARDEV(obj
);
1547 return s
->state
== TCP_CHARDEV_STATE_CONNECTED
;
1550 static void char_socket_class_init(ObjectClass
*oc
, void *data
)
1552 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
1554 cc
->supports_yank
= true;
1556 cc
->parse
= qemu_chr_parse_socket
;
1557 cc
->open
= qmp_chardev_open_socket
;
1558 cc
->chr_wait_connected
= tcp_chr_wait_connected
;
1559 cc
->chr_write
= tcp_chr_write
;
1560 cc
->chr_sync_read
= tcp_chr_sync_read
;
1561 cc
->chr_disconnect
= tcp_chr_disconnect
;
1562 cc
->get_msgfds
= tcp_get_msgfds
;
1563 cc
->set_msgfds
= tcp_set_msgfds
;
1564 cc
->chr_add_client
= tcp_chr_add_client
;
1565 cc
->chr_add_watch
= tcp_chr_add_watch
;
1566 cc
->chr_update_read_handler
= tcp_chr_update_read_handler
;
1568 object_class_property_add(oc
, "addr", "SocketAddress",
1569 char_socket_get_addr
, NULL
,
1572 object_class_property_add_bool(oc
, "connected", char_socket_get_connected
,
1576 static const TypeInfo char_socket_type_info
= {
1577 .name
= TYPE_CHARDEV_SOCKET
,
1578 .parent
= TYPE_CHARDEV
,
1579 .instance_size
= sizeof(SocketChardev
),
1580 .instance_finalize
= char_socket_finalize
,
1581 .class_init
= char_socket_class_init
,
1584 static void register_types(void)
1586 type_register_static(&char_socket_type_info
);
1589 type_init(register_types
);