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 "qemu/osdep.h"
18 #include <linux/vhost.h>
19 #include <sys/ioctl.h>
20 #include "qapi/error.h"
21 #include "qemu/error-report.h"
22 #include "qemu/module.h"
23 #include "monitor/monitor.h"
24 #include "migration/blocker.h"
25 #include "hw/virtio/vhost-scsi.h"
26 #include "hw/virtio/vhost.h"
27 #include "hw/virtio/virtio-scsi.h"
28 #include "hw/virtio/virtio-bus.h"
29 #include "hw/virtio/virtio-access.h"
30 #include "hw/fw-path-provider.h"
31 #include "hw/qdev-properties.h"
32 #include "qemu/cutils.h"
33 #include "sysemu/sysemu.h"
35 /* Features supported by host kernel. */
36 static const int kernel_feature_bits
[] = {
37 VIRTIO_F_NOTIFY_ON_EMPTY
,
38 VIRTIO_RING_F_INDIRECT_DESC
,
39 VIRTIO_RING_F_EVENT_IDX
,
40 VIRTIO_SCSI_F_HOTPLUG
,
41 VHOST_INVALID_FEATURE_BIT
44 static int vhost_scsi_set_endpoint(VHostSCSI
*s
)
46 VirtIOSCSICommon
*vs
= VIRTIO_SCSI_COMMON(s
);
47 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(s
);
48 const VhostOps
*vhost_ops
= vsc
->dev
.vhost_ops
;
49 struct vhost_scsi_target backend
;
52 memset(&backend
, 0, sizeof(backend
));
53 pstrcpy(backend
.vhost_wwpn
, sizeof(backend
.vhost_wwpn
), vs
->conf
.wwpn
);
54 ret
= vhost_ops
->vhost_scsi_set_endpoint(&vsc
->dev
, &backend
);
61 static void vhost_scsi_clear_endpoint(VHostSCSI
*s
)
63 VirtIOSCSICommon
*vs
= VIRTIO_SCSI_COMMON(s
);
64 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(s
);
65 struct vhost_scsi_target backend
;
66 const VhostOps
*vhost_ops
= vsc
->dev
.vhost_ops
;
68 memset(&backend
, 0, sizeof(backend
));
69 pstrcpy(backend
.vhost_wwpn
, sizeof(backend
.vhost_wwpn
), vs
->conf
.wwpn
);
70 vhost_ops
->vhost_scsi_clear_endpoint(&vsc
->dev
, &backend
);
73 static int vhost_scsi_start(VHostSCSI
*s
)
76 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(s
);
77 const VhostOps
*vhost_ops
= vsc
->dev
.vhost_ops
;
79 ret
= vhost_ops
->vhost_scsi_get_abi_version(&vsc
->dev
, &abi_version
);
83 if (abi_version
> VHOST_SCSI_ABI_VERSION
) {
84 error_report("vhost-scsi: The running tcm_vhost kernel abi_version:"
85 " %d is greater than vhost_scsi userspace supports: %d,"
86 " please upgrade your version of QEMU", abi_version
,
87 VHOST_SCSI_ABI_VERSION
);
91 ret
= vhost_scsi_common_start(vsc
);
96 ret
= vhost_scsi_set_endpoint(s
);
98 error_report("Error setting vhost-scsi endpoint");
99 vhost_scsi_common_stop(vsc
);
105 static void vhost_scsi_stop(VHostSCSI
*s
)
107 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(s
);
109 vhost_scsi_clear_endpoint(s
);
110 vhost_scsi_common_stop(vsc
);
113 static void vhost_scsi_set_status(VirtIODevice
*vdev
, uint8_t val
)
115 VHostSCSI
*s
= VHOST_SCSI(vdev
);
116 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(s
);
117 bool start
= (val
& VIRTIO_CONFIG_S_DRIVER_OK
);
119 if (!vdev
->vm_running
) {
123 if (vsc
->dev
.started
== start
) {
130 ret
= vhost_scsi_start(s
);
132 error_report("unable to start vhost-scsi: %s", strerror(-ret
));
140 static void vhost_dummy_handle_output(VirtIODevice
*vdev
, VirtQueue
*vq
)
144 static int vhost_scsi_pre_save(void *opaque
)
146 VHostSCSICommon
*vsc
= opaque
;
148 /* At this point, backend must be stopped, otherwise
149 * it might keep writing to memory. */
150 assert(!vsc
->dev
.started
);
155 static const VMStateDescription vmstate_virtio_vhost_scsi
= {
156 .name
= "virtio-vhost_scsi",
157 .minimum_version_id
= 1,
159 .fields
= (VMStateField
[]) {
160 VMSTATE_VIRTIO_DEVICE
,
161 VMSTATE_END_OF_LIST()
163 .pre_save
= vhost_scsi_pre_save
,
166 static void vhost_scsi_realize(DeviceState
*dev
, Error
**errp
)
168 VirtIOSCSICommon
*vs
= VIRTIO_SCSI_COMMON(dev
);
169 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(dev
);
174 if (!vs
->conf
.wwpn
) {
175 error_setg(errp
, "vhost-scsi: missing wwpn");
179 if (vs
->conf
.vhostfd
) {
180 vhostfd
= monitor_fd_param(monitor_cur(), vs
->conf
.vhostfd
, errp
);
182 error_prepend(errp
, "vhost-scsi: unable to parse vhostfd: ");
186 vhostfd
= open("/dev/vhost-scsi", O_RDWR
);
188 error_setg(errp
, "vhost-scsi: open vhost char device failed: %s",
194 virtio_scsi_common_realize(dev
,
195 vhost_dummy_handle_output
,
196 vhost_dummy_handle_output
,
197 vhost_dummy_handle_output
,
200 error_propagate(errp
, err
);
204 if (!vsc
->migratable
) {
205 error_setg(&vsc
->migration_blocker
,
206 "vhost-scsi does not support migration in all cases. "
207 "When external environment supports it (Orchestrator migrates "
208 "target SCSI device state or use shared storage over network), "
209 "set 'migratable' property to true to enable migration.");
210 if (migrate_add_blocker(vsc
->migration_blocker
, errp
) < 0) {
211 error_free(vsc
->migration_blocker
);
216 vsc
->dev
.nvqs
= VHOST_SCSI_VQ_NUM_FIXED
+ vs
->conf
.num_queues
;
217 vsc
->dev
.vqs
= g_new0(struct vhost_virtqueue
, vsc
->dev
.nvqs
);
218 vsc
->dev
.vq_index
= 0;
219 vsc
->dev
.backend_features
= 0;
221 ret
= vhost_dev_init(&vsc
->dev
, (void *)(uintptr_t)vhostfd
,
222 VHOST_BACKEND_TYPE_KERNEL
, 0);
224 error_setg(errp
, "vhost-scsi: vhost initialization failed: %s",
229 /* At present, channel and lun both are 0 for bootable vhost-scsi disk */
232 /* Note: we can also get the minimum tpgt from kernel */
233 vsc
->target
= vs
->conf
.boot_tpgt
;
238 if (!vsc
->migratable
) {
239 migrate_del_blocker(vsc
->migration_blocker
);
241 g_free(vsc
->dev
.vqs
);
243 virtio_scsi_common_unrealize(dev
);
249 static void vhost_scsi_unrealize(DeviceState
*dev
)
251 VirtIODevice
*vdev
= VIRTIO_DEVICE(dev
);
252 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(dev
);
253 struct vhost_virtqueue
*vqs
= vsc
->dev
.vqs
;
255 if (!vsc
->migratable
) {
256 migrate_del_blocker(vsc
->migration_blocker
);
257 error_free(vsc
->migration_blocker
);
260 /* This will stop vhost backend. */
261 vhost_scsi_set_status(vdev
, 0);
263 vhost_dev_cleanup(&vsc
->dev
);
266 virtio_scsi_common_unrealize(dev
);
269 static Property vhost_scsi_properties
[] = {
270 DEFINE_PROP_STRING("vhostfd", VirtIOSCSICommon
, conf
.vhostfd
),
271 DEFINE_PROP_STRING("wwpn", VirtIOSCSICommon
, conf
.wwpn
),
272 DEFINE_PROP_UINT32("boot_tpgt", VirtIOSCSICommon
, conf
.boot_tpgt
, 0),
273 DEFINE_PROP_UINT32("num_queues", VirtIOSCSICommon
, conf
.num_queues
,
274 VIRTIO_SCSI_AUTO_NUM_QUEUES
),
275 DEFINE_PROP_UINT32("virtqueue_size", VirtIOSCSICommon
, conf
.virtqueue_size
,
277 DEFINE_PROP_BOOL("seg_max_adjust", VirtIOSCSICommon
, conf
.seg_max_adjust
,
279 DEFINE_PROP_UINT32("max_sectors", VirtIOSCSICommon
, conf
.max_sectors
,
281 DEFINE_PROP_UINT32("cmd_per_lun", VirtIOSCSICommon
, conf
.cmd_per_lun
, 128),
282 DEFINE_PROP_BIT64("t10_pi", VHostSCSICommon
, host_features
,
283 VIRTIO_SCSI_F_T10_PI
,
285 DEFINE_PROP_BOOL("migratable", VHostSCSICommon
, migratable
, false),
286 DEFINE_PROP_END_OF_LIST(),
289 static void vhost_scsi_class_init(ObjectClass
*klass
, void *data
)
291 DeviceClass
*dc
= DEVICE_CLASS(klass
);
292 VirtioDeviceClass
*vdc
= VIRTIO_DEVICE_CLASS(klass
);
293 FWPathProviderClass
*fwc
= FW_PATH_PROVIDER_CLASS(klass
);
295 device_class_set_props(dc
, vhost_scsi_properties
);
296 dc
->vmsd
= &vmstate_virtio_vhost_scsi
;
297 set_bit(DEVICE_CATEGORY_STORAGE
, dc
->categories
);
298 vdc
->realize
= vhost_scsi_realize
;
299 vdc
->unrealize
= vhost_scsi_unrealize
;
300 vdc
->get_features
= vhost_scsi_common_get_features
;
301 vdc
->set_config
= vhost_scsi_common_set_config
;
302 vdc
->set_status
= vhost_scsi_set_status
;
303 fwc
->get_dev_path
= vhost_scsi_common_get_fw_dev_path
;
306 static void vhost_scsi_instance_init(Object
*obj
)
308 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(obj
);
310 vsc
->feature_bits
= kernel_feature_bits
;
312 device_add_bootindex_property(obj
, &vsc
->bootindex
, "bootindex", NULL
,
316 static const TypeInfo vhost_scsi_info
= {
317 .name
= TYPE_VHOST_SCSI
,
318 .parent
= TYPE_VHOST_SCSI_COMMON
,
319 .instance_size
= sizeof(VHostSCSI
),
320 .class_init
= vhost_scsi_class_init
,
321 .instance_init
= vhost_scsi_instance_init
,
322 .interfaces
= (InterfaceInfo
[]) {
323 { TYPE_FW_PATH_PROVIDER
},
328 static void virtio_register_types(void)
330 type_register_static(&vhost_scsi_info
);
333 type_init(virtio_register_types
)