2 * QTest testcase for the vhost-user
4 * Copyright (c) 2014 Virtual Open Systems Sarl.
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
11 #include "qemu/osdep.h"
14 #include "qapi/error.h"
15 #include "qapi/qmp/qdict.h"
16 #include "qemu/config-file.h"
17 #include "qemu/option.h"
18 #include "qemu/range.h"
19 #include "qemu/sockets.h"
20 #include "chardev/char-fe.h"
21 #include "qemu/memfd.h"
22 #include "sysemu/sysemu.h"
23 #include "libqos/libqos.h"
24 #include "libqos/pci-pc.h"
25 #include "libqos/virtio-pci.h"
27 #include "libqos/malloc-pc.h"
28 #include "hw/virtio/virtio-net.h"
30 #include <linux/vhost.h>
31 #include <linux/virtio_ids.h>
32 #include <linux/virtio_net.h>
36 #define QEMU_CMD_MEM " -m %d -object memory-backend-file,id=mem,size=%dM," \
37 "mem-path=%s,share=on -numa node,memdev=mem"
38 #define QEMU_CMD_MEMFD " -m %d -object memory-backend-memfd,id=mem,size=%dM," \
39 " -numa node,memdev=mem"
40 #define QEMU_CMD_CHR " -chardev socket,id=%s,path=%s%s"
41 #define QEMU_CMD_NETDEV " -netdev vhost-user,id=net0,chardev=%s,vhostforce"
42 #define QEMU_CMD_NET " -device virtio-net-pci,netdev=net0"
44 #define HUGETLBFS_MAGIC 0x958458f6
46 /*********** FROM hw/virtio/vhost-user.c *************************************/
48 #define VHOST_MEMORY_MAX_NREGIONS 8
49 #define VHOST_MAX_VIRTQUEUES 0x100
51 #define VHOST_USER_F_PROTOCOL_FEATURES 30
52 #define VHOST_USER_PROTOCOL_F_MQ 0
53 #define VHOST_USER_PROTOCOL_F_LOG_SHMFD 1
55 #define VHOST_LOG_PAGE 0x1000
57 typedef enum VhostUserRequest
{
59 VHOST_USER_GET_FEATURES
= 1,
60 VHOST_USER_SET_FEATURES
= 2,
61 VHOST_USER_SET_OWNER
= 3,
62 VHOST_USER_RESET_OWNER
= 4,
63 VHOST_USER_SET_MEM_TABLE
= 5,
64 VHOST_USER_SET_LOG_BASE
= 6,
65 VHOST_USER_SET_LOG_FD
= 7,
66 VHOST_USER_SET_VRING_NUM
= 8,
67 VHOST_USER_SET_VRING_ADDR
= 9,
68 VHOST_USER_SET_VRING_BASE
= 10,
69 VHOST_USER_GET_VRING_BASE
= 11,
70 VHOST_USER_SET_VRING_KICK
= 12,
71 VHOST_USER_SET_VRING_CALL
= 13,
72 VHOST_USER_SET_VRING_ERR
= 14,
73 VHOST_USER_GET_PROTOCOL_FEATURES
= 15,
74 VHOST_USER_SET_PROTOCOL_FEATURES
= 16,
75 VHOST_USER_GET_QUEUE_NUM
= 17,
76 VHOST_USER_SET_VRING_ENABLE
= 18,
80 typedef struct VhostUserMemoryRegion
{
81 uint64_t guest_phys_addr
;
83 uint64_t userspace_addr
;
85 } VhostUserMemoryRegion
;
87 typedef struct VhostUserMemory
{
90 VhostUserMemoryRegion regions
[VHOST_MEMORY_MAX_NREGIONS
];
93 typedef struct VhostUserLog
{
98 typedef struct VhostUserMsg
{
99 VhostUserRequest request
;
101 #define VHOST_USER_VERSION_MASK (0x3)
102 #define VHOST_USER_REPLY_MASK (0x1<<2)
104 uint32_t size
; /* the following payload size */
106 #define VHOST_USER_VRING_IDX_MASK (0xff)
107 #define VHOST_USER_VRING_NOFD_MASK (0x1<<8)
109 struct vhost_vring_state state
;
110 struct vhost_vring_addr addr
;
111 VhostUserMemory memory
;
114 } QEMU_PACKED VhostUserMsg
;
116 static VhostUserMsg m
__attribute__ ((unused
));
117 #define VHOST_USER_HDR_SIZE (sizeof(m.request) \
121 #define VHOST_USER_PAYLOAD_SIZE (sizeof(m) - VHOST_USER_HDR_SIZE)
123 /* The version of the protocol we support */
124 #define VHOST_USER_VERSION (0x1)
125 /*****************************************************************************/
129 TEST_FLAGS_DISCONNECT
,
134 typedef struct TestServer
{
136 QVirtioPCIDevice
*dev
;
137 QVirtQueue
*vq
[VHOST_MAX_VIRTQUEUES
];
143 int fds
[VHOST_MEMORY_MAX_NREGIONS
];
144 VhostUserMemory memory
;
152 QGuestAllocator
*alloc
;
155 static TestServer
*test_server_new(const gchar
*name
);
156 static void test_server_free(TestServer
*server
);
157 static void test_server_listen(TestServer
*server
);
159 static const char *tmpfs
;
160 static const char *root
;
168 static char *get_qemu_cmd(TestServer
*s
,
169 int mem
, enum test_memfd memfd
, const char *mem_path
,
170 const char *chr_opts
, const char *extra
)
172 if (memfd
== TEST_MEMFD_AUTO
&& qemu_memfd_check()) {
173 memfd
= TEST_MEMFD_YES
;
176 if (memfd
== TEST_MEMFD_YES
) {
177 return g_strdup_printf(QEMU_CMD_MEMFD QEMU_CMD_CHR
178 QEMU_CMD_NETDEV QEMU_CMD_NET
"%s", mem
, mem
,
179 s
->chr_name
, s
->socket_path
,
180 chr_opts
, s
->chr_name
, extra
);
182 return g_strdup_printf(QEMU_CMD_MEM QEMU_CMD_CHR
183 QEMU_CMD_NETDEV QEMU_CMD_NET
"%s", mem
, mem
,
184 mem_path
, s
->chr_name
, s
->socket_path
,
185 chr_opts
, s
->chr_name
, extra
);
189 static void init_virtio_dev(TestServer
*s
, uint32_t features_mask
)
194 s
->bus
= qpci_init_pc(global_qtest
, NULL
);
195 g_assert_nonnull(s
->bus
);
197 s
->dev
= qvirtio_pci_device_find(s
->bus
, VIRTIO_ID_NET
);
198 g_assert_nonnull(s
->dev
);
200 qvirtio_pci_device_enable(s
->dev
);
201 qvirtio_reset(&s
->dev
->vdev
);
202 qvirtio_set_acknowledge(&s
->dev
->vdev
);
203 qvirtio_set_driver(&s
->dev
->vdev
);
205 s
->alloc
= pc_alloc_init(global_qtest
);
207 for (i
= 0; i
< s
->queues
* 2; i
++) {
208 s
->vq
[i
] = qvirtqueue_setup(&s
->dev
->vdev
, s
->alloc
, i
);
211 features
= qvirtio_get_features(&s
->dev
->vdev
);
212 features
= features
& features_mask
;
213 qvirtio_set_features(&s
->dev
->vdev
, features
);
215 qvirtio_set_driver_ok(&s
->dev
->vdev
);
218 static void uninit_virtio_dev(TestServer
*s
)
222 for (i
= 0; i
< s
->queues
* 2; i
++) {
223 qvirtqueue_cleanup(s
->dev
->vdev
.bus
, s
->vq
[i
], s
->alloc
);
225 pc_alloc_uninit(s
->alloc
);
227 qvirtio_pci_device_free(s
->dev
);
230 static void wait_for_fds(TestServer
*s
)
234 g_mutex_lock(&s
->data_mutex
);
236 end_time
= g_get_monotonic_time() + 5 * G_TIME_SPAN_SECOND
;
237 while (!s
->fds_num
) {
238 if (!g_cond_wait_until(&s
->data_cond
, &s
->data_mutex
, end_time
)) {
239 /* timeout has passed */
240 g_assert(s
->fds_num
);
245 /* check for sanity */
246 g_assert_cmpint(s
->fds_num
, >, 0);
247 g_assert_cmpint(s
->fds_num
, ==, s
->memory
.nregions
);
249 g_mutex_unlock(&s
->data_mutex
);
252 static void read_guest_mem_server(TestServer
*s
)
260 g_mutex_lock(&s
->data_mutex
);
262 /* iterate all regions */
263 for (i
= 0; i
< s
->fds_num
; i
++) {
265 /* We'll check only the region statring at 0x0*/
266 if (s
->memory
.regions
[i
].guest_phys_addr
!= 0x0) {
270 g_assert_cmpint(s
->memory
.regions
[i
].memory_size
, >, 1024);
272 size
= s
->memory
.regions
[i
].memory_size
+
273 s
->memory
.regions
[i
].mmap_offset
;
275 guest_mem
= mmap(0, size
, PROT_READ
| PROT_WRITE
,
276 MAP_SHARED
, s
->fds
[i
], 0);
278 g_assert(guest_mem
!= MAP_FAILED
);
279 guest_mem
+= (s
->memory
.regions
[i
].mmap_offset
/ sizeof(*guest_mem
));
281 for (j
= 0; j
< 256; j
++) {
282 uint32_t a
= readl(s
->memory
.regions
[i
].guest_phys_addr
+ j
*4);
283 uint32_t b
= guest_mem
[j
];
285 g_assert_cmpint(a
, ==, b
);
288 munmap(guest_mem
, s
->memory
.regions
[i
].memory_size
);
291 g_mutex_unlock(&s
->data_mutex
);
294 static void *thread_function(void *data
)
296 GMainLoop
*loop
= data
;
297 g_main_loop_run(loop
);
301 static int chr_can_read(void *opaque
)
303 return VHOST_USER_HDR_SIZE
;
306 static void chr_read(void *opaque
, const uint8_t *buf
, int size
)
308 TestServer
*s
= opaque
;
309 CharBackend
*chr
= &s
->chr
;
311 uint8_t *p
= (uint8_t *) &msg
;
315 qemu_chr_fe_disconnect(chr
);
316 /* now switch to non-failure */
317 s
->test_fail
= false;
320 if (size
!= VHOST_USER_HDR_SIZE
) {
321 g_test_message("Wrong message size received %d\n", size
);
325 g_mutex_lock(&s
->data_mutex
);
326 memcpy(p
, buf
, VHOST_USER_HDR_SIZE
);
329 p
+= VHOST_USER_HDR_SIZE
;
330 size
= qemu_chr_fe_read_all(chr
, p
, msg
.size
);
331 if (size
!= msg
.size
) {
332 g_test_message("Wrong message size received %d != %d\n",
338 switch (msg
.request
) {
339 case VHOST_USER_GET_FEATURES
:
340 /* send back features to qemu */
341 msg
.flags
|= VHOST_USER_REPLY_MASK
;
342 msg
.size
= sizeof(m
.payload
.u64
);
343 msg
.payload
.u64
= 0x1ULL
<< VHOST_F_LOG_ALL
|
344 0x1ULL
<< VHOST_USER_F_PROTOCOL_FEATURES
;
346 msg
.payload
.u64
|= 0x1ULL
<< VIRTIO_NET_F_MQ
;
348 if (s
->test_flags
>= TEST_FLAGS_BAD
) {
350 s
->test_flags
= TEST_FLAGS_END
;
352 p
= (uint8_t *) &msg
;
353 qemu_chr_fe_write_all(chr
, p
, VHOST_USER_HDR_SIZE
+ msg
.size
);
356 case VHOST_USER_SET_FEATURES
:
357 g_assert_cmpint(msg
.payload
.u64
& (0x1ULL
<< VHOST_USER_F_PROTOCOL_FEATURES
),
359 if (s
->test_flags
== TEST_FLAGS_DISCONNECT
) {
360 qemu_chr_fe_disconnect(chr
);
361 s
->test_flags
= TEST_FLAGS_BAD
;
365 case VHOST_USER_GET_PROTOCOL_FEATURES
:
366 /* send back features to qemu */
367 msg
.flags
|= VHOST_USER_REPLY_MASK
;
368 msg
.size
= sizeof(m
.payload
.u64
);
369 msg
.payload
.u64
= 1 << VHOST_USER_PROTOCOL_F_LOG_SHMFD
;
371 msg
.payload
.u64
|= 1 << VHOST_USER_PROTOCOL_F_MQ
;
373 p
= (uint8_t *) &msg
;
374 qemu_chr_fe_write_all(chr
, p
, VHOST_USER_HDR_SIZE
+ msg
.size
);
377 case VHOST_USER_GET_VRING_BASE
:
378 /* send back vring base to qemu */
379 msg
.flags
|= VHOST_USER_REPLY_MASK
;
380 msg
.size
= sizeof(m
.payload
.state
);
381 msg
.payload
.state
.num
= 0;
382 p
= (uint8_t *) &msg
;
383 qemu_chr_fe_write_all(chr
, p
, VHOST_USER_HDR_SIZE
+ msg
.size
);
385 assert(msg
.payload
.state
.index
< s
->queues
* 2);
386 s
->rings
&= ~(0x1ULL
<< msg
.payload
.state
.index
);
389 case VHOST_USER_SET_MEM_TABLE
:
390 /* received the mem table */
391 memcpy(&s
->memory
, &msg
.payload
.memory
, sizeof(msg
.payload
.memory
));
392 s
->fds_num
= qemu_chr_fe_get_msgfds(chr
, s
->fds
,
393 G_N_ELEMENTS(s
->fds
));
395 /* signal the test that it can continue */
396 g_cond_signal(&s
->data_cond
);
399 case VHOST_USER_SET_VRING_KICK
:
400 case VHOST_USER_SET_VRING_CALL
:
402 qemu_chr_fe_get_msgfds(chr
, &fd
, 1);
404 * This is a non-blocking eventfd.
405 * The receive function forces it to be blocking,
406 * so revert it back to non-blocking.
408 qemu_set_nonblock(fd
);
411 case VHOST_USER_SET_LOG_BASE
:
412 if (s
->log_fd
!= -1) {
416 qemu_chr_fe_get_msgfds(chr
, &s
->log_fd
, 1);
417 msg
.flags
|= VHOST_USER_REPLY_MASK
;
419 p
= (uint8_t *) &msg
;
420 qemu_chr_fe_write_all(chr
, p
, VHOST_USER_HDR_SIZE
);
422 g_cond_signal(&s
->data_cond
);
425 case VHOST_USER_SET_VRING_BASE
:
426 assert(msg
.payload
.state
.index
< s
->queues
* 2);
427 s
->rings
|= 0x1ULL
<< msg
.payload
.state
.index
;
430 case VHOST_USER_GET_QUEUE_NUM
:
431 msg
.flags
|= VHOST_USER_REPLY_MASK
;
432 msg
.size
= sizeof(m
.payload
.u64
);
433 msg
.payload
.u64
= s
->queues
;
434 p
= (uint8_t *) &msg
;
435 qemu_chr_fe_write_all(chr
, p
, VHOST_USER_HDR_SIZE
+ msg
.size
);
442 g_mutex_unlock(&s
->data_mutex
);
445 static const char *init_hugepagefs(const char *path
)
450 if (access(path
, R_OK
| W_OK
| X_OK
)) {
451 g_test_message("access on path (%s): %s\n", path
, strerror(errno
));
456 ret
= statfs(path
, &fs
);
457 } while (ret
!= 0 && errno
== EINTR
);
460 g_test_message("statfs on path (%s): %s\n", path
, strerror(errno
));
464 if (fs
.f_type
!= HUGETLBFS_MAGIC
) {
465 g_test_message("Warning: path not on HugeTLBFS: %s\n", path
);
472 static TestServer
*test_server_new(const gchar
*name
)
474 TestServer
*server
= g_new0(TestServer
, 1);
476 server
->socket_path
= g_strdup_printf("%s/%s.sock", tmpfs
, name
);
477 server
->mig_path
= g_strdup_printf("%s/%s.mig", tmpfs
, name
);
478 server
->chr_name
= g_strdup_printf("chr-%s", name
);
480 g_mutex_init(&server
->data_mutex
);
481 g_cond_init(&server
->data_cond
);
489 static void chr_event(void *opaque
, int event
)
491 TestServer
*s
= opaque
;
493 if (s
->test_flags
== TEST_FLAGS_END
&&
494 event
== CHR_EVENT_CLOSED
) {
495 s
->test_flags
= TEST_FLAGS_OK
;
499 static void test_server_create_chr(TestServer
*server
, const gchar
*opt
)
504 chr_path
= g_strdup_printf("unix:%s%s", server
->socket_path
, opt
);
505 chr
= qemu_chr_new(server
->chr_name
, chr_path
);
508 g_assert_nonnull(chr
);
509 qemu_chr_fe_init(&server
->chr
, chr
, &error_abort
);
510 qemu_chr_fe_set_handlers(&server
->chr
, chr_can_read
, chr_read
,
511 chr_event
, NULL
, server
, NULL
, true);
514 static void test_server_listen(TestServer
*server
)
516 test_server_create_chr(server
, ",server,nowait");
519 static gboolean
_test_server_free(TestServer
*server
)
523 qemu_chr_fe_deinit(&server
->chr
, true);
525 for (i
= 0; i
< server
->fds_num
; i
++) {
526 close(server
->fds
[i
]);
529 if (server
->log_fd
!= -1) {
530 close(server
->log_fd
);
533 unlink(server
->socket_path
);
534 g_free(server
->socket_path
);
536 unlink(server
->mig_path
);
537 g_free(server
->mig_path
);
539 g_free(server
->chr_name
);
540 g_assert(server
->bus
);
541 qpci_free_pc(server
->bus
);
548 static void test_server_free(TestServer
*server
)
550 g_idle_add((GSourceFunc
)_test_server_free
, server
);
553 static void wait_for_log_fd(TestServer
*s
)
557 g_mutex_lock(&s
->data_mutex
);
558 end_time
= g_get_monotonic_time() + 5 * G_TIME_SPAN_SECOND
;
559 while (s
->log_fd
== -1) {
560 if (!g_cond_wait_until(&s
->data_cond
, &s
->data_mutex
, end_time
)) {
561 /* timeout has passed */
562 g_assert(s
->log_fd
!= -1);
567 g_mutex_unlock(&s
->data_mutex
);
570 static void write_guest_mem(TestServer
*s
, uint32_t seed
)
578 /* iterate all regions */
579 for (i
= 0; i
< s
->fds_num
; i
++) {
581 /* We'll write only the region statring at 0x0 */
582 if (s
->memory
.regions
[i
].guest_phys_addr
!= 0x0) {
586 g_assert_cmpint(s
->memory
.regions
[i
].memory_size
, >, 1024);
588 size
= s
->memory
.regions
[i
].memory_size
+
589 s
->memory
.regions
[i
].mmap_offset
;
591 guest_mem
= mmap(0, size
, PROT_READ
| PROT_WRITE
,
592 MAP_SHARED
, s
->fds
[i
], 0);
594 g_assert(guest_mem
!= MAP_FAILED
);
595 guest_mem
+= (s
->memory
.regions
[i
].mmap_offset
/ sizeof(*guest_mem
));
597 for (j
= 0; j
< 256; j
++) {
598 guest_mem
[j
] = seed
+ j
;
601 munmap(guest_mem
, s
->memory
.regions
[i
].memory_size
);
606 static guint64
get_log_size(TestServer
*s
)
608 guint64 log_size
= 0;
611 for (i
= 0; i
< s
->memory
.nregions
; ++i
) {
612 VhostUserMemoryRegion
*reg
= &s
->memory
.regions
[i
];
613 guint64 last
= range_get_last(reg
->guest_phys_addr
,
615 log_size
= MAX(log_size
, last
/ (8 * VHOST_LOG_PAGE
) + 1);
621 typedef struct TestMigrateSource
{
628 test_migrate_source_check(GSource
*source
)
630 TestMigrateSource
*t
= (TestMigrateSource
*)source
;
631 gboolean overlap
= t
->src
->rings
&& t
->dest
->rings
;
638 GSourceFuncs test_migrate_source_funcs
= {
639 .check
= test_migrate_source_check
,
642 static void test_read_guest_mem(const void *arg
)
644 enum test_memfd memfd
= GPOINTER_TO_INT(arg
);
645 TestServer
*server
= NULL
;
646 char *qemu_cmd
= NULL
;
647 QTestState
*s
= NULL
;
649 server
= test_server_new(memfd
== TEST_MEMFD_YES
?
650 "read-guest-memfd" : "read-guest-mem");
651 test_server_listen(server
);
653 qemu_cmd
= get_qemu_cmd(server
, 512, memfd
, root
, "", "");
655 s
= qtest_start(qemu_cmd
);
658 init_virtio_dev(server
, 1u << VIRTIO_NET_F_MAC
);
660 read_guest_mem_server(server
);
662 uninit_virtio_dev(server
);
665 test_server_free(server
);
668 static void test_migrate(void)
670 TestServer
*s
= test_server_new("src");
671 TestServer
*dest
= test_server_new("dest");
672 char *uri
= g_strdup_printf("%s%s", "unix:", dest
->mig_path
);
673 QTestState
*global
= global_qtest
, *from
, *to
;
680 test_server_listen(s
);
681 test_server_listen(dest
);
683 cmd
= get_qemu_cmd(s
, 2, TEST_MEMFD_AUTO
, root
, "", "");
684 from
= qtest_start(cmd
);
687 init_virtio_dev(s
, 1u << VIRTIO_NET_F_MAC
);
688 init_virtio_dev(dest
, 1u << VIRTIO_NET_F_MAC
);
690 size
= get_log_size(s
);
691 g_assert_cmpint(size
, ==, (2 * 1024 * 1024) / (VHOST_LOG_PAGE
* 8));
693 tmp
= g_strdup_printf(" -incoming %s", uri
);
694 cmd
= get_qemu_cmd(dest
, 2, TEST_MEMFD_AUTO
, root
, "", tmp
);
696 to
= qtest_init(cmd
);
699 source
= g_source_new(&test_migrate_source_funcs
,
700 sizeof(TestMigrateSource
));
701 ((TestMigrateSource
*)source
)->src
= s
;
702 ((TestMigrateSource
*)source
)->dest
= dest
;
703 g_source_attach(source
, NULL
);
705 /* slow down migration to have time to fiddle with log */
706 /* TODO: qtest could learn to break on some places */
707 rsp
= qmp("{ 'execute': 'migrate_set_speed',"
708 "'arguments': { 'value': 10 } }");
709 g_assert(qdict_haskey(rsp
, "return"));
712 cmd
= g_strdup_printf("{ 'execute': 'migrate',"
713 "'arguments': { 'uri': '%s' } }",
717 g_assert(qdict_haskey(rsp
, "return"));
722 log
= mmap(0, size
, PROT_READ
| PROT_WRITE
, MAP_SHARED
, s
->log_fd
, 0);
723 g_assert(log
!= MAP_FAILED
);
725 /* modify first page */
726 write_guest_mem(s
, 0x42);
730 /* speed things up */
731 rsp
= qmp("{ 'execute': 'migrate_set_speed',"
732 "'arguments': { 'value': 0 } }");
733 g_assert(qdict_haskey(rsp
, "return"));
736 qmp_eventwait("STOP");
739 qmp_eventwait("RESUME");
741 read_guest_mem_server(dest
);
743 uninit_virtio_dev(s
);
744 uninit_virtio_dev(dest
);
746 g_source_destroy(source
);
747 g_source_unref(source
);
750 test_server_free(dest
);
755 global_qtest
= global
;
758 static void wait_for_rings_started(TestServer
*s
, size_t count
)
762 g_mutex_lock(&s
->data_mutex
);
763 end_time
= g_get_monotonic_time() + 5 * G_TIME_SPAN_SECOND
;
764 while (ctpop64(s
->rings
) != count
) {
765 if (!g_cond_wait_until(&s
->data_cond
, &s
->data_mutex
, end_time
)) {
766 /* timeout has passed */
767 g_assert_cmpint(ctpop64(s
->rings
), ==, count
);
772 g_mutex_unlock(&s
->data_mutex
);
775 #if defined(CONFIG_HAS_GLIB_SUBPROCESS_TESTS)
776 static inline void test_server_connect(TestServer
*server
)
778 test_server_create_chr(server
, ",reconnect=1");
782 reconnect_cb(gpointer user_data
)
784 TestServer
*s
= user_data
;
786 qemu_chr_fe_disconnect(&s
->chr
);
792 connect_thread(gpointer data
)
794 TestServer
*s
= data
;
796 /* wait for qemu to start before first try, to avoid extra warnings */
797 g_usleep(G_USEC_PER_SEC
);
798 test_server_connect(s
);
803 static void test_reconnect_subprocess(void)
805 TestServer
*s
= test_server_new("reconnect");
808 g_thread_new("connect", connect_thread
, s
);
809 cmd
= get_qemu_cmd(s
, 2, TEST_MEMFD_AUTO
, root
, ",server", "");
813 init_virtio_dev(s
, 1u << VIRTIO_NET_F_MAC
);
815 wait_for_rings_started(s
, 2);
820 g_idle_add(reconnect_cb
, s
);
822 wait_for_rings_started(s
, 2);
824 uninit_virtio_dev(s
);
831 static void test_reconnect(void)
833 gchar
*path
= g_strdup_printf("/%s/vhost-user/reconnect/subprocess",
835 g_test_trap_subprocess(path
, 0, 0);
836 g_test_trap_assert_passed();
840 static void test_connect_fail_subprocess(void)
842 TestServer
*s
= test_server_new("connect-fail");
846 g_thread_new("connect", connect_thread
, s
);
847 cmd
= get_qemu_cmd(s
, 2, TEST_MEMFD_AUTO
, root
, ",server", "");
851 init_virtio_dev(s
, 1u << VIRTIO_NET_F_MAC
);
853 wait_for_rings_started(s
, 2);
855 uninit_virtio_dev(s
);
861 static void test_connect_fail(void)
863 gchar
*path
= g_strdup_printf("/%s/vhost-user/connect-fail/subprocess",
865 g_test_trap_subprocess(path
, 0, 0);
866 g_test_trap_assert_passed();
870 static void test_flags_mismatch_subprocess(void)
872 TestServer
*s
= test_server_new("flags-mismatch");
875 s
->test_flags
= TEST_FLAGS_DISCONNECT
;
876 g_thread_new("connect", connect_thread
, s
);
877 cmd
= get_qemu_cmd(s
, 2, TEST_MEMFD_AUTO
, root
, ",server", "");
881 init_virtio_dev(s
, 1u << VIRTIO_NET_F_MAC
);
883 wait_for_rings_started(s
, 2);
885 uninit_virtio_dev(s
);
891 static void test_flags_mismatch(void)
893 gchar
*path
= g_strdup_printf("/%s/vhost-user/flags-mismatch/subprocess",
895 g_test_trap_subprocess(path
, 0, 0);
896 g_test_trap_assert_passed();
902 static void test_multiqueue(void)
904 TestServer
*s
= test_server_new("mq");
906 uint32_t features_mask
= ~(QVIRTIO_F_BAD_FEATURE
|
907 (1u << VIRTIO_RING_F_INDIRECT_DESC
) |
908 (1u << VIRTIO_RING_F_EVENT_IDX
));
910 test_server_listen(s
);
912 if (qemu_memfd_check()) {
913 cmd
= g_strdup_printf(
914 QEMU_CMD_MEMFD QEMU_CMD_CHR QEMU_CMD_NETDEV
",queues=%d "
915 "-device virtio-net-pci,netdev=net0,mq=on,vectors=%d",
916 512, 512, s
->chr_name
,
917 s
->socket_path
, "", s
->chr_name
,
918 s
->queues
, s
->queues
* 2 + 2);
920 cmd
= g_strdup_printf(
921 QEMU_CMD_MEM QEMU_CMD_CHR QEMU_CMD_NETDEV
",queues=%d "
922 "-device virtio-net-pci,netdev=net0,mq=on,vectors=%d",
923 512, 512, root
, s
->chr_name
,
924 s
->socket_path
, "", s
->chr_name
,
925 s
->queues
, s
->queues
* 2 + 2);
930 init_virtio_dev(s
, features_mask
);
932 wait_for_rings_started(s
, s
->queues
* 2);
934 uninit_virtio_dev(s
);
941 int main(int argc
, char **argv
)
945 char template[] = "/tmp/vhost-test-XXXXXX";
949 g_test_init(&argc
, &argv
, NULL
);
951 module_call_init(MODULE_INIT_QOM
);
952 qemu_add_opts(&qemu_chardev_opts
);
954 tmpfs
= mkdtemp(template);
956 g_test_message("mkdtemp on path (%s): %s\n", template, strerror(errno
));
960 hugefs
= getenv("QTEST_HUGETLBFS_PATH");
962 root
= init_hugepagefs(hugefs
);
968 loop
= g_main_loop_new(NULL
, FALSE
);
969 /* run the main loop thread so the chardev may operate */
970 thread
= g_thread_new(NULL
, thread_function
, loop
);
972 if (qemu_memfd_check()) {
973 qtest_add_data_func("/vhost-user/read-guest-mem/memfd",
974 GINT_TO_POINTER(TEST_MEMFD_YES
),
975 test_read_guest_mem
);
977 qtest_add_data_func("/vhost-user/read-guest-mem/memfile",
978 GINT_TO_POINTER(TEST_MEMFD_NO
), test_read_guest_mem
);
979 qtest_add_func("/vhost-user/migrate", test_migrate
);
980 qtest_add_func("/vhost-user/multiqueue", test_multiqueue
);
982 #if defined(CONFIG_HAS_GLIB_SUBPROCESS_TESTS)
983 /* keeps failing on build-system since Aug 15 2017 */
984 if (getenv("QTEST_VHOST_USER_FIXME")) {
985 qtest_add_func("/vhost-user/reconnect/subprocess",
986 test_reconnect_subprocess
);
987 qtest_add_func("/vhost-user/reconnect", test_reconnect
);
988 qtest_add_func("/vhost-user/connect-fail/subprocess",
989 test_connect_fail_subprocess
);
990 qtest_add_func("/vhost-user/connect-fail", test_connect_fail
);
991 qtest_add_func("/vhost-user/flags-mismatch/subprocess",
992 test_flags_mismatch_subprocess
);
993 qtest_add_func("/vhost-user/flags-mismatch", test_flags_mismatch
);
1001 /* finish the helper thread and dispatch pending sources */
1002 g_main_loop_quit(loop
);
1003 g_thread_join(thread
);
1004 while (g_main_context_pending(NULL
)) {
1005 g_main_context_iteration (NULL
, TRUE
);
1007 g_main_loop_unref(loop
);
1011 g_test_message("unable to rmdir: path (%s): %s\n",
1012 tmpfs
, strerror(errno
));
1014 g_assert_cmpint(ret
, ==, 0);