ivshmem: Fix harmless misuse of Error
[qemu/kevin.git] / tests / ivshmem-test.c
blob7b6b957e54c7a424f3021712f16c8bd7a971dc9b
1 /*
2 * QTest testcase for ivshmem
4 * Copyright (c) 2014 SUSE LINUX Products GmbH
5 * Copyright (c) 2015 Red Hat, Inc.
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
9 */
11 #include "qemu/osdep.h"
12 #include <glib.h>
13 #include <glib/gstdio.h>
14 #include <sys/mman.h>
15 #include "contrib/ivshmem-server/ivshmem-server.h"
16 #include "libqos/pci-pc.h"
17 #include "libqtest.h"
18 #include "qemu-common.h"
20 #define TMPSHMSIZE (1 << 20)
21 static char *tmpshm;
22 static void *tmpshmem;
23 static char *tmpdir;
24 static char *tmpserver;
26 static void save_fn(QPCIDevice *dev, int devfn, void *data)
28 QPCIDevice **pdev = (QPCIDevice **) data;
30 *pdev = dev;
33 static QPCIDevice *get_device(QPCIBus *pcibus)
35 QPCIDevice *dev;
37 dev = NULL;
38 qpci_device_foreach(pcibus, 0x1af4, 0x1110, save_fn, &dev);
39 g_assert(dev != NULL);
41 return dev;
44 typedef struct _IVState {
45 QTestState *qtest;
46 void *reg_base, *mem_base;
47 QPCIBus *pcibus;
48 QPCIDevice *dev;
49 } IVState;
51 enum Reg {
52 INTRMASK = 0,
53 INTRSTATUS = 4,
54 IVPOSITION = 8,
55 DOORBELL = 12,
58 static const char* reg2str(enum Reg reg) {
59 switch (reg) {
60 case INTRMASK:
61 return "IntrMask";
62 case INTRSTATUS:
63 return "IntrStatus";
64 case IVPOSITION:
65 return "IVPosition";
66 case DOORBELL:
67 return "DoorBell";
68 default:
69 return NULL;
73 static inline unsigned in_reg(IVState *s, enum Reg reg)
75 const char *name = reg2str(reg);
76 QTestState *qtest = global_qtest;
77 unsigned res;
79 global_qtest = s->qtest;
80 res = qpci_io_readl(s->dev, s->reg_base + reg);
81 g_test_message("*%s -> %x\n", name, res);
82 global_qtest = qtest;
84 return res;
87 static inline void out_reg(IVState *s, enum Reg reg, unsigned v)
89 const char *name = reg2str(reg);
90 QTestState *qtest = global_qtest;
92 global_qtest = s->qtest;
93 g_test_message("%x -> *%s\n", v, name);
94 qpci_io_writel(s->dev, s->reg_base + reg, v);
95 global_qtest = qtest;
98 static void cleanup_vm(IVState *s)
100 g_free(s->dev);
101 qpci_free_pc(s->pcibus);
102 qtest_quit(s->qtest);
105 static void setup_vm_cmd(IVState *s, const char *cmd, bool msix)
107 uint64_t barsize;
109 s->qtest = qtest_start(cmd);
110 s->pcibus = qpci_init_pc();
111 s->dev = get_device(s->pcibus);
113 s->reg_base = qpci_iomap(s->dev, 0, &barsize);
114 g_assert_nonnull(s->reg_base);
115 g_assert_cmpuint(barsize, ==, 256);
117 if (msix) {
118 qpci_msix_enable(s->dev);
121 s->mem_base = qpci_iomap(s->dev, 2, &barsize);
122 g_assert_nonnull(s->mem_base);
123 g_assert_cmpuint(barsize, ==, TMPSHMSIZE);
125 qpci_device_enable(s->dev);
128 static void setup_vm(IVState *s)
130 char *cmd = g_strdup_printf("-device ivshmem,shm=%s,size=1M", tmpshm);
132 setup_vm_cmd(s, cmd, false);
134 g_free(cmd);
137 static void test_ivshmem_single(void)
139 IVState state, *s;
140 uint32_t data[1024];
141 int i;
143 setup_vm(&state);
144 s = &state;
146 /* initial state of readable registers */
147 g_assert_cmpuint(in_reg(s, INTRMASK), ==, 0);
148 g_assert_cmpuint(in_reg(s, INTRSTATUS), ==, 0);
149 g_assert_cmpuint(in_reg(s, IVPOSITION), ==, 0);
151 /* trigger interrupt via registers */
152 out_reg(s, INTRMASK, 0xffffffff);
153 g_assert_cmpuint(in_reg(s, INTRMASK), ==, 0xffffffff);
154 out_reg(s, INTRSTATUS, 1);
155 /* check interrupt status */
156 g_assert_cmpuint(in_reg(s, INTRSTATUS), ==, 1);
157 /* reading clears */
158 g_assert_cmpuint(in_reg(s, INTRSTATUS), ==, 0);
159 /* TODO intercept actual interrupt (needs qtest work) */
161 /* invalid register access */
162 out_reg(s, IVPOSITION, 1);
163 in_reg(s, DOORBELL);
165 /* ring the (non-functional) doorbell */
166 out_reg(s, DOORBELL, 8 << 16);
168 /* write shared memory */
169 for (i = 0; i < G_N_ELEMENTS(data); i++) {
170 data[i] = i;
172 qtest_memwrite(s->qtest, (uintptr_t)s->mem_base, data, sizeof(data));
174 /* verify write */
175 for (i = 0; i < G_N_ELEMENTS(data); i++) {
176 g_assert_cmpuint(((uint32_t *)tmpshmem)[i], ==, i);
179 /* read it back and verify read */
180 memset(data, 0, sizeof(data));
181 qtest_memread(s->qtest, (uintptr_t)s->mem_base, data, sizeof(data));
182 for (i = 0; i < G_N_ELEMENTS(data); i++) {
183 g_assert_cmpuint(data[i], ==, i);
186 cleanup_vm(s);
189 static void test_ivshmem_pair(void)
191 IVState state1, state2, *s1, *s2;
192 char *data;
193 int i;
195 setup_vm(&state1);
196 s1 = &state1;
197 setup_vm(&state2);
198 s2 = &state2;
200 data = g_malloc0(TMPSHMSIZE);
202 /* host write, guest 1 & 2 read */
203 memset(tmpshmem, 0x42, TMPSHMSIZE);
204 qtest_memread(s1->qtest, (uintptr_t)s1->mem_base, data, TMPSHMSIZE);
205 for (i = 0; i < TMPSHMSIZE; i++) {
206 g_assert_cmpuint(data[i], ==, 0x42);
208 qtest_memread(s2->qtest, (uintptr_t)s2->mem_base, data, TMPSHMSIZE);
209 for (i = 0; i < TMPSHMSIZE; i++) {
210 g_assert_cmpuint(data[i], ==, 0x42);
213 /* guest 1 write, guest 2 read */
214 memset(data, 0x43, TMPSHMSIZE);
215 qtest_memwrite(s1->qtest, (uintptr_t)s1->mem_base, data, TMPSHMSIZE);
216 memset(data, 0, TMPSHMSIZE);
217 qtest_memread(s2->qtest, (uintptr_t)s2->mem_base, data, TMPSHMSIZE);
218 for (i = 0; i < TMPSHMSIZE; i++) {
219 g_assert_cmpuint(data[i], ==, 0x43);
222 /* guest 2 write, guest 1 read */
223 memset(data, 0x44, TMPSHMSIZE);
224 qtest_memwrite(s2->qtest, (uintptr_t)s2->mem_base, data, TMPSHMSIZE);
225 memset(data, 0, TMPSHMSIZE);
226 qtest_memread(s1->qtest, (uintptr_t)s2->mem_base, data, TMPSHMSIZE);
227 for (i = 0; i < TMPSHMSIZE; i++) {
228 g_assert_cmpuint(data[i], ==, 0x44);
231 cleanup_vm(s1);
232 cleanup_vm(s2);
233 g_free(data);
236 typedef struct ServerThread {
237 GThread *thread;
238 IvshmemServer *server;
239 int pipe[2]; /* to handle quit */
240 } ServerThread;
242 static void *server_thread(void *data)
244 ServerThread *t = data;
245 IvshmemServer *server = t->server;
247 while (true) {
248 fd_set fds;
249 int maxfd, ret;
251 FD_ZERO(&fds);
252 FD_SET(t->pipe[0], &fds);
253 maxfd = t->pipe[0] + 1;
255 ivshmem_server_get_fds(server, &fds, &maxfd);
257 ret = select(maxfd, &fds, NULL, NULL, NULL);
259 if (ret < 0) {
260 if (errno == EINTR) {
261 continue;
264 g_critical("select error: %s\n", strerror(errno));
265 break;
267 if (ret == 0) {
268 continue;
271 if (FD_ISSET(t->pipe[0], &fds)) {
272 break;
275 if (ivshmem_server_handle_fds(server, &fds, maxfd) < 0) {
276 g_critical("ivshmem_server_handle_fds() failed\n");
277 break;
281 return NULL;
284 static void setup_vm_with_server(IVState *s, int nvectors, bool msi)
286 char *cmd = g_strdup_printf("-chardev socket,id=chr0,path=%s,nowait "
287 "-device ivshmem,size=1M,chardev=chr0,vectors=%d,msi=%s",
288 tmpserver, nvectors, msi ? "true" : "false");
290 setup_vm_cmd(s, cmd, msi);
292 g_free(cmd);
295 static void test_ivshmem_server(bool msi)
297 IVState state1, state2, *s1, *s2;
298 ServerThread thread;
299 IvshmemServer server;
300 int ret, vm1, vm2;
301 int nvectors = 2;
302 guint64 end_time = g_get_monotonic_time() + 5 * G_TIME_SPAN_SECOND;
304 ret = ivshmem_server_init(&server, tmpserver, tmpshm, true,
305 TMPSHMSIZE, nvectors,
306 g_test_verbose());
307 g_assert_cmpint(ret, ==, 0);
309 ret = ivshmem_server_start(&server);
310 g_assert_cmpint(ret, ==, 0);
312 setup_vm_with_server(&state1, nvectors, msi);
313 s1 = &state1;
314 setup_vm_with_server(&state2, nvectors, msi);
315 s2 = &state2;
317 /* check state before server sends stuff */
318 g_assert_cmpuint(in_reg(s1, IVPOSITION), ==, 0xffffffff);
319 g_assert_cmpuint(in_reg(s2, IVPOSITION), ==, 0xffffffff);
320 g_assert_cmpuint(qtest_readb(s1->qtest, (uintptr_t)s1->mem_base), ==, 0x00);
322 thread.server = &server;
323 ret = pipe(thread.pipe);
324 g_assert_cmpint(ret, ==, 0);
325 thread.thread = g_thread_new("ivshmem-server", server_thread, &thread);
326 g_assert(thread.thread != NULL);
328 /* waiting for devices to become operational */
329 while (g_get_monotonic_time() < end_time) {
330 g_usleep(1000);
331 if ((int)in_reg(s1, IVPOSITION) >= 0 &&
332 (int)in_reg(s2, IVPOSITION) >= 0) {
333 break;
337 /* check got different VM ids */
338 vm1 = in_reg(s1, IVPOSITION);
339 vm2 = in_reg(s2, IVPOSITION);
340 g_assert_cmpuint(vm1, !=, vm2);
342 /* check number of MSI-X vectors */
343 global_qtest = s1->qtest;
344 if (msi) {
345 ret = qpci_msix_table_size(s1->dev);
346 g_assert_cmpuint(ret, ==, nvectors);
349 /* TODO test behavior before MSI-X is enabled */
351 /* ping vm2 -> vm1 on vector 0 */
352 if (msi) {
353 ret = qpci_msix_pending(s1->dev, 0);
354 g_assert_cmpuint(ret, ==, 0);
355 } else {
356 g_assert_cmpuint(in_reg(s1, INTRSTATUS), ==, 0);
358 out_reg(s2, DOORBELL, vm1 << 16);
359 do {
360 g_usleep(10000);
361 ret = msi ? qpci_msix_pending(s1->dev, 0) : in_reg(s1, INTRSTATUS);
362 } while (ret == 0 && g_get_monotonic_time() < end_time);
363 g_assert_cmpuint(ret, !=, 0);
365 /* ping vm1 -> vm2 on vector 1 */
366 global_qtest = s2->qtest;
367 if (msi) {
368 ret = qpci_msix_pending(s2->dev, 1);
369 g_assert_cmpuint(ret, ==, 0);
370 } else {
371 g_assert_cmpuint(in_reg(s2, INTRSTATUS), ==, 0);
373 out_reg(s1, DOORBELL, vm2 << 16 | 1);
374 do {
375 g_usleep(10000);
376 ret = msi ? qpci_msix_pending(s2->dev, 1) : in_reg(s2, INTRSTATUS);
377 } while (ret == 0 && g_get_monotonic_time() < end_time);
378 g_assert_cmpuint(ret, !=, 0);
380 cleanup_vm(s2);
381 cleanup_vm(s1);
383 if (qemu_write_full(thread.pipe[1], "q", 1) != 1) {
384 g_error("qemu_write_full: %s", g_strerror(errno));
387 g_thread_join(thread.thread);
389 ivshmem_server_close(&server);
390 close(thread.pipe[1]);
391 close(thread.pipe[0]);
394 static void test_ivshmem_server_msi(void)
396 test_ivshmem_server(true);
399 static void test_ivshmem_server_irq(void)
401 test_ivshmem_server(false);
404 #define PCI_SLOT_HP 0x06
406 static void test_ivshmem_hotplug(void)
408 gchar *opts;
410 qtest_start("");
412 opts = g_strdup_printf("'shm': '%s', 'size': '1M'", tmpshm);
414 qpci_plug_device_test("ivshmem", "iv1", PCI_SLOT_HP, opts);
415 qpci_unplug_acpi_device_test("iv1", PCI_SLOT_HP);
417 qtest_end();
418 g_free(opts);
421 static void test_ivshmem_memdev(void)
423 IVState state;
425 /* just for the sake of checking memory-backend property */
426 setup_vm_cmd(&state, "-object memory-backend-ram,size=1M,id=mb1"
427 " -device ivshmem,x-memdev=mb1", false);
429 cleanup_vm(&state);
432 static void cleanup(void)
434 if (tmpshmem) {
435 munmap(tmpshmem, TMPSHMSIZE);
436 tmpshmem = NULL;
439 if (tmpshm) {
440 shm_unlink(tmpshm);
441 g_free(tmpshm);
442 tmpshm = NULL;
445 if (tmpserver) {
446 g_unlink(tmpserver);
447 g_free(tmpserver);
448 tmpserver = NULL;
451 if (tmpdir) {
452 g_rmdir(tmpdir);
453 tmpdir = NULL;
457 static void abrt_handler(void *data)
459 cleanup();
462 static gchar *mktempshm(int size, int *fd)
464 while (true) {
465 gchar *name;
467 name = g_strdup_printf("/qtest-%u-%u", getpid(), g_random_int());
468 *fd = shm_open(name, O_CREAT|O_RDWR|O_EXCL,
469 S_IRWXU|S_IRWXG|S_IRWXO);
470 if (*fd > 0) {
471 g_assert(ftruncate(*fd, size) == 0);
472 return name;
475 g_free(name);
477 if (errno != EEXIST) {
478 perror("shm_open");
479 return NULL;
484 int main(int argc, char **argv)
486 int ret, fd;
487 gchar dir[] = "/tmp/ivshmem-test.XXXXXX";
489 #if !GLIB_CHECK_VERSION(2, 31, 0)
490 if (!g_thread_supported()) {
491 g_thread_init(NULL);
493 #endif
495 g_test_init(&argc, &argv, NULL);
497 qtest_add_abrt_handler(abrt_handler, NULL);
498 /* shm */
499 tmpshm = mktempshm(TMPSHMSIZE, &fd);
500 if (!tmpshm) {
501 return 0;
503 tmpshmem = mmap(0, TMPSHMSIZE, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
504 g_assert(tmpshmem != MAP_FAILED);
505 /* server */
506 if (mkdtemp(dir) == NULL) {
507 g_error("mkdtemp: %s", g_strerror(errno));
509 tmpdir = dir;
510 tmpserver = g_strconcat(tmpdir, "/server", NULL);
512 qtest_add_func("/ivshmem/single", test_ivshmem_single);
513 qtest_add_func("/ivshmem/hotplug", test_ivshmem_hotplug);
514 qtest_add_func("/ivshmem/memdev", test_ivshmem_memdev);
515 if (g_test_slow()) {
516 qtest_add_func("/ivshmem/pair", test_ivshmem_pair);
517 qtest_add_func("/ivshmem/server-msi", test_ivshmem_server_msi);
518 qtest_add_func("/ivshmem/server-irq", test_ivshmem_server_irq);
521 ret = g_test_run();
523 cleanup();
525 return ret;