2 * vhost-user-blk host device
4 * Copyright(C) 2017 Intel Corporation.
7 * Changpeng Liu <changpeng.liu@intel.com>
9 * Largely based on the "vhost-user-scsi.c" and "vhost-scsi.c" implemented by:
10 * Felipe Franciosi <felipe@nutanix.com>
11 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
12 * Nicholas Bellinger <nab@risingtidesystems.com>
14 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
15 * See the COPYING.LIB file in the top-level directory.
19 #include "qemu/osdep.h"
20 #include "qapi/error.h"
21 #include "qemu/error-report.h"
22 #include "qemu/cutils.h"
23 #include "qom/object.h"
24 #include "hw/qdev-core.h"
25 #include "hw/virtio/vhost.h"
26 #include "hw/virtio/vhost-user-blk.h"
27 #include "hw/virtio/virtio.h"
28 #include "hw/virtio/virtio-bus.h"
29 #include "hw/virtio/virtio-access.h"
31 static const int user_feature_bits
[] = {
32 VIRTIO_BLK_F_SIZE_MAX
,
34 VIRTIO_BLK_F_GEOMETRY
,
35 VIRTIO_BLK_F_BLK_SIZE
,
36 VIRTIO_BLK_F_TOPOLOGY
,
40 VIRTIO_BLK_F_CONFIG_WCE
,
42 VIRTIO_BLK_F_WRITE_ZEROES
,
44 VIRTIO_RING_F_INDIRECT_DESC
,
45 VIRTIO_RING_F_EVENT_IDX
,
46 VIRTIO_F_NOTIFY_ON_EMPTY
,
47 VHOST_INVALID_FEATURE_BIT
50 static void vhost_user_blk_update_config(VirtIODevice
*vdev
, uint8_t *config
)
52 VHostUserBlk
*s
= VHOST_USER_BLK(vdev
);
54 memcpy(config
, &s
->blkcfg
, sizeof(struct virtio_blk_config
));
57 static void vhost_user_blk_set_config(VirtIODevice
*vdev
, const uint8_t *config
)
59 VHostUserBlk
*s
= VHOST_USER_BLK(vdev
);
60 struct virtio_blk_config
*blkcfg
= (struct virtio_blk_config
*)config
;
63 if (blkcfg
->wce
== s
->blkcfg
.wce
) {
67 ret
= vhost_dev_set_config(&s
->dev
, &blkcfg
->wce
,
68 offsetof(struct virtio_blk_config
, wce
),
70 VHOST_SET_CONFIG_TYPE_MASTER
);
72 error_report("set device config space failed");
76 s
->blkcfg
.wce
= blkcfg
->wce
;
79 static int vhost_user_blk_handle_config_change(struct vhost_dev
*dev
)
82 struct virtio_blk_config blkcfg
;
83 VHostUserBlk
*s
= VHOST_USER_BLK(dev
->vdev
);
85 ret
= vhost_dev_get_config(dev
, (uint8_t *)&blkcfg
,
86 sizeof(struct virtio_blk_config
));
88 error_report("get config space failed");
92 /* valid for resize only */
93 if (blkcfg
.capacity
!= s
->blkcfg
.capacity
) {
94 s
->blkcfg
.capacity
= blkcfg
.capacity
;
95 memcpy(dev
->vdev
->config
, &s
->blkcfg
, sizeof(struct virtio_blk_config
));
96 virtio_notify_config(dev
->vdev
);
102 const VhostDevConfigOps blk_ops
= {
103 .vhost_dev_config_notifier
= vhost_user_blk_handle_config_change
,
106 static void vhost_user_blk_start(VirtIODevice
*vdev
)
108 VHostUserBlk
*s
= VHOST_USER_BLK(vdev
);
109 BusState
*qbus
= BUS(qdev_get_parent_bus(DEVICE(vdev
)));
110 VirtioBusClass
*k
= VIRTIO_BUS_GET_CLASS(qbus
);
113 if (!k
->set_guest_notifiers
) {
114 error_report("binding does not support guest notifiers");
118 ret
= vhost_dev_enable_notifiers(&s
->dev
, vdev
);
120 error_report("Error enabling host notifiers: %d", -ret
);
124 ret
= k
->set_guest_notifiers(qbus
->parent
, s
->dev
.nvqs
, true);
126 error_report("Error binding guest notifier: %d", -ret
);
127 goto err_host_notifiers
;
130 s
->dev
.acked_features
= vdev
->guest_features
;
132 if (!s
->inflight
->addr
) {
133 ret
= vhost_dev_get_inflight(&s
->dev
, s
->queue_size
, s
->inflight
);
135 error_report("Error get inflight: %d", -ret
);
136 goto err_guest_notifiers
;
140 ret
= vhost_dev_set_inflight(&s
->dev
, s
->inflight
);
142 error_report("Error set inflight: %d", -ret
);
143 goto err_guest_notifiers
;
146 ret
= vhost_dev_start(&s
->dev
, vdev
);
148 error_report("Error starting vhost: %d", -ret
);
149 goto err_guest_notifiers
;
152 /* guest_notifier_mask/pending not used yet, so just unmask
153 * everything here. virtio-pci will do the right thing by
154 * enabling/disabling irqfd.
156 for (i
= 0; i
< s
->dev
.nvqs
; i
++) {
157 vhost_virtqueue_mask(&s
->dev
, vdev
, i
, false);
163 k
->set_guest_notifiers(qbus
->parent
, s
->dev
.nvqs
, false);
165 vhost_dev_disable_notifiers(&s
->dev
, vdev
);
168 static void vhost_user_blk_stop(VirtIODevice
*vdev
)
170 VHostUserBlk
*s
= VHOST_USER_BLK(vdev
);
171 BusState
*qbus
= BUS(qdev_get_parent_bus(DEVICE(vdev
)));
172 VirtioBusClass
*k
= VIRTIO_BUS_GET_CLASS(qbus
);
175 if (!k
->set_guest_notifiers
) {
179 vhost_dev_stop(&s
->dev
, vdev
);
181 ret
= k
->set_guest_notifiers(qbus
->parent
, s
->dev
.nvqs
, false);
183 error_report("vhost guest notifier cleanup failed: %d", ret
);
187 vhost_dev_disable_notifiers(&s
->dev
, vdev
);
190 static void vhost_user_blk_set_status(VirtIODevice
*vdev
, uint8_t status
)
192 VHostUserBlk
*s
= VHOST_USER_BLK(vdev
);
193 bool should_start
= status
& VIRTIO_CONFIG_S_DRIVER_OK
;
195 if (!vdev
->vm_running
) {
196 should_start
= false;
199 if (s
->dev
.started
== should_start
) {
204 vhost_user_blk_start(vdev
);
206 vhost_user_blk_stop(vdev
);
211 static uint64_t vhost_user_blk_get_features(VirtIODevice
*vdev
,
215 VHostUserBlk
*s
= VHOST_USER_BLK(vdev
);
217 /* Turn on pre-defined features */
218 virtio_add_feature(&features
, VIRTIO_BLK_F_SEG_MAX
);
219 virtio_add_feature(&features
, VIRTIO_BLK_F_GEOMETRY
);
220 virtio_add_feature(&features
, VIRTIO_BLK_F_TOPOLOGY
);
221 virtio_add_feature(&features
, VIRTIO_BLK_F_BLK_SIZE
);
222 virtio_add_feature(&features
, VIRTIO_BLK_F_FLUSH
);
223 virtio_add_feature(&features
, VIRTIO_BLK_F_RO
);
224 virtio_add_feature(&features
, VIRTIO_BLK_F_DISCARD
);
225 virtio_add_feature(&features
, VIRTIO_BLK_F_WRITE_ZEROES
);
228 virtio_add_feature(&features
, VIRTIO_BLK_F_CONFIG_WCE
);
230 if (s
->num_queues
> 1) {
231 virtio_add_feature(&features
, VIRTIO_BLK_F_MQ
);
234 return vhost_get_features(&s
->dev
, user_feature_bits
, features
);
237 static void vhost_user_blk_handle_output(VirtIODevice
*vdev
, VirtQueue
*vq
)
239 VHostUserBlk
*s
= VHOST_USER_BLK(vdev
);
242 if (!(virtio_host_has_feature(vdev
, VIRTIO_F_VERSION_1
) &&
243 !virtio_vdev_has_feature(vdev
, VIRTIO_F_VERSION_1
))) {
247 if (s
->dev
.started
) {
251 /* Some guests kick before setting VIRTIO_CONFIG_S_DRIVER_OK so start
252 * vhost here instead of waiting for .set_status().
254 vhost_user_blk_start(vdev
);
256 /* Kick right away to begin processing requests already in vring */
257 for (i
= 0; i
< s
->dev
.nvqs
; i
++) {
258 VirtQueue
*kick_vq
= virtio_get_queue(vdev
, i
);
260 if (!virtio_queue_get_desc_addr(vdev
, i
)) {
263 event_notifier_set(virtio_queue_get_host_notifier(kick_vq
));
267 static void vhost_user_blk_reset(VirtIODevice
*vdev
)
269 VHostUserBlk
*s
= VHOST_USER_BLK(vdev
);
271 vhost_dev_free_inflight(s
->inflight
);
274 static void vhost_user_blk_device_realize(DeviceState
*dev
, Error
**errp
)
276 VirtIODevice
*vdev
= VIRTIO_DEVICE(dev
);
277 VHostUserBlk
*s
= VHOST_USER_BLK(vdev
);
278 struct vhost_virtqueue
*vqs
= NULL
;
281 if (!s
->chardev
.chr
) {
282 error_setg(errp
, "vhost-user-blk: chardev is mandatory");
286 if (!s
->num_queues
|| s
->num_queues
> VIRTIO_QUEUE_MAX
) {
287 error_setg(errp
, "vhost-user-blk: invalid number of IO queues");
291 if (!s
->queue_size
) {
292 error_setg(errp
, "vhost-user-blk: queue size must be non-zero");
296 if (!vhost_user_init(&s
->vhost_user
, &s
->chardev
, errp
)) {
300 virtio_init(vdev
, "virtio-blk", VIRTIO_ID_BLOCK
,
301 sizeof(struct virtio_blk_config
));
303 for (i
= 0; i
< s
->num_queues
; i
++) {
304 virtio_add_queue(vdev
, s
->queue_size
,
305 vhost_user_blk_handle_output
);
308 s
->inflight
= g_new0(struct vhost_inflight
, 1);
310 s
->dev
.nvqs
= s
->num_queues
;
311 s
->dev
.vqs
= g_new(struct vhost_virtqueue
, s
->dev
.nvqs
);
313 s
->dev
.backend_features
= 0;
316 vhost_dev_set_config_notifier(&s
->dev
, &blk_ops
);
318 ret
= vhost_dev_init(&s
->dev
, &s
->vhost_user
, VHOST_BACKEND_TYPE_USER
, 0);
320 error_setg(errp
, "vhost-user-blk: vhost initialization failed: %s",
325 ret
= vhost_dev_get_config(&s
->dev
, (uint8_t *)&s
->blkcfg
,
326 sizeof(struct virtio_blk_config
));
328 error_setg(errp
, "vhost-user-blk: get block config failed");
332 if (s
->blkcfg
.num_queues
!= s
->num_queues
) {
333 s
->blkcfg
.num_queues
= s
->num_queues
;
339 vhost_dev_cleanup(&s
->dev
);
343 virtio_cleanup(vdev
);
344 vhost_user_cleanup(&s
->vhost_user
);
347 static void vhost_user_blk_device_unrealize(DeviceState
*dev
, Error
**errp
)
349 VirtIODevice
*vdev
= VIRTIO_DEVICE(dev
);
350 VHostUserBlk
*s
= VHOST_USER_BLK(dev
);
351 struct vhost_virtqueue
*vqs
= s
->dev
.vqs
;
353 vhost_user_blk_set_status(vdev
, 0);
354 vhost_dev_cleanup(&s
->dev
);
355 vhost_dev_free_inflight(s
->inflight
);
358 virtio_cleanup(vdev
);
359 vhost_user_cleanup(&s
->vhost_user
);
362 static void vhost_user_blk_instance_init(Object
*obj
)
364 VHostUserBlk
*s
= VHOST_USER_BLK(obj
);
366 device_add_bootindex_property(obj
, &s
->bootindex
, "bootindex",
367 "/disk@0,0", DEVICE(obj
), NULL
);
370 static const VMStateDescription vmstate_vhost_user_blk
= {
371 .name
= "vhost-user-blk",
372 .minimum_version_id
= 1,
374 .fields
= (VMStateField
[]) {
375 VMSTATE_VIRTIO_DEVICE
,
376 VMSTATE_END_OF_LIST()
380 static Property vhost_user_blk_properties
[] = {
381 DEFINE_PROP_CHR("chardev", VHostUserBlk
, chardev
),
382 DEFINE_PROP_UINT16("num-queues", VHostUserBlk
, num_queues
, 1),
383 DEFINE_PROP_UINT32("queue-size", VHostUserBlk
, queue_size
, 128),
384 DEFINE_PROP_BIT("config-wce", VHostUserBlk
, config_wce
, 0, true),
385 DEFINE_PROP_END_OF_LIST(),
388 static void vhost_user_blk_class_init(ObjectClass
*klass
, void *data
)
390 DeviceClass
*dc
= DEVICE_CLASS(klass
);
391 VirtioDeviceClass
*vdc
= VIRTIO_DEVICE_CLASS(klass
);
393 dc
->props
= vhost_user_blk_properties
;
394 dc
->vmsd
= &vmstate_vhost_user_blk
;
395 set_bit(DEVICE_CATEGORY_STORAGE
, dc
->categories
);
396 vdc
->realize
= vhost_user_blk_device_realize
;
397 vdc
->unrealize
= vhost_user_blk_device_unrealize
;
398 vdc
->get_config
= vhost_user_blk_update_config
;
399 vdc
->set_config
= vhost_user_blk_set_config
;
400 vdc
->get_features
= vhost_user_blk_get_features
;
401 vdc
->set_status
= vhost_user_blk_set_status
;
402 vdc
->reset
= vhost_user_blk_reset
;
405 static const TypeInfo vhost_user_blk_info
= {
406 .name
= TYPE_VHOST_USER_BLK
,
407 .parent
= TYPE_VIRTIO_DEVICE
,
408 .instance_size
= sizeof(VHostUserBlk
),
409 .instance_init
= vhost_user_blk_instance_init
,
410 .class_init
= vhost_user_blk_class_init
,
413 static void virtio_register_types(void)
415 type_register_static(&vhost_user_blk_info
);
418 type_init(virtio_register_types
)