2 * QTest testcase for VirtIO SCSI
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.
11 #include "qemu/osdep.h"
13 #include "qemu/module.h"
14 #include "scsi/constants.h"
15 #include "libqos/libqos-pc.h"
16 #include "libqos/libqos-spapr.h"
17 #include "libqos/virtio.h"
18 #include "libqos/virtio-pci.h"
19 #include "standard-headers/linux/virtio_ids.h"
20 #include "standard-headers/linux/virtio_pci.h"
21 #include "standard-headers/linux/virtio_scsi.h"
22 #include "libqos/virtio-scsi.h"
23 #include "libqos/qgraph.h"
27 #define QVIRTIO_SCSI_TIMEOUT_US (1 * 1000 * 1000)
29 #define MAX_NUM_QUEUES 64
34 QVirtQueue
*vq
[MAX_NUM_QUEUES
+ 2];
37 static QGuestAllocator
*alloc
;
39 static void qvirtio_scsi_pci_free(QVirtioSCSIQueues
*vs
)
43 for (i
= 0; i
< vs
->num_queues
+ 2; i
++) {
44 qvirtqueue_cleanup(vs
->dev
->bus
, vs
->vq
[i
], alloc
);
49 static uint64_t qvirtio_scsi_alloc(QVirtioSCSIQueues
*vs
, size_t alloc_size
,
54 addr
= guest_alloc(alloc
, alloc_size
);
56 memwrite(addr
, data
, alloc_size
);
62 static uint8_t virtio_scsi_do_command(QVirtioSCSIQueues
*vs
,
64 const uint8_t *data_in
,
66 uint8_t *data_out
, size_t data_out_len
,
67 struct virtio_scsi_cmd_resp
*resp_out
)
70 struct virtio_scsi_cmd_req req
= { { 0 } };
71 struct virtio_scsi_cmd_resp resp
= { .response
= 0xff, .status
= 0xff };
72 uint64_t req_addr
, resp_addr
, data_in_addr
= 0, data_out_addr
= 0;
78 req
.lun
[0] = 1; /* Select LUN */
79 req
.lun
[1] = 1; /* Select target 1 */
80 memcpy(req
.cdb
, cdb
, VIRTIO_SCSI_CDB_SIZE
);
82 /* XXX: Fix endian if any multi-byte field in req/resp is used */
84 /* Add request header */
85 req_addr
= qvirtio_scsi_alloc(vs
, sizeof(req
), &req
);
86 free_head
= qvirtqueue_add(vq
, req_addr
, sizeof(req
), false, true);
89 data_out_addr
= qvirtio_scsi_alloc(vs
, data_out_len
, data_out
);
90 qvirtqueue_add(vq
, data_out_addr
, data_out_len
, false, true);
93 /* Add response header */
94 resp_addr
= qvirtio_scsi_alloc(vs
, sizeof(resp
), &resp
);
95 qvirtqueue_add(vq
, resp_addr
, sizeof(resp
), true, !!data_in_len
);
98 data_in_addr
= qvirtio_scsi_alloc(vs
, data_in_len
, data_in
);
99 qvirtqueue_add(vq
, data_in_addr
, data_in_len
, true, false);
102 qvirtqueue_kick(vs
->dev
, vq
, free_head
);
103 qvirtio_wait_used_elem(vs
->dev
, vq
, free_head
, NULL
,
104 QVIRTIO_SCSI_TIMEOUT_US
);
106 response
= readb(resp_addr
+
107 offsetof(struct virtio_scsi_cmd_resp
, response
));
110 memread(resp_addr
, resp_out
, sizeof(*resp_out
));
113 guest_free(alloc
, req_addr
);
114 guest_free(alloc
, resp_addr
);
115 guest_free(alloc
, data_in_addr
);
116 guest_free(alloc
, data_out_addr
);
120 static QVirtioSCSIQueues
*qvirtio_scsi_init(QVirtioDevice
*dev
)
122 QVirtioSCSIQueues
*vs
;
123 const uint8_t test_unit_ready_cdb
[VIRTIO_SCSI_CDB_SIZE
] = {};
124 struct virtio_scsi_cmd_resp resp
;
127 vs
= g_new0(QVirtioSCSIQueues
, 1);
129 vs
->num_queues
= qvirtio_config_readl(dev
, 0);
131 g_assert_cmpint(vs
->num_queues
, <, MAX_NUM_QUEUES
);
133 for (i
= 0; i
< vs
->num_queues
+ 2; i
++) {
134 vs
->vq
[i
] = qvirtqueue_setup(dev
, alloc
, i
);
137 /* Clear the POWER ON OCCURRED unit attention */
138 g_assert_cmpint(virtio_scsi_do_command(vs
, test_unit_ready_cdb
,
139 NULL
, 0, NULL
, 0, &resp
),
141 g_assert_cmpint(resp
.status
, ==, CHECK_CONDITION
);
142 g_assert_cmpint(resp
.sense
[0], ==, 0x70); /* Fixed format sense buffer */
143 g_assert_cmpint(resp
.sense
[2], ==, UNIT_ATTENTION
);
144 g_assert_cmpint(resp
.sense
[12], ==, 0x29); /* POWER ON */
145 g_assert_cmpint(resp
.sense
[13], ==, 0x00);
150 static void hotplug(void *obj
, void *data
, QGuestAllocator
*alloc
)
152 qtest_qmp_device_add("scsi-hd", "scsihd", "{'drive': 'drv1'}");
153 qtest_qmp_device_del("scsihd");
156 /* Test WRITE SAME with the lba not aligned */
157 static void test_unaligned_write_same(void *obj
, void *data
,
158 QGuestAllocator
*t_alloc
)
160 QVirtioSCSI
*scsi
= obj
;
161 QVirtioSCSIQueues
*vs
;
162 uint8_t buf1
[512] = { 0 };
163 uint8_t buf2
[512] = { 1 };
164 const uint8_t write_same_cdb_1
[VIRTIO_SCSI_CDB_SIZE
] = {
165 0x41, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x02, 0x00
167 const uint8_t write_same_cdb_2
[VIRTIO_SCSI_CDB_SIZE
] = {
168 0x41, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x33, 0x00, 0x00
170 const uint8_t write_same_cdb_ndob
[VIRTIO_SCSI_CDB_SIZE
] = {
171 0x41, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x33, 0x00, 0x00
175 vs
= qvirtio_scsi_init(scsi
->vdev
);
177 g_assert_cmphex(0, ==,
178 virtio_scsi_do_command(vs
, write_same_cdb_1
, NULL
, 0, buf1
, 512,
181 g_assert_cmphex(0, ==,
182 virtio_scsi_do_command(vs
, write_same_cdb_2
, NULL
, 0, buf2
, 512,
185 g_assert_cmphex(0, ==,
186 virtio_scsi_do_command(vs
, write_same_cdb_ndob
, NULL
, 0, NULL
, 0,
189 qvirtio_scsi_pci_free(vs
);
192 static void test_iothread_attach_node(void *obj
, void *data
,
193 QGuestAllocator
*t_alloc
)
195 QVirtioSCSIPCI
*scsi_pci
= obj
;
196 QVirtioSCSI
*scsi
= &scsi_pci
->scsi
;
197 QVirtioSCSIQueues
*vs
;
198 char tmp_path
[] = "/tmp/qtest.XXXXXX";
202 uint8_t buf
[512] = { 0 };
203 const uint8_t write_cdb
[VIRTIO_SCSI_CDB_SIZE
] = {
204 /* WRITE(10) to LBA 0, transfer length 1 */
205 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00
209 vs
= qvirtio_scsi_init(scsi
->vdev
);
211 /* Create a temporary qcow2 overlay*/
212 fd
= mkstemp(tmp_path
);
216 if (!have_qemu_img()) {
217 g_test_message("QTEST_QEMU_IMG not set or qemu-img missing; "
218 "skipping snapshot test");
222 mkqcow2(tmp_path
, 64);
224 /* Attach the overlay to the null0 node */
225 qmp_assert_success("{'execute': 'blockdev-add', 'arguments': {"
226 " 'driver': 'qcow2', 'node-name': 'overlay',"
227 " 'backing': 'null0', 'file': {"
228 " 'driver': 'file', 'filename': %s}}}", tmp_path
);
230 /* Send a request to see if the AioContext is still right */
231 ret
= virtio_scsi_do_command(vs
, write_cdb
, NULL
, 0, buf
, 512, NULL
);
232 g_assert_cmphex(ret
, ==, 0);
235 qvirtio_scsi_pci_free(vs
);
239 static void *virtio_scsi_hotplug_setup(GString
*cmd_line
, void *arg
)
241 g_string_append(cmd_line
,
242 " -drive id=drv1,if=none,file=null-co://,format=raw");
246 static void *virtio_scsi_setup(GString
*cmd_line
, void *arg
)
248 g_string_append(cmd_line
,
249 " -drive file=blkdebug::null-co://,"
250 "if=none,id=dr1,format=raw,file.align=4k "
251 "-device scsi-hd,drive=dr1,lun=0,scsi-id=1");
255 static void *virtio_scsi_setup_iothread(GString
*cmd_line
, void *arg
)
257 g_string_append(cmd_line
,
258 " -object iothread,id=thread0"
259 " -blockdev driver=null-co,node-name=null0"
260 " -device scsi-hd,drive=null0");
264 static void register_virtio_scsi_test(void)
266 QOSGraphTestOptions opts
= { };
268 opts
.before
= virtio_scsi_hotplug_setup
;
269 qos_add_test("hotplug", "virtio-scsi", hotplug
, &opts
);
271 opts
.before
= virtio_scsi_setup
;
272 qos_add_test("unaligned-write-same", "virtio-scsi",
273 test_unaligned_write_same
, &opts
);
275 opts
.before
= virtio_scsi_setup_iothread
;
276 opts
.edge
= (QOSGraphEdgeOptions
) {
277 .extra_device_opts
= "iothread=thread0",
279 qos_add_test("iothread-attach-node", "virtio-scsi-pci",
280 test_iothread_attach_node
, &opts
);
283 libqos_init(register_virtio_scsi_test
);