2 * QEMU I/O channel sockets test
4 * Copyright (c) 2015-2016 Red Hat, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "io/channel-socket.h"
23 #include "io/channel-util.h"
24 #include "io-channel-helpers.h"
25 #include "qapi/error.h"
28 # define AI_ADDRCONFIG 0
30 #ifndef EAI_ADDRFAMILY
31 # define EAI_ADDRFAMILY 0
34 static int check_bind(const char *hostname, bool *has_proto)
37 struct addrinfo ai, *res = NULL;
41 memset(&ai, 0, sizeof(ai));
42 ai.ai_flags = AI_CANONNAME | AI_ADDRCONFIG;
43 ai.ai_family = AF_UNSPEC;
44 ai.ai_socktype = SOCK_STREAM;
47 rc = getaddrinfo(hostname, NULL, &ai, &res);
49 if (rc == EAI_ADDRFAMILY ||
57 fd = qemu_socket(res->ai_family, res->ai_socktype, res->ai_protocol);
62 if (bind(fd, res->ai_addr, res->ai_addrlen) < 0) {
63 if (errno == EADDRNOTAVAIL) {
84 static int check_protocol_support(bool *has_ipv4, bool *has_ipv6)
86 if (check_bind("127.0.0.1", has_ipv4) < 0) {
89 if (check_bind("::1", has_ipv6) < 0) {
97 static void test_io_channel_set_socket_bufs(QIOChannel *src,
100 int buflen = 64 * 1024;
103 * Make the socket buffers small so that we see
104 * the effects of partial reads/writes
106 setsockopt(((QIOChannelSocket *)src)->fd,
107 SOL_SOCKET, SO_SNDBUF,
111 setsockopt(((QIOChannelSocket *)dst)->fd,
112 SOL_SOCKET, SO_SNDBUF,
118 static void test_io_channel_setup_sync(SocketAddress *listen_addr,
119 SocketAddress *connect_addr,
123 QIOChannelSocket *lioc;
125 lioc = qio_channel_socket_new();
126 qio_channel_socket_listen_sync(lioc, listen_addr, &error_abort);
128 if (listen_addr->type == SOCKET_ADDRESS_KIND_INET) {
129 SocketAddress *laddr = qio_channel_socket_get_local_address(
132 g_free(connect_addr->u.inet.data->port);
133 connect_addr->u.inet.data->port = g_strdup(laddr->u.inet.data->port);
135 qapi_free_SocketAddress(laddr);
138 *src = QIO_CHANNEL(qio_channel_socket_new());
139 qio_channel_socket_connect_sync(
140 QIO_CHANNEL_SOCKET(*src), connect_addr, &error_abort);
141 qio_channel_set_delay(*src, false);
143 qio_channel_wait(QIO_CHANNEL(lioc), G_IO_IN);
144 *dst = QIO_CHANNEL(qio_channel_socket_accept(lioc, &error_abort));
147 test_io_channel_set_socket_bufs(*src, *dst);
149 object_unref(OBJECT(lioc));
153 struct TestIOChannelData {
159 static void test_io_channel_complete(Object *src,
163 struct TestIOChannelData *data = opaque;
164 data->err = err != NULL;
165 g_main_loop_quit(data->loop);
169 static void test_io_channel_setup_async(SocketAddress *listen_addr,
170 SocketAddress *connect_addr,
174 QIOChannelSocket *lioc;
175 struct TestIOChannelData data;
177 data.loop = g_main_loop_new(g_main_context_default(),
180 lioc = qio_channel_socket_new();
181 qio_channel_socket_listen_async(
183 test_io_channel_complete, &data, NULL);
185 g_main_loop_run(data.loop);
186 g_main_context_iteration(g_main_context_default(), FALSE);
190 if (listen_addr->type == SOCKET_ADDRESS_KIND_INET) {
191 SocketAddress *laddr = qio_channel_socket_get_local_address(
194 g_free(connect_addr->u.inet.data->port);
195 connect_addr->u.inet.data->port = g_strdup(laddr->u.inet.data->port);
197 qapi_free_SocketAddress(laddr);
200 *src = QIO_CHANNEL(qio_channel_socket_new());
202 qio_channel_socket_connect_async(
203 QIO_CHANNEL_SOCKET(*src), connect_addr,
204 test_io_channel_complete, &data, NULL);
206 g_main_loop_run(data.loop);
207 g_main_context_iteration(g_main_context_default(), FALSE);
211 qio_channel_wait(QIO_CHANNEL(lioc), G_IO_IN);
212 *dst = QIO_CHANNEL(qio_channel_socket_accept(lioc, &error_abort));
215 qio_channel_set_delay(*src, false);
216 test_io_channel_set_socket_bufs(*src, *dst);
218 object_unref(OBJECT(lioc));
220 g_main_loop_unref(data.loop);
224 static void test_io_channel(bool async,
225 SocketAddress *listen_addr,
226 SocketAddress *connect_addr,
229 QIOChannel *src, *dst;
230 QIOChannelTest *test;
232 test_io_channel_setup_async(listen_addr, connect_addr, &src, &dst);
235 qio_channel_has_feature(src, QIO_CHANNEL_FEATURE_FD_PASS));
237 qio_channel_has_feature(dst, QIO_CHANNEL_FEATURE_FD_PASS));
239 test = qio_channel_test_new();
240 qio_channel_test_run_threads(test, true, src, dst);
241 qio_channel_test_validate(test);
243 object_unref(OBJECT(src));
244 object_unref(OBJECT(dst));
246 test_io_channel_setup_async(listen_addr, connect_addr, &src, &dst);
249 qio_channel_has_feature(src, QIO_CHANNEL_FEATURE_FD_PASS));
251 qio_channel_has_feature(dst, QIO_CHANNEL_FEATURE_FD_PASS));
253 test = qio_channel_test_new();
254 qio_channel_test_run_threads(test, false, src, dst);
255 qio_channel_test_validate(test);
257 object_unref(OBJECT(src));
258 object_unref(OBJECT(dst));
260 test_io_channel_setup_sync(listen_addr, connect_addr, &src, &dst);
263 qio_channel_has_feature(src, QIO_CHANNEL_FEATURE_FD_PASS));
265 qio_channel_has_feature(dst, QIO_CHANNEL_FEATURE_FD_PASS));
267 test = qio_channel_test_new();
268 qio_channel_test_run_threads(test, true, src, dst);
269 qio_channel_test_validate(test);
271 object_unref(OBJECT(src));
272 object_unref(OBJECT(dst));
274 test_io_channel_setup_sync(listen_addr, connect_addr, &src, &dst);
277 qio_channel_has_feature(src, QIO_CHANNEL_FEATURE_FD_PASS));
279 qio_channel_has_feature(dst, QIO_CHANNEL_FEATURE_FD_PASS));
281 test = qio_channel_test_new();
282 qio_channel_test_run_threads(test, false, src, dst);
283 qio_channel_test_validate(test);
285 object_unref(OBJECT(src));
286 object_unref(OBJECT(dst));
291 static void test_io_channel_ipv4(bool async)
293 SocketAddress *listen_addr = g_new0(SocketAddress, 1);
294 SocketAddress *connect_addr = g_new0(SocketAddress, 1);
296 listen_addr->type = SOCKET_ADDRESS_KIND_INET;
297 listen_addr->u.inet.data = g_new(InetSocketAddress, 1);
298 *listen_addr->u.inet.data = (InetSocketAddress) {
299 .host = g_strdup("127.0.0.1"),
300 .port = NULL, /* Auto-select */
303 connect_addr->type = SOCKET_ADDRESS_KIND_INET;
304 connect_addr->u.inet.data = g_new(InetSocketAddress, 1);
305 *connect_addr->u.inet.data = (InetSocketAddress) {
306 .host = g_strdup("127.0.0.1"),
307 .port = NULL, /* Filled in later */
310 test_io_channel(async, listen_addr, connect_addr, false);
312 qapi_free_SocketAddress(listen_addr);
313 qapi_free_SocketAddress(connect_addr);
317 static void test_io_channel_ipv4_sync(void)
319 return test_io_channel_ipv4(false);
323 static void test_io_channel_ipv4_async(void)
325 return test_io_channel_ipv4(true);
329 static void test_io_channel_ipv6(bool async)
331 SocketAddress *listen_addr = g_new0(SocketAddress, 1);
332 SocketAddress *connect_addr = g_new0(SocketAddress, 1);
334 listen_addr->type = SOCKET_ADDRESS_KIND_INET;
335 listen_addr->u.inet.data = g_new(InetSocketAddress, 1);
336 *listen_addr->u.inet.data = (InetSocketAddress) {
337 .host = g_strdup("::1"),
338 .port = NULL, /* Auto-select */
341 connect_addr->type = SOCKET_ADDRESS_KIND_INET;
342 connect_addr->u.inet.data = g_new(InetSocketAddress, 1);
343 *connect_addr->u.inet.data = (InetSocketAddress) {
344 .host = g_strdup("::1"),
345 .port = NULL, /* Filled in later */
348 test_io_channel(async, listen_addr, connect_addr, false);
350 qapi_free_SocketAddress(listen_addr);
351 qapi_free_SocketAddress(connect_addr);
355 static void test_io_channel_ipv6_sync(void)
357 return test_io_channel_ipv6(false);
361 static void test_io_channel_ipv6_async(void)
363 return test_io_channel_ipv6(true);
368 static void test_io_channel_unix(bool async)
370 SocketAddress *listen_addr = g_new0(SocketAddress, 1);
371 SocketAddress *connect_addr = g_new0(SocketAddress, 1);
373 #define TEST_SOCKET "test-io-channel-socket.sock"
374 listen_addr->type = SOCKET_ADDRESS_KIND_UNIX;
375 listen_addr->u.q_unix.data = g_new0(UnixSocketAddress, 1);
376 listen_addr->u.q_unix.data->path = g_strdup(TEST_SOCKET);
378 connect_addr->type = SOCKET_ADDRESS_KIND_UNIX;
379 connect_addr->u.q_unix.data = g_new0(UnixSocketAddress, 1);
380 connect_addr->u.q_unix.data->path = g_strdup(TEST_SOCKET);
382 test_io_channel(async, listen_addr, connect_addr, true);
384 qapi_free_SocketAddress(listen_addr);
385 qapi_free_SocketAddress(connect_addr);
386 g_assert(g_file_test(TEST_SOCKET, G_FILE_TEST_EXISTS) == FALSE);
390 static void test_io_channel_unix_sync(void)
392 return test_io_channel_unix(false);
396 static void test_io_channel_unix_async(void)
398 return test_io_channel_unix(true);
401 static void test_io_channel_unix_fd_pass(void)
403 SocketAddress *listen_addr = g_new0(SocketAddress, 1);
404 SocketAddress *connect_addr = g_new0(SocketAddress, 1);
405 QIOChannel *src, *dst;
411 char bufsend[12], bufrecv[12];
412 struct iovec iosend[1], iorecv[1];
414 #define TEST_SOCKET "test-io-channel-socket.sock"
415 #define TEST_FILE "test-io-channel-socket.txt"
417 testfd = open(TEST_FILE, O_RDWR|O_TRUNC|O_CREAT, 0700);
418 g_assert(testfd != -1);
423 listen_addr->type = SOCKET_ADDRESS_KIND_UNIX;
424 listen_addr->u.q_unix.data = g_new0(UnixSocketAddress, 1);
425 listen_addr->u.q_unix.data->path = g_strdup(TEST_SOCKET);
427 connect_addr->type = SOCKET_ADDRESS_KIND_UNIX;
428 connect_addr->u.q_unix.data = g_new0(UnixSocketAddress, 1);
429 connect_addr->u.q_unix.data->path = g_strdup(TEST_SOCKET);
431 test_io_channel_setup_sync(listen_addr, connect_addr, &src, &dst);
433 memcpy(bufsend, "Hello World", G_N_ELEMENTS(bufsend));
435 iosend[0].iov_base = bufsend;
436 iosend[0].iov_len = G_N_ELEMENTS(bufsend);
438 iorecv[0].iov_base = bufrecv;
439 iorecv[0].iov_len = G_N_ELEMENTS(bufrecv);
441 g_assert(qio_channel_has_feature(src, QIO_CHANNEL_FEATURE_FD_PASS));
442 g_assert(qio_channel_has_feature(dst, QIO_CHANNEL_FEATURE_FD_PASS));
444 qio_channel_writev_full(src,
446 G_N_ELEMENTS(iosend),
448 G_N_ELEMENTS(fdsend),
451 qio_channel_readv_full(dst,
453 G_N_ELEMENTS(iorecv),
458 g_assert(nfdrecv == G_N_ELEMENTS(fdsend));
459 /* Each recvd FD should be different from sent FD */
460 for (i = 0; i < nfdrecv; i++) {
461 g_assert_cmpint(fdrecv[i], !=, testfd);
463 /* Each recvd FD should be different from each other */
464 g_assert_cmpint(fdrecv[0], !=, fdrecv[1]);
465 g_assert_cmpint(fdrecv[0], !=, fdrecv[2]);
466 g_assert_cmpint(fdrecv[1], !=, fdrecv[2]);
468 /* Check the I/O buf we sent at the same time matches */
469 g_assert(memcmp(bufsend, bufrecv, G_N_ELEMENTS(bufsend)) == 0);
471 /* Write some data into the FD we received */
472 g_assert(write(fdrecv[0], bufsend, G_N_ELEMENTS(bufsend)) ==
473 G_N_ELEMENTS(bufsend));
475 /* Read data from the original FD and make sure it matches */
476 memset(bufrecv, 0, G_N_ELEMENTS(bufrecv));
477 g_assert(lseek(testfd, 0, SEEK_SET) == 0);
478 g_assert(read(testfd, bufrecv, G_N_ELEMENTS(bufrecv)) ==
479 G_N_ELEMENTS(bufrecv));
480 g_assert(memcmp(bufsend, bufrecv, G_N_ELEMENTS(bufsend)) == 0);
482 object_unref(OBJECT(src));
483 object_unref(OBJECT(dst));
484 qapi_free_SocketAddress(listen_addr);
485 qapi_free_SocketAddress(connect_addr);
489 for (i = 0; i < nfdrecv; i++) {
495 static void test_io_channel_unix_listen_cleanup(void)
497 QIOChannelSocket *ioc;
498 struct sockaddr_un un;
501 #define TEST_SOCKET "test-io-channel-socket.sock"
503 ioc = qio_channel_socket_new();
505 /* Manually bind ioc without calling the qio api to avoid setting
506 * the LISTEN feature */
507 sock = qemu_socket(PF_UNIX, SOCK_STREAM, 0);
508 memset(&un, 0, sizeof(un));
509 un.sun_family = AF_UNIX;
510 snprintf(un.sun_path, sizeof(un.sun_path), "%s", TEST_SOCKET);
512 bind(sock, (struct sockaddr *)&un, sizeof(un));
514 ioc->localAddrLen = sizeof(ioc->localAddr);
515 getsockname(sock, (struct sockaddr *)&ioc->localAddr,
518 g_assert(g_file_test(TEST_SOCKET, G_FILE_TEST_EXISTS));
519 object_unref(OBJECT(ioc));
520 g_assert(g_file_test(TEST_SOCKET, G_FILE_TEST_EXISTS));
528 static void test_io_channel_ipv4_fd(void)
532 struct sockaddr_in sa = {
533 .sin_family = AF_INET,
535 .s_addr = htonl(INADDR_LOOPBACK),
537 /* Leave port unset for auto-assign */
539 socklen_t salen = sizeof(sa);
541 fd = socket(AF_INET, SOCK_STREAM, 0);
542 g_assert_cmpint(fd, >, -1);
544 g_assert_cmpint(bind(fd, (struct sockaddr *)&sa, salen), ==, 0);
546 ioc = qio_channel_new_fd(fd, &error_abort);
548 g_assert_cmpstr(object_get_typename(OBJECT(ioc)),
550 TYPE_QIO_CHANNEL_SOCKET);
552 object_unref(OBJECT(ioc));
556 int main(int argc, char **argv)
558 bool has_ipv4, has_ipv6;
560 module_call_init(MODULE_INIT_QOM);
563 g_test_init(&argc, &argv, NULL);
565 /* We're creating actual IPv4/6 sockets, so we should
566 * check if the host running tests actually supports
567 * each protocol to avoid breaking tests on machines
568 * with either IPv4 or IPv6 disabled.
570 if (check_protocol_support(&has_ipv4, &has_ipv6) < 0) {
575 g_test_add_func("/io/channel/socket/ipv4-sync",
576 test_io_channel_ipv4_sync);
577 g_test_add_func("/io/channel/socket/ipv4-async",
578 test_io_channel_ipv4_async);
579 g_test_add_func("/io/channel/socket/ipv4-fd",
580 test_io_channel_ipv4_fd);
583 g_test_add_func("/io/channel/socket/ipv6-sync",
584 test_io_channel_ipv6_sync);
585 g_test_add_func("/io/channel/socket/ipv6-async",
586 test_io_channel_ipv6_async);
590 g_test_add_func("/io/channel/socket/unix-sync",
591 test_io_channel_unix_sync);
592 g_test_add_func("/io/channel/socket/unix-async",
593 test_io_channel_unix_async);
594 g_test_add_func("/io/channel/socket/unix-fd-pass",
595 test_io_channel_unix_fd_pass);
596 g_test_add_func("/io/channel/socket/unix-listen-cleanup",
597 test_io_channel_unix_listen_cleanup);