2 * vhost_scsi host device
4 * Copyright IBM, Corp. 2011
7 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
9 * Changes for QEMU mainline + tcm_vhost kernel upstream:
10 * Nicholas Bellinger <nab@risingtidesystems.com>
12 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
13 * See the COPYING.LIB file in the top-level directory.
17 #include <sys/ioctl.h>
19 #include "qemu/error-report.h"
20 #include "qemu/queue.h"
21 #include "monitor/monitor.h"
22 #include "migration/migration.h"
23 #include "hw/virtio/vhost-scsi.h"
24 #include "hw/virtio/vhost.h"
25 #include "hw/virtio/virtio-scsi.h"
26 #include "hw/virtio/virtio-bus.h"
27 #include "hw/virtio/virtio-access.h"
28 #include "hw/fw-path-provider.h"
29 #include "linux/vhost.h"
31 /* Features supported by host kernel. */
32 static const int kernel_feature_bits
[] = {
33 VIRTIO_F_NOTIFY_ON_EMPTY
,
34 VIRTIO_RING_F_INDIRECT_DESC
,
35 VIRTIO_RING_F_EVENT_IDX
,
36 VIRTIO_SCSI_F_HOTPLUG
,
37 VHOST_INVALID_FEATURE_BIT
40 static int vhost_scsi_set_endpoint(VHostSCSI
*s
)
42 VirtIOSCSICommon
*vs
= VIRTIO_SCSI_COMMON(s
);
43 const VhostOps
*vhost_ops
= s
->dev
.vhost_ops
;
44 struct vhost_scsi_target backend
;
47 memset(&backend
, 0, sizeof(backend
));
48 pstrcpy(backend
.vhost_wwpn
, sizeof(backend
.vhost_wwpn
), vs
->conf
.wwpn
);
49 ret
= vhost_ops
->vhost_scsi_set_endpoint(&s
->dev
, &backend
);
56 static void vhost_scsi_clear_endpoint(VHostSCSI
*s
)
58 VirtIOSCSICommon
*vs
= VIRTIO_SCSI_COMMON(s
);
59 struct vhost_scsi_target backend
;
60 const VhostOps
*vhost_ops
= s
->dev
.vhost_ops
;
62 memset(&backend
, 0, sizeof(backend
));
63 pstrcpy(backend
.vhost_wwpn
, sizeof(backend
.vhost_wwpn
), vs
->conf
.wwpn
);
64 vhost_ops
->vhost_scsi_clear_endpoint(&s
->dev
, &backend
);
67 static int vhost_scsi_start(VHostSCSI
*s
)
69 int ret
, abi_version
, i
;
70 VirtIODevice
*vdev
= VIRTIO_DEVICE(s
);
71 BusState
*qbus
= BUS(qdev_get_parent_bus(DEVICE(vdev
)));
72 VirtioBusClass
*k
= VIRTIO_BUS_GET_CLASS(qbus
);
73 const VhostOps
*vhost_ops
= s
->dev
.vhost_ops
;
75 if (!k
->set_guest_notifiers
) {
76 error_report("binding does not support guest notifiers");
80 ret
= vhost_ops
->vhost_scsi_get_abi_version(&s
->dev
, &abi_version
);
84 if (abi_version
> VHOST_SCSI_ABI_VERSION
) {
85 error_report("vhost-scsi: The running tcm_vhost kernel abi_version:"
86 " %d is greater than vhost_scsi userspace supports: %d, please"
87 " upgrade your version of QEMU", abi_version
,
88 VHOST_SCSI_ABI_VERSION
);
92 ret
= vhost_dev_enable_notifiers(&s
->dev
, vdev
);
97 s
->dev
.acked_features
= vdev
->guest_features
;
98 ret
= vhost_dev_start(&s
->dev
, vdev
);
100 error_report("Error start vhost dev");
104 ret
= vhost_scsi_set_endpoint(s
);
106 error_report("Error set vhost-scsi endpoint");
110 ret
= k
->set_guest_notifiers(qbus
->parent
, s
->dev
.nvqs
, true);
112 error_report("Error binding guest notifier");
116 /* guest_notifier_mask/pending not used yet, so just unmask
117 * everything here. virtio-pci will do the right thing by
118 * enabling/disabling irqfd.
120 for (i
= 0; i
< s
->dev
.nvqs
; i
++) {
121 vhost_virtqueue_mask(&s
->dev
, vdev
, s
->dev
.vq_index
+ i
, false);
127 vhost_scsi_clear_endpoint(s
);
129 vhost_dev_stop(&s
->dev
, vdev
);
131 vhost_dev_disable_notifiers(&s
->dev
, vdev
);
135 static void vhost_scsi_stop(VHostSCSI
*s
)
137 VirtIODevice
*vdev
= VIRTIO_DEVICE(s
);
138 BusState
*qbus
= BUS(qdev_get_parent_bus(DEVICE(vdev
)));
139 VirtioBusClass
*k
= VIRTIO_BUS_GET_CLASS(qbus
);
142 if (k
->set_guest_notifiers
) {
143 ret
= k
->set_guest_notifiers(qbus
->parent
, s
->dev
.nvqs
, false);
145 error_report("vhost guest notifier cleanup failed: %d", ret
);
150 vhost_scsi_clear_endpoint(s
);
151 vhost_dev_stop(&s
->dev
, vdev
);
152 vhost_dev_disable_notifiers(&s
->dev
, vdev
);
155 static uint64_t vhost_scsi_get_features(VirtIODevice
*vdev
,
159 VHostSCSI
*s
= VHOST_SCSI(vdev
);
161 return vhost_get_features(&s
->dev
, kernel_feature_bits
, features
);
164 static void vhost_scsi_set_config(VirtIODevice
*vdev
,
165 const uint8_t *config
)
167 VirtIOSCSIConfig
*scsiconf
= (VirtIOSCSIConfig
*)config
;
168 VirtIOSCSICommon
*vs
= VIRTIO_SCSI_COMMON(vdev
);
170 if ((uint32_t) virtio_ldl_p(vdev
, &scsiconf
->sense_size
) != vs
->sense_size
||
171 (uint32_t) virtio_ldl_p(vdev
, &scsiconf
->cdb_size
) != vs
->cdb_size
) {
172 error_report("vhost-scsi does not support changing the sense data and CDB sizes");
177 static void vhost_scsi_set_status(VirtIODevice
*vdev
, uint8_t val
)
179 VHostSCSI
*s
= (VHostSCSI
*)vdev
;
180 bool start
= (val
& VIRTIO_CONFIG_S_DRIVER_OK
);
182 if (s
->dev
.started
== start
) {
189 ret
= vhost_scsi_start(s
);
191 error_report("virtio-scsi: unable to start vhost: %s",
194 /* There is no userspace virtio-scsi fallback so exit */
202 static void vhost_dummy_handle_output(VirtIODevice
*vdev
, VirtQueue
*vq
)
206 static void vhost_scsi_realize(DeviceState
*dev
, Error
**errp
)
208 VirtIOSCSICommon
*vs
= VIRTIO_SCSI_COMMON(dev
);
209 VHostSCSI
*s
= VHOST_SCSI(dev
);
214 if (!vs
->conf
.wwpn
) {
215 error_setg(errp
, "vhost-scsi: missing wwpn");
219 if (vs
->conf
.vhostfd
) {
220 vhostfd
= monitor_fd_param(cur_mon
, vs
->conf
.vhostfd
, &err
);
222 error_setg(errp
, "vhost-scsi: unable to parse vhostfd: %s",
223 error_get_pretty(err
));
228 vhostfd
= open("/dev/vhost-scsi", O_RDWR
);
230 error_setg(errp
, "vhost-scsi: open vhost char device failed: %s",
236 virtio_scsi_common_realize(dev
, &err
, vhost_dummy_handle_output
,
237 vhost_dummy_handle_output
,
238 vhost_dummy_handle_output
);
240 error_propagate(errp
, err
);
245 s
->dev
.nvqs
= VHOST_SCSI_VQ_NUM_FIXED
+ vs
->conf
.num_queues
;
246 s
->dev
.vqs
= g_new(struct vhost_virtqueue
, s
->dev
.nvqs
);
248 s
->dev
.backend_features
= 0;
250 ret
= vhost_dev_init(&s
->dev
, (void *)(uintptr_t)vhostfd
,
251 VHOST_BACKEND_TYPE_KERNEL
);
253 error_setg(errp
, "vhost-scsi: vhost initialization failed: %s",
258 /* At present, channel and lun both are 0 for bootable vhost-scsi disk */
261 /* Note: we can also get the minimum tpgt from kernel */
262 s
->target
= vs
->conf
.boot_tpgt
;
264 error_setg(&s
->migration_blocker
,
265 "vhost-scsi does not support migration");
266 migrate_add_blocker(s
->migration_blocker
);
269 static void vhost_scsi_unrealize(DeviceState
*dev
, Error
**errp
)
271 VirtIODevice
*vdev
= VIRTIO_DEVICE(dev
);
272 VHostSCSI
*s
= VHOST_SCSI(dev
);
274 migrate_del_blocker(s
->migration_blocker
);
275 error_free(s
->migration_blocker
);
277 /* This will stop vhost backend. */
278 vhost_scsi_set_status(vdev
, 0);
280 vhost_dev_cleanup(&s
->dev
);
283 virtio_scsi_common_unrealize(dev
, errp
);
287 * Implementation of an interface to adjust firmware path
288 * for the bootindex property handling.
290 static char *vhost_scsi_get_fw_dev_path(FWPathProvider
*p
, BusState
*bus
,
293 VHostSCSI
*s
= VHOST_SCSI(dev
);
294 /* format: channel@channel/vhost-scsi@target,lun */
295 return g_strdup_printf("/channel@%x/%s@%x,%x", s
->channel
,
296 qdev_fw_name(dev
), s
->target
, s
->lun
);
299 static Property vhost_scsi_properties
[] = {
300 DEFINE_PROP_STRING("vhostfd", VHostSCSI
, parent_obj
.conf
.vhostfd
),
301 DEFINE_PROP_STRING("wwpn", VHostSCSI
, parent_obj
.conf
.wwpn
),
302 DEFINE_PROP_UINT32("boot_tpgt", VHostSCSI
, parent_obj
.conf
.boot_tpgt
, 0),
303 DEFINE_PROP_UINT32("num_queues", VHostSCSI
, parent_obj
.conf
.num_queues
, 1),
304 DEFINE_PROP_UINT32("max_sectors", VHostSCSI
, parent_obj
.conf
.max_sectors
,
306 DEFINE_PROP_UINT32("cmd_per_lun", VHostSCSI
, parent_obj
.conf
.cmd_per_lun
,
308 DEFINE_PROP_END_OF_LIST(),
311 static void vhost_scsi_class_init(ObjectClass
*klass
, void *data
)
313 DeviceClass
*dc
= DEVICE_CLASS(klass
);
314 VirtioDeviceClass
*vdc
= VIRTIO_DEVICE_CLASS(klass
);
315 FWPathProviderClass
*fwc
= FW_PATH_PROVIDER_CLASS(klass
);
317 dc
->props
= vhost_scsi_properties
;
318 set_bit(DEVICE_CATEGORY_STORAGE
, dc
->categories
);
319 vdc
->realize
= vhost_scsi_realize
;
320 vdc
->unrealize
= vhost_scsi_unrealize
;
321 vdc
->get_features
= vhost_scsi_get_features
;
322 vdc
->set_config
= vhost_scsi_set_config
;
323 vdc
->set_status
= vhost_scsi_set_status
;
324 fwc
->get_dev_path
= vhost_scsi_get_fw_dev_path
;
327 static void vhost_scsi_instance_init(Object
*obj
)
329 VHostSCSI
*dev
= VHOST_SCSI(obj
);
331 device_add_bootindex_property(obj
, &dev
->bootindex
, "bootindex", NULL
,
335 static const TypeInfo vhost_scsi_info
= {
336 .name
= TYPE_VHOST_SCSI
,
337 .parent
= TYPE_VIRTIO_SCSI_COMMON
,
338 .instance_size
= sizeof(VHostSCSI
),
339 .class_init
= vhost_scsi_class_init
,
340 .instance_init
= vhost_scsi_instance_init
,
341 .interfaces
= (InterfaceInfo
[]) {
342 { TYPE_FW_PATH_PROVIDER
},
347 static void virtio_register_types(void)
349 type_register_static(&vhost_scsi_info
);
352 type_init(virtio_register_types
)