qdev: ignore GlobalProperty.errp for hotplugged devices
[qemu.git] / tests / virtio-net-test.c
bloba34a9392e3ece6562b664b237843b88921b55815
1 /*
2 * QTest testcase for VirtIO NIC
4 * Copyright (c) 2014 SUSE LINUX Products GmbH
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 */
10 #include "qemu/osdep.h"
11 #include "libqtest.h"
12 #include "qemu-common.h"
13 #include "qemu/sockets.h"
14 #include "qemu/iov.h"
15 #include "libqos/pci-pc.h"
16 #include "libqos/virtio.h"
17 #include "libqos/virtio-pci.h"
18 #include "libqos/malloc.h"
19 #include "libqos/malloc-pc.h"
20 #include "libqos/malloc-generic.h"
21 #include "qemu/bswap.h"
22 #include "hw/virtio/virtio-net.h"
23 #include "standard-headers/linux/virtio_ids.h"
24 #include "standard-headers/linux/virtio_ring.h"
26 #define PCI_SLOT_HP 0x06
27 #define PCI_SLOT 0x04
28 #define PCI_FN 0x00
30 #define QVIRTIO_NET_TIMEOUT_US (30 * 1000 * 1000)
31 #define VNET_HDR_SIZE sizeof(struct virtio_net_hdr_mrg_rxbuf)
33 static void test_end(void)
35 qtest_end();
38 #ifndef _WIN32
40 static QVirtioPCIDevice *virtio_net_pci_init(QPCIBus *bus, int slot)
42 QVirtioPCIDevice *dev;
44 dev = qvirtio_pci_device_find(bus, VIRTIO_ID_NET);
45 g_assert(dev != NULL);
46 g_assert_cmphex(dev->vdev.device_type, ==, VIRTIO_ID_NET);
48 qvirtio_pci_device_enable(dev);
49 qvirtio_reset(&qvirtio_pci, &dev->vdev);
50 qvirtio_set_acknowledge(&qvirtio_pci, &dev->vdev);
51 qvirtio_set_driver(&qvirtio_pci, &dev->vdev);
53 return dev;
56 static QPCIBus *pci_test_start(int socket)
58 char *cmdline;
60 cmdline = g_strdup_printf("-netdev socket,fd=%d,id=hs0 -device "
61 "virtio-net-pci,netdev=hs0", socket);
62 qtest_start(cmdline);
63 g_free(cmdline);
65 return qpci_init_pc();
68 static void driver_init(const QVirtioBus *bus, QVirtioDevice *dev)
70 uint32_t features;
72 features = qvirtio_get_features(bus, dev);
73 features = features & ~(QVIRTIO_F_BAD_FEATURE |
74 (1u << VIRTIO_RING_F_INDIRECT_DESC) |
75 (1u << VIRTIO_RING_F_EVENT_IDX));
76 qvirtio_set_features(bus, dev, features);
78 qvirtio_set_driver_ok(bus, dev);
81 static void rx_test(const QVirtioBus *bus, QVirtioDevice *dev,
82 QGuestAllocator *alloc, QVirtQueue *vq,
83 int socket)
85 uint64_t req_addr;
86 uint32_t free_head;
87 char test[] = "TEST";
88 char buffer[64];
89 int len = htonl(sizeof(test));
90 struct iovec iov[] = {
92 .iov_base = &len,
93 .iov_len = sizeof(len),
94 }, {
95 .iov_base = test,
96 .iov_len = sizeof(test),
99 int ret;
101 req_addr = guest_alloc(alloc, 64);
103 free_head = qvirtqueue_add(vq, req_addr, 64, true, false);
104 qvirtqueue_kick(bus, dev, vq, free_head);
106 ret = iov_send(socket, iov, 2, 0, sizeof(len) + sizeof(test));
107 g_assert_cmpint(ret, ==, sizeof(test) + sizeof(len));
109 qvirtio_wait_queue_isr(bus, dev, vq, QVIRTIO_NET_TIMEOUT_US);
110 memread(req_addr + VNET_HDR_SIZE, buffer, sizeof(test));
111 g_assert_cmpstr(buffer, ==, "TEST");
113 guest_free(alloc, req_addr);
116 static void tx_test(const QVirtioBus *bus, QVirtioDevice *dev,
117 QGuestAllocator *alloc, QVirtQueue *vq,
118 int socket)
120 uint64_t req_addr;
121 uint32_t free_head;
122 uint32_t len;
123 char buffer[64];
124 int ret;
126 req_addr = guest_alloc(alloc, 64);
127 memwrite(req_addr + VNET_HDR_SIZE, "TEST", 4);
129 free_head = qvirtqueue_add(vq, req_addr, 64, false, false);
130 qvirtqueue_kick(bus, dev, vq, free_head);
132 qvirtio_wait_queue_isr(bus, dev, vq, QVIRTIO_NET_TIMEOUT_US);
133 guest_free(alloc, req_addr);
135 ret = qemu_recv(socket, &len, sizeof(len), 0);
136 g_assert_cmpint(ret, ==, sizeof(len));
137 len = ntohl(len);
139 ret = qemu_recv(socket, buffer, len, 0);
140 g_assert_cmpstr(buffer, ==, "TEST");
143 static void rx_stop_cont_test(const QVirtioBus *bus, QVirtioDevice *dev,
144 QGuestAllocator *alloc, QVirtQueue *vq,
145 int socket)
147 uint64_t req_addr;
148 uint32_t free_head;
149 char test[] = "TEST";
150 char buffer[64];
151 int len = htonl(sizeof(test));
152 struct iovec iov[] = {
154 .iov_base = &len,
155 .iov_len = sizeof(len),
156 }, {
157 .iov_base = test,
158 .iov_len = sizeof(test),
161 int ret;
163 req_addr = guest_alloc(alloc, 64);
165 free_head = qvirtqueue_add(vq, req_addr, 64, true, false);
166 qvirtqueue_kick(bus, dev, vq, free_head);
168 qmp("{ 'execute' : 'stop'}");
170 ret = iov_send(socket, iov, 2, 0, sizeof(len) + sizeof(test));
171 g_assert_cmpint(ret, ==, sizeof(test) + sizeof(len));
173 /* We could check the status, but this command is more importantly to
174 * ensure the packet data gets queued in QEMU, before we do 'cont'.
176 qmp("{ 'execute' : 'query-status'}");
177 qmp("{ 'execute' : 'cont'}");
179 qvirtio_wait_queue_isr(bus, dev, vq, QVIRTIO_NET_TIMEOUT_US);
180 memread(req_addr + VNET_HDR_SIZE, buffer, sizeof(test));
181 g_assert_cmpstr(buffer, ==, "TEST");
183 guest_free(alloc, req_addr);
186 static void send_recv_test(const QVirtioBus *bus, QVirtioDevice *dev,
187 QGuestAllocator *alloc, QVirtQueue *rvq,
188 QVirtQueue *tvq, int socket)
190 rx_test(bus, dev, alloc, rvq, socket);
191 tx_test(bus, dev, alloc, tvq, socket);
194 static void stop_cont_test(const QVirtioBus *bus, QVirtioDevice *dev,
195 QGuestAllocator *alloc, QVirtQueue *rvq,
196 QVirtQueue *tvq, int socket)
198 rx_stop_cont_test(bus, dev, alloc, rvq, socket);
201 static void pci_basic(gconstpointer data)
203 QVirtioPCIDevice *dev;
204 QPCIBus *bus;
205 QVirtQueuePCI *tx, *rx;
206 QGuestAllocator *alloc;
207 void (*func) (const QVirtioBus *bus,
208 QVirtioDevice *dev,
209 QGuestAllocator *alloc,
210 QVirtQueue *rvq,
211 QVirtQueue *tvq,
212 int socket) = data;
213 int sv[2], ret;
215 ret = socketpair(PF_UNIX, SOCK_STREAM, 0, sv);
216 g_assert_cmpint(ret, !=, -1);
218 bus = pci_test_start(sv[1]);
219 dev = virtio_net_pci_init(bus, PCI_SLOT);
221 alloc = pc_alloc_init();
222 rx = (QVirtQueuePCI *)qvirtqueue_setup(&qvirtio_pci, &dev->vdev,
223 alloc, 0);
224 tx = (QVirtQueuePCI *)qvirtqueue_setup(&qvirtio_pci, &dev->vdev,
225 alloc, 1);
227 driver_init(&qvirtio_pci, &dev->vdev);
228 func(&qvirtio_pci, &dev->vdev, alloc, &rx->vq, &tx->vq, sv[0]);
230 /* End test */
231 close(sv[0]);
232 qvirtqueue_cleanup(&qvirtio_pci, &tx->vq, alloc);
233 pc_alloc_uninit(alloc);
234 qvirtio_pci_device_disable(dev);
235 g_free(dev);
236 qpci_free_pc(bus);
237 test_end();
239 #endif
241 static void hotplug(void)
243 qtest_start("-device virtio-net-pci");
245 qpci_plug_device_test("virtio-net-pci", "net1", PCI_SLOT_HP, NULL);
246 qpci_unplug_acpi_device_test("net1", PCI_SLOT_HP);
248 test_end();
251 int main(int argc, char **argv)
253 g_test_init(&argc, &argv, NULL);
254 #ifndef _WIN32
255 qtest_add_data_func("/virtio/net/pci/basic", send_recv_test, pci_basic);
256 qtest_add_data_func("/virtio/net/pci/rx_stop_cont",
257 stop_cont_test, pci_basic);
258 #endif
259 qtest_add_func("/virtio/net/pci/hotplug", hotplug);
261 return g_test_run();