2 * Dedicated thread for virtio-blk I/O processing
4 * Copyright 2012 IBM, Corp.
5 * Copyright 2012 Red Hat, Inc. and/or its affiliates
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
15 #include "qemu/osdep.h"
18 #include "qemu/thread.h"
19 #include "qemu/error-report.h"
20 #include "hw/virtio/virtio-access.h"
21 #include "sysemu/block-backend.h"
22 #include "hw/virtio/virtio-blk.h"
23 #include "virtio-blk.h"
24 #include "block/aio.h"
25 #include "hw/virtio/virtio-bus.h"
26 #include "qom/object_interfaces.h"
28 struct VirtIOBlockDataPlane {
36 VirtQueue *vq; /* virtqueue vring */
37 EventNotifier *guest_notifier; /* irq */
38 QEMUBH *bh; /* bh for guest notification */
40 Notifier insert_notifier, remove_notifier;
42 /* Note that these EventNotifiers are assigned by value. This is
43 * fine as long as you do not call event_notifier_cleanup on them
44 * (because you don't own the file descriptor or handle; you just
50 /* Operation blocker on BDS */
54 /* Raise an interrupt to signal guest, if necessary */
55 void virtio_blk_data_plane_notify(VirtIOBlockDataPlane *s)
57 qemu_bh_schedule(s->bh);
60 static void notify_guest_bh(void *opaque)
62 VirtIOBlockDataPlane *s = opaque;
64 if (!virtio_should_notify(s->vdev, s->vq)) {
68 event_notifier_set(s->guest_notifier);
71 static void data_plane_set_up_op_blockers(VirtIOBlockDataPlane *s)
74 error_setg(&s->blocker, "block device is in use by data plane");
75 blk_op_block_all(s->conf->conf.blk, s->blocker);
76 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_RESIZE, s->blocker);
77 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_DRIVE_DEL, s->blocker);
78 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_BACKUP_SOURCE, s->blocker);
79 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_CHANGE, s->blocker);
80 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_COMMIT_SOURCE, s->blocker);
81 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_COMMIT_TARGET, s->blocker);
82 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_EJECT, s->blocker);
83 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT,
85 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT,
87 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT_DELETE,
89 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_MIRROR_SOURCE, s->blocker);
90 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_STREAM, s->blocker);
91 blk_op_unblock(s->conf->conf.blk, BLOCK_OP_TYPE_REPLACE, s->blocker);
94 static void data_plane_remove_op_blockers(VirtIOBlockDataPlane *s)
97 blk_op_unblock_all(s->conf->conf.blk, s->blocker);
98 error_free(s->blocker);
103 static void data_plane_blk_insert_notifier(Notifier *n, void *data)
105 VirtIOBlockDataPlane *s = container_of(n, VirtIOBlockDataPlane,
107 assert(s->conf->conf.blk == data);
108 data_plane_set_up_op_blockers(s);
111 static void data_plane_blk_remove_notifier(Notifier *n, void *data)
113 VirtIOBlockDataPlane *s = container_of(n, VirtIOBlockDataPlane,
115 assert(s->conf->conf.blk == data);
116 data_plane_remove_op_blockers(s);
119 /* Context: QEMU global mutex held */
120 void virtio_blk_data_plane_create(VirtIODevice *vdev, VirtIOBlkConf *conf,
121 VirtIOBlockDataPlane **dataplane,
124 VirtIOBlockDataPlane *s;
125 BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(vdev)));
126 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
130 if (!conf->iothread) {
134 /* Don't try if transport does not support notifiers. */
135 if (!k->set_guest_notifiers || !k->set_host_notifier) {
137 "device is incompatible with dataplane "
138 "(transport does not support notifiers)");
142 /* If dataplane is (re-)enabled while the guest is running there could be
143 * block jobs that can conflict.
145 if (blk_op_is_blocked(conf->conf.blk, BLOCK_OP_TYPE_DATAPLANE, errp)) {
146 error_prepend(errp, "cannot start dataplane thread: ");
150 s = g_new0(VirtIOBlockDataPlane, 1);
154 if (conf->iothread) {
155 s->iothread = conf->iothread;
156 object_ref(OBJECT(s->iothread));
158 s->ctx = iothread_get_aio_context(s->iothread);
159 s->bh = aio_bh_new(s->ctx, notify_guest_bh, s);
161 s->insert_notifier.notify = data_plane_blk_insert_notifier;
162 s->remove_notifier.notify = data_plane_blk_remove_notifier;
163 blk_add_insert_bs_notifier(conf->conf.blk, &s->insert_notifier);
164 blk_add_remove_bs_notifier(conf->conf.blk, &s->remove_notifier);
166 data_plane_set_up_op_blockers(s);
171 /* Context: QEMU global mutex held */
172 void virtio_blk_data_plane_destroy(VirtIOBlockDataPlane *s)
178 virtio_blk_data_plane_stop(s);
179 data_plane_remove_op_blockers(s);
180 notifier_remove(&s->insert_notifier);
181 notifier_remove(&s->remove_notifier);
182 qemu_bh_delete(s->bh);
183 object_unref(OBJECT(s->iothread));
187 /* Context: QEMU global mutex held */
188 void virtio_blk_data_plane_start(VirtIOBlockDataPlane *s)
190 BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(s->vdev)));
191 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
192 VirtIOBlock *vblk = VIRTIO_BLK(s->vdev);
195 if (vblk->dataplane_started || s->starting) {
200 s->vq = virtio_get_queue(s->vdev, 0);
202 /* Set up guest notifier (irq) */
203 r = k->set_guest_notifiers(qbus->parent, 1, true);
205 fprintf(stderr, "virtio-blk failed to set guest notifier (%d), "
206 "ensure -enable-kvm is set\n", r);
207 goto fail_guest_notifiers;
209 s->guest_notifier = virtio_queue_get_guest_notifier(s->vq);
211 /* Set up virtqueue notify */
212 r = k->set_host_notifier(qbus->parent, 0, true);
214 fprintf(stderr, "virtio-blk failed to set host notifier (%d)\n", r);
215 goto fail_host_notifier;
219 vblk->dataplane_started = true;
220 trace_virtio_blk_data_plane_start(s);
222 blk_set_aio_context(s->conf->conf.blk, s->ctx);
224 /* Kick right away to begin processing requests already in vring */
225 event_notifier_set(virtio_queue_get_host_notifier(s->vq));
227 /* Get this show started by hooking up our callbacks */
228 aio_context_acquire(s->ctx);
229 virtio_queue_aio_set_host_notifier_handler(s->vq, s->ctx, true, true);
230 aio_context_release(s->ctx);
234 k->set_guest_notifiers(qbus->parent, 1, false);
235 fail_guest_notifiers:
238 vblk->dataplane_started = true;
241 /* Context: QEMU global mutex held */
242 void virtio_blk_data_plane_stop(VirtIOBlockDataPlane *s)
244 BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(s->vdev)));
245 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
246 VirtIOBlock *vblk = VIRTIO_BLK(s->vdev);
248 if (!vblk->dataplane_started || s->stopping) {
252 /* Better luck next time. */
255 vblk->dataplane_started = false;
259 trace_virtio_blk_data_plane_stop(s);
261 aio_context_acquire(s->ctx);
263 /* Stop notifications for new requests from guest */
264 virtio_queue_aio_set_host_notifier_handler(s->vq, s->ctx, false, false);
266 /* Drain and switch bs back to the QEMU main loop */
267 blk_set_aio_context(s->conf->conf.blk, qemu_get_aio_context());
269 aio_context_release(s->ctx);
271 k->set_host_notifier(qbus->parent, 0, false);
273 /* Clean up guest notifier (irq) */
274 k->set_guest_notifiers(qbus->parent, 1, false);
276 vblk->dataplane_started = false;