1 #include "qemu/osdep.h"
2 #include <glib/gstdio.h>
4 #include "qemu/config-file.h"
5 #include "qemu/option.h"
6 #include "qemu/sockets.h"
7 #include "chardev/char-fe.h"
8 #include "chardev/char-mux.h"
9 #include "sysemu/sysemu.h"
10 #include "qapi/error.h"
11 #include "qapi/qapi-commands-char.h"
12 #include "qapi/qmp/qdict.h"
13 #include "qom/qom-qobject.h"
17 typedef struct FeHandler
{
23 static void main_loop(void)
27 main_loop_wait(false);
31 static int fe_can_read(void *opaque
)
33 FeHandler
*h
= opaque
;
35 return sizeof(h
->read_buf
) - h
->read_count
;
38 static void fe_read(void *opaque
, const uint8_t *buf
, int size
)
40 FeHandler
*h
= opaque
;
42 g_assert_cmpint(size
, <=, fe_can_read(opaque
));
44 memcpy(h
->read_buf
+ h
->read_count
, buf
, size
);
45 h
->read_count
+= size
;
49 static void fe_event(void *opaque
, int event
)
51 FeHandler
*h
= opaque
;
53 h
->last_event
= event
;
54 if (event
!= CHR_EVENT_BREAK
) {
60 static void char_console_test_subprocess(void)
65 opts
= qemu_opts_create(qemu_find_opts("chardev"), "console-label",
67 qemu_opt_set(opts
, "backend", "console", &error_abort
);
69 chr
= qemu_chr_new_from_opts(opts
, NULL
);
70 g_assert_nonnull(chr
);
72 qemu_chr_write_all(chr
, (const uint8_t *)"CONSOLE", 7);
75 object_unparent(OBJECT(chr
));
78 static void char_console_test(void)
80 g_test_trap_subprocess("/char/console/subprocess", 0, 0);
81 g_test_trap_assert_passed();
82 g_test_trap_assert_stdout("CONSOLE");
85 static void char_stdio_test_subprocess(void)
91 chr
= qemu_chr_new("label", "stdio");
92 g_assert_nonnull(chr
);
94 qemu_chr_fe_init(&be
, chr
, &error_abort
);
95 qemu_chr_fe_set_open(&be
, true);
96 ret
= qemu_chr_fe_write(&be
, (void *)"buf", 4);
97 g_assert_cmpint(ret
, ==, 4);
99 qemu_chr_fe_deinit(&be
, true);
102 static void char_stdio_test(void)
104 g_test_trap_subprocess("/char/stdio/subprocess", 0, 0);
105 g_test_trap_assert_passed();
106 g_test_trap_assert_stdout("buf");
109 static void char_ringbuf_test(void)
117 opts
= qemu_opts_create(qemu_find_opts("chardev"), "ringbuf-label",
119 qemu_opt_set(opts
, "backend", "ringbuf", &error_abort
);
121 qemu_opt_set(opts
, "size", "5", &error_abort
);
122 chr
= qemu_chr_new_from_opts(opts
, NULL
);
126 opts
= qemu_opts_create(qemu_find_opts("chardev"), "ringbuf-label",
128 qemu_opt_set(opts
, "backend", "ringbuf", &error_abort
);
129 qemu_opt_set(opts
, "size", "2", &error_abort
);
130 chr
= qemu_chr_new_from_opts(opts
, &error_abort
);
131 g_assert_nonnull(chr
);
134 qemu_chr_fe_init(&be
, chr
, &error_abort
);
135 ret
= qemu_chr_fe_write(&be
, (void *)"buff", 4);
136 g_assert_cmpint(ret
, ==, 4);
138 data
= qmp_ringbuf_read("ringbuf-label", 4, false, 0, &error_abort
);
139 g_assert_cmpstr(data
, ==, "ff");
142 data
= qmp_ringbuf_read("ringbuf-label", 4, false, 0, &error_abort
);
143 g_assert_cmpstr(data
, ==, "");
146 qemu_chr_fe_deinit(&be
, true);
149 opts
= qemu_opts_create(qemu_find_opts("chardev"), "memory-label",
151 qemu_opt_set(opts
, "backend", "memory", &error_abort
);
152 qemu_opt_set(opts
, "size", "2", &error_abort
);
153 chr
= qemu_chr_new_from_opts(opts
, NULL
);
154 g_assert_nonnull(chr
);
155 object_unparent(OBJECT(chr
));
159 static void char_mux_test(void)
164 FeHandler h1
= { 0, }, h2
= { 0, };
165 CharBackend chr_be1
, chr_be2
;
167 opts
= qemu_opts_create(qemu_find_opts("chardev"), "mux-label",
169 qemu_opt_set(opts
, "backend", "ringbuf", &error_abort
);
170 qemu_opt_set(opts
, "size", "128", &error_abort
);
171 qemu_opt_set(opts
, "mux", "on", &error_abort
);
172 chr
= qemu_chr_new_from_opts(opts
, &error_abort
);
173 g_assert_nonnull(chr
);
176 qemu_chr_fe_init(&chr_be1
, chr
, &error_abort
);
177 qemu_chr_fe_set_handlers(&chr_be1
,
185 qemu_chr_fe_init(&chr_be2
, chr
, &error_abort
);
186 qemu_chr_fe_set_handlers(&chr_be2
,
193 qemu_chr_fe_take_focus(&chr_be2
);
195 base
= qemu_chr_find("mux-label-base");
196 g_assert_cmpint(qemu_chr_be_can_write(base
), !=, 0);
198 qemu_chr_be_write(base
, (void *)"hello", 6);
199 g_assert_cmpint(h1
.read_count
, ==, 0);
200 g_assert_cmpint(h2
.read_count
, ==, 6);
201 g_assert_cmpstr(h2
.read_buf
, ==, "hello");
204 g_assert_cmpint(h1
.last_event
, !=, 42); /* should be MUX_OUT or OPENED */
205 g_assert_cmpint(h2
.last_event
, !=, 42); /* should be MUX_IN or OPENED */
206 /* sending event on the base broadcast to all fe, historical reasons? */
207 qemu_chr_be_event(base
, 42);
208 g_assert_cmpint(h1
.last_event
, ==, 42);
209 g_assert_cmpint(h2
.last_event
, ==, 42);
210 qemu_chr_be_event(chr
, -1);
211 g_assert_cmpint(h1
.last_event
, ==, 42);
212 g_assert_cmpint(h2
.last_event
, ==, -1);
215 qemu_chr_be_write(base
, (void *)"\1b", 2);
216 g_assert_cmpint(h1
.last_event
, ==, 42);
217 g_assert_cmpint(h2
.last_event
, ==, CHR_EVENT_BREAK
);
219 qemu_chr_be_write(base
, (void *)"\1c", 2);
220 g_assert_cmpint(h1
.last_event
, ==, CHR_EVENT_MUX_IN
);
221 g_assert_cmpint(h2
.last_event
, ==, CHR_EVENT_MUX_OUT
);
222 qemu_chr_be_event(chr
, -1);
223 g_assert_cmpint(h1
.last_event
, ==, -1);
224 g_assert_cmpint(h2
.last_event
, ==, CHR_EVENT_MUX_OUT
);
226 qemu_chr_be_write(base
, (void *)"hello", 6);
227 g_assert_cmpint(h2
.read_count
, ==, 0);
228 g_assert_cmpint(h1
.read_count
, ==, 6);
229 g_assert_cmpstr(h1
.read_buf
, ==, "hello");
232 qemu_chr_be_write(base
, (void *)"\1b", 2);
233 g_assert_cmpint(h1
.last_event
, ==, CHR_EVENT_BREAK
);
234 g_assert_cmpint(h2
.last_event
, ==, CHR_EVENT_MUX_OUT
);
236 /* remove first handler */
237 qemu_chr_fe_set_handlers(&chr_be1
, NULL
, NULL
, NULL
, NULL
,
239 qemu_chr_be_write(base
, (void *)"hello", 6);
240 g_assert_cmpint(h1
.read_count
, ==, 0);
241 g_assert_cmpint(h2
.read_count
, ==, 0);
243 qemu_chr_be_write(base
, (void *)"\1c", 2);
244 qemu_chr_be_write(base
, (void *)"hello", 6);
245 g_assert_cmpint(h1
.read_count
, ==, 0);
246 g_assert_cmpint(h2
.read_count
, ==, 6);
247 g_assert_cmpstr(h2
.read_buf
, ==, "hello");
251 qemu_chr_be_write(base
, (void *)"\1?", 2);
252 data
= qmp_ringbuf_read("mux-label-base", 128, false, 0, &error_abort
);
253 g_assert_cmpint(strlen(data
), !=, 0);
256 qemu_chr_fe_deinit(&chr_be1
, false);
257 qemu_chr_fe_deinit(&chr_be2
, true);
260 typedef struct SocketIdleData
{
265 CharBackend
*client_be
;
268 static gboolean
char_socket_test_idle(gpointer user_data
)
270 SocketIdleData
*data
= user_data
;
272 if (object_property_get_bool(OBJECT(data
->chr
), "connected", NULL
)
273 == data
->conn_expected
) {
281 static void socket_read(void *opaque
, const uint8_t *buf
, int size
)
283 SocketIdleData
*data
= opaque
;
285 g_assert_cmpint(size
, ==, 1);
286 g_assert_cmpint(*buf
, ==, 'Z');
288 size
= qemu_chr_fe_write(data
->be
, (const uint8_t *)"hello", 5);
289 g_assert_cmpint(size
, ==, 5);
292 static int socket_can_read(void *opaque
)
297 static void socket_read_hello(void *opaque
, const uint8_t *buf
, int size
)
299 g_assert_cmpint(size
, ==, 5);
300 g_assert(strncmp((char *)buf
, "hello", 5) == 0);
305 static int socket_can_read_hello(void *opaque
)
310 static void char_socket_test_common(Chardev
*chr
, bool reconnect
)
316 SocketIdleData d
= { .chr
= chr
};
318 CharBackend client_be
;
324 g_assert_nonnull(chr
);
325 g_assert(!object_property_get_bool(OBJECT(chr
), "connected", &error_abort
));
327 addr
= object_property_get_qobject(OBJECT(chr
), "addr", &error_abort
);
328 qdict
= qobject_to(QDict
, addr
);
329 port
= qdict_get_str(qdict
, "port");
330 tmp
= g_strdup_printf("tcp:127.0.0.1:%s%s", port
,
331 reconnect
? ",reconnect=1" : "");
332 qobject_unref(qdict
);
334 qemu_chr_fe_init(&be
, chr
, &error_abort
);
335 qemu_chr_fe_set_handlers(&be
, socket_can_read
, socket_read
,
336 NULL
, NULL
, &d
, NULL
, true);
338 chr_client
= qemu_chr_new("client", tmp
);
339 qemu_chr_fe_init(&client_be
, chr_client
, &error_abort
);
340 qemu_chr_fe_set_handlers(&client_be
, socket_can_read_hello
,
342 NULL
, NULL
, &d
, NULL
, true);
345 d
.conn_expected
= true;
346 guint id
= g_idle_add(char_socket_test_idle
, &d
);
347 g_source_set_name_by_id(id
, "test-idle");
348 g_assert_cmpint(id
, >, 0);
352 id
= g_idle_add(char_socket_test_idle
, &d
);
353 g_source_set_name_by_id(id
, "test-idle");
354 g_assert_cmpint(id
, >, 0);
357 g_assert(object_property_get_bool(OBJECT(chr
), "connected", &error_abort
));
358 g_assert(object_property_get_bool(OBJECT(chr_client
),
359 "connected", &error_abort
));
361 qemu_chr_write_all(chr_client
, (const uint8_t *)"Z", 1);
364 object_unparent(OBJECT(chr_client
));
367 d
.conn_expected
= false;
368 g_idle_add(char_socket_test_idle
, &d
);
371 object_unparent(OBJECT(chr
));
375 static void char_socket_basic_test(void)
377 Chardev
*chr
= qemu_chr_new("server", "tcp:127.0.0.1:0,server,nowait");
379 char_socket_test_common(chr
, false);
383 static void char_socket_reconnect_test(void)
385 Chardev
*chr
= qemu_chr_new("server", "tcp:127.0.0.1:0,server,nowait");
387 char_socket_test_common(chr
, true);
391 static void char_socket_fdpass_test(void)
397 SocketAddress
*addr
= g_new0(SocketAddress
, 1);
399 addr
->type
= SOCKET_ADDRESS_TYPE_INET
;
400 addr
->u
.inet
.host
= g_strdup("127.0.0.1");
401 addr
->u
.inet
.port
= g_strdup("0");
403 fd
= socket_listen(addr
, &error_abort
);
406 qapi_free_SocketAddress(addr
);
408 optstr
= g_strdup_printf("socket,id=cdev,fd=%d,server,nowait", fd
);
410 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
413 g_assert_nonnull(opts
);
415 chr
= qemu_chr_new_from_opts(opts
, &error_abort
);
419 char_socket_test_common(chr
, false);
423 static void websock_server_read(void *opaque
, const uint8_t *buf
, int size
)
425 g_assert_cmpint(size
, ==, 5);
426 g_assert(memcmp(buf
, "world", size
) == 0);
431 static int websock_server_can_read(void *opaque
)
437 static bool websock_check_http_headers(char *buf
, int size
)
440 const char *ans
[] = { "HTTP/1.1 101 Switching Protocols\r\n",
441 "Server: QEMU VNC\r\n",
442 "Upgrade: websocket\r\n",
443 "Connection: Upgrade\r\n",
444 "Sec-WebSocket-Accept:",
445 "Sec-WebSocket-Protocol: binary\r\n" };
447 for (i
= 0; i
< 6; i
++) {
448 if (g_strstr_len(buf
, size
, ans
[i
]) == NULL
) {
457 static void websock_client_read(void *opaque
, const uint8_t *buf
, int size
)
459 const uint8_t ping
[] = { 0x89, 0x85, /* Ping header */
460 0x07, 0x77, 0x9e, 0xf9, /* Masking key */
461 0x6f, 0x12, 0xf2, 0x95, 0x68 /* "hello" */ };
463 const uint8_t binary
[] = { 0x82, 0x85, /* Binary header */
464 0x74, 0x90, 0xb9, 0xdf, /* Masking key */
465 0x03, 0xff, 0xcb, 0xb3, 0x10 /* "world" */ };
466 Chardev
*chr_client
= opaque
;
468 if (websock_check_http_headers((char *) buf
, size
)) {
469 qemu_chr_fe_write(chr_client
->be
, ping
, sizeof(ping
));
470 } else if (buf
[0] == 0x8a && buf
[1] == 0x05) {
471 g_assert(strncmp((char *) buf
+ 2, "hello", 5) == 0);
472 qemu_chr_fe_write(chr_client
->be
, binary
, sizeof(binary
));
474 g_assert(buf
[0] == 0x88 && buf
[1] == 0x16);
475 g_assert(strncmp((char *) buf
+ 4, "peer requested close", 10) == 0);
481 static int websock_client_can_read(void *opaque
)
487 static void char_websock_test(void)
493 char *handshake_port
;
495 CharBackend client_be
;
497 Chardev
*chr
= qemu_chr_new("server",
498 "websocket:127.0.0.1:0,server,nowait");
499 const char handshake
[] = "GET / HTTP/1.1\r\n"
500 "Upgrade: websocket\r\n"
501 "Connection: Upgrade\r\n"
502 "Host: localhost:%s\r\n"
503 "Origin: http://localhost:%s\r\n"
504 "Sec-WebSocket-Key: o9JHNiS3/0/0zYE1wa3yIw==\r\n"
505 "Sec-WebSocket-Version: 13\r\n"
506 "Sec-WebSocket-Protocol: binary\r\n\r\n";
507 const uint8_t close
[] = { 0x88, 0x82, /* Close header */
508 0xef, 0xaa, 0xc5, 0x97, /* Masking key */
509 0xec, 0x42 /* Status code */ };
511 addr
= object_property_get_qobject(OBJECT(chr
), "addr", &error_abort
);
512 qdict
= qobject_to(QDict
, addr
);
513 port
= qdict_get_str(qdict
, "port");
514 tmp
= g_strdup_printf("tcp:127.0.0.1:%s", port
);
515 handshake_port
= g_strdup_printf(handshake
, port
, port
);
516 qobject_unref(qdict
);
518 qemu_chr_fe_init(&be
, chr
, &error_abort
);
519 qemu_chr_fe_set_handlers(&be
, websock_server_can_read
, websock_server_read
,
520 NULL
, NULL
, chr
, NULL
, true);
522 chr_client
= qemu_chr_new("client", tmp
);
523 qemu_chr_fe_init(&client_be
, chr_client
, &error_abort
);
524 qemu_chr_fe_set_handlers(&client_be
, websock_client_can_read
,
526 NULL
, NULL
, chr_client
, NULL
, true);
529 qemu_chr_write_all(chr_client
,
530 (uint8_t *) handshake_port
,
531 strlen(handshake_port
));
532 g_free(handshake_port
);
535 g_assert(object_property_get_bool(OBJECT(chr
), "connected", &error_abort
));
536 g_assert(object_property_get_bool(OBJECT(chr_client
),
537 "connected", &error_abort
));
539 qemu_chr_write_all(chr_client
, close
, sizeof(close
));
542 object_unparent(OBJECT(chr_client
));
543 object_unparent(OBJECT(chr
));
548 static void char_pipe_test(void)
550 gchar
*tmp_path
= g_dir_make_tmp("qemu-test-char.XXXXXX", NULL
);
551 gchar
*tmp
, *in
, *out
, *pipe
= g_build_filename(tmp_path
, "pipe", NULL
);
556 FeHandler fe
= { 0, };
558 in
= g_strdup_printf("%s.in", pipe
);
559 if (mkfifo(in
, 0600) < 0) {
562 out
= g_strdup_printf("%s.out", pipe
);
563 if (mkfifo(out
, 0600) < 0) {
567 tmp
= g_strdup_printf("pipe:%s", pipe
);
568 chr
= qemu_chr_new("pipe", tmp
);
569 g_assert_nonnull(chr
);
572 qemu_chr_fe_init(&be
, chr
, &error_abort
);
574 ret
= qemu_chr_fe_write(&be
, (void *)"pipe-out", 9);
575 g_assert_cmpint(ret
, ==, 9);
577 fd
= open(out
, O_RDWR
);
578 ret
= read(fd
, buf
, sizeof(buf
));
579 g_assert_cmpint(ret
, ==, 9);
580 g_assert_cmpstr(buf
, ==, "pipe-out");
583 fd
= open(in
, O_WRONLY
);
584 ret
= write(fd
, "pipe-in", 8);
585 g_assert_cmpint(ret
, ==, 8);
588 qemu_chr_fe_set_handlers(&be
,
598 g_assert_cmpint(fe
.read_count
, ==, 8);
599 g_assert_cmpstr(fe
.read_buf
, ==, "pipe-in");
601 qemu_chr_fe_deinit(&be
, true);
603 g_assert(g_unlink(in
) == 0);
604 g_assert(g_unlink(out
) == 0);
605 g_assert(g_rmdir(tmp_path
) == 0);
613 static int make_udp_socket(int *port
)
615 struct sockaddr_in addr
= { 0, };
616 socklen_t alen
= sizeof(addr
);
617 int ret
, sock
= qemu_socket(PF_INET
, SOCK_DGRAM
, 0);
619 g_assert_cmpint(sock
, >, 0);
620 addr
.sin_family
= AF_INET
;
621 addr
.sin_addr
.s_addr
= htonl(INADDR_ANY
);
623 ret
= bind(sock
, (struct sockaddr
*)&addr
, sizeof(addr
));
624 g_assert_cmpint(ret
, ==, 0);
625 ret
= getsockname(sock
, (struct sockaddr
*)&addr
, &alen
);
626 g_assert_cmpint(ret
, ==, 0);
628 *port
= ntohs(addr
.sin_port
);
632 static void char_udp_test_internal(Chardev
*reuse_chr
, int sock
)
634 struct sockaddr_in other
;
635 SocketIdleData d
= { 0, };
638 socklen_t alen
= sizeof(other
);
648 sock
= make_udp_socket(&port
);
649 tmp
= g_strdup_printf("udp:127.0.0.1:%d", port
);
650 chr
= qemu_chr_new("client", tmp
);
651 g_assert_nonnull(chr
);
653 be
= g_alloca(sizeof(CharBackend
));
654 qemu_chr_fe_init(be
, chr
, &error_abort
);
658 qemu_chr_fe_set_handlers(be
, socket_can_read_hello
, socket_read_hello
,
659 NULL
, NULL
, &d
, NULL
, true);
660 ret
= qemu_chr_write_all(chr
, (uint8_t *)"hello", 5);
661 g_assert_cmpint(ret
, ==, 5);
663 ret
= recvfrom(sock
, buf
, sizeof(buf
), 0,
664 (struct sockaddr
*)&other
, &alen
);
665 g_assert_cmpint(ret
, ==, 5);
666 ret
= sendto(sock
, buf
, 5, 0, (struct sockaddr
*)&other
, alen
);
667 g_assert_cmpint(ret
, ==, 5);
673 qemu_chr_fe_deinit(be
, true);
678 static void char_udp_test(void)
680 char_udp_test_internal(NULL
, 0);
683 #ifdef HAVE_CHARDEV_SERIAL
684 static void char_serial_test(void)
689 opts
= qemu_opts_create(qemu_find_opts("chardev"), "serial-id",
691 qemu_opt_set(opts
, "backend", "serial", &error_abort
);
692 qemu_opt_set(opts
, "path", "/dev/null", &error_abort
);
694 chr
= qemu_chr_new_from_opts(opts
, NULL
);
695 g_assert_nonnull(chr
);
696 /* TODO: add more tests with a pty */
697 object_unparent(OBJECT(chr
));
700 qemu_opt_set(opts
, "backend", "tty", &error_abort
);
701 chr
= qemu_chr_new_from_opts(opts
, NULL
);
702 g_assert_nonnull(chr
);
703 object_unparent(OBJECT(chr
));
710 static void char_file_fifo_test(void)
714 char *tmp_path
= g_dir_make_tmp("qemu-test-char.XXXXXX", NULL
);
715 char *fifo
= g_build_filename(tmp_path
, "fifo", NULL
);
716 char *out
= g_build_filename(tmp_path
, "out", NULL
);
717 ChardevFile file
= { .in
= fifo
,
720 ChardevBackend backend
= { .type
= CHARDEV_BACKEND_KIND_FILE
,
721 .u
.file
.data
= &file
};
722 FeHandler fe
= { 0, };
725 if (mkfifo(fifo
, 0600) < 0) {
729 fd
= open(fifo
, O_RDWR
);
730 ret
= write(fd
, "fifo-in", 8);
731 g_assert_cmpint(ret
, ==, 8);
733 chr
= qemu_chardev_new("label-file", TYPE_CHARDEV_FILE
, &backend
,
736 qemu_chr_fe_init(&be
, chr
, &error_abort
);
737 qemu_chr_fe_set_handlers(&be
,
744 g_assert_cmpint(fe
.last_event
, !=, CHR_EVENT_BREAK
);
745 qmp_chardev_send_break("label-foo", NULL
);
746 g_assert_cmpint(fe
.last_event
, !=, CHR_EVENT_BREAK
);
747 qmp_chardev_send_break("label-file", NULL
);
748 g_assert_cmpint(fe
.last_event
, ==, CHR_EVENT_BREAK
);
754 g_assert_cmpint(fe
.read_count
, ==, 8);
755 g_assert_cmpstr(fe
.read_buf
, ==, "fifo-in");
757 qemu_chr_fe_deinit(&be
, true);
768 static void char_file_test_internal(Chardev
*ext_chr
, const char *filepath
)
770 char *tmp_path
= g_dir_make_tmp("qemu-test-char.XXXXXX", NULL
);
773 char *contents
= NULL
;
774 ChardevFile file
= {};
775 ChardevBackend backend
= { .type
= CHARDEV_BACKEND_KIND_FILE
,
776 .u
.file
.data
= &file
};
782 out
= g_strdup(filepath
);
785 out
= g_build_filename(tmp_path
, "out", NULL
);
787 chr
= qemu_chardev_new(NULL
, TYPE_CHARDEV_FILE
, &backend
,
790 ret
= qemu_chr_write_all(chr
, (uint8_t *)"hello!", 6);
791 g_assert_cmpint(ret
, ==, 6);
793 ret
= g_file_get_contents(out
, &contents
, &length
, NULL
);
794 g_assert(ret
== TRUE
);
795 g_assert_cmpint(length
, ==, 6);
796 g_assert(strncmp(contents
, "hello!", 6) == 0);
799 object_unref(OBJECT(chr
));
808 static void char_file_test(void)
810 char_file_test_internal(NULL
, NULL
);
813 static void char_null_test(void)
820 chr
= qemu_chr_find("label-null");
823 chr
= qemu_chr_new("label-null", "null");
824 chr
= qemu_chr_find("label-null");
825 g_assert_nonnull(chr
);
827 g_assert(qemu_chr_has_feature(chr
,
828 QEMU_CHAR_FEATURE_FD_PASS
) == false);
829 g_assert(qemu_chr_has_feature(chr
,
830 QEMU_CHAR_FEATURE_RECONNECTABLE
) == false);
832 /* check max avail */
833 qemu_chr_fe_init(&be
, chr
, &error_abort
);
834 qemu_chr_fe_init(&be
, chr
, &err
);
835 error_free_or_abort(&err
);
837 /* deinit & reinit */
838 qemu_chr_fe_deinit(&be
, false);
839 qemu_chr_fe_init(&be
, chr
, &error_abort
);
841 qemu_chr_fe_set_open(&be
, true);
843 qemu_chr_fe_set_handlers(&be
,
850 ret
= qemu_chr_fe_write(&be
, (void *)"buf", 4);
851 g_assert_cmpint(ret
, ==, 4);
853 qemu_chr_fe_deinit(&be
, true);
856 static void char_invalid_test(void)
860 chr
= qemu_chr_new("label-invalid", "invalid");
864 static int chardev_change(void *opaque
)
869 static int chardev_change_denied(void *opaque
)
874 static void char_hotswap_test(void)
880 gchar
*tmp_path
= g_dir_make_tmp("qemu-test-char.XXXXXX", NULL
);
881 char *filename
= g_build_filename(tmp_path
, "file", NULL
);
882 ChardevFile file
= { .out
= filename
};
883 ChardevBackend backend
= { .type
= CHARDEV_BACKEND_KIND_FILE
,
884 .u
.file
.data
= &file
};
888 int sock
= make_udp_socket(&port
);
889 g_assert_cmpint(sock
, >, 0);
891 chr_args
= g_strdup_printf("udp:127.0.0.1:%d", port
);
893 chr
= qemu_chr_new("chardev", chr_args
);
894 qemu_chr_fe_init(&be
, chr
, &error_abort
);
896 /* check that chardev operates correctly */
897 char_udp_test_internal(chr
, sock
);
899 /* set the handler that denies the hotswap */
900 qemu_chr_fe_set_handlers(&be
, NULL
, NULL
,
901 NULL
, chardev_change_denied
, NULL
, NULL
, true);
903 /* now, change is denied and has to keep the old backend operating */
904 ret
= qmp_chardev_change("chardev", &backend
, NULL
);
906 g_assert(be
.chr
== chr
);
908 char_udp_test_internal(chr
, sock
);
910 /* now allow the change */
911 qemu_chr_fe_set_handlers(&be
, NULL
, NULL
,
912 NULL
, chardev_change
, NULL
, NULL
, true);
914 /* has to succeed now */
915 ret
= qmp_chardev_change("chardev", &backend
, &error_abort
);
916 g_assert(be
.chr
!= chr
);
921 /* run the file chardev test */
922 char_file_test_internal(chr
, filename
);
924 object_unparent(OBJECT(chr
));
926 qapi_free_ChardevReturn(ret
);
934 int main(int argc
, char **argv
)
936 qemu_init_main_loop(&error_abort
);
939 g_test_init(&argc
, &argv
, NULL
);
941 module_call_init(MODULE_INIT_QOM
);
942 qemu_add_opts(&qemu_chardev_opts
);
944 g_test_add_func("/char/null", char_null_test
);
945 g_test_add_func("/char/invalid", char_invalid_test
);
946 g_test_add_func("/char/ringbuf", char_ringbuf_test
);
947 g_test_add_func("/char/mux", char_mux_test
);
949 g_test_add_func("/char/console/subprocess", char_console_test_subprocess
);
950 g_test_add_func("/char/console", char_console_test
);
952 g_test_add_func("/char/stdio/subprocess", char_stdio_test_subprocess
);
953 g_test_add_func("/char/stdio", char_stdio_test
);
955 g_test_add_func("/char/pipe", char_pipe_test
);
957 g_test_add_func("/char/file", char_file_test
);
959 g_test_add_func("/char/file-fifo", char_file_fifo_test
);
961 g_test_add_func("/char/socket/basic", char_socket_basic_test
);
962 g_test_add_func("/char/socket/reconnect", char_socket_reconnect_test
);
963 g_test_add_func("/char/socket/fdpass", char_socket_fdpass_test
);
964 g_test_add_func("/char/udp", char_udp_test
);
965 #ifdef HAVE_CHARDEV_SERIAL
966 g_test_add_func("/char/serial", char_serial_test
);
968 g_test_add_func("/char/hotswap", char_hotswap_test
);
969 g_test_add_func("/char/websocket", char_websock_test
);