xref: /qemu/hw/block/virtio-blk.c (revision bfa3ab61)
1 /*
2  * Virtio Block Device
3  *
4  * Copyright IBM, Corp. 2007
5  *
6  * Authors:
7  *  Anthony Liguori   <aliguori@us.ibm.com>
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2.  See
10  * the COPYING file in the top-level directory.
11  *
12  */
13 
14 #include "qemu-common.h"
15 #include "qemu/iov.h"
16 #include "qemu/error-report.h"
17 #include "trace.h"
18 #include "hw/block/block.h"
19 #include "sysemu/block-backend.h"
20 #include "sysemu/blockdev.h"
21 #include "hw/virtio/virtio-blk.h"
22 #include "dataplane/virtio-blk.h"
23 #include "migration/migration.h"
24 #include "block/scsi.h"
25 #ifdef __linux__
26 # include <scsi/sg.h>
27 #endif
28 #include "hw/virtio/virtio-bus.h"
29 #include "hw/virtio/virtio-access.h"
30 
31 VirtIOBlockReq *virtio_blk_alloc_request(VirtIOBlock *s)
32 {
33     VirtIOBlockReq *req = g_slice_new(VirtIOBlockReq);
34     req->dev = s;
35     req->qiov.size = 0;
36     req->in_len = 0;
37     req->next = NULL;
38     req->mr_next = NULL;
39     return req;
40 }
41 
42 void virtio_blk_free_request(VirtIOBlockReq *req)
43 {
44     if (req) {
45         g_slice_free(VirtIOBlockReq, req);
46     }
47 }
48 
49 static void virtio_blk_complete_request(VirtIOBlockReq *req,
50                                         unsigned char status)
51 {
52     VirtIOBlock *s = req->dev;
53     VirtIODevice *vdev = VIRTIO_DEVICE(s);
54 
55     trace_virtio_blk_req_complete(req, status);
56 
57     stb_p(&req->in->status, status);
58     virtqueue_push(s->vq, &req->elem, req->in_len);
59     virtio_notify(vdev, s->vq);
60 }
61 
62 static void virtio_blk_req_complete(VirtIOBlockReq *req, unsigned char status)
63 {
64     req->dev->complete_request(req, status);
65 }
66 
67 static int virtio_blk_handle_rw_error(VirtIOBlockReq *req, int error,
68     bool is_read)
69 {
70     BlockErrorAction action = blk_get_error_action(req->dev->blk,
71                                                    is_read, error);
72     VirtIOBlock *s = req->dev;
73 
74     if (action == BLOCK_ERROR_ACTION_STOP) {
75         req->next = s->rq;
76         s->rq = req;
77     } else if (action == BLOCK_ERROR_ACTION_REPORT) {
78         virtio_blk_req_complete(req, VIRTIO_BLK_S_IOERR);
79         block_acct_done(blk_get_stats(s->blk), &req->acct);
80         virtio_blk_free_request(req);
81     }
82 
83     blk_error_action(s->blk, action, is_read, error);
84     return action != BLOCK_ERROR_ACTION_IGNORE;
85 }
86 
87 static void virtio_blk_rw_complete(void *opaque, int ret)
88 {
89     VirtIOBlockReq *next = opaque;
90 
91     while (next) {
92         VirtIOBlockReq *req = next;
93         next = req->mr_next;
94         trace_virtio_blk_rw_complete(req, ret);
95 
96         if (req->qiov.nalloc != -1) {
97             /* If nalloc is != 1 req->qiov is a local copy of the original
98              * external iovec. It was allocated in submit_merged_requests
99              * to be able to merge requests. */
100             qemu_iovec_destroy(&req->qiov);
101         }
102 
103         if (ret) {
104             int p = virtio_ldl_p(VIRTIO_DEVICE(req->dev), &req->out.type);
105             bool is_read = !(p & VIRTIO_BLK_T_OUT);
106             /* Note that memory may be dirtied on read failure.  If the
107              * virtio request is not completed here, as is the case for
108              * BLOCK_ERROR_ACTION_STOP, the memory may not be copied
109              * correctly during live migration.  While this is ugly,
110              * it is acceptable because the device is free to write to
111              * the memory until the request is completed (which will
112              * happen on the other side of the migration).
113              */
114             if (virtio_blk_handle_rw_error(req, -ret, is_read)) {
115                 continue;
116             }
117         }
118 
119         virtio_blk_req_complete(req, VIRTIO_BLK_S_OK);
120         block_acct_done(blk_get_stats(req->dev->blk), &req->acct);
121         virtio_blk_free_request(req);
122     }
123 }
124 
125 static void virtio_blk_flush_complete(void *opaque, int ret)
126 {
127     VirtIOBlockReq *req = opaque;
128 
129     if (ret) {
130         if (virtio_blk_handle_rw_error(req, -ret, 0)) {
131             return;
132         }
133     }
134 
135     virtio_blk_req_complete(req, VIRTIO_BLK_S_OK);
136     block_acct_done(blk_get_stats(req->dev->blk), &req->acct);
137     virtio_blk_free_request(req);
138 }
139 
140 #ifdef __linux__
141 
142 typedef struct {
143     VirtIOBlockReq *req;
144     struct sg_io_hdr hdr;
145 } VirtIOBlockIoctlReq;
146 
147 static void virtio_blk_ioctl_complete(void *opaque, int status)
148 {
149     VirtIOBlockIoctlReq *ioctl_req = opaque;
150     VirtIOBlockReq *req = ioctl_req->req;
151     VirtIODevice *vdev = VIRTIO_DEVICE(req->dev);
152     struct virtio_scsi_inhdr *scsi;
153     struct sg_io_hdr *hdr;
154 
155     scsi = (void *)req->elem.in_sg[req->elem.in_num - 2].iov_base;
156 
157     if (status) {
158         status = VIRTIO_BLK_S_UNSUPP;
159         virtio_stl_p(vdev, &scsi->errors, 255);
160         goto out;
161     }
162 
163     hdr = &ioctl_req->hdr;
164     /*
165      * From SCSI-Generic-HOWTO: "Some lower level drivers (e.g. ide-scsi)
166      * clear the masked_status field [hence status gets cleared too, see
167      * block/scsi_ioctl.c] even when a CHECK_CONDITION or COMMAND_TERMINATED
168      * status has occurred.  However they do set DRIVER_SENSE in driver_status
169      * field. Also a (sb_len_wr > 0) indicates there is a sense buffer.
170      */
171     if (hdr->status == 0 && hdr->sb_len_wr > 0) {
172         hdr->status = CHECK_CONDITION;
173     }
174 
175     virtio_stl_p(vdev, &scsi->errors,
176                  hdr->status | (hdr->msg_status << 8) |
177                  (hdr->host_status << 16) | (hdr->driver_status << 24));
178     virtio_stl_p(vdev, &scsi->residual, hdr->resid);
179     virtio_stl_p(vdev, &scsi->sense_len, hdr->sb_len_wr);
180     virtio_stl_p(vdev, &scsi->data_len, hdr->dxfer_len);
181 
182 out:
183     virtio_blk_req_complete(req, status);
184     virtio_blk_free_request(req);
185     g_free(ioctl_req);
186 }
187 
188 #endif
189 
190 static VirtIOBlockReq *virtio_blk_get_request(VirtIOBlock *s)
191 {
192     VirtIOBlockReq *req = virtio_blk_alloc_request(s);
193 
194     if (!virtqueue_pop(s->vq, &req->elem)) {
195         virtio_blk_free_request(req);
196         return NULL;
197     }
198 
199     return req;
200 }
201 
202 static int virtio_blk_handle_scsi_req(VirtIOBlockReq *req)
203 {
204     int status = VIRTIO_BLK_S_OK;
205     struct virtio_scsi_inhdr *scsi = NULL;
206     VirtIODevice *vdev = VIRTIO_DEVICE(req->dev);
207     VirtQueueElement *elem = &req->elem;
208     VirtIOBlock *blk = req->dev;
209 
210 #ifdef __linux__
211     int i;
212     VirtIOBlockIoctlReq *ioctl_req;
213     BlockAIOCB *acb;
214 #endif
215 
216     /*
217      * We require at least one output segment each for the virtio_blk_outhdr
218      * and the SCSI command block.
219      *
220      * We also at least require the virtio_blk_inhdr, the virtio_scsi_inhdr
221      * and the sense buffer pointer in the input segments.
222      */
223     if (elem->out_num < 2 || elem->in_num < 3) {
224         status = VIRTIO_BLK_S_IOERR;
225         goto fail;
226     }
227 
228     /*
229      * The scsi inhdr is placed in the second-to-last input segment, just
230      * before the regular inhdr.
231      */
232     scsi = (void *)elem->in_sg[elem->in_num - 2].iov_base;
233 
234     if (!blk->conf.scsi) {
235         status = VIRTIO_BLK_S_UNSUPP;
236         goto fail;
237     }
238 
239     /*
240      * No support for bidirection commands yet.
241      */
242     if (elem->out_num > 2 && elem->in_num > 3) {
243         status = VIRTIO_BLK_S_UNSUPP;
244         goto fail;
245     }
246 
247 #ifdef __linux__
248     ioctl_req = g_new0(VirtIOBlockIoctlReq, 1);
249     ioctl_req->req = req;
250     ioctl_req->hdr.interface_id = 'S';
251     ioctl_req->hdr.cmd_len = elem->out_sg[1].iov_len;
252     ioctl_req->hdr.cmdp = elem->out_sg[1].iov_base;
253     ioctl_req->hdr.dxfer_len = 0;
254 
255     if (elem->out_num > 2) {
256         /*
257          * If there are more than the minimally required 2 output segments
258          * there is write payload starting from the third iovec.
259          */
260         ioctl_req->hdr.dxfer_direction = SG_DXFER_TO_DEV;
261         ioctl_req->hdr.iovec_count = elem->out_num - 2;
262 
263         for (i = 0; i < ioctl_req->hdr.iovec_count; i++) {
264             ioctl_req->hdr.dxfer_len += elem->out_sg[i + 2].iov_len;
265         }
266 
267         ioctl_req->hdr.dxferp = elem->out_sg + 2;
268 
269     } else if (elem->in_num > 3) {
270         /*
271          * If we have more than 3 input segments the guest wants to actually
272          * read data.
273          */
274         ioctl_req->hdr.dxfer_direction = SG_DXFER_FROM_DEV;
275         ioctl_req->hdr.iovec_count = elem->in_num - 3;
276         for (i = 0; i < ioctl_req->hdr.iovec_count; i++) {
277             ioctl_req->hdr.dxfer_len += elem->in_sg[i].iov_len;
278         }
279 
280         ioctl_req->hdr.dxferp = elem->in_sg;
281     } else {
282         /*
283          * Some SCSI commands don't actually transfer any data.
284          */
285         ioctl_req->hdr.dxfer_direction = SG_DXFER_NONE;
286     }
287 
288     ioctl_req->hdr.sbp = elem->in_sg[elem->in_num - 3].iov_base;
289     ioctl_req->hdr.mx_sb_len = elem->in_sg[elem->in_num - 3].iov_len;
290 
291     acb = blk_aio_ioctl(blk->blk, SG_IO, &ioctl_req->hdr,
292                         virtio_blk_ioctl_complete, ioctl_req);
293     if (!acb) {
294         g_free(ioctl_req);
295         status = VIRTIO_BLK_S_UNSUPP;
296         goto fail;
297     }
298     return -EINPROGRESS;
299 #else
300     abort();
301 #endif
302 
303 fail:
304     /* Just put anything nonzero so that the ioctl fails in the guest.  */
305     if (scsi) {
306         virtio_stl_p(vdev, &scsi->errors, 255);
307     }
308     return status;
309 }
310 
311 static void virtio_blk_handle_scsi(VirtIOBlockReq *req)
312 {
313     int status;
314 
315     status = virtio_blk_handle_scsi_req(req);
316     if (status != -EINPROGRESS) {
317         virtio_blk_req_complete(req, status);
318         virtio_blk_free_request(req);
319     }
320 }
321 
322 static inline void submit_requests(BlockBackend *blk, MultiReqBuffer *mrb,
323                                    int start, int num_reqs, int niov)
324 {
325     QEMUIOVector *qiov = &mrb->reqs[start]->qiov;
326     int64_t sector_num = mrb->reqs[start]->sector_num;
327     int nb_sectors = mrb->reqs[start]->qiov.size / BDRV_SECTOR_SIZE;
328     bool is_write = mrb->is_write;
329 
330     if (num_reqs > 1) {
331         int i;
332         struct iovec *tmp_iov = qiov->iov;
333         int tmp_niov = qiov->niov;
334 
335         /* mrb->reqs[start]->qiov was initialized from external so we can't
336          * modifiy it here. We need to initialize it locally and then add the
337          * external iovecs. */
338         qemu_iovec_init(qiov, niov);
339 
340         for (i = 0; i < tmp_niov; i++) {
341             qemu_iovec_add(qiov, tmp_iov[i].iov_base, tmp_iov[i].iov_len);
342         }
343 
344         for (i = start + 1; i < start + num_reqs; i++) {
345             qemu_iovec_concat(qiov, &mrb->reqs[i]->qiov, 0,
346                               mrb->reqs[i]->qiov.size);
347             mrb->reqs[i - 1]->mr_next = mrb->reqs[i];
348             nb_sectors += mrb->reqs[i]->qiov.size / BDRV_SECTOR_SIZE;
349         }
350         assert(nb_sectors == qiov->size / BDRV_SECTOR_SIZE);
351 
352         trace_virtio_blk_submit_multireq(mrb, start, num_reqs, sector_num,
353                                          nb_sectors, is_write);
354         block_acct_merge_done(blk_get_stats(blk),
355                               is_write ? BLOCK_ACCT_WRITE : BLOCK_ACCT_READ,
356                               num_reqs - 1);
357     }
358 
359     if (is_write) {
360         blk_aio_writev(blk, sector_num, qiov, nb_sectors,
361                        virtio_blk_rw_complete, mrb->reqs[start]);
362     } else {
363         blk_aio_readv(blk, sector_num, qiov, nb_sectors,
364                       virtio_blk_rw_complete, mrb->reqs[start]);
365     }
366 }
367 
368 static int multireq_compare(const void *a, const void *b)
369 {
370     const VirtIOBlockReq *req1 = *(VirtIOBlockReq **)a,
371                          *req2 = *(VirtIOBlockReq **)b;
372 
373     /*
374      * Note that we can't simply subtract sector_num1 from sector_num2
375      * here as that could overflow the return value.
376      */
377     if (req1->sector_num > req2->sector_num) {
378         return 1;
379     } else if (req1->sector_num < req2->sector_num) {
380         return -1;
381     } else {
382         return 0;
383     }
384 }
385 
386 void virtio_blk_submit_multireq(BlockBackend *blk, MultiReqBuffer *mrb)
387 {
388     int i = 0, start = 0, num_reqs = 0, niov = 0, nb_sectors = 0;
389     int max_xfer_len = 0;
390     int64_t sector_num = 0;
391 
392     if (mrb->num_reqs == 1) {
393         submit_requests(blk, mrb, 0, 1, -1);
394         mrb->num_reqs = 0;
395         return;
396     }
397 
398     max_xfer_len = blk_get_max_transfer_length(mrb->reqs[0]->dev->blk);
399     max_xfer_len = MIN_NON_ZERO(max_xfer_len, BDRV_REQUEST_MAX_SECTORS);
400 
401     qsort(mrb->reqs, mrb->num_reqs, sizeof(*mrb->reqs),
402           &multireq_compare);
403 
404     for (i = 0; i < mrb->num_reqs; i++) {
405         VirtIOBlockReq *req = mrb->reqs[i];
406         if (num_reqs > 0) {
407             bool merge = true;
408 
409             /* merge would exceed maximum number of IOVs */
410             if (niov + req->qiov.niov > IOV_MAX) {
411                 merge = false;
412             }
413 
414             /* merge would exceed maximum transfer length of backend device */
415             if (req->qiov.size / BDRV_SECTOR_SIZE + nb_sectors > max_xfer_len) {
416                 merge = false;
417             }
418 
419             /* requests are not sequential */
420             if (sector_num + nb_sectors != req->sector_num) {
421                 merge = false;
422             }
423 
424             if (!merge) {
425                 submit_requests(blk, mrb, start, num_reqs, niov);
426                 num_reqs = 0;
427             }
428         }
429 
430         if (num_reqs == 0) {
431             sector_num = req->sector_num;
432             nb_sectors = niov = 0;
433             start = i;
434         }
435 
436         nb_sectors += req->qiov.size / BDRV_SECTOR_SIZE;
437         niov += req->qiov.niov;
438         num_reqs++;
439     }
440 
441     submit_requests(blk, mrb, start, num_reqs, niov);
442     mrb->num_reqs = 0;
443 }
444 
445 static void virtio_blk_handle_flush(VirtIOBlockReq *req, MultiReqBuffer *mrb)
446 {
447     block_acct_start(blk_get_stats(req->dev->blk), &req->acct, 0,
448                      BLOCK_ACCT_FLUSH);
449 
450     /*
451      * Make sure all outstanding writes are posted to the backing device.
452      */
453     if (mrb->is_write && mrb->num_reqs > 0) {
454         virtio_blk_submit_multireq(req->dev->blk, mrb);
455     }
456     blk_aio_flush(req->dev->blk, virtio_blk_flush_complete, req);
457 }
458 
459 static bool virtio_blk_sect_range_ok(VirtIOBlock *dev,
460                                      uint64_t sector, size_t size)
461 {
462     uint64_t nb_sectors = size >> BDRV_SECTOR_BITS;
463     uint64_t total_sectors;
464 
465     if (nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
466         return false;
467     }
468     if (sector & dev->sector_mask) {
469         return false;
470     }
471     if (size % dev->conf.conf.logical_block_size) {
472         return false;
473     }
474     blk_get_geometry(dev->blk, &total_sectors);
475     if (sector > total_sectors || nb_sectors > total_sectors - sector) {
476         return false;
477     }
478     return true;
479 }
480 
481 void virtio_blk_handle_request(VirtIOBlockReq *req, MultiReqBuffer *mrb)
482 {
483     uint32_t type;
484     struct iovec *in_iov = req->elem.in_sg;
485     struct iovec *iov = req->elem.out_sg;
486     unsigned in_num = req->elem.in_num;
487     unsigned out_num = req->elem.out_num;
488 
489     if (req->elem.out_num < 1 || req->elem.in_num < 1) {
490         error_report("virtio-blk missing headers");
491         exit(1);
492     }
493 
494     if (unlikely(iov_to_buf(iov, out_num, 0, &req->out,
495                             sizeof(req->out)) != sizeof(req->out))) {
496         error_report("virtio-blk request outhdr too short");
497         exit(1);
498     }
499 
500     iov_discard_front(&iov, &out_num, sizeof(req->out));
501 
502     if (in_num < 1 ||
503         in_iov[in_num - 1].iov_len < sizeof(struct virtio_blk_inhdr)) {
504         error_report("virtio-blk request inhdr too short");
505         exit(1);
506     }
507 
508     /* We always touch the last byte, so just see how big in_iov is.  */
509     req->in_len = iov_size(in_iov, in_num);
510     req->in = (void *)in_iov[in_num - 1].iov_base
511               + in_iov[in_num - 1].iov_len
512               - sizeof(struct virtio_blk_inhdr);
513     iov_discard_back(in_iov, &in_num, sizeof(struct virtio_blk_inhdr));
514 
515     type = virtio_ldl_p(VIRTIO_DEVICE(req->dev), &req->out.type);
516 
517     /* VIRTIO_BLK_T_OUT defines the command direction. VIRTIO_BLK_T_BARRIER
518      * is an optional flag. Although a guest should not send this flag if
519      * not negotiated we ignored it in the past. So keep ignoring it. */
520     switch (type & ~(VIRTIO_BLK_T_OUT | VIRTIO_BLK_T_BARRIER)) {
521     case VIRTIO_BLK_T_IN:
522     {
523         bool is_write = type & VIRTIO_BLK_T_OUT;
524         req->sector_num = virtio_ldq_p(VIRTIO_DEVICE(req->dev),
525                                        &req->out.sector);
526 
527         if (is_write) {
528             qemu_iovec_init_external(&req->qiov, iov, out_num);
529             trace_virtio_blk_handle_write(req, req->sector_num,
530                                           req->qiov.size / BDRV_SECTOR_SIZE);
531         } else {
532             qemu_iovec_init_external(&req->qiov, in_iov, in_num);
533             trace_virtio_blk_handle_read(req, req->sector_num,
534                                          req->qiov.size / BDRV_SECTOR_SIZE);
535         }
536 
537         if (!virtio_blk_sect_range_ok(req->dev, req->sector_num,
538                                       req->qiov.size)) {
539             virtio_blk_req_complete(req, VIRTIO_BLK_S_IOERR);
540             virtio_blk_free_request(req);
541             return;
542         }
543 
544         block_acct_start(blk_get_stats(req->dev->blk),
545                          &req->acct, req->qiov.size,
546                          is_write ? BLOCK_ACCT_WRITE : BLOCK_ACCT_READ);
547 
548         /* merge would exceed maximum number of requests or IO direction
549          * changes */
550         if (mrb->num_reqs > 0 && (mrb->num_reqs == VIRTIO_BLK_MAX_MERGE_REQS ||
551                                   is_write != mrb->is_write ||
552                                   !req->dev->conf.request_merging)) {
553             virtio_blk_submit_multireq(req->dev->blk, mrb);
554         }
555 
556         assert(mrb->num_reqs < VIRTIO_BLK_MAX_MERGE_REQS);
557         mrb->reqs[mrb->num_reqs++] = req;
558         mrb->is_write = is_write;
559         break;
560     }
561     case VIRTIO_BLK_T_FLUSH:
562         virtio_blk_handle_flush(req, mrb);
563         break;
564     case VIRTIO_BLK_T_SCSI_CMD:
565         virtio_blk_handle_scsi(req);
566         break;
567     case VIRTIO_BLK_T_GET_ID:
568     {
569         VirtIOBlock *s = req->dev;
570 
571         /*
572          * NB: per existing s/n string convention the string is
573          * terminated by '\0' only when shorter than buffer.
574          */
575         const char *serial = s->conf.serial ? s->conf.serial : "";
576         size_t size = MIN(strlen(serial) + 1,
577                           MIN(iov_size(in_iov, in_num),
578                               VIRTIO_BLK_ID_BYTES));
579         iov_from_buf(in_iov, in_num, 0, serial, size);
580         virtio_blk_req_complete(req, VIRTIO_BLK_S_OK);
581         virtio_blk_free_request(req);
582         break;
583     }
584     default:
585         virtio_blk_req_complete(req, VIRTIO_BLK_S_UNSUPP);
586         virtio_blk_free_request(req);
587     }
588 }
589 
590 static void virtio_blk_handle_output(VirtIODevice *vdev, VirtQueue *vq)
591 {
592     VirtIOBlock *s = VIRTIO_BLK(vdev);
593     VirtIOBlockReq *req;
594     MultiReqBuffer mrb = {};
595 
596     /* Some guests kick before setting VIRTIO_CONFIG_S_DRIVER_OK so start
597      * dataplane here instead of waiting for .set_status().
598      */
599     if (s->dataplane) {
600         virtio_blk_data_plane_start(s->dataplane);
601         return;
602     }
603 
604     while ((req = virtio_blk_get_request(s))) {
605         virtio_blk_handle_request(req, &mrb);
606     }
607 
608     if (mrb.num_reqs) {
609         virtio_blk_submit_multireq(s->blk, &mrb);
610     }
611 }
612 
613 static void virtio_blk_dma_restart_bh(void *opaque)
614 {
615     VirtIOBlock *s = opaque;
616     VirtIOBlockReq *req = s->rq;
617     MultiReqBuffer mrb = {};
618 
619     qemu_bh_delete(s->bh);
620     s->bh = NULL;
621 
622     s->rq = NULL;
623 
624     while (req) {
625         VirtIOBlockReq *next = req->next;
626         virtio_blk_handle_request(req, &mrb);
627         req = next;
628     }
629 
630     if (mrb.num_reqs) {
631         virtio_blk_submit_multireq(s->blk, &mrb);
632     }
633 }
634 
635 static void virtio_blk_dma_restart_cb(void *opaque, int running,
636                                       RunState state)
637 {
638     VirtIOBlock *s = opaque;
639 
640     if (!running) {
641         return;
642     }
643 
644     if (!s->bh) {
645         s->bh = aio_bh_new(blk_get_aio_context(s->conf.conf.blk),
646                            virtio_blk_dma_restart_bh, s);
647         qemu_bh_schedule(s->bh);
648     }
649 }
650 
651 static void virtio_blk_reset(VirtIODevice *vdev)
652 {
653     VirtIOBlock *s = VIRTIO_BLK(vdev);
654 
655     if (s->dataplane) {
656         virtio_blk_data_plane_stop(s->dataplane);
657     }
658 
659     /*
660      * This should cancel pending requests, but can't do nicely until there
661      * are per-device request lists.
662      */
663     blk_drain_all();
664     blk_set_enable_write_cache(s->blk, s->original_wce);
665 }
666 
667 /* coalesce internal state, copy to pci i/o region 0
668  */
669 static void virtio_blk_update_config(VirtIODevice *vdev, uint8_t *config)
670 {
671     VirtIOBlock *s = VIRTIO_BLK(vdev);
672     BlockConf *conf = &s->conf.conf;
673     struct virtio_blk_config blkcfg;
674     uint64_t capacity;
675     int blk_size = conf->logical_block_size;
676 
677     blk_get_geometry(s->blk, &capacity);
678     memset(&blkcfg, 0, sizeof(blkcfg));
679     virtio_stq_p(vdev, &blkcfg.capacity, capacity);
680     virtio_stl_p(vdev, &blkcfg.seg_max, 128 - 2);
681     virtio_stw_p(vdev, &blkcfg.geometry.cylinders, conf->cyls);
682     virtio_stl_p(vdev, &blkcfg.blk_size, blk_size);
683     virtio_stw_p(vdev, &blkcfg.min_io_size, conf->min_io_size / blk_size);
684     virtio_stw_p(vdev, &blkcfg.opt_io_size, conf->opt_io_size / blk_size);
685     blkcfg.geometry.heads = conf->heads;
686     /*
687      * We must ensure that the block device capacity is a multiple of
688      * the logical block size. If that is not the case, let's use
689      * sector_mask to adopt the geometry to have a correct picture.
690      * For those devices where the capacity is ok for the given geometry
691      * we don't touch the sector value of the geometry, since some devices
692      * (like s390 dasd) need a specific value. Here the capacity is already
693      * cyls*heads*secs*blk_size and the sector value is not block size
694      * divided by 512 - instead it is the amount of blk_size blocks
695      * per track (cylinder).
696      */
697     if (blk_getlength(s->blk) /  conf->heads / conf->secs % blk_size) {
698         blkcfg.geometry.sectors = conf->secs & ~s->sector_mask;
699     } else {
700         blkcfg.geometry.sectors = conf->secs;
701     }
702     blkcfg.size_max = 0;
703     blkcfg.physical_block_exp = get_physical_block_exp(conf);
704     blkcfg.alignment_offset = 0;
705     blkcfg.wce = blk_enable_write_cache(s->blk);
706     memcpy(config, &blkcfg, sizeof(struct virtio_blk_config));
707 }
708 
709 static void virtio_blk_set_config(VirtIODevice *vdev, const uint8_t *config)
710 {
711     VirtIOBlock *s = VIRTIO_BLK(vdev);
712     struct virtio_blk_config blkcfg;
713 
714     memcpy(&blkcfg, config, sizeof(blkcfg));
715 
716     aio_context_acquire(blk_get_aio_context(s->blk));
717     blk_set_enable_write_cache(s->blk, blkcfg.wce != 0);
718     aio_context_release(blk_get_aio_context(s->blk));
719 }
720 
721 static uint64_t virtio_blk_get_features(VirtIODevice *vdev, uint64_t features)
722 {
723     VirtIOBlock *s = VIRTIO_BLK(vdev);
724 
725     virtio_add_feature(&features, VIRTIO_BLK_F_SEG_MAX);
726     virtio_add_feature(&features, VIRTIO_BLK_F_GEOMETRY);
727     virtio_add_feature(&features, VIRTIO_BLK_F_TOPOLOGY);
728     virtio_add_feature(&features, VIRTIO_BLK_F_BLK_SIZE);
729     virtio_add_feature(&features, VIRTIO_BLK_F_SCSI);
730 
731     if (s->conf.config_wce) {
732         virtio_add_feature(&features, VIRTIO_BLK_F_CONFIG_WCE);
733     }
734     if (blk_enable_write_cache(s->blk)) {
735         virtio_add_feature(&features, VIRTIO_BLK_F_WCE);
736     }
737     if (blk_is_read_only(s->blk)) {
738         virtio_add_feature(&features, VIRTIO_BLK_F_RO);
739     }
740 
741     return features;
742 }
743 
744 static void virtio_blk_set_status(VirtIODevice *vdev, uint8_t status)
745 {
746     VirtIOBlock *s = VIRTIO_BLK(vdev);
747 
748     if (s->dataplane && !(status & (VIRTIO_CONFIG_S_DRIVER |
749                                     VIRTIO_CONFIG_S_DRIVER_OK))) {
750         virtio_blk_data_plane_stop(s->dataplane);
751     }
752 
753     if (!(status & VIRTIO_CONFIG_S_DRIVER_OK)) {
754         return;
755     }
756 
757     /* A guest that supports VIRTIO_BLK_F_CONFIG_WCE must be able to send
758      * cache flushes.  Thus, the "auto writethrough" behavior is never
759      * necessary for guests that support the VIRTIO_BLK_F_CONFIG_WCE feature.
760      * Leaving it enabled would break the following sequence:
761      *
762      *     Guest started with "-drive cache=writethrough"
763      *     Guest sets status to 0
764      *     Guest sets DRIVER bit in status field
765      *     Guest reads host features (WCE=0, CONFIG_WCE=1)
766      *     Guest writes guest features (WCE=0, CONFIG_WCE=1)
767      *     Guest writes 1 to the WCE configuration field (writeback mode)
768      *     Guest sets DRIVER_OK bit in status field
769      *
770      * s->blk would erroneously be placed in writethrough mode.
771      */
772     if (!virtio_has_feature(vdev, VIRTIO_BLK_F_CONFIG_WCE)) {
773         aio_context_acquire(blk_get_aio_context(s->blk));
774         blk_set_enable_write_cache(s->blk,
775                                    virtio_has_feature(vdev, VIRTIO_BLK_F_WCE));
776         aio_context_release(blk_get_aio_context(s->blk));
777     }
778 }
779 
780 static void virtio_blk_save(QEMUFile *f, void *opaque)
781 {
782     VirtIODevice *vdev = VIRTIO_DEVICE(opaque);
783 
784     virtio_save(vdev, f);
785 }
786 
787 static void virtio_blk_save_device(VirtIODevice *vdev, QEMUFile *f)
788 {
789     VirtIOBlock *s = VIRTIO_BLK(vdev);
790     VirtIOBlockReq *req = s->rq;
791 
792     while (req) {
793         qemu_put_sbyte(f, 1);
794         qemu_put_buffer(f, (unsigned char *)&req->elem,
795                         sizeof(VirtQueueElement));
796         req = req->next;
797     }
798     qemu_put_sbyte(f, 0);
799 }
800 
801 static int virtio_blk_load(QEMUFile *f, void *opaque, int version_id)
802 {
803     VirtIOBlock *s = opaque;
804     VirtIODevice *vdev = VIRTIO_DEVICE(s);
805 
806     if (version_id != 2)
807         return -EINVAL;
808 
809     return virtio_load(vdev, f, version_id);
810 }
811 
812 static int virtio_blk_load_device(VirtIODevice *vdev, QEMUFile *f,
813                                   int version_id)
814 {
815     VirtIOBlock *s = VIRTIO_BLK(vdev);
816 
817     while (qemu_get_sbyte(f)) {
818         VirtIOBlockReq *req = virtio_blk_alloc_request(s);
819         qemu_get_buffer(f, (unsigned char *)&req->elem,
820                         sizeof(VirtQueueElement));
821         req->next = s->rq;
822         s->rq = req;
823 
824         virtqueue_map_sg(req->elem.in_sg, req->elem.in_addr,
825             req->elem.in_num, 1);
826         virtqueue_map_sg(req->elem.out_sg, req->elem.out_addr,
827             req->elem.out_num, 0);
828     }
829 
830     return 0;
831 }
832 
833 static void virtio_blk_resize(void *opaque)
834 {
835     VirtIODevice *vdev = VIRTIO_DEVICE(opaque);
836 
837     virtio_notify_config(vdev);
838 }
839 
840 static const BlockDevOps virtio_block_ops = {
841     .resize_cb = virtio_blk_resize,
842 };
843 
844 /* Disable dataplane thread during live migration since it does not
845  * update the dirty memory bitmap yet.
846  */
847 static void virtio_blk_migration_state_changed(Notifier *notifier, void *data)
848 {
849     VirtIOBlock *s = container_of(notifier, VirtIOBlock,
850                                   migration_state_notifier);
851     MigrationState *mig = data;
852     Error *err = NULL;
853 
854     if (migration_in_setup(mig)) {
855         if (!s->dataplane) {
856             return;
857         }
858         virtio_blk_data_plane_destroy(s->dataplane);
859         s->dataplane = NULL;
860     } else if (migration_has_finished(mig) ||
861                migration_has_failed(mig)) {
862         if (s->dataplane) {
863             return;
864         }
865         blk_drain_all(); /* complete in-flight non-dataplane requests */
866         virtio_blk_data_plane_create(VIRTIO_DEVICE(s), &s->conf,
867                                      &s->dataplane, &err);
868         if (err != NULL) {
869             error_report_err(err);
870         }
871     }
872 }
873 
874 static void virtio_blk_device_realize(DeviceState *dev, Error **errp)
875 {
876     VirtIODevice *vdev = VIRTIO_DEVICE(dev);
877     VirtIOBlock *s = VIRTIO_BLK(dev);
878     VirtIOBlkConf *conf = &s->conf;
879     Error *err = NULL;
880     static int virtio_blk_id;
881 
882     if (!conf->conf.blk) {
883         error_setg(errp, "drive property not set");
884         return;
885     }
886     if (!blk_is_inserted(conf->conf.blk)) {
887         error_setg(errp, "Device needs media, but drive is empty");
888         return;
889     }
890 
891     blkconf_serial(&conf->conf, &conf->serial);
892     s->original_wce = blk_enable_write_cache(conf->conf.blk);
893     blkconf_geometry(&conf->conf, NULL, 65535, 255, 255, &err);
894     if (err) {
895         error_propagate(errp, err);
896         return;
897     }
898     blkconf_blocksizes(&conf->conf);
899 
900     virtio_init(vdev, "virtio-blk", VIRTIO_ID_BLOCK,
901                 sizeof(struct virtio_blk_config));
902 
903     s->blk = conf->conf.blk;
904     s->rq = NULL;
905     s->sector_mask = (s->conf.conf.logical_block_size / BDRV_SECTOR_SIZE) - 1;
906 
907     s->vq = virtio_add_queue(vdev, 128, virtio_blk_handle_output);
908     s->complete_request = virtio_blk_complete_request;
909     virtio_blk_data_plane_create(vdev, conf, &s->dataplane, &err);
910     if (err != NULL) {
911         error_propagate(errp, err);
912         virtio_cleanup(vdev);
913         return;
914     }
915     s->migration_state_notifier.notify = virtio_blk_migration_state_changed;
916     add_migration_state_change_notifier(&s->migration_state_notifier);
917 
918     s->change = qemu_add_vm_change_state_handler(virtio_blk_dma_restart_cb, s);
919     register_savevm(dev, "virtio-blk", virtio_blk_id++, 2,
920                     virtio_blk_save, virtio_blk_load, s);
921     blk_set_dev_ops(s->blk, &virtio_block_ops, s);
922     blk_set_guest_block_size(s->blk, s->conf.conf.logical_block_size);
923 
924     blk_iostatus_enable(s->blk);
925 }
926 
927 static void virtio_blk_device_unrealize(DeviceState *dev, Error **errp)
928 {
929     VirtIODevice *vdev = VIRTIO_DEVICE(dev);
930     VirtIOBlock *s = VIRTIO_BLK(dev);
931 
932     remove_migration_state_change_notifier(&s->migration_state_notifier);
933     virtio_blk_data_plane_destroy(s->dataplane);
934     s->dataplane = NULL;
935     qemu_del_vm_change_state_handler(s->change);
936     unregister_savevm(dev, "virtio-blk", s);
937     blockdev_mark_auto_del(s->blk);
938     virtio_cleanup(vdev);
939 }
940 
941 static void virtio_blk_instance_init(Object *obj)
942 {
943     VirtIOBlock *s = VIRTIO_BLK(obj);
944 
945     object_property_add_link(obj, "iothread", TYPE_IOTHREAD,
946                              (Object **)&s->conf.iothread,
947                              qdev_prop_allow_set_link_before_realize,
948                              OBJ_PROP_LINK_UNREF_ON_RELEASE, NULL);
949     device_add_bootindex_property(obj, &s->conf.conf.bootindex,
950                                   "bootindex", "/disk@0,0",
951                                   DEVICE(obj), NULL);
952 }
953 
954 static Property virtio_blk_properties[] = {
955     DEFINE_BLOCK_PROPERTIES(VirtIOBlock, conf.conf),
956     DEFINE_BLOCK_CHS_PROPERTIES(VirtIOBlock, conf.conf),
957     DEFINE_PROP_STRING("serial", VirtIOBlock, conf.serial),
958     DEFINE_PROP_BIT("config-wce", VirtIOBlock, conf.config_wce, 0, true),
959 #ifdef __linux__
960     DEFINE_PROP_BIT("scsi", VirtIOBlock, conf.scsi, 0, true),
961 #endif
962     DEFINE_PROP_BIT("request-merging", VirtIOBlock, conf.request_merging, 0,
963                     true),
964     DEFINE_PROP_BIT("x-data-plane", VirtIOBlock, conf.data_plane, 0, false),
965     DEFINE_PROP_END_OF_LIST(),
966 };
967 
968 static void virtio_blk_class_init(ObjectClass *klass, void *data)
969 {
970     DeviceClass *dc = DEVICE_CLASS(klass);
971     VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
972 
973     dc->props = virtio_blk_properties;
974     set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
975     vdc->realize = virtio_blk_device_realize;
976     vdc->unrealize = virtio_blk_device_unrealize;
977     vdc->get_config = virtio_blk_update_config;
978     vdc->set_config = virtio_blk_set_config;
979     vdc->get_features = virtio_blk_get_features;
980     vdc->set_status = virtio_blk_set_status;
981     vdc->reset = virtio_blk_reset;
982     vdc->save = virtio_blk_save_device;
983     vdc->load = virtio_blk_load_device;
984 }
985 
986 static const TypeInfo virtio_device_info = {
987     .name = TYPE_VIRTIO_BLK,
988     .parent = TYPE_VIRTIO_DEVICE,
989     .instance_size = sizeof(VirtIOBlock),
990     .instance_init = virtio_blk_instance_init,
991     .class_init = virtio_blk_class_init,
992 };
993 
994 static void virtio_register_types(void)
995 {
996     type_register_static(&virtio_device_info);
997 }
998 
999 type_init(virtio_register_types)
1000