]> Git Repo - qemu.git/blame - tests/virtio-9p-test.c
9pfs: fix P9_NOTAG and P9_NOFID macros
[qemu.git] / tests / virtio-9p-test.c
CommitLineData
2d888c09
AF
1/*
2 * QTest testcase for VirtIO 9P
3 *
4 * Copyright (c) 2014 SUSE LINUX Products GmbH
5 *
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.
8 */
9
fbc04127 10#include "qemu/osdep.h"
2d888c09
AF
11#include "libqtest.h"
12#include "qemu-common.h"
a980f7f2 13#include "libqos/libqos-pc.h"
30ca440e 14#include "libqos/libqos-spapr.h"
557a4cc0
GK
15#include "libqos/virtio.h"
16#include "libqos/virtio-pci.h"
557a4cc0
GK
17#include "standard-headers/linux/virtio_ids.h"
18#include "standard-headers/linux/virtio_pci.h"
2d888c09 19
993f8054 20static const char mount_tag[] = "qtest";
2d888c09 21
1211d81b
GK
22typedef struct {
23 QVirtioDevice *dev;
24 QOSState *qs;
25 QVirtQueue *vq;
26 char *test_share;
27} QVirtIO9P;
a980f7f2 28
1211d81b 29static QVirtIO9P *qvirtio_9p_start(const char *driver)
2d888c09 30{
30ca440e 31 const char *arch = qtest_get_arch();
a980f7f2 32 const char *cmd = "-fsdev local,id=fsdev0,security_model=none,path=%s "
1211d81b
GK
33 "-device %s,fsdev=fsdev0,mount_tag=%s";
34 QVirtIO9P *v9p = g_new0(QVirtIO9P, 1);
2d888c09 35
1211d81b
GK
36 v9p->test_share = g_strdup("/tmp/qtest.XXXXXX");
37 g_assert_nonnull(mkdtemp(v9p->test_share));
2d888c09 38
30ca440e 39 if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
1211d81b
GK
40 v9p->qs = qtest_pc_boot(cmd, v9p->test_share, driver, mount_tag);
41 } else if (strcmp(arch, "ppc64") == 0) {
42 v9p->qs = qtest_spapr_boot(cmd, v9p->test_share, driver, mount_tag);
43 } else {
44 g_printerr("virtio-9p tests are only available on x86 or ppc64\n");
45 exit(EXIT_FAILURE);
30ca440e
LV
46 }
47
1211d81b 48 return v9p;
993f8054
GK
49}
50
1211d81b 51static void qvirtio_9p_stop(QVirtIO9P *v9p)
993f8054 52{
1211d81b
GK
53 qtest_shutdown(v9p->qs);
54 rmdir(v9p->test_share);
55 g_free(v9p->test_share);
56 g_free(v9p);
993f8054
GK
57}
58
1211d81b 59static QVirtIO9P *qvirtio_9p_pci_start(void)
557a4cc0 60{
1211d81b
GK
61 QVirtIO9P *v9p = qvirtio_9p_start("virtio-9p-pci");
62 QVirtioPCIDevice *dev = qvirtio_pci_device_find(v9p->qs->pcibus,
63 VIRTIO_ID_9P);
557a4cc0
GK
64 g_assert_nonnull(dev);
65 g_assert_cmphex(dev->vdev.device_type, ==, VIRTIO_ID_9P);
66 v9p->dev = (QVirtioDevice *) dev;
67
68 qvirtio_pci_device_enable(dev);
6b9cdf4c
LV
69 qvirtio_reset(v9p->dev);
70 qvirtio_set_acknowledge(v9p->dev);
71 qvirtio_set_driver(v9p->dev);
557a4cc0 72
a980f7f2 73 v9p->vq = qvirtqueue_setup(v9p->dev, v9p->qs->alloc, 0);
557a4cc0
GK
74 return v9p;
75}
76
1211d81b 77static void qvirtio_9p_pci_stop(QVirtIO9P *v9p)
557a4cc0 78{
a980f7f2 79 qvirtqueue_cleanup(v9p->dev->bus, v9p->vq, v9p->qs->alloc);
557a4cc0
GK
80 qvirtio_pci_device_disable(container_of(v9p->dev, QVirtioPCIDevice, vdev));
81 g_free(v9p->dev);
1211d81b 82 qvirtio_9p_stop(v9p);
557a4cc0
GK
83}
84
1211d81b 85static void pci_config(QVirtIO9P *v9p)
557a4cc0 86{
1211d81b 87 size_t tag_len = qvirtio_config_readw(v9p->dev, 0);
557a4cc0
GK
88 char *tag;
89 int i;
557a4cc0 90
557a4cc0 91 g_assert_cmpint(tag_len, ==, strlen(mount_tag));
557a4cc0
GK
92
93 tag = g_malloc(tag_len);
94 for (i = 0; i < tag_len; i++) {
246fc0fb 95 tag[i] = qvirtio_config_readb(v9p->dev, i + 2);
557a4cc0
GK
96 }
97 g_assert_cmpmem(tag, tag_len, mount_tag, tag_len);
98 g_free(tag);
1211d81b
GK
99}
100
101typedef void (*v9fs_test_fn)(QVirtIO9P *v9p);
102
103static void v9fs_run_pci_test(gconstpointer data)
104{
105 v9fs_test_fn fn = data;
106 QVirtIO9P *v9p = qvirtio_9p_pci_start();
557a4cc0 107
1211d81b
GK
108 if (fn) {
109 fn(v9p);
110 }
111 qvirtio_9p_pci_stop(v9p);
112}
113
114static void v9fs_qtest_pci_add(const char *path, v9fs_test_fn fn)
115{
116 qtest_add_data_func(path, fn, v9fs_run_pci_test);
557a4cc0
GK
117}
118
993f8054
GK
119int main(int argc, char **argv)
120{
121 g_test_init(&argc, &argv, NULL);
1211d81b
GK
122 v9fs_qtest_pci_add("/virtio/9p/pci/nop", NULL);
123 v9fs_qtest_pci_add("/virtio/9p/pci/config", pci_config);
2d888c09 124
993f8054 125 return g_test_run();
2d888c09 126}
This page took 0.188234 seconds and 4 git commands to generate.