2 * Dedicated thread for virtio-blk I/O processing
4 * Copyright 2012 IBM, Corp.
5 * Copyright 2012 Red Hat, Inc. and/or its affiliates
8 * Stefan Hajnoczi <stefanha@redhat.com>
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.
17 #include "event-poll.h"
18 #include "qemu/thread.h"
21 #include "migration/migration.h"
22 #include "hw/virtio-blk.h"
23 #include "hw/dataplane/virtio-blk.h"
26 SEG_MAX
= 126, /* maximum number of I/O segments */
27 VRING_MAX
= SEG_MAX
+ 2, /* maximum number of vring descriptors */
28 REQ_MAX
= VRING_MAX
, /* maximum number of requests in the vring,
29 * is VRING_MAX / 2 with traditional and
30 * VRING_MAX with indirect descriptors */
34 struct iocb iocb
; /* Linux AIO control block */
35 QEMUIOVector
*inhdr
; /* iovecs for virtio_blk_inhdr */
36 unsigned int head
; /* vring descriptor index */
37 struct iovec
*bounce_iov
; /* used if guest buffers are unaligned */
38 QEMUIOVector
*read_qiov
; /* for read completion /w bounce buffer */
41 struct VirtIOBlockDataPlane
{
48 int fd
; /* image file descriptor */
51 Vring vring
; /* virtqueue vring */
52 EventNotifier
*guest_notifier
; /* irq */
54 EventPoll event_poll
; /* event poller */
55 EventHandler io_handler
; /* Linux AIO completion handler */
56 EventHandler notify_handler
; /* virtqueue notify handler */
58 IOQueue ioqueue
; /* Linux AIO queue (should really be per
60 VirtIOBlockRequest requests
[REQ_MAX
]; /* pool of requests, managed by the
63 unsigned int num_reqs
;
65 Error
*migration_blocker
;
68 /* Raise an interrupt to signal guest, if necessary */
69 static void notify_guest(VirtIOBlockDataPlane
*s
)
71 if (!vring_should_notify(s
->vdev
, &s
->vring
)) {
75 event_notifier_set(s
->guest_notifier
);
78 static void complete_request(struct iocb
*iocb
, ssize_t ret
, void *opaque
)
80 VirtIOBlockDataPlane
*s
= opaque
;
81 VirtIOBlockRequest
*req
= container_of(iocb
, VirtIOBlockRequest
, iocb
);
82 struct virtio_blk_inhdr hdr
;
85 if (likely(ret
>= 0)) {
86 hdr
.status
= VIRTIO_BLK_S_OK
;
89 hdr
.status
= VIRTIO_BLK_S_IOERR
;
93 trace_virtio_blk_data_plane_complete_request(s
, req
->head
, ret
);
96 assert(req
->bounce_iov
);
97 qemu_iovec_from_buf(req
->read_qiov
, 0, req
->bounce_iov
->iov_base
, len
);
98 qemu_iovec_destroy(req
->read_qiov
);
99 g_slice_free(QEMUIOVector
, req
->read_qiov
);
102 if (req
->bounce_iov
) {
103 qemu_vfree(req
->bounce_iov
->iov_base
);
104 g_slice_free(struct iovec
, req
->bounce_iov
);
107 qemu_iovec_from_buf(req
->inhdr
, 0, &hdr
, sizeof(hdr
));
108 qemu_iovec_destroy(req
->inhdr
);
109 g_slice_free(QEMUIOVector
, req
->inhdr
);
111 /* According to the virtio specification len should be the number of bytes
112 * written to, but for virtio-blk it seems to be the number of bytes
113 * transferred plus the status bytes.
115 vring_push(&s
->vring
, req
->head
, len
+ sizeof(hdr
));
120 static void complete_request_early(VirtIOBlockDataPlane
*s
, unsigned int head
,
121 QEMUIOVector
*inhdr
, unsigned char status
)
123 struct virtio_blk_inhdr hdr
= {
127 qemu_iovec_from_buf(inhdr
, 0, &hdr
, sizeof(hdr
));
128 qemu_iovec_destroy(inhdr
);
129 g_slice_free(QEMUIOVector
, inhdr
);
131 vring_push(&s
->vring
, head
, sizeof(hdr
));
135 /* Get disk serial number */
136 static void do_get_id_cmd(VirtIOBlockDataPlane
*s
,
137 struct iovec
*iov
, unsigned int iov_cnt
,
138 unsigned int head
, QEMUIOVector
*inhdr
)
140 char id
[VIRTIO_BLK_ID_BYTES
];
142 /* Serial number not NUL-terminated when shorter than buffer */
143 strncpy(id
, s
->blk
->serial
? s
->blk
->serial
: "", sizeof(id
));
144 iov_from_buf(iov
, iov_cnt
, 0, id
, sizeof(id
));
145 complete_request_early(s
, head
, inhdr
, VIRTIO_BLK_S_OK
);
148 static int do_rdwr_cmd(VirtIOBlockDataPlane
*s
, bool read
,
149 struct iovec
*iov
, unsigned int iov_cnt
,
150 long long offset
, unsigned int head
,
155 struct iovec
*bounce_iov
= NULL
;
156 QEMUIOVector
*read_qiov
= NULL
;
158 qemu_iovec_init_external(&qiov
, iov
, iov_cnt
);
159 if (!bdrv_qiov_is_aligned(s
->blk
->conf
.bs
, &qiov
)) {
160 void *bounce_buffer
= qemu_blockalign(s
->blk
->conf
.bs
, qiov
.size
);
163 /* Need to copy back from bounce buffer on completion */
164 read_qiov
= g_slice_new(QEMUIOVector
);
165 qemu_iovec_init(read_qiov
, iov_cnt
);
166 qemu_iovec_concat_iov(read_qiov
, iov
, iov_cnt
, 0, qiov
.size
);
168 qemu_iovec_to_buf(&qiov
, 0, bounce_buffer
, qiov
.size
);
171 /* Redirect I/O to aligned bounce buffer */
172 bounce_iov
= g_slice_new(struct iovec
);
173 bounce_iov
->iov_base
= bounce_buffer
;
174 bounce_iov
->iov_len
= qiov
.size
;
179 iocb
= ioq_rdwr(&s
->ioqueue
, read
, iov
, iov_cnt
, offset
);
181 /* Fill in virtio block metadata needed for completion */
182 VirtIOBlockRequest
*req
= container_of(iocb
, VirtIOBlockRequest
, iocb
);
185 req
->bounce_iov
= bounce_iov
;
186 req
->read_qiov
= read_qiov
;
190 static int process_request(IOQueue
*ioq
, struct iovec iov
[],
191 unsigned int out_num
, unsigned int in_num
,
194 VirtIOBlockDataPlane
*s
= container_of(ioq
, VirtIOBlockDataPlane
, ioqueue
);
195 struct iovec
*in_iov
= &iov
[out_num
];
196 struct virtio_blk_outhdr outhdr
;
201 if (unlikely(iov_to_buf(iov
, out_num
, 0, &outhdr
,
202 sizeof(outhdr
)) != sizeof(outhdr
))) {
203 error_report("virtio-blk request outhdr too short");
206 iov_discard_front(&iov
, &out_num
, sizeof(outhdr
));
208 /* Grab inhdr for later */
209 in_size
= iov_size(in_iov
, in_num
);
210 if (in_size
< sizeof(struct virtio_blk_inhdr
)) {
211 error_report("virtio_blk request inhdr too short");
214 inhdr
= g_slice_new(QEMUIOVector
);
215 qemu_iovec_init(inhdr
, 1);
216 qemu_iovec_concat_iov(inhdr
, in_iov
, in_num
,
217 in_size
- sizeof(struct virtio_blk_inhdr
),
218 sizeof(struct virtio_blk_inhdr
));
219 iov_discard_back(in_iov
, &in_num
, sizeof(struct virtio_blk_inhdr
));
221 /* TODO Linux sets the barrier bit even when not advertised! */
222 outhdr
.type
&= ~VIRTIO_BLK_T_BARRIER
;
224 switch (outhdr
.type
) {
225 case VIRTIO_BLK_T_IN
:
226 do_rdwr_cmd(s
, true, in_iov
, in_num
, outhdr
.sector
* 512, head
, inhdr
);
229 case VIRTIO_BLK_T_OUT
:
230 do_rdwr_cmd(s
, false, iov
, out_num
, outhdr
.sector
* 512, head
, inhdr
);
233 case VIRTIO_BLK_T_SCSI_CMD
:
234 /* TODO support SCSI commands */
235 complete_request_early(s
, head
, inhdr
, VIRTIO_BLK_S_UNSUPP
);
238 case VIRTIO_BLK_T_FLUSH
:
239 /* TODO fdsync not supported by Linux AIO, do it synchronously here! */
240 if (qemu_fdatasync(s
->fd
) < 0) {
241 complete_request_early(s
, head
, inhdr
, VIRTIO_BLK_S_IOERR
);
243 complete_request_early(s
, head
, inhdr
, VIRTIO_BLK_S_OK
);
247 case VIRTIO_BLK_T_GET_ID
:
248 do_get_id_cmd(s
, in_iov
, in_num
, head
, inhdr
);
252 error_report("virtio-blk unsupported request type %#x", outhdr
.type
);
253 qemu_iovec_destroy(inhdr
);
254 g_slice_free(QEMUIOVector
, inhdr
);
259 static void handle_notify(EventHandler
*handler
)
261 VirtIOBlockDataPlane
*s
= container_of(handler
, VirtIOBlockDataPlane
,
264 /* There is one array of iovecs into which all new requests are extracted
265 * from the vring. Requests are read from the vring and the translated
266 * descriptors are written to the iovecs array. The iovecs do not have to
267 * persist across handle_notify() calls because the kernel copies the
268 * iovecs on io_submit().
270 * Handling io_submit() EAGAIN may require storing the requests across
271 * handle_notify() calls until the kernel has sufficient resources to
272 * accept more I/O. This is not implemented yet.
274 struct iovec iovec
[VRING_MAX
];
275 struct iovec
*end
= &iovec
[VRING_MAX
];
276 struct iovec
*iov
= iovec
;
278 /* When a request is read from the vring, the index of the first descriptor
279 * (aka head) is returned so that the completed request can be pushed onto
282 * The number of hypervisor read-only iovecs is out_num. The number of
283 * hypervisor write-only iovecs is in_num.
286 unsigned int out_num
= 0, in_num
= 0;
287 unsigned int num_queued
;
290 /* Disable guest->host notifies to avoid unnecessary vmexits */
291 vring_disable_notification(s
->vdev
, &s
->vring
);
294 head
= vring_pop(s
->vdev
, &s
->vring
, iov
, end
, &out_num
, &in_num
);
296 break; /* no more requests */
299 trace_virtio_blk_data_plane_process_request(s
, out_num
, in_num
,
302 if (process_request(&s
->ioqueue
, iov
, out_num
, in_num
, head
) < 0) {
303 vring_set_broken(&s
->vring
);
306 iov
+= out_num
+ in_num
;
309 if (likely(head
== -EAGAIN
)) { /* vring emptied */
310 /* Re-enable guest->host notifies and stop processing the vring.
311 * But if the guest has snuck in more descriptors, keep processing.
313 if (vring_enable_notification(s
->vdev
, &s
->vring
)) {
316 } else { /* head == -ENOBUFS or fatal error, iovecs[] is depleted */
317 /* Since there are no iovecs[] left, stop processing for now. Do
318 * not re-enable guest->host notifies since the I/O completion
319 * handler knows to check for more vring descriptors anyway.
325 num_queued
= ioq_num_queued(&s
->ioqueue
);
326 if (num_queued
> 0) {
327 s
->num_reqs
+= num_queued
;
329 int rc
= ioq_submit(&s
->ioqueue
);
330 if (unlikely(rc
< 0)) {
331 fprintf(stderr
, "ioq_submit failed %d\n", rc
);
337 static void handle_io(EventHandler
*handler
)
339 VirtIOBlockDataPlane
*s
= container_of(handler
, VirtIOBlockDataPlane
,
342 if (ioq_run_completion(&s
->ioqueue
, complete_request
, s
) > 0) {
346 /* If there were more requests than iovecs, the vring will not be empty yet
347 * so check again. There should now be enough resources to process more
350 if (unlikely(vring_more_avail(&s
->vring
))) {
351 handle_notify(&s
->notify_handler
);
355 static void *data_plane_thread(void *opaque
)
357 VirtIOBlockDataPlane
*s
= opaque
;
360 event_poll(&s
->event_poll
);
361 } while (!s
->stopping
|| s
->num_reqs
> 0);
365 static void start_data_plane_bh(void *opaque
)
367 VirtIOBlockDataPlane
*s
= opaque
;
369 qemu_bh_delete(s
->start_bh
);
371 qemu_thread_create(&s
->thread
, data_plane_thread
,
372 s
, QEMU_THREAD_JOINABLE
);
375 bool virtio_blk_data_plane_create(VirtIODevice
*vdev
, VirtIOBlkConf
*blk
,
376 VirtIOBlockDataPlane
**dataplane
)
378 VirtIOBlockDataPlane
*s
;
383 if (!blk
->data_plane
) {
388 error_report("device is incompatible with x-data-plane, use scsi=off");
392 if (blk
->config_wce
) {
393 error_report("device is incompatible with x-data-plane, "
394 "use config-wce=off");
398 fd
= raw_get_aio_fd(blk
->conf
.bs
);
400 error_report("drive is incompatible with x-data-plane, "
401 "use format=raw,cache=none,aio=native");
405 s
= g_new0(VirtIOBlockDataPlane
, 1);
410 /* Prevent block operations that conflict with data plane thread */
411 bdrv_set_in_use(blk
->conf
.bs
, 1);
413 error_setg(&s
->migration_blocker
,
414 "x-data-plane does not support migration");
415 migrate_add_blocker(s
->migration_blocker
);
421 void virtio_blk_data_plane_destroy(VirtIOBlockDataPlane
*s
)
427 virtio_blk_data_plane_stop(s
);
428 migrate_del_blocker(s
->migration_blocker
);
429 error_free(s
->migration_blocker
);
430 bdrv_set_in_use(s
->blk
->conf
.bs
, 0);
434 void virtio_blk_data_plane_start(VirtIOBlockDataPlane
*s
)
443 vq
= virtio_get_queue(s
->vdev
, 0);
444 if (!vring_setup(&s
->vring
, s
->vdev
, 0)) {
448 event_poll_init(&s
->event_poll
);
450 /* Set up guest notifier (irq) */
451 if (s
->vdev
->binding
->set_guest_notifiers(s
->vdev
->binding_opaque
, 1,
453 fprintf(stderr
, "virtio-blk failed to set guest notifier, "
454 "ensure -enable-kvm is set\n");
457 s
->guest_notifier
= virtio_queue_get_guest_notifier(vq
);
459 /* Set up virtqueue notify */
460 if (s
->vdev
->binding
->set_host_notifier(s
->vdev
->binding_opaque
,
462 fprintf(stderr
, "virtio-blk failed to set host notifier\n");
465 event_poll_add(&s
->event_poll
, &s
->notify_handler
,
466 virtio_queue_get_host_notifier(vq
),
470 ioq_init(&s
->ioqueue
, s
->fd
, REQ_MAX
);
471 for (i
= 0; i
< ARRAY_SIZE(s
->requests
); i
++) {
472 ioq_put_iocb(&s
->ioqueue
, &s
->requests
[i
].iocb
);
474 event_poll_add(&s
->event_poll
, &s
->io_handler
,
475 ioq_get_notifier(&s
->ioqueue
), handle_io
);
478 trace_virtio_blk_data_plane_start(s
);
480 /* Kick right away to begin processing requests already in vring */
481 event_notifier_set(virtio_queue_get_host_notifier(vq
));
483 /* Spawn thread in BH so it inherits iothread cpusets */
484 s
->start_bh
= qemu_bh_new(start_data_plane_bh
, s
);
485 qemu_bh_schedule(s
->start_bh
);
488 void virtio_blk_data_plane_stop(VirtIOBlockDataPlane
*s
)
490 if (!s
->started
|| s
->stopping
) {
494 trace_virtio_blk_data_plane_stop(s
);
496 /* Stop thread or cancel pending thread creation BH */
498 qemu_bh_delete(s
->start_bh
);
501 event_poll_notify(&s
->event_poll
);
502 qemu_thread_join(&s
->thread
);
505 ioq_cleanup(&s
->ioqueue
);
507 s
->vdev
->binding
->set_host_notifier(s
->vdev
->binding_opaque
, 0, false);
509 event_poll_cleanup(&s
->event_poll
);
511 /* Clean up guest notifier (irq) */
512 s
->vdev
->binding
->set_guest_notifiers(s
->vdev
->binding_opaque
, 1, false);
514 vring_teardown(&s
->vring
);