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/queue.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 "qemu/cutils.h"
33 /* Features supported by host kernel. */
34 static const int kernel_feature_bits
[] = {
35 VIRTIO_F_NOTIFY_ON_EMPTY
,
36 VIRTIO_RING_F_INDIRECT_DESC
,
37 VIRTIO_RING_F_EVENT_IDX
,
38 VIRTIO_SCSI_F_HOTPLUG
,
39 VHOST_INVALID_FEATURE_BIT
42 static int vhost_scsi_set_endpoint(VHostSCSI
*s
)
44 VirtIOSCSICommon
*vs
= VIRTIO_SCSI_COMMON(s
);
45 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(s
);
46 const VhostOps
*vhost_ops
= vsc
->dev
.vhost_ops
;
47 struct vhost_scsi_target backend
;
50 memset(&backend
, 0, sizeof(backend
));
51 pstrcpy(backend
.vhost_wwpn
, sizeof(backend
.vhost_wwpn
), vs
->conf
.wwpn
);
52 ret
= vhost_ops
->vhost_scsi_set_endpoint(&vsc
->dev
, &backend
);
59 static void vhost_scsi_clear_endpoint(VHostSCSI
*s
)
61 VirtIOSCSICommon
*vs
= VIRTIO_SCSI_COMMON(s
);
62 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(s
);
63 struct vhost_scsi_target backend
;
64 const VhostOps
*vhost_ops
= vsc
->dev
.vhost_ops
;
66 memset(&backend
, 0, sizeof(backend
));
67 pstrcpy(backend
.vhost_wwpn
, sizeof(backend
.vhost_wwpn
), vs
->conf
.wwpn
);
68 vhost_ops
->vhost_scsi_clear_endpoint(&vsc
->dev
, &backend
);
71 static int vhost_scsi_start(VHostSCSI
*s
)
74 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(s
);
75 const VhostOps
*vhost_ops
= vsc
->dev
.vhost_ops
;
77 ret
= vhost_ops
->vhost_scsi_get_abi_version(&vsc
->dev
, &abi_version
);
81 if (abi_version
> VHOST_SCSI_ABI_VERSION
) {
82 error_report("vhost-scsi: The running tcm_vhost kernel abi_version:"
83 " %d is greater than vhost_scsi userspace supports: %d,"
84 " please upgrade your version of QEMU", abi_version
,
85 VHOST_SCSI_ABI_VERSION
);
89 ret
= vhost_scsi_common_start(vsc
);
94 ret
= vhost_scsi_set_endpoint(s
);
96 error_report("Error setting vhost-scsi endpoint");
97 vhost_scsi_common_stop(vsc
);
103 static void vhost_scsi_stop(VHostSCSI
*s
)
105 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(s
);
107 vhost_scsi_clear_endpoint(s
);
108 vhost_scsi_common_stop(vsc
);
111 static void vhost_scsi_set_status(VirtIODevice
*vdev
, uint8_t val
)
113 VHostSCSI
*s
= VHOST_SCSI(vdev
);
114 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(s
);
115 bool start
= (val
& VIRTIO_CONFIG_S_DRIVER_OK
);
117 if (!vdev
->vm_running
) {
121 if (vsc
->dev
.started
== start
) {
128 ret
= vhost_scsi_start(s
);
130 error_report("unable to start vhost-scsi: %s", strerror(-ret
));
138 static void vhost_dummy_handle_output(VirtIODevice
*vdev
, VirtQueue
*vq
)
142 static int vhost_scsi_pre_save(void *opaque
)
144 VHostSCSICommon
*vsc
= opaque
;
146 /* At this point, backend must be stopped, otherwise
147 * it might keep writing to memory. */
148 assert(!vsc
->dev
.started
);
153 static const VMStateDescription vmstate_virtio_vhost_scsi
= {
154 .name
= "virtio-vhost_scsi",
155 .minimum_version_id
= 1,
157 .fields
= (VMStateField
[]) {
158 VMSTATE_VIRTIO_DEVICE
,
159 VMSTATE_END_OF_LIST()
161 .pre_save
= vhost_scsi_pre_save
,
164 static void vhost_scsi_realize(DeviceState
*dev
, Error
**errp
)
166 VirtIOSCSICommon
*vs
= VIRTIO_SCSI_COMMON(dev
);
167 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(dev
);
172 if (!vs
->conf
.wwpn
) {
173 error_setg(errp
, "vhost-scsi: missing wwpn");
177 if (vs
->conf
.vhostfd
) {
178 vhostfd
= monitor_fd_param(cur_mon
, vs
->conf
.vhostfd
, errp
);
180 error_prepend(errp
, "vhost-scsi: unable to parse vhostfd: ");
184 vhostfd
= open("/dev/vhost-scsi", O_RDWR
);
186 error_setg(errp
, "vhost-scsi: open vhost char device failed: %s",
192 virtio_scsi_common_realize(dev
,
193 vhost_dummy_handle_output
,
194 vhost_dummy_handle_output
,
195 vhost_dummy_handle_output
,
198 error_propagate(errp
, err
);
202 error_setg(&vsc
->migration_blocker
,
203 "vhost-scsi does not support migration");
204 migrate_add_blocker(vsc
->migration_blocker
, &err
);
206 error_propagate(errp
, err
);
207 error_free(vsc
->migration_blocker
);
211 vsc
->dev
.nvqs
= VHOST_SCSI_VQ_NUM_FIXED
+ vs
->conf
.num_queues
;
212 vsc
->dev
.vqs
= g_new0(struct vhost_virtqueue
, vsc
->dev
.nvqs
);
213 vsc
->dev
.vq_index
= 0;
214 vsc
->dev
.backend_features
= 0;
216 ret
= vhost_dev_init(&vsc
->dev
, (void *)(uintptr_t)vhostfd
,
217 VHOST_BACKEND_TYPE_KERNEL
, 0);
219 error_setg(errp
, "vhost-scsi: vhost initialization failed: %s",
224 /* At present, channel and lun both are 0 for bootable vhost-scsi disk */
227 /* Note: we can also get the minimum tpgt from kernel */
228 vsc
->target
= vs
->conf
.boot_tpgt
;
233 migrate_del_blocker(vsc
->migration_blocker
);
234 g_free(vsc
->dev
.vqs
);
240 static void vhost_scsi_unrealize(DeviceState
*dev
, Error
**errp
)
242 VirtIODevice
*vdev
= VIRTIO_DEVICE(dev
);
243 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(dev
);
244 struct vhost_virtqueue
*vqs
= vsc
->dev
.vqs
;
246 migrate_del_blocker(vsc
->migration_blocker
);
247 error_free(vsc
->migration_blocker
);
249 /* This will stop vhost backend. */
250 vhost_scsi_set_status(vdev
, 0);
252 vhost_dev_cleanup(&vsc
->dev
);
255 virtio_scsi_common_unrealize(dev
, errp
);
258 static Property vhost_scsi_properties
[] = {
259 DEFINE_PROP_STRING("vhostfd", VirtIOSCSICommon
, conf
.vhostfd
),
260 DEFINE_PROP_STRING("wwpn", VirtIOSCSICommon
, conf
.wwpn
),
261 DEFINE_PROP_UINT32("boot_tpgt", VirtIOSCSICommon
, conf
.boot_tpgt
, 0),
262 DEFINE_PROP_UINT32("num_queues", VirtIOSCSICommon
, conf
.num_queues
, 1),
263 DEFINE_PROP_UINT32("virtqueue_size", VirtIOSCSICommon
, conf
.virtqueue_size
,
265 DEFINE_PROP_UINT32("max_sectors", VirtIOSCSICommon
, conf
.max_sectors
,
267 DEFINE_PROP_UINT32("cmd_per_lun", VirtIOSCSICommon
, conf
.cmd_per_lun
, 128),
268 DEFINE_PROP_BIT64("t10_pi", VHostSCSICommon
, host_features
,
269 VIRTIO_SCSI_F_T10_PI
,
271 DEFINE_PROP_END_OF_LIST(),
274 static void vhost_scsi_class_init(ObjectClass
*klass
, void *data
)
276 DeviceClass
*dc
= DEVICE_CLASS(klass
);
277 VirtioDeviceClass
*vdc
= VIRTIO_DEVICE_CLASS(klass
);
278 FWPathProviderClass
*fwc
= FW_PATH_PROVIDER_CLASS(klass
);
280 dc
->props
= vhost_scsi_properties
;
281 dc
->vmsd
= &vmstate_virtio_vhost_scsi
;
282 set_bit(DEVICE_CATEGORY_STORAGE
, dc
->categories
);
283 vdc
->realize
= vhost_scsi_realize
;
284 vdc
->unrealize
= vhost_scsi_unrealize
;
285 vdc
->get_features
= vhost_scsi_common_get_features
;
286 vdc
->set_config
= vhost_scsi_common_set_config
;
287 vdc
->set_status
= vhost_scsi_set_status
;
288 fwc
->get_dev_path
= vhost_scsi_common_get_fw_dev_path
;
291 static void vhost_scsi_instance_init(Object
*obj
)
293 VHostSCSICommon
*vsc
= VHOST_SCSI_COMMON(obj
);
295 vsc
->feature_bits
= kernel_feature_bits
;
297 device_add_bootindex_property(obj
, &vsc
->bootindex
, "bootindex", NULL
,
301 static const TypeInfo vhost_scsi_info
= {
302 .name
= TYPE_VHOST_SCSI
,
303 .parent
= TYPE_VHOST_SCSI_COMMON
,
304 .instance_size
= sizeof(VHostSCSI
),
305 .class_init
= vhost_scsi_class_init
,
306 .instance_init
= vhost_scsi_instance_init
,
307 .interfaces
= (InterfaceInfo
[]) {
308 { TYPE_FW_PATH_PROVIDER
},
313 static void virtio_register_types(void)
315 type_register_static(&vhost_scsi_info
);
318 type_init(virtio_register_types
)