2014-06-10 10:03:23 +00:00
|
|
|
/*
|
|
|
|
* QTest testcase for the vhost-user
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 Virtual Open Systems Sarl.
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-06-19 15:07:59 +00:00
|
|
|
#include <glib.h>
|
|
|
|
|
2014-06-10 10:03:23 +00:00
|
|
|
#include "libqtest.h"
|
|
|
|
#include "qemu/option.h"
|
|
|
|
#include "sysemu/char.h"
|
|
|
|
#include "sysemu/sysemu.h"
|
|
|
|
|
|
|
|
#include <linux/vhost.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/vfs.h>
|
|
|
|
#include <qemu/sockets.h>
|
|
|
|
|
vhost-user-test: Fix 'make check' broken on glib < 2.26
After commit 89b516d8, some logics is turbid and
breaks 'make check' as below errors:
tests/vhost-user-test.c: In function '_cond_wait_until':
tests/vhost-user-test.c:154: error: 'G_TIME_SPAN_SECOND' undeclared (first use in this function)
tests/vhost-user-test.c:154: error: (Each undeclared identifier is reported only once
tests/vhost-user-test.c:154: error: for each function it appears in.)
tests/vhost-user-test.c: In function 'read_guest_mem':
tests/vhost-user-test.c:192: warning: implicit declaration of function 'g_get_monotonic_time'
tests/vhost-user-test.c:192: warning: nested extern declaration of 'g_get_monotonic_time'
tests/vhost-user-test.c:192: error: 'G_TIME_SPAN_SECOND' undeclared (first use in this function)
make: *** [tests/vhost-user-test.o] Error 1
First, vhost-usr-test.c rely on glib-compat.h because
of using G_TIME_SPAN_SECOND [glib < 2.26] and g_get_monotonic_time(),
but vhost-usr-test.c defined QEMU_GLIB_COMPAT_H, which make
glib-compat.h will not be included.
Second, if we remove QEMU_GLIB_COMPAT_H definability in
vhost-usr-test.c, then we will get below warnings:
tests/vhost-user-test.c: In function 'read_guest_mem':
tests/vhost-user-test.c:190: warning: passing argument 1 of 'g_mutex_lock' from incompatible pointer type
tests/vhost-user-test.c:234: warning: passing argument 1 of 'g_mutex_unlock' from incompatible pointer type
That's because glib-compat.h redefine the g_mutex_lock/unlock
function. Those functions' arguments is CompatGMutex/CompatGCond,
but vhost-user-test.c is using GMutex/GCond, which cause the type
is not consistent.
We can rerealize those functions of vhost-user-test.c,
which need a lots of patches. Let's simply address it, and
leave this file alone.
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Message-id: 1415149259-6188-1-git-send-email-arei.gonglei@huawei.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2014-11-05 01:00:59 +00:00
|
|
|
/* GLIB version compatibility flags */
|
|
|
|
#if !GLIB_CHECK_VERSION(2, 26, 0)
|
|
|
|
#define G_TIME_SPAN_SECOND (G_GINT64_CONSTANT(1000000))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if GLIB_CHECK_VERSION(2, 28, 0)
|
|
|
|
#define HAVE_MONOTONIC_TIME
|
|
|
|
#endif
|
|
|
|
|
2014-06-10 10:03:23 +00:00
|
|
|
#define QEMU_CMD_ACCEL " -machine accel=tcg"
|
|
|
|
#define QEMU_CMD_MEM " -m 512 -object memory-backend-file,id=mem,size=512M,"\
|
|
|
|
"mem-path=%s,share=on -numa node,memdev=mem"
|
|
|
|
#define QEMU_CMD_CHR " -chardev socket,id=chr0,path=%s"
|
|
|
|
#define QEMU_CMD_NETDEV " -netdev vhost-user,id=net0,chardev=chr0,vhostforce"
|
|
|
|
#define QEMU_CMD_NET " -device virtio-net-pci,netdev=net0 "
|
|
|
|
#define QEMU_CMD_ROM " -option-rom ../pc-bios/pxe-virtio.rom"
|
|
|
|
|
|
|
|
#define QEMU_CMD QEMU_CMD_ACCEL QEMU_CMD_MEM QEMU_CMD_CHR \
|
|
|
|
QEMU_CMD_NETDEV QEMU_CMD_NET QEMU_CMD_ROM
|
|
|
|
|
|
|
|
#define HUGETLBFS_MAGIC 0x958458f6
|
|
|
|
|
|
|
|
/*********** FROM hw/virtio/vhost-user.c *************************************/
|
|
|
|
|
|
|
|
#define VHOST_MEMORY_MAX_NREGIONS 8
|
|
|
|
|
2015-09-24 16:22:01 +00:00
|
|
|
#define VHOST_USER_F_PROTOCOL_FEATURES 30
|
|
|
|
|
2014-06-10 10:03:23 +00:00
|
|
|
typedef enum VhostUserRequest {
|
|
|
|
VHOST_USER_NONE = 0,
|
|
|
|
VHOST_USER_GET_FEATURES = 1,
|
|
|
|
VHOST_USER_SET_FEATURES = 2,
|
|
|
|
VHOST_USER_SET_OWNER = 3,
|
2015-09-23 04:19:57 +00:00
|
|
|
VHOST_USER_RESET_DEVICE = 4,
|
2014-06-10 10:03:23 +00:00
|
|
|
VHOST_USER_SET_MEM_TABLE = 5,
|
|
|
|
VHOST_USER_SET_LOG_BASE = 6,
|
|
|
|
VHOST_USER_SET_LOG_FD = 7,
|
|
|
|
VHOST_USER_SET_VRING_NUM = 8,
|
|
|
|
VHOST_USER_SET_VRING_ADDR = 9,
|
|
|
|
VHOST_USER_SET_VRING_BASE = 10,
|
|
|
|
VHOST_USER_GET_VRING_BASE = 11,
|
|
|
|
VHOST_USER_SET_VRING_KICK = 12,
|
|
|
|
VHOST_USER_SET_VRING_CALL = 13,
|
|
|
|
VHOST_USER_SET_VRING_ERR = 14,
|
2015-09-24 16:22:01 +00:00
|
|
|
VHOST_USER_GET_PROTOCOL_FEATURES = 15,
|
|
|
|
VHOST_USER_SET_PROTOCOL_FEATURES = 16,
|
2014-06-10 10:03:23 +00:00
|
|
|
VHOST_USER_MAX
|
|
|
|
} VhostUserRequest;
|
|
|
|
|
|
|
|
typedef struct VhostUserMemoryRegion {
|
|
|
|
uint64_t guest_phys_addr;
|
|
|
|
uint64_t memory_size;
|
|
|
|
uint64_t userspace_addr;
|
2014-07-12 01:43:19 +00:00
|
|
|
uint64_t mmap_offset;
|
2014-06-10 10:03:23 +00:00
|
|
|
} VhostUserMemoryRegion;
|
|
|
|
|
|
|
|
typedef struct VhostUserMemory {
|
|
|
|
uint32_t nregions;
|
|
|
|
uint32_t padding;
|
|
|
|
VhostUserMemoryRegion regions[VHOST_MEMORY_MAX_NREGIONS];
|
|
|
|
} VhostUserMemory;
|
|
|
|
|
|
|
|
typedef struct VhostUserMsg {
|
|
|
|
VhostUserRequest request;
|
|
|
|
|
|
|
|
#define VHOST_USER_VERSION_MASK (0x3)
|
|
|
|
#define VHOST_USER_REPLY_MASK (0x1<<2)
|
|
|
|
uint32_t flags;
|
|
|
|
uint32_t size; /* the following payload size */
|
|
|
|
union {
|
|
|
|
uint64_t u64;
|
|
|
|
struct vhost_vring_state state;
|
|
|
|
struct vhost_vring_addr addr;
|
|
|
|
VhostUserMemory memory;
|
|
|
|
};
|
|
|
|
} QEMU_PACKED VhostUserMsg;
|
|
|
|
|
|
|
|
static VhostUserMsg m __attribute__ ((unused));
|
|
|
|
#define VHOST_USER_HDR_SIZE (sizeof(m.request) \
|
|
|
|
+ sizeof(m.flags) \
|
|
|
|
+ sizeof(m.size))
|
|
|
|
|
|
|
|
#define VHOST_USER_PAYLOAD_SIZE (sizeof(m) - VHOST_USER_HDR_SIZE)
|
|
|
|
|
|
|
|
/* The version of the protocol we support */
|
|
|
|
#define VHOST_USER_VERSION (0x1)
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
int fds_num = 0, fds[VHOST_MEMORY_MAX_NREGIONS];
|
|
|
|
static VhostUserMemory memory;
|
2015-09-29 12:12:03 +00:00
|
|
|
static CompatGMutex data_mutex;
|
|
|
|
static CompatGCond data_cond;
|
2014-06-19 15:07:59 +00:00
|
|
|
|
2015-09-29 12:12:03 +00:00
|
|
|
#if !GLIB_CHECK_VERSION(2, 32, 0)
|
|
|
|
static gboolean g_cond_wait_until(CompatGCond cond, CompatGMutex mutex,
|
|
|
|
gint64 end_time)
|
2014-06-19 15:07:59 +00:00
|
|
|
{
|
|
|
|
gboolean ret = FALSE;
|
2015-09-29 12:12:03 +00:00
|
|
|
end_time -= g_get_monotonic_time();
|
2014-06-19 15:07:59 +00:00
|
|
|
GTimeVal time = { end_time / G_TIME_SPAN_SECOND,
|
|
|
|
end_time % G_TIME_SPAN_SECOND };
|
|
|
|
ret = g_cond_timed_wait(cond, mutex, &time);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
2014-06-10 10:03:23 +00:00
|
|
|
|
2015-10-09 15:17:35 +00:00
|
|
|
static void wait_for_fds(void)
|
2014-06-10 10:03:23 +00:00
|
|
|
{
|
|
|
|
gint64 end_time;
|
|
|
|
|
2015-09-29 12:12:03 +00:00
|
|
|
g_mutex_lock(&data_mutex);
|
2014-06-10 10:03:23 +00:00
|
|
|
|
2015-09-29 12:12:03 +00:00
|
|
|
end_time = g_get_monotonic_time() + 5 * G_TIME_SPAN_SECOND;
|
2014-06-10 10:03:23 +00:00
|
|
|
while (!fds_num) {
|
2015-09-29 12:12:03 +00:00
|
|
|
if (!g_cond_wait_until(&data_cond, &data_mutex, end_time)) {
|
2014-06-10 10:03:23 +00:00
|
|
|
/* timeout has passed */
|
|
|
|
g_assert(fds_num);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check for sanity */
|
|
|
|
g_assert_cmpint(fds_num, >, 0);
|
|
|
|
g_assert_cmpint(fds_num, ==, memory.nregions);
|
|
|
|
|
2015-10-09 15:17:35 +00:00
|
|
|
g_mutex_unlock(&data_mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void read_guest_mem(void)
|
|
|
|
{
|
|
|
|
uint32_t *guest_mem;
|
|
|
|
int i, j;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
wait_for_fds();
|
|
|
|
|
|
|
|
g_mutex_lock(&data_mutex);
|
|
|
|
|
2014-06-10 10:03:23 +00:00
|
|
|
/* iterate all regions */
|
|
|
|
for (i = 0; i < fds_num; i++) {
|
|
|
|
|
|
|
|
/* We'll check only the region statring at 0x0*/
|
|
|
|
if (memory.regions[i].guest_phys_addr != 0x0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert_cmpint(memory.regions[i].memory_size, >, 1024);
|
|
|
|
|
2014-07-12 01:43:19 +00:00
|
|
|
size = memory.regions[i].memory_size + memory.regions[i].mmap_offset;
|
|
|
|
|
|
|
|
guest_mem = mmap(0, size, PROT_READ | PROT_WRITE,
|
|
|
|
MAP_SHARED, fds[i], 0);
|
|
|
|
|
|
|
|
g_assert(guest_mem != MAP_FAILED);
|
|
|
|
guest_mem += (memory.regions[i].mmap_offset / sizeof(*guest_mem));
|
2014-06-10 10:03:23 +00:00
|
|
|
|
|
|
|
for (j = 0; j < 256; j++) {
|
|
|
|
uint32_t a = readl(memory.regions[i].guest_phys_addr + j*4);
|
|
|
|
uint32_t b = guest_mem[j];
|
|
|
|
|
|
|
|
g_assert_cmpint(a, ==, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
munmap(guest_mem, memory.regions[i].memory_size);
|
|
|
|
}
|
|
|
|
|
2015-09-29 12:12:03 +00:00
|
|
|
g_mutex_unlock(&data_mutex);
|
2014-06-10 10:03:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void *thread_function(void *data)
|
|
|
|
{
|
|
|
|
GMainLoop *loop;
|
|
|
|
loop = g_main_loop_new(NULL, FALSE);
|
|
|
|
g_main_loop_run(loop);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int chr_can_read(void *opaque)
|
|
|
|
{
|
|
|
|
return VHOST_USER_HDR_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void chr_read(void *opaque, const uint8_t *buf, int size)
|
|
|
|
{
|
|
|
|
CharDriverState *chr = opaque;
|
|
|
|
VhostUserMsg msg;
|
|
|
|
uint8_t *p = (uint8_t *) &msg;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
if (size != VHOST_USER_HDR_SIZE) {
|
|
|
|
g_test_message("Wrong message size received %d\n", size);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-29 12:12:03 +00:00
|
|
|
g_mutex_lock(&data_mutex);
|
2014-06-10 10:03:23 +00:00
|
|
|
memcpy(p, buf, VHOST_USER_HDR_SIZE);
|
|
|
|
|
|
|
|
if (msg.size) {
|
|
|
|
p += VHOST_USER_HDR_SIZE;
|
|
|
|
qemu_chr_fe_read_all(chr, p, msg.size);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (msg.request) {
|
|
|
|
case VHOST_USER_GET_FEATURES:
|
2015-09-24 16:22:01 +00:00
|
|
|
/* send back features to qemu */
|
|
|
|
msg.flags |= VHOST_USER_REPLY_MASK;
|
|
|
|
msg.size = sizeof(m.u64);
|
|
|
|
msg.u64 = 0x1ULL << VHOST_USER_F_PROTOCOL_FEATURES;
|
|
|
|
p = (uint8_t *) &msg;
|
|
|
|
qemu_chr_fe_write_all(chr, p, VHOST_USER_HDR_SIZE + msg.size);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VHOST_USER_SET_FEATURES:
|
|
|
|
g_assert_cmpint(msg.u64 & (0x1ULL << VHOST_USER_F_PROTOCOL_FEATURES),
|
|
|
|
!=, 0ULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VHOST_USER_GET_PROTOCOL_FEATURES:
|
2014-06-10 10:03:23 +00:00
|
|
|
/* send back features to qemu */
|
|
|
|
msg.flags |= VHOST_USER_REPLY_MASK;
|
|
|
|
msg.size = sizeof(m.u64);
|
|
|
|
msg.u64 = 0;
|
|
|
|
p = (uint8_t *) &msg;
|
|
|
|
qemu_chr_fe_write_all(chr, p, VHOST_USER_HDR_SIZE + msg.size);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VHOST_USER_GET_VRING_BASE:
|
|
|
|
/* send back vring base to qemu */
|
|
|
|
msg.flags |= VHOST_USER_REPLY_MASK;
|
|
|
|
msg.size = sizeof(m.state);
|
|
|
|
msg.state.num = 0;
|
|
|
|
p = (uint8_t *) &msg;
|
|
|
|
qemu_chr_fe_write_all(chr, p, VHOST_USER_HDR_SIZE + msg.size);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VHOST_USER_SET_MEM_TABLE:
|
|
|
|
/* received the mem table */
|
|
|
|
memcpy(&memory, &msg.memory, sizeof(msg.memory));
|
|
|
|
fds_num = qemu_chr_fe_get_msgfds(chr, fds, sizeof(fds) / sizeof(int));
|
|
|
|
|
|
|
|
/* signal the test that it can continue */
|
2015-09-29 12:12:03 +00:00
|
|
|
g_cond_signal(&data_cond);
|
2014-06-10 10:03:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case VHOST_USER_SET_VRING_KICK:
|
|
|
|
case VHOST_USER_SET_VRING_CALL:
|
|
|
|
/* consume the fd */
|
|
|
|
qemu_chr_fe_get_msgfds(chr, &fd, 1);
|
|
|
|
/*
|
|
|
|
* This is a non-blocking eventfd.
|
|
|
|
* The receive function forces it to be blocking,
|
|
|
|
* so revert it back to non-blocking.
|
|
|
|
*/
|
|
|
|
qemu_set_nonblock(fd);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2015-09-29 12:12:03 +00:00
|
|
|
g_mutex_unlock(&data_mutex);
|
2014-06-10 10:03:23 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 15:01:21 +00:00
|
|
|
static const char *init_hugepagefs(const char *path)
|
2014-06-10 10:03:23 +00:00
|
|
|
{
|
|
|
|
struct statfs fs;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (access(path, R_OK | W_OK | X_OK)) {
|
|
|
|
g_test_message("access on path (%s): %s\n", path, strerror(errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
ret = statfs(path, &fs);
|
|
|
|
} while (ret != 0 && errno == EINTR);
|
|
|
|
|
|
|
|
if (ret != 0) {
|
|
|
|
g_test_message("statfs on path (%s): %s\n", path, strerror(errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fs.f_type != HUGETLBFS_MAGIC) {
|
|
|
|
g_test_message("Warning: path not on HugeTLBFS: %s\n", path);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QTestState *s = NULL;
|
|
|
|
CharDriverState *chr = NULL;
|
2015-09-30 15:01:21 +00:00
|
|
|
const char *hugefs;
|
2014-06-10 10:03:23 +00:00
|
|
|
char *socket_path = 0;
|
|
|
|
char *qemu_cmd = 0;
|
|
|
|
char *chr_path = 0;
|
|
|
|
int ret;
|
2015-09-30 15:01:21 +00:00
|
|
|
char template[] = "/tmp/vhost-test-XXXXXX";
|
|
|
|
const char *tmpfs;
|
|
|
|
const char *root;
|
2014-06-10 10:03:23 +00:00
|
|
|
|
|
|
|
g_test_init(&argc, &argv, NULL);
|
|
|
|
|
|
|
|
module_call_init(MODULE_INIT_QOM);
|
|
|
|
|
2015-09-30 15:01:21 +00:00
|
|
|
tmpfs = mkdtemp(template);
|
|
|
|
if (!tmpfs) {
|
|
|
|
g_test_message("mkdtemp on path (%s): %s\n", template, strerror(errno));
|
|
|
|
}
|
|
|
|
g_assert(tmpfs);
|
|
|
|
|
|
|
|
hugefs = getenv("QTEST_HUGETLBFS_PATH");
|
|
|
|
if (hugefs) {
|
|
|
|
root = init_hugepagefs(hugefs);
|
|
|
|
g_assert(root);
|
|
|
|
} else {
|
|
|
|
root = tmpfs;
|
2014-06-10 10:03:23 +00:00
|
|
|
}
|
|
|
|
|
2015-10-01 12:50:52 +00:00
|
|
|
socket_path = g_strdup_printf("%s/vhost.sock", tmpfs);
|
2014-06-10 10:03:23 +00:00
|
|
|
|
|
|
|
/* create char dev and add read handlers */
|
|
|
|
qemu_add_opts(&qemu_chardev_opts);
|
|
|
|
chr_path = g_strdup_printf("unix:%s,server,nowait", socket_path);
|
|
|
|
chr = qemu_chr_new("chr0", chr_path, NULL);
|
|
|
|
g_free(chr_path);
|
|
|
|
qemu_chr_add_handlers(chr, chr_can_read, chr_read, NULL, chr);
|
|
|
|
|
|
|
|
/* run the main loop thread so the chardev may operate */
|
2015-09-29 12:12:03 +00:00
|
|
|
g_mutex_init(&data_mutex);
|
|
|
|
g_cond_init(&data_cond);
|
|
|
|
g_thread_new(NULL, thread_function, NULL);
|
2014-06-10 10:03:23 +00:00
|
|
|
|
2015-09-30 15:01:21 +00:00
|
|
|
qemu_cmd = g_strdup_printf(QEMU_CMD, root, socket_path);
|
2014-06-10 10:03:23 +00:00
|
|
|
s = qtest_start(qemu_cmd);
|
|
|
|
g_free(qemu_cmd);
|
|
|
|
|
|
|
|
qtest_add_func("/vhost-user/read-guest-mem", read_guest_mem);
|
|
|
|
|
|
|
|
ret = g_test_run();
|
|
|
|
|
|
|
|
if (s) {
|
|
|
|
qtest_quit(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cleanup */
|
|
|
|
unlink(socket_path);
|
|
|
|
g_free(socket_path);
|
|
|
|
|
2015-09-30 15:01:21 +00:00
|
|
|
ret = rmdir(tmpfs);
|
|
|
|
if (ret != 0) {
|
|
|
|
g_test_message("unable to rmdir: path (%s): %s\n",
|
|
|
|
tmpfs, strerror(errno));
|
|
|
|
}
|
|
|
|
g_assert_cmpint(ret, ==, 0);
|
|
|
|
|
2014-06-10 10:03:23 +00:00
|
|
|
return ret;
|
|
|
|
}
|