2014-02-21 20:15:21 +04:00
|
|
|
/*
|
|
|
|
* QTest testcase for VirtIO 9P
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 SUSE LINUX Products GmbH
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 21:17:10 +03:00
|
|
|
#include "qemu/osdep.h"
|
2014-02-21 20:15:21 +04:00
|
|
|
#include "libqtest.h"
|
|
|
|
#include "qemu-common.h"
|
2016-10-17 13:30:23 +03:00
|
|
|
#include "libqos/libqos-pc.h"
|
2016-10-17 13:30:24 +03:00
|
|
|
#include "libqos/libqos-spapr.h"
|
2016-09-16 09:58:35 +03:00
|
|
|
#include "libqos/virtio.h"
|
|
|
|
#include "libqos/virtio-pci.h"
|
|
|
|
#include "standard-headers/linux/virtio_ids.h"
|
|
|
|
#include "standard-headers/linux/virtio_pci.h"
|
2014-02-21 20:15:21 +04:00
|
|
|
|
2016-09-16 09:58:35 +03:00
|
|
|
static const char mount_tag[] = "qtest";
|
|
|
|
static char *test_share;
|
2014-02-21 20:15:21 +04:00
|
|
|
|
2016-10-17 13:30:23 +03:00
|
|
|
|
|
|
|
static QOSState *qvirtio_9p_start(void)
|
2014-02-21 20:15:21 +04:00
|
|
|
{
|
2016-10-17 13:30:24 +03:00
|
|
|
const char *arch = qtest_get_arch();
|
2016-10-17 13:30:23 +03:00
|
|
|
const char *cmd = "-fsdev local,id=fsdev0,security_model=none,path=%s "
|
|
|
|
"-device virtio-9p-pci,fsdev=fsdev0,mount_tag=%s";
|
2014-02-21 20:15:21 +04:00
|
|
|
|
2016-09-16 09:58:35 +03:00
|
|
|
test_share = g_strdup("/tmp/qtest.XXXXXX");
|
|
|
|
g_assert_nonnull(mkdtemp(test_share));
|
2014-02-21 20:15:21 +04:00
|
|
|
|
2016-10-17 13:30:24 +03:00
|
|
|
if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
|
|
|
|
return qtest_pc_boot(cmd, test_share, mount_tag);
|
|
|
|
}
|
|
|
|
if (strcmp(arch, "ppc64") == 0) {
|
|
|
|
return qtest_spapr_boot(cmd, test_share, mount_tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_printerr("virtio-9p tests are only available on x86 or ppc64\n");
|
|
|
|
exit(EXIT_FAILURE);
|
2016-09-16 09:58:35 +03:00
|
|
|
}
|
2014-02-21 20:15:21 +04:00
|
|
|
|
2016-10-17 13:30:23 +03:00
|
|
|
static void qvirtio_9p_stop(QOSState *qs)
|
2016-09-16 09:58:35 +03:00
|
|
|
{
|
2016-10-17 13:30:23 +03:00
|
|
|
qtest_shutdown(qs);
|
2014-02-21 20:15:21 +04:00
|
|
|
rmdir(test_share);
|
2016-09-16 09:58:35 +03:00
|
|
|
g_free(test_share);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pci_nop(void)
|
|
|
|
{
|
2016-10-17 13:30:23 +03:00
|
|
|
QOSState *qs;
|
|
|
|
|
|
|
|
qs = qvirtio_9p_start();
|
|
|
|
qvirtio_9p_stop(qs);
|
2016-09-16 09:58:35 +03:00
|
|
|
}
|
|
|
|
|
2016-09-16 09:58:35 +03:00
|
|
|
typedef struct {
|
|
|
|
QVirtioDevice *dev;
|
2016-10-17 13:30:23 +03:00
|
|
|
QOSState *qs;
|
2016-09-16 09:58:35 +03:00
|
|
|
QVirtQueue *vq;
|
|
|
|
} QVirtIO9P;
|
|
|
|
|
2016-10-17 13:30:23 +03:00
|
|
|
static QVirtIO9P *qvirtio_9p_pci_init(QOSState *qs)
|
2016-09-16 09:58:35 +03:00
|
|
|
{
|
|
|
|
QVirtIO9P *v9p;
|
|
|
|
QVirtioPCIDevice *dev;
|
|
|
|
|
|
|
|
v9p = g_new0(QVirtIO9P, 1);
|
|
|
|
|
2016-10-17 13:30:23 +03:00
|
|
|
v9p->qs = qs;
|
|
|
|
dev = qvirtio_pci_device_find(v9p->qs->pcibus, VIRTIO_ID_9P);
|
2016-09-16 09:58:35 +03:00
|
|
|
g_assert_nonnull(dev);
|
|
|
|
g_assert_cmphex(dev->vdev.device_type, ==, VIRTIO_ID_9P);
|
|
|
|
v9p->dev = (QVirtioDevice *) dev;
|
|
|
|
|
|
|
|
qvirtio_pci_device_enable(dev);
|
2016-10-17 13:30:21 +03:00
|
|
|
qvirtio_reset(v9p->dev);
|
|
|
|
qvirtio_set_acknowledge(v9p->dev);
|
|
|
|
qvirtio_set_driver(v9p->dev);
|
2016-09-16 09:58:35 +03:00
|
|
|
|
2016-10-17 13:30:23 +03:00
|
|
|
v9p->vq = qvirtqueue_setup(v9p->dev, v9p->qs->alloc, 0);
|
2016-09-16 09:58:35 +03:00
|
|
|
return v9p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qvirtio_9p_pci_free(QVirtIO9P *v9p)
|
|
|
|
{
|
2016-10-17 13:30:23 +03:00
|
|
|
qvirtqueue_cleanup(v9p->dev->bus, v9p->vq, v9p->qs->alloc);
|
2016-09-16 09:58:35 +03:00
|
|
|
qvirtio_pci_device_disable(container_of(v9p->dev, QVirtioPCIDevice, vdev));
|
|
|
|
g_free(v9p->dev);
|
|
|
|
g_free(v9p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pci_basic_config(void)
|
|
|
|
{
|
|
|
|
QVirtIO9P *v9p;
|
|
|
|
size_t tag_len;
|
|
|
|
char *tag;
|
|
|
|
int i;
|
2016-10-17 13:30:23 +03:00
|
|
|
QOSState *qs;
|
2016-09-16 09:58:35 +03:00
|
|
|
|
2016-10-17 13:30:23 +03:00
|
|
|
qs = qvirtio_9p_start();
|
|
|
|
v9p = qvirtio_9p_pci_init(qs);
|
2016-09-16 09:58:35 +03:00
|
|
|
|
2016-10-20 06:08:07 +03:00
|
|
|
tag_len = qvirtio_config_readw(v9p->dev, 0);
|
2016-09-16 09:58:35 +03:00
|
|
|
g_assert_cmpint(tag_len, ==, strlen(mount_tag));
|
|
|
|
|
|
|
|
tag = g_malloc(tag_len);
|
|
|
|
for (i = 0; i < tag_len; i++) {
|
2016-10-20 06:08:07 +03:00
|
|
|
tag[i] = qvirtio_config_readb(v9p->dev, i + 2);
|
2016-09-16 09:58:35 +03:00
|
|
|
}
|
|
|
|
g_assert_cmpmem(tag, tag_len, mount_tag, tag_len);
|
|
|
|
g_free(tag);
|
|
|
|
|
|
|
|
qvirtio_9p_pci_free(v9p);
|
2016-10-17 13:30:23 +03:00
|
|
|
qvirtio_9p_stop(qs);
|
2016-09-16 09:58:35 +03:00
|
|
|
}
|
|
|
|
|
2016-09-16 09:58:35 +03:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
g_test_init(&argc, &argv, NULL);
|
|
|
|
qtest_add_func("/virtio/9p/pci/nop", pci_nop);
|
2016-09-16 09:58:35 +03:00
|
|
|
qtest_add_func("/virtio/9p/pci/basic/configuration", pci_basic_config);
|
2014-02-21 20:15:21 +04:00
|
|
|
|
2016-09-16 09:58:35 +03:00
|
|
|
return g_test_run();
|
2014-02-21 20:15:21 +04:00
|
|
|
}
|