4 * Copyright IBM, Corp. 2007
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "qapi/error.h"
17 #include "qemu/module.h"
18 #include "qemu/error-report.h"
19 #include "qemu/main-loop.h"
20 #include "block/block_int.h"
22 #include "hw/block/block.h"
23 #include "hw/qdev-properties.h"
24 #include "sysemu/blockdev.h"
25 #include "sysemu/block-ram-registrar.h"
26 #include "sysemu/sysemu.h"
27 #include "sysemu/runstate.h"
28 #include "hw/virtio/virtio-blk.h"
29 #include "dataplane/virtio-blk.h"
30 #include "scsi/constants.h"
34 #include "hw/virtio/virtio-bus.h"
35 #include "migration/qemu-file-types.h"
36 #include "hw/virtio/virtio-access.h"
37 #include "hw/virtio/virtio-blk-common.h"
38 #include "qemu/coroutine.h"
40 static void virtio_blk_init_request(VirtIOBlock
*s
, VirtQueue
*vq
,
51 static void virtio_blk_free_request(VirtIOBlockReq
*req
)
56 static void virtio_blk_req_complete(VirtIOBlockReq
*req
, unsigned char status
)
58 VirtIOBlock
*s
= req
->dev
;
59 VirtIODevice
*vdev
= VIRTIO_DEVICE(s
);
61 trace_virtio_blk_req_complete(vdev
, req
, status
);
63 stb_p(&req
->in
->status
, status
);
64 iov_discard_undo(&req
->inhdr_undo
);
65 iov_discard_undo(&req
->outhdr_undo
);
66 virtqueue_push(req
->vq
, &req
->elem
, req
->in_len
);
67 if (s
->dataplane_started
&& !s
->dataplane_disabled
) {
68 virtio_blk_data_plane_notify(s
->dataplane
, req
->vq
);
70 virtio_notify(vdev
, req
->vq
);
74 static int virtio_blk_handle_rw_error(VirtIOBlockReq
*req
, int error
,
75 bool is_read
, bool acct_failed
)
77 VirtIOBlock
*s
= req
->dev
;
78 BlockErrorAction action
= blk_get_error_action(s
->blk
, is_read
, error
);
80 if (action
== BLOCK_ERROR_ACTION_STOP
) {
81 /* Break the link as the next request is going to be parsed from the
82 * ring again. Otherwise we may end up doing a double completion! */
86 } else if (action
== BLOCK_ERROR_ACTION_REPORT
) {
87 virtio_blk_req_complete(req
, VIRTIO_BLK_S_IOERR
);
89 block_acct_failed(blk_get_stats(s
->blk
), &req
->acct
);
91 virtio_blk_free_request(req
);
94 blk_error_action(s
->blk
, action
, is_read
, error
);
95 return action
!= BLOCK_ERROR_ACTION_IGNORE
;
98 static void virtio_blk_rw_complete(void *opaque
, int ret
)
100 VirtIOBlockReq
*next
= opaque
;
101 VirtIOBlock
*s
= next
->dev
;
102 VirtIODevice
*vdev
= VIRTIO_DEVICE(s
);
104 aio_context_acquire(blk_get_aio_context(s
->conf
.conf
.blk
));
106 VirtIOBlockReq
*req
= next
;
108 trace_virtio_blk_rw_complete(vdev
, req
, ret
);
110 if (req
->qiov
.nalloc
!= -1) {
111 /* If nalloc is != -1 req->qiov is a local copy of the original
112 * external iovec. It was allocated in submit_requests to be
113 * able to merge requests. */
114 qemu_iovec_destroy(&req
->qiov
);
118 int p
= virtio_ldl_p(VIRTIO_DEVICE(s
), &req
->out
.type
);
119 bool is_read
= !(p
& VIRTIO_BLK_T_OUT
);
120 /* Note that memory may be dirtied on read failure. If the
121 * virtio request is not completed here, as is the case for
122 * BLOCK_ERROR_ACTION_STOP, the memory may not be copied
123 * correctly during live migration. While this is ugly,
124 * it is acceptable because the device is free to write to
125 * the memory until the request is completed (which will
126 * happen on the other side of the migration).
128 if (virtio_blk_handle_rw_error(req
, -ret
, is_read
, true)) {
133 virtio_blk_req_complete(req
, VIRTIO_BLK_S_OK
);
134 block_acct_done(blk_get_stats(s
->blk
), &req
->acct
);
135 virtio_blk_free_request(req
);
137 aio_context_release(blk_get_aio_context(s
->conf
.conf
.blk
));
140 static void virtio_blk_flush_complete(void *opaque
, int ret
)
142 VirtIOBlockReq
*req
= opaque
;
143 VirtIOBlock
*s
= req
->dev
;
145 aio_context_acquire(blk_get_aio_context(s
->conf
.conf
.blk
));
147 if (virtio_blk_handle_rw_error(req
, -ret
, 0, true)) {
152 virtio_blk_req_complete(req
, VIRTIO_BLK_S_OK
);
153 block_acct_done(blk_get_stats(s
->blk
), &req
->acct
);
154 virtio_blk_free_request(req
);
157 aio_context_release(blk_get_aio_context(s
->conf
.conf
.blk
));
160 static void virtio_blk_discard_write_zeroes_complete(void *opaque
, int ret
)
162 VirtIOBlockReq
*req
= opaque
;
163 VirtIOBlock
*s
= req
->dev
;
164 bool is_write_zeroes
= (virtio_ldl_p(VIRTIO_DEVICE(s
), &req
->out
.type
) &
165 ~VIRTIO_BLK_T_BARRIER
) == VIRTIO_BLK_T_WRITE_ZEROES
;
167 aio_context_acquire(blk_get_aio_context(s
->conf
.conf
.blk
));
169 if (virtio_blk_handle_rw_error(req
, -ret
, false, is_write_zeroes
)) {
174 virtio_blk_req_complete(req
, VIRTIO_BLK_S_OK
);
175 if (is_write_zeroes
) {
176 block_acct_done(blk_get_stats(s
->blk
), &req
->acct
);
178 virtio_blk_free_request(req
);
181 aio_context_release(blk_get_aio_context(s
->conf
.conf
.blk
));
188 struct sg_io_hdr hdr
;
189 } VirtIOBlockIoctlReq
;
191 static void virtio_blk_ioctl_complete(void *opaque
, int status
)
193 VirtIOBlockIoctlReq
*ioctl_req
= opaque
;
194 VirtIOBlockReq
*req
= ioctl_req
->req
;
195 VirtIOBlock
*s
= req
->dev
;
196 VirtIODevice
*vdev
= VIRTIO_DEVICE(s
);
197 struct virtio_scsi_inhdr
*scsi
;
198 struct sg_io_hdr
*hdr
;
200 scsi
= (void *)req
->elem
.in_sg
[req
->elem
.in_num
- 2].iov_base
;
203 status
= VIRTIO_BLK_S_UNSUPP
;
204 virtio_stl_p(vdev
, &scsi
->errors
, 255);
208 hdr
= &ioctl_req
->hdr
;
210 * From SCSI-Generic-HOWTO: "Some lower level drivers (e.g. ide-scsi)
211 * clear the masked_status field [hence status gets cleared too, see
212 * block/scsi_ioctl.c] even when a CHECK_CONDITION or COMMAND_TERMINATED
213 * status has occurred. However they do set DRIVER_SENSE in driver_status
214 * field. Also a (sb_len_wr > 0) indicates there is a sense buffer.
216 if (hdr
->status
== 0 && hdr
->sb_len_wr
> 0) {
217 hdr
->status
= CHECK_CONDITION
;
220 virtio_stl_p(vdev
, &scsi
->errors
,
221 hdr
->status
| (hdr
->msg_status
<< 8) |
222 (hdr
->host_status
<< 16) | (hdr
->driver_status
<< 24));
223 virtio_stl_p(vdev
, &scsi
->residual
, hdr
->resid
);
224 virtio_stl_p(vdev
, &scsi
->sense_len
, hdr
->sb_len_wr
);
225 virtio_stl_p(vdev
, &scsi
->data_len
, hdr
->dxfer_len
);
228 aio_context_acquire(blk_get_aio_context(s
->conf
.conf
.blk
));
229 virtio_blk_req_complete(req
, status
);
230 virtio_blk_free_request(req
);
231 aio_context_release(blk_get_aio_context(s
->conf
.conf
.blk
));
237 static VirtIOBlockReq
*virtio_blk_get_request(VirtIOBlock
*s
, VirtQueue
*vq
)
239 VirtIOBlockReq
*req
= virtqueue_pop(vq
, sizeof(VirtIOBlockReq
));
242 virtio_blk_init_request(s
, vq
, req
);
247 static int virtio_blk_handle_scsi_req(VirtIOBlockReq
*req
)
249 int status
= VIRTIO_BLK_S_OK
;
250 struct virtio_scsi_inhdr
*scsi
= NULL
;
251 VirtIOBlock
*blk
= req
->dev
;
252 VirtIODevice
*vdev
= VIRTIO_DEVICE(blk
);
253 VirtQueueElement
*elem
= &req
->elem
;
257 VirtIOBlockIoctlReq
*ioctl_req
;
262 * We require at least one output segment each for the virtio_blk_outhdr
263 * and the SCSI command block.
265 * We also at least require the virtio_blk_inhdr, the virtio_scsi_inhdr
266 * and the sense buffer pointer in the input segments.
268 if (elem
->out_num
< 2 || elem
->in_num
< 3) {
269 status
= VIRTIO_BLK_S_IOERR
;
274 * The scsi inhdr is placed in the second-to-last input segment, just
275 * before the regular inhdr.
277 scsi
= (void *)elem
->in_sg
[elem
->in_num
- 2].iov_base
;
279 if (!virtio_has_feature(blk
->host_features
, VIRTIO_BLK_F_SCSI
)) {
280 status
= VIRTIO_BLK_S_UNSUPP
;
285 * No support for bidirection commands yet.
287 if (elem
->out_num
> 2 && elem
->in_num
> 3) {
288 status
= VIRTIO_BLK_S_UNSUPP
;
293 ioctl_req
= g_new0(VirtIOBlockIoctlReq
, 1);
294 ioctl_req
->req
= req
;
295 ioctl_req
->hdr
.interface_id
= 'S';
296 ioctl_req
->hdr
.cmd_len
= elem
->out_sg
[1].iov_len
;
297 ioctl_req
->hdr
.cmdp
= elem
->out_sg
[1].iov_base
;
298 ioctl_req
->hdr
.dxfer_len
= 0;
300 if (elem
->out_num
> 2) {
302 * If there are more than the minimally required 2 output segments
303 * there is write payload starting from the third iovec.
305 ioctl_req
->hdr
.dxfer_direction
= SG_DXFER_TO_DEV
;
306 ioctl_req
->hdr
.iovec_count
= elem
->out_num
- 2;
308 for (i
= 0; i
< ioctl_req
->hdr
.iovec_count
; i
++) {
309 ioctl_req
->hdr
.dxfer_len
+= elem
->out_sg
[i
+ 2].iov_len
;
312 ioctl_req
->hdr
.dxferp
= elem
->out_sg
+ 2;
314 } else if (elem
->in_num
> 3) {
316 * If we have more than 3 input segments the guest wants to actually
319 ioctl_req
->hdr
.dxfer_direction
= SG_DXFER_FROM_DEV
;
320 ioctl_req
->hdr
.iovec_count
= elem
->in_num
- 3;
321 for (i
= 0; i
< ioctl_req
->hdr
.iovec_count
; i
++) {
322 ioctl_req
->hdr
.dxfer_len
+= elem
->in_sg
[i
].iov_len
;
325 ioctl_req
->hdr
.dxferp
= elem
->in_sg
;
328 * Some SCSI commands don't actually transfer any data.
330 ioctl_req
->hdr
.dxfer_direction
= SG_DXFER_NONE
;
333 ioctl_req
->hdr
.sbp
= elem
->in_sg
[elem
->in_num
- 3].iov_base
;
334 ioctl_req
->hdr
.mx_sb_len
= elem
->in_sg
[elem
->in_num
- 3].iov_len
;
336 acb
= blk_aio_ioctl(blk
->blk
, SG_IO
, &ioctl_req
->hdr
,
337 virtio_blk_ioctl_complete
, ioctl_req
);
340 status
= VIRTIO_BLK_S_UNSUPP
;
349 /* Just put anything nonzero so that the ioctl fails in the guest. */
351 virtio_stl_p(vdev
, &scsi
->errors
, 255);
356 static void virtio_blk_handle_scsi(VirtIOBlockReq
*req
)
360 status
= virtio_blk_handle_scsi_req(req
);
361 if (status
!= -EINPROGRESS
) {
362 virtio_blk_req_complete(req
, status
);
363 virtio_blk_free_request(req
);
367 static inline void submit_requests(VirtIOBlock
*s
, MultiReqBuffer
*mrb
,
368 int start
, int num_reqs
, int niov
)
370 BlockBackend
*blk
= s
->blk
;
371 QEMUIOVector
*qiov
= &mrb
->reqs
[start
]->qiov
;
372 int64_t sector_num
= mrb
->reqs
[start
]->sector_num
;
373 bool is_write
= mrb
->is_write
;
374 BdrvRequestFlags flags
= 0;
378 struct iovec
*tmp_iov
= qiov
->iov
;
379 int tmp_niov
= qiov
->niov
;
381 /* mrb->reqs[start]->qiov was initialized from external so we can't
382 * modify it here. We need to initialize it locally and then add the
383 * external iovecs. */
384 qemu_iovec_init(qiov
, niov
);
386 for (i
= 0; i
< tmp_niov
; i
++) {
387 qemu_iovec_add(qiov
, tmp_iov
[i
].iov_base
, tmp_iov
[i
].iov_len
);
390 for (i
= start
+ 1; i
< start
+ num_reqs
; i
++) {
391 qemu_iovec_concat(qiov
, &mrb
->reqs
[i
]->qiov
, 0,
392 mrb
->reqs
[i
]->qiov
.size
);
393 mrb
->reqs
[i
- 1]->mr_next
= mrb
->reqs
[i
];
396 trace_virtio_blk_submit_multireq(VIRTIO_DEVICE(mrb
->reqs
[start
]->dev
),
397 mrb
, start
, num_reqs
,
398 sector_num
<< BDRV_SECTOR_BITS
,
399 qiov
->size
, is_write
);
400 block_acct_merge_done(blk_get_stats(blk
),
401 is_write
? BLOCK_ACCT_WRITE
: BLOCK_ACCT_READ
,
405 if (blk_ram_registrar_ok(&s
->blk_ram_registrar
)) {
406 flags
|= BDRV_REQ_REGISTERED_BUF
;
410 blk_aio_pwritev(blk
, sector_num
<< BDRV_SECTOR_BITS
, qiov
,
411 flags
, virtio_blk_rw_complete
,
414 blk_aio_preadv(blk
, sector_num
<< BDRV_SECTOR_BITS
, qiov
,
415 flags
, virtio_blk_rw_complete
,
420 static int multireq_compare(const void *a
, const void *b
)
422 const VirtIOBlockReq
*req1
= *(VirtIOBlockReq
**)a
,
423 *req2
= *(VirtIOBlockReq
**)b
;
426 * Note that we can't simply subtract sector_num1 from sector_num2
427 * here as that could overflow the return value.
429 if (req1
->sector_num
> req2
->sector_num
) {
431 } else if (req1
->sector_num
< req2
->sector_num
) {
438 static void virtio_blk_submit_multireq(VirtIOBlock
*s
, MultiReqBuffer
*mrb
)
440 int i
= 0, start
= 0, num_reqs
= 0, niov
= 0, nb_sectors
= 0;
441 uint32_t max_transfer
;
442 int64_t sector_num
= 0;
444 if (mrb
->num_reqs
== 1) {
445 submit_requests(s
, mrb
, 0, 1, -1);
450 max_transfer
= blk_get_max_transfer(mrb
->reqs
[0]->dev
->blk
);
452 qsort(mrb
->reqs
, mrb
->num_reqs
, sizeof(*mrb
->reqs
),
455 for (i
= 0; i
< mrb
->num_reqs
; i
++) {
456 VirtIOBlockReq
*req
= mrb
->reqs
[i
];
459 * NOTE: We cannot merge the requests in below situations:
460 * 1. requests are not sequential
461 * 2. merge would exceed maximum number of IOVs
462 * 3. merge would exceed maximum transfer length of backend device
464 if (sector_num
+ nb_sectors
!= req
->sector_num
||
465 niov
> blk_get_max_iov(s
->blk
) - req
->qiov
.niov
||
466 req
->qiov
.size
> max_transfer
||
467 nb_sectors
> (max_transfer
-
468 req
->qiov
.size
) / BDRV_SECTOR_SIZE
) {
469 submit_requests(s
, mrb
, start
, num_reqs
, niov
);
475 sector_num
= req
->sector_num
;
476 nb_sectors
= niov
= 0;
480 nb_sectors
+= req
->qiov
.size
/ BDRV_SECTOR_SIZE
;
481 niov
+= req
->qiov
.niov
;
485 submit_requests(s
, mrb
, start
, num_reqs
, niov
);
489 static void virtio_blk_handle_flush(VirtIOBlockReq
*req
, MultiReqBuffer
*mrb
)
491 VirtIOBlock
*s
= req
->dev
;
493 block_acct_start(blk_get_stats(s
->blk
), &req
->acct
, 0,
497 * Make sure all outstanding writes are posted to the backing device.
499 if (mrb
->is_write
&& mrb
->num_reqs
> 0) {
500 virtio_blk_submit_multireq(s
, mrb
);
502 blk_aio_flush(s
->blk
, virtio_blk_flush_complete
, req
);
505 static bool virtio_blk_sect_range_ok(VirtIOBlock
*dev
,
506 uint64_t sector
, size_t size
)
508 uint64_t nb_sectors
= size
>> BDRV_SECTOR_BITS
;
509 uint64_t total_sectors
;
511 if (nb_sectors
> BDRV_REQUEST_MAX_SECTORS
) {
514 if (sector
& dev
->sector_mask
) {
517 if (size
% dev
->conf
.conf
.logical_block_size
) {
520 blk_get_geometry(dev
->blk
, &total_sectors
);
521 if (sector
> total_sectors
|| nb_sectors
> total_sectors
- sector
) {
527 static uint8_t virtio_blk_handle_discard_write_zeroes(VirtIOBlockReq
*req
,
528 struct virtio_blk_discard_write_zeroes
*dwz_hdr
, bool is_write_zeroes
)
530 VirtIOBlock
*s
= req
->dev
;
531 VirtIODevice
*vdev
= VIRTIO_DEVICE(s
);
533 uint32_t num_sectors
, flags
, max_sectors
;
537 sector
= virtio_ldq_p(vdev
, &dwz_hdr
->sector
);
538 num_sectors
= virtio_ldl_p(vdev
, &dwz_hdr
->num_sectors
);
539 flags
= virtio_ldl_p(vdev
, &dwz_hdr
->flags
);
540 max_sectors
= is_write_zeroes
? s
->conf
.max_write_zeroes_sectors
:
541 s
->conf
.max_discard_sectors
;
544 * max_sectors is at most BDRV_REQUEST_MAX_SECTORS, this check
545 * make us sure that "num_sectors << BDRV_SECTOR_BITS" can fit in
546 * the integer variable.
548 if (unlikely(num_sectors
> max_sectors
)) {
549 err_status
= VIRTIO_BLK_S_IOERR
;
553 bytes
= num_sectors
<< BDRV_SECTOR_BITS
;
555 if (unlikely(!virtio_blk_sect_range_ok(s
, sector
, bytes
))) {
556 err_status
= VIRTIO_BLK_S_IOERR
;
561 * The device MUST set the status byte to VIRTIO_BLK_S_UNSUPP for discard
562 * and write zeroes commands if any unknown flag is set.
564 if (unlikely(flags
& ~VIRTIO_BLK_WRITE_ZEROES_FLAG_UNMAP
)) {
565 err_status
= VIRTIO_BLK_S_UNSUPP
;
569 if (is_write_zeroes
) { /* VIRTIO_BLK_T_WRITE_ZEROES */
570 int blk_aio_flags
= 0;
572 if (flags
& VIRTIO_BLK_WRITE_ZEROES_FLAG_UNMAP
) {
573 blk_aio_flags
|= BDRV_REQ_MAY_UNMAP
;
576 block_acct_start(blk_get_stats(s
->blk
), &req
->acct
, bytes
,
579 blk_aio_pwrite_zeroes(s
->blk
, sector
<< BDRV_SECTOR_BITS
,
580 bytes
, blk_aio_flags
,
581 virtio_blk_discard_write_zeroes_complete
, req
);
582 } else { /* VIRTIO_BLK_T_DISCARD */
584 * The device MUST set the status byte to VIRTIO_BLK_S_UNSUPP for
585 * discard commands if the unmap flag is set.
587 if (unlikely(flags
& VIRTIO_BLK_WRITE_ZEROES_FLAG_UNMAP
)) {
588 err_status
= VIRTIO_BLK_S_UNSUPP
;
592 blk_aio_pdiscard(s
->blk
, sector
<< BDRV_SECTOR_BITS
, bytes
,
593 virtio_blk_discard_write_zeroes_complete
, req
);
596 return VIRTIO_BLK_S_OK
;
599 if (is_write_zeroes
) {
600 block_acct_invalid(blk_get_stats(s
->blk
), BLOCK_ACCT_WRITE
);
605 typedef struct ZoneCmdData
{
607 struct iovec
*in_iov
;
611 unsigned int nr_zones
;
612 BlockZoneDescriptor
*zones
;
621 * check zoned_request: error checking before issuing requests. If all checks
622 * passed, return true.
623 * append: true if only zone append requests issued.
625 static bool check_zoned_request(VirtIOBlock
*s
, int64_t offset
, int64_t len
,
626 bool append
, uint8_t *status
) {
627 BlockDriverState
*bs
= blk_bs(s
->blk
);
630 if (!virtio_has_feature(s
->host_features
, VIRTIO_BLK_F_ZONED
)) {
631 *status
= VIRTIO_BLK_S_UNSUPP
;
635 if (offset
< 0 || len
< 0 || len
> (bs
->total_sectors
<< BDRV_SECTOR_BITS
)
636 || offset
> (bs
->total_sectors
<< BDRV_SECTOR_BITS
) - len
) {
637 *status
= VIRTIO_BLK_S_ZONE_INVALID_CMD
;
642 if (bs
->bl
.write_granularity
) {
643 if ((offset
% bs
->bl
.write_granularity
) != 0) {
644 *status
= VIRTIO_BLK_S_ZONE_UNALIGNED_WP
;
649 index
= offset
/ bs
->bl
.zone_size
;
650 if (BDRV_ZT_IS_CONV(bs
->wps
->wp
[index
])) {
651 *status
= VIRTIO_BLK_S_ZONE_INVALID_CMD
;
655 if (len
/ 512 > bs
->bl
.max_append_sectors
) {
656 if (bs
->bl
.max_append_sectors
== 0) {
657 *status
= VIRTIO_BLK_S_UNSUPP
;
659 *status
= VIRTIO_BLK_S_ZONE_INVALID_CMD
;
667 static void virtio_blk_zone_report_complete(void *opaque
, int ret
)
669 ZoneCmdData
*data
= opaque
;
670 VirtIOBlockReq
*req
= data
->req
;
671 VirtIOBlock
*s
= req
->dev
;
672 VirtIODevice
*vdev
= VIRTIO_DEVICE(req
->dev
);
673 struct iovec
*in_iov
= data
->in_iov
;
674 unsigned in_num
= data
->in_num
;
675 int64_t zrp_size
, n
, j
= 0;
676 int64_t nz
= data
->zone_report_data
.nr_zones
;
677 int8_t err_status
= VIRTIO_BLK_S_OK
;
679 trace_virtio_blk_zone_report_complete(vdev
, req
, nz
, ret
);
681 err_status
= VIRTIO_BLK_S_ZONE_INVALID_CMD
;
685 struct virtio_blk_zone_report zrp_hdr
= (struct virtio_blk_zone_report
) {
686 .nr_zones
= cpu_to_le64(nz
),
688 zrp_size
= sizeof(struct virtio_blk_zone_report
)
689 + sizeof(struct virtio_blk_zone_descriptor
) * nz
;
690 n
= iov_from_buf(in_iov
, in_num
, 0, &zrp_hdr
, sizeof(zrp_hdr
));
691 if (n
!= sizeof(zrp_hdr
)) {
692 virtio_error(vdev
, "Driver provided input buffer that is too small!");
693 err_status
= VIRTIO_BLK_S_ZONE_INVALID_CMD
;
697 for (size_t i
= sizeof(zrp_hdr
); i
< zrp_size
;
698 i
+= sizeof(struct virtio_blk_zone_descriptor
), ++j
) {
699 struct virtio_blk_zone_descriptor desc
=
700 (struct virtio_blk_zone_descriptor
) {
701 .z_start
= cpu_to_le64(data
->zone_report_data
.zones
[j
].start
702 >> BDRV_SECTOR_BITS
),
703 .z_cap
= cpu_to_le64(data
->zone_report_data
.zones
[j
].cap
704 >> BDRV_SECTOR_BITS
),
705 .z_wp
= cpu_to_le64(data
->zone_report_data
.zones
[j
].wp
706 >> BDRV_SECTOR_BITS
),
709 switch (data
->zone_report_data
.zones
[j
].type
) {
711 desc
.z_type
= VIRTIO_BLK_ZT_CONV
;
714 desc
.z_type
= VIRTIO_BLK_ZT_SWR
;
717 desc
.z_type
= VIRTIO_BLK_ZT_SWP
;
720 g_assert_not_reached();
723 switch (data
->zone_report_data
.zones
[j
].state
) {
725 desc
.z_state
= VIRTIO_BLK_ZS_RDONLY
;
728 desc
.z_state
= VIRTIO_BLK_ZS_OFFLINE
;
731 desc
.z_state
= VIRTIO_BLK_ZS_EMPTY
;
734 desc
.z_state
= VIRTIO_BLK_ZS_CLOSED
;
737 desc
.z_state
= VIRTIO_BLK_ZS_FULL
;
740 desc
.z_state
= VIRTIO_BLK_ZS_EOPEN
;
743 desc
.z_state
= VIRTIO_BLK_ZS_IOPEN
;
746 desc
.z_state
= VIRTIO_BLK_ZS_NOT_WP
;
749 g_assert_not_reached();
752 /* TODO: it takes O(n^2) time complexity. Optimizations required. */
753 n
= iov_from_buf(in_iov
, in_num
, i
, &desc
, sizeof(desc
));
754 if (n
!= sizeof(desc
)) {
755 virtio_error(vdev
, "Driver provided input buffer "
756 "for descriptors that is too small!");
757 err_status
= VIRTIO_BLK_S_ZONE_INVALID_CMD
;
762 aio_context_acquire(blk_get_aio_context(s
->conf
.conf
.blk
));
763 virtio_blk_req_complete(req
, err_status
);
764 virtio_blk_free_request(req
);
765 aio_context_release(blk_get_aio_context(s
->conf
.conf
.blk
));
766 g_free(data
->zone_report_data
.zones
);
770 static void virtio_blk_handle_zone_report(VirtIOBlockReq
*req
,
771 struct iovec
*in_iov
,
774 VirtIOBlock
*s
= req
->dev
;
775 VirtIODevice
*vdev
= VIRTIO_DEVICE(s
);
776 unsigned int nr_zones
;
778 int64_t zone_size
, offset
;
781 if (req
->in_len
< sizeof(struct virtio_blk_inhdr
) +
782 sizeof(struct virtio_blk_zone_report
) +
783 sizeof(struct virtio_blk_zone_descriptor
)) {
784 virtio_error(vdev
, "in buffer too small for zone report");
788 /* start byte offset of the zone report */
789 offset
= virtio_ldq_p(vdev
, &req
->out
.sector
) << BDRV_SECTOR_BITS
;
790 if (!check_zoned_request(s
, offset
, 0, false, &err_status
)) {
793 nr_zones
= (req
->in_len
- sizeof(struct virtio_blk_inhdr
) -
794 sizeof(struct virtio_blk_zone_report
)) /
795 sizeof(struct virtio_blk_zone_descriptor
);
796 trace_virtio_blk_handle_zone_report(vdev
, req
,
797 offset
>> BDRV_SECTOR_BITS
, nr_zones
);
799 zone_size
= sizeof(BlockZoneDescriptor
) * nr_zones
;
800 data
= g_malloc(sizeof(ZoneCmdData
));
802 data
->in_iov
= in_iov
;
803 data
->in_num
= in_num
;
804 data
->zone_report_data
.nr_zones
= nr_zones
;
805 data
->zone_report_data
.zones
= g_malloc(zone_size
),
807 blk_aio_zone_report(s
->blk
, offset
, &data
->zone_report_data
.nr_zones
,
808 data
->zone_report_data
.zones
,
809 virtio_blk_zone_report_complete
, data
);
812 virtio_blk_req_complete(req
, err_status
);
813 virtio_blk_free_request(req
);
816 static void virtio_blk_zone_mgmt_complete(void *opaque
, int ret
)
818 VirtIOBlockReq
*req
= opaque
;
819 VirtIOBlock
*s
= req
->dev
;
820 VirtIODevice
*vdev
= VIRTIO_DEVICE(s
);
821 int8_t err_status
= VIRTIO_BLK_S_OK
;
822 trace_virtio_blk_zone_mgmt_complete(vdev
, req
,ret
);
825 err_status
= VIRTIO_BLK_S_ZONE_INVALID_CMD
;
828 aio_context_acquire(blk_get_aio_context(s
->conf
.conf
.blk
));
829 virtio_blk_req_complete(req
, err_status
);
830 virtio_blk_free_request(req
);
831 aio_context_release(blk_get_aio_context(s
->conf
.conf
.blk
));
834 static int virtio_blk_handle_zone_mgmt(VirtIOBlockReq
*req
, BlockZoneOp op
)
836 VirtIOBlock
*s
= req
->dev
;
837 VirtIODevice
*vdev
= VIRTIO_DEVICE(s
);
838 BlockDriverState
*bs
= blk_bs(s
->blk
);
839 int64_t offset
= virtio_ldq_p(vdev
, &req
->out
.sector
) << BDRV_SECTOR_BITS
;
841 uint64_t capacity
= bs
->total_sectors
<< BDRV_SECTOR_BITS
;
842 uint8_t err_status
= VIRTIO_BLK_S_OK
;
844 uint32_t type
= virtio_ldl_p(vdev
, &req
->out
.type
);
845 if (type
== VIRTIO_BLK_T_ZONE_RESET_ALL
) {
846 /* Entire drive capacity */
849 trace_virtio_blk_handle_zone_reset_all(vdev
, req
, 0,
852 if (bs
->bl
.zone_size
> capacity
- offset
) {
853 /* The zoned device allows the last smaller zone. */
854 len
= capacity
- bs
->bl
.zone_size
* (bs
->bl
.nr_zones
- 1);
856 len
= bs
->bl
.zone_size
;
858 trace_virtio_blk_handle_zone_mgmt(vdev
, req
, op
,
859 offset
>> BDRV_SECTOR_BITS
,
860 len
>> BDRV_SECTOR_BITS
);
863 if (!check_zoned_request(s
, offset
, len
, false, &err_status
)) {
867 blk_aio_zone_mgmt(s
->blk
, op
, offset
, len
,
868 virtio_blk_zone_mgmt_complete
, req
);
872 virtio_blk_req_complete(req
, err_status
);
873 virtio_blk_free_request(req
);
877 static void virtio_blk_zone_append_complete(void *opaque
, int ret
)
879 ZoneCmdData
*data
= opaque
;
880 VirtIOBlockReq
*req
= data
->req
;
881 VirtIOBlock
*s
= req
->dev
;
882 VirtIODevice
*vdev
= VIRTIO_DEVICE(req
->dev
);
883 int64_t append_sector
, n
;
884 uint8_t err_status
= VIRTIO_BLK_S_OK
;
887 err_status
= VIRTIO_BLK_S_ZONE_INVALID_CMD
;
891 virtio_stq_p(vdev
, &append_sector
,
892 data
->zone_append_data
.offset
>> BDRV_SECTOR_BITS
);
893 n
= iov_from_buf(data
->in_iov
, data
->in_num
, 0, &append_sector
,
894 sizeof(append_sector
));
895 if (n
!= sizeof(append_sector
)) {
896 virtio_error(vdev
, "Driver provided input buffer less than size of "
898 err_status
= VIRTIO_BLK_S_ZONE_INVALID_CMD
;
901 trace_virtio_blk_zone_append_complete(vdev
, req
, append_sector
, ret
);
904 aio_context_acquire(blk_get_aio_context(s
->conf
.conf
.blk
));
905 virtio_blk_req_complete(req
, err_status
);
906 virtio_blk_free_request(req
);
907 aio_context_release(blk_get_aio_context(s
->conf
.conf
.blk
));
911 static int virtio_blk_handle_zone_append(VirtIOBlockReq
*req
,
912 struct iovec
*out_iov
,
913 struct iovec
*in_iov
,
916 VirtIOBlock
*s
= req
->dev
;
917 VirtIODevice
*vdev
= VIRTIO_DEVICE(s
);
918 uint8_t err_status
= VIRTIO_BLK_S_OK
;
920 int64_t offset
= virtio_ldq_p(vdev
, &req
->out
.sector
) << BDRV_SECTOR_BITS
;
921 int64_t len
= iov_size(out_iov
, out_num
);
923 trace_virtio_blk_handle_zone_append(vdev
, req
, offset
>> BDRV_SECTOR_BITS
);
924 if (!check_zoned_request(s
, offset
, len
, true, &err_status
)) {
928 ZoneCmdData
*data
= g_malloc(sizeof(ZoneCmdData
));
930 data
->in_iov
= in_iov
;
931 data
->in_num
= in_num
;
932 data
->zone_append_data
.offset
= offset
;
933 qemu_iovec_init_external(&req
->qiov
, out_iov
, out_num
);
935 block_acct_start(blk_get_stats(s
->blk
), &req
->acct
, len
,
936 BLOCK_ACCT_ZONE_APPEND
);
938 blk_aio_zone_append(s
->blk
, &data
->zone_append_data
.offset
, &req
->qiov
, 0,
939 virtio_blk_zone_append_complete
, data
);
943 aio_context_acquire(blk_get_aio_context(s
->conf
.conf
.blk
));
944 virtio_blk_req_complete(req
, err_status
);
945 virtio_blk_free_request(req
);
946 aio_context_release(blk_get_aio_context(s
->conf
.conf
.blk
));
950 static int virtio_blk_handle_request(VirtIOBlockReq
*req
, MultiReqBuffer
*mrb
)
953 struct iovec
*in_iov
= req
->elem
.in_sg
;
954 struct iovec
*out_iov
= req
->elem
.out_sg
;
955 unsigned in_num
= req
->elem
.in_num
;
956 unsigned out_num
= req
->elem
.out_num
;
957 VirtIOBlock
*s
= req
->dev
;
958 VirtIODevice
*vdev
= VIRTIO_DEVICE(s
);
960 if (req
->elem
.out_num
< 1 || req
->elem
.in_num
< 1) {
961 virtio_error(vdev
, "virtio-blk missing headers");
965 if (unlikely(iov_to_buf(out_iov
, out_num
, 0, &req
->out
,
966 sizeof(req
->out
)) != sizeof(req
->out
))) {
967 virtio_error(vdev
, "virtio-blk request outhdr too short");
971 iov_discard_front_undoable(&out_iov
, &out_num
, sizeof(req
->out
),
974 if (in_iov
[in_num
- 1].iov_len
< sizeof(struct virtio_blk_inhdr
)) {
975 virtio_error(vdev
, "virtio-blk request inhdr too short");
976 iov_discard_undo(&req
->outhdr_undo
);
980 /* We always touch the last byte, so just see how big in_iov is. */
981 req
->in_len
= iov_size(in_iov
, in_num
);
982 req
->in
= (void *)in_iov
[in_num
- 1].iov_base
983 + in_iov
[in_num
- 1].iov_len
984 - sizeof(struct virtio_blk_inhdr
);
985 iov_discard_back_undoable(in_iov
, &in_num
, sizeof(struct virtio_blk_inhdr
),
988 type
= virtio_ldl_p(vdev
, &req
->out
.type
);
990 /* VIRTIO_BLK_T_OUT defines the command direction. VIRTIO_BLK_T_BARRIER
991 * is an optional flag. Although a guest should not send this flag if
992 * not negotiated we ignored it in the past. So keep ignoring it. */
993 switch (type
& ~(VIRTIO_BLK_T_OUT
| VIRTIO_BLK_T_BARRIER
)) {
994 case VIRTIO_BLK_T_IN
:
996 bool is_write
= type
& VIRTIO_BLK_T_OUT
;
997 req
->sector_num
= virtio_ldq_p(vdev
, &req
->out
.sector
);
1000 qemu_iovec_init_external(&req
->qiov
, out_iov
, out_num
);
1001 trace_virtio_blk_handle_write(vdev
, req
, req
->sector_num
,
1002 req
->qiov
.size
/ BDRV_SECTOR_SIZE
);
1004 qemu_iovec_init_external(&req
->qiov
, in_iov
, in_num
);
1005 trace_virtio_blk_handle_read(vdev
, req
, req
->sector_num
,
1006 req
->qiov
.size
/ BDRV_SECTOR_SIZE
);
1009 if (!virtio_blk_sect_range_ok(s
, req
->sector_num
, req
->qiov
.size
)) {
1010 virtio_blk_req_complete(req
, VIRTIO_BLK_S_IOERR
);
1011 block_acct_invalid(blk_get_stats(s
->blk
),
1012 is_write
? BLOCK_ACCT_WRITE
: BLOCK_ACCT_READ
);
1013 virtio_blk_free_request(req
);
1017 block_acct_start(blk_get_stats(s
->blk
), &req
->acct
, req
->qiov
.size
,
1018 is_write
? BLOCK_ACCT_WRITE
: BLOCK_ACCT_READ
);
1020 /* merge would exceed maximum number of requests or IO direction
1022 if (mrb
->num_reqs
> 0 && (mrb
->num_reqs
== VIRTIO_BLK_MAX_MERGE_REQS
||
1023 is_write
!= mrb
->is_write
||
1024 !s
->conf
.request_merging
)) {
1025 virtio_blk_submit_multireq(s
, mrb
);
1028 assert(mrb
->num_reqs
< VIRTIO_BLK_MAX_MERGE_REQS
);
1029 mrb
->reqs
[mrb
->num_reqs
++] = req
;
1030 mrb
->is_write
= is_write
;
1033 case VIRTIO_BLK_T_FLUSH
:
1034 virtio_blk_handle_flush(req
, mrb
);
1036 case VIRTIO_BLK_T_ZONE_REPORT
:
1037 virtio_blk_handle_zone_report(req
, in_iov
, in_num
);
1039 case VIRTIO_BLK_T_ZONE_OPEN
:
1040 virtio_blk_handle_zone_mgmt(req
, BLK_ZO_OPEN
);
1042 case VIRTIO_BLK_T_ZONE_CLOSE
:
1043 virtio_blk_handle_zone_mgmt(req
, BLK_ZO_CLOSE
);
1045 case VIRTIO_BLK_T_ZONE_FINISH
:
1046 virtio_blk_handle_zone_mgmt(req
, BLK_ZO_FINISH
);
1048 case VIRTIO_BLK_T_ZONE_RESET
:
1049 virtio_blk_handle_zone_mgmt(req
, BLK_ZO_RESET
);
1051 case VIRTIO_BLK_T_ZONE_RESET_ALL
:
1052 virtio_blk_handle_zone_mgmt(req
, BLK_ZO_RESET
);
1054 case VIRTIO_BLK_T_SCSI_CMD
:
1055 virtio_blk_handle_scsi(req
);
1057 case VIRTIO_BLK_T_GET_ID
:
1060 * NB: per existing s/n string convention the string is
1061 * terminated by '\0' only when shorter than buffer.
1063 const char *serial
= s
->conf
.serial
? s
->conf
.serial
: "";
1064 size_t size
= MIN(strlen(serial
) + 1,
1065 MIN(iov_size(in_iov
, in_num
),
1066 VIRTIO_BLK_ID_BYTES
));
1067 iov_from_buf(in_iov
, in_num
, 0, serial
, size
);
1068 virtio_blk_req_complete(req
, VIRTIO_BLK_S_OK
);
1069 virtio_blk_free_request(req
);
1072 case VIRTIO_BLK_T_ZONE_APPEND
& ~VIRTIO_BLK_T_OUT
:
1074 * Passing out_iov/out_num and in_iov/in_num is not safe
1075 * to access req->elem.out_sg directly because it may be
1076 * modified by virtio_blk_handle_request().
1078 virtio_blk_handle_zone_append(req
, out_iov
, in_iov
, out_num
, in_num
);
1081 * VIRTIO_BLK_T_DISCARD and VIRTIO_BLK_T_WRITE_ZEROES are defined with
1082 * VIRTIO_BLK_T_OUT flag set. We masked this flag in the switch statement,
1083 * so we must mask it for these requests, then we will check if it is set.
1085 case VIRTIO_BLK_T_DISCARD
& ~VIRTIO_BLK_T_OUT
:
1086 case VIRTIO_BLK_T_WRITE_ZEROES
& ~VIRTIO_BLK_T_OUT
:
1088 struct virtio_blk_discard_write_zeroes dwz_hdr
;
1089 size_t out_len
= iov_size(out_iov
, out_num
);
1090 bool is_write_zeroes
= (type
& ~VIRTIO_BLK_T_BARRIER
) ==
1091 VIRTIO_BLK_T_WRITE_ZEROES
;
1095 * Unsupported if VIRTIO_BLK_T_OUT is not set or the request contains
1096 * more than one segment.
1098 if (unlikely(!(type
& VIRTIO_BLK_T_OUT
) ||
1099 out_len
> sizeof(dwz_hdr
))) {
1100 virtio_blk_req_complete(req
, VIRTIO_BLK_S_UNSUPP
);
1101 virtio_blk_free_request(req
);
1105 if (unlikely(iov_to_buf(out_iov
, out_num
, 0, &dwz_hdr
,
1106 sizeof(dwz_hdr
)) != sizeof(dwz_hdr
))) {
1107 iov_discard_undo(&req
->inhdr_undo
);
1108 iov_discard_undo(&req
->outhdr_undo
);
1109 virtio_error(vdev
, "virtio-blk discard/write_zeroes header"
1114 err_status
= virtio_blk_handle_discard_write_zeroes(req
, &dwz_hdr
,
1116 if (err_status
!= VIRTIO_BLK_S_OK
) {
1117 virtio_blk_req_complete(req
, err_status
);
1118 virtio_blk_free_request(req
);
1124 virtio_blk_req_complete(req
, VIRTIO_BLK_S_UNSUPP
);
1125 virtio_blk_free_request(req
);
1130 void virtio_blk_handle_vq(VirtIOBlock
*s
, VirtQueue
*vq
)
1132 VirtIOBlockReq
*req
;
1133 MultiReqBuffer mrb
= {};
1134 bool suppress_notifications
= virtio_queue_get_notification(vq
);
1136 aio_context_acquire(blk_get_aio_context(s
->blk
));
1140 if (suppress_notifications
) {
1141 virtio_queue_set_notification(vq
, 0);
1144 while ((req
= virtio_blk_get_request(s
, vq
))) {
1145 if (virtio_blk_handle_request(req
, &mrb
)) {
1146 virtqueue_detach_element(req
->vq
, &req
->elem
, 0);
1147 virtio_blk_free_request(req
);
1152 if (suppress_notifications
) {
1153 virtio_queue_set_notification(vq
, 1);
1155 } while (!virtio_queue_empty(vq
));
1158 virtio_blk_submit_multireq(s
, &mrb
);
1162 aio_context_release(blk_get_aio_context(s
->blk
));
1165 static void virtio_blk_handle_output(VirtIODevice
*vdev
, VirtQueue
*vq
)
1167 VirtIOBlock
*s
= (VirtIOBlock
*)vdev
;
1169 if (s
->dataplane
&& !s
->dataplane_started
) {
1170 /* Some guests kick before setting VIRTIO_CONFIG_S_DRIVER_OK so start
1171 * dataplane here instead of waiting for .set_status().
1173 virtio_device_start_ioeventfd(vdev
);
1174 if (!s
->dataplane_disabled
) {
1178 virtio_blk_handle_vq(s
, vq
);
1181 static void virtio_blk_dma_restart_bh(void *opaque
)
1183 VirtIOBlock
*s
= opaque
;
1185 VirtIOBlockReq
*req
= s
->rq
;
1186 MultiReqBuffer mrb
= {};
1190 aio_context_acquire(blk_get_aio_context(s
->conf
.conf
.blk
));
1192 VirtIOBlockReq
*next
= req
->next
;
1193 if (virtio_blk_handle_request(req
, &mrb
)) {
1194 /* Device is now broken and won't do any processing until it gets
1195 * reset. Already queued requests will be lost: let's purge them.
1199 virtqueue_detach_element(req
->vq
, &req
->elem
, 0);
1200 virtio_blk_free_request(req
);
1209 virtio_blk_submit_multireq(s
, &mrb
);
1212 /* Paired with inc in virtio_blk_dma_restart_cb() */
1213 blk_dec_in_flight(s
->conf
.conf
.blk
);
1215 aio_context_release(blk_get_aio_context(s
->conf
.conf
.blk
));
1218 static void virtio_blk_dma_restart_cb(void *opaque
, bool running
,
1221 VirtIOBlock
*s
= opaque
;
1227 /* Paired with dec in virtio_blk_dma_restart_bh() */
1228 blk_inc_in_flight(s
->conf
.conf
.blk
);
1230 aio_bh_schedule_oneshot(blk_get_aio_context(s
->conf
.conf
.blk
),
1231 virtio_blk_dma_restart_bh
, s
);
1234 static void virtio_blk_reset(VirtIODevice
*vdev
)
1236 VirtIOBlock
*s
= VIRTIO_BLK(vdev
);
1238 VirtIOBlockReq
*req
;
1240 ctx
= blk_get_aio_context(s
->blk
);
1241 aio_context_acquire(ctx
);
1244 /* We drop queued requests after blk_drain() because blk_drain() itself can
1249 virtqueue_detach_element(req
->vq
, &req
->elem
, 0);
1250 virtio_blk_free_request(req
);
1253 aio_context_release(ctx
);
1255 assert(!s
->dataplane_started
);
1256 blk_set_enable_write_cache(s
->blk
, s
->original_wce
);
1259 /* coalesce internal state, copy to pci i/o region 0
1261 static void virtio_blk_update_config(VirtIODevice
*vdev
, uint8_t *config
)
1263 VirtIOBlock
*s
= VIRTIO_BLK(vdev
);
1264 BlockConf
*conf
= &s
->conf
.conf
;
1265 BlockDriverState
*bs
= blk_bs(s
->blk
);
1266 struct virtio_blk_config blkcfg
;
1269 int blk_size
= conf
->logical_block_size
;
1272 ctx
= blk_get_aio_context(s
->blk
);
1273 aio_context_acquire(ctx
);
1275 blk_get_geometry(s
->blk
, &capacity
);
1276 memset(&blkcfg
, 0, sizeof(blkcfg
));
1277 virtio_stq_p(vdev
, &blkcfg
.capacity
, capacity
);
1278 virtio_stl_p(vdev
, &blkcfg
.seg_max
,
1279 s
->conf
.seg_max_adjust
? s
->conf
.queue_size
- 2 : 128 - 2);
1280 virtio_stw_p(vdev
, &blkcfg
.geometry
.cylinders
, conf
->cyls
);
1281 virtio_stl_p(vdev
, &blkcfg
.blk_size
, blk_size
);
1282 virtio_stw_p(vdev
, &blkcfg
.min_io_size
, conf
->min_io_size
/ blk_size
);
1283 virtio_stl_p(vdev
, &blkcfg
.opt_io_size
, conf
->opt_io_size
/ blk_size
);
1284 blkcfg
.geometry
.heads
= conf
->heads
;
1286 * We must ensure that the block device capacity is a multiple of
1287 * the logical block size. If that is not the case, let's use
1288 * sector_mask to adopt the geometry to have a correct picture.
1289 * For those devices where the capacity is ok for the given geometry
1290 * we don't touch the sector value of the geometry, since some devices
1291 * (like s390 dasd) need a specific value. Here the capacity is already
1292 * cyls*heads*secs*blk_size and the sector value is not block size
1293 * divided by 512 - instead it is the amount of blk_size blocks
1294 * per track (cylinder).
1296 length
= blk_getlength(s
->blk
);
1297 aio_context_release(ctx
);
1298 if (length
> 0 && length
/ conf
->heads
/ conf
->secs
% blk_size
) {
1299 blkcfg
.geometry
.sectors
= conf
->secs
& ~s
->sector_mask
;
1301 blkcfg
.geometry
.sectors
= conf
->secs
;
1303 blkcfg
.size_max
= 0;
1304 blkcfg
.physical_block_exp
= get_physical_block_exp(conf
);
1305 blkcfg
.alignment_offset
= 0;
1306 blkcfg
.wce
= blk_enable_write_cache(s
->blk
);
1307 virtio_stw_p(vdev
, &blkcfg
.num_queues
, s
->conf
.num_queues
);
1308 if (virtio_has_feature(s
->host_features
, VIRTIO_BLK_F_DISCARD
)) {
1309 uint32_t discard_granularity
= conf
->discard_granularity
;
1310 if (discard_granularity
== -1 || !s
->conf
.report_discard_granularity
) {
1311 discard_granularity
= blk_size
;
1313 virtio_stl_p(vdev
, &blkcfg
.max_discard_sectors
,
1314 s
->conf
.max_discard_sectors
);
1315 virtio_stl_p(vdev
, &blkcfg
.discard_sector_alignment
,
1316 discard_granularity
>> BDRV_SECTOR_BITS
);
1318 * We support only one segment per request since multiple segments
1319 * are not widely used and there are no userspace APIs that allow
1320 * applications to submit multiple segments in a single call.
1322 virtio_stl_p(vdev
, &blkcfg
.max_discard_seg
, 1);
1324 if (virtio_has_feature(s
->host_features
, VIRTIO_BLK_F_WRITE_ZEROES
)) {
1325 virtio_stl_p(vdev
, &blkcfg
.max_write_zeroes_sectors
,
1326 s
->conf
.max_write_zeroes_sectors
);
1327 blkcfg
.write_zeroes_may_unmap
= 1;
1328 virtio_stl_p(vdev
, &blkcfg
.max_write_zeroes_seg
, 1);
1330 if (bs
->bl
.zoned
!= BLK_Z_NONE
) {
1331 switch (bs
->bl
.zoned
) {
1333 blkcfg
.zoned
.model
= VIRTIO_BLK_Z_HM
;
1336 blkcfg
.zoned
.model
= VIRTIO_BLK_Z_HA
;
1339 g_assert_not_reached();
1342 virtio_stl_p(vdev
, &blkcfg
.zoned
.zone_sectors
,
1343 bs
->bl
.zone_size
/ 512);
1344 virtio_stl_p(vdev
, &blkcfg
.zoned
.max_active_zones
,
1345 bs
->bl
.max_active_zones
);
1346 virtio_stl_p(vdev
, &blkcfg
.zoned
.max_open_zones
,
1347 bs
->bl
.max_open_zones
);
1348 virtio_stl_p(vdev
, &blkcfg
.zoned
.write_granularity
, blk_size
);
1349 virtio_stl_p(vdev
, &blkcfg
.zoned
.max_append_sectors
,
1350 bs
->bl
.max_append_sectors
);
1352 blkcfg
.zoned
.model
= VIRTIO_BLK_Z_NONE
;
1354 memcpy(config
, &blkcfg
, s
->config_size
);
1357 static void virtio_blk_set_config(VirtIODevice
*vdev
, const uint8_t *config
)
1359 VirtIOBlock
*s
= VIRTIO_BLK(vdev
);
1360 struct virtio_blk_config blkcfg
;
1362 memcpy(&blkcfg
, config
, s
->config_size
);
1364 aio_context_acquire(blk_get_aio_context(s
->blk
));
1365 blk_set_enable_write_cache(s
->blk
, blkcfg
.wce
!= 0);
1366 aio_context_release(blk_get_aio_context(s
->blk
));
1369 static uint64_t virtio_blk_get_features(VirtIODevice
*vdev
, uint64_t features
,
1372 VirtIOBlock
*s
= VIRTIO_BLK(vdev
);
1374 /* Firstly sync all virtio-blk possible supported features */
1375 features
|= s
->host_features
;
1377 virtio_add_feature(&features
, VIRTIO_BLK_F_SEG_MAX
);
1378 virtio_add_feature(&features
, VIRTIO_BLK_F_GEOMETRY
);
1379 virtio_add_feature(&features
, VIRTIO_BLK_F_TOPOLOGY
);
1380 virtio_add_feature(&features
, VIRTIO_BLK_F_BLK_SIZE
);
1381 if (virtio_has_feature(features
, VIRTIO_F_VERSION_1
)) {
1382 if (virtio_has_feature(s
->host_features
, VIRTIO_BLK_F_SCSI
)) {
1383 error_setg(errp
, "Please set scsi=off for virtio-blk devices in order to use virtio 1.0");
1387 virtio_clear_feature(&features
, VIRTIO_F_ANY_LAYOUT
);
1388 virtio_add_feature(&features
, VIRTIO_BLK_F_SCSI
);
1391 if (blk_enable_write_cache(s
->blk
) ||
1392 (s
->conf
.x_enable_wce_if_config_wce
&&
1393 virtio_has_feature(features
, VIRTIO_BLK_F_CONFIG_WCE
))) {
1394 virtio_add_feature(&features
, VIRTIO_BLK_F_WCE
);
1396 if (!blk_is_writable(s
->blk
)) {
1397 virtio_add_feature(&features
, VIRTIO_BLK_F_RO
);
1399 if (s
->conf
.num_queues
> 1) {
1400 virtio_add_feature(&features
, VIRTIO_BLK_F_MQ
);
1406 static void virtio_blk_set_status(VirtIODevice
*vdev
, uint8_t status
)
1408 VirtIOBlock
*s
= VIRTIO_BLK(vdev
);
1410 if (!(status
& (VIRTIO_CONFIG_S_DRIVER
| VIRTIO_CONFIG_S_DRIVER_OK
))) {
1411 assert(!s
->dataplane_started
);
1414 if (!(status
& VIRTIO_CONFIG_S_DRIVER_OK
)) {
1418 /* A guest that supports VIRTIO_BLK_F_CONFIG_WCE must be able to send
1419 * cache flushes. Thus, the "auto writethrough" behavior is never
1420 * necessary for guests that support the VIRTIO_BLK_F_CONFIG_WCE feature.
1421 * Leaving it enabled would break the following sequence:
1423 * Guest started with "-drive cache=writethrough"
1424 * Guest sets status to 0
1425 * Guest sets DRIVER bit in status field
1426 * Guest reads host features (WCE=0, CONFIG_WCE=1)
1427 * Guest writes guest features (WCE=0, CONFIG_WCE=1)
1428 * Guest writes 1 to the WCE configuration field (writeback mode)
1429 * Guest sets DRIVER_OK bit in status field
1431 * s->blk would erroneously be placed in writethrough mode.
1433 if (!virtio_vdev_has_feature(vdev
, VIRTIO_BLK_F_CONFIG_WCE
)) {
1434 aio_context_acquire(blk_get_aio_context(s
->blk
));
1435 blk_set_enable_write_cache(s
->blk
,
1436 virtio_vdev_has_feature(vdev
,
1438 aio_context_release(blk_get_aio_context(s
->blk
));
1442 static void virtio_blk_save_device(VirtIODevice
*vdev
, QEMUFile
*f
)
1444 VirtIOBlock
*s
= VIRTIO_BLK(vdev
);
1445 VirtIOBlockReq
*req
= s
->rq
;
1448 qemu_put_sbyte(f
, 1);
1450 if (s
->conf
.num_queues
> 1) {
1451 qemu_put_be32(f
, virtio_get_queue_index(req
->vq
));
1454 qemu_put_virtqueue_element(vdev
, f
, &req
->elem
);
1457 qemu_put_sbyte(f
, 0);
1460 static int virtio_blk_load_device(VirtIODevice
*vdev
, QEMUFile
*f
,
1463 VirtIOBlock
*s
= VIRTIO_BLK(vdev
);
1465 while (qemu_get_sbyte(f
)) {
1466 unsigned nvqs
= s
->conf
.num_queues
;
1467 unsigned vq_idx
= 0;
1468 VirtIOBlockReq
*req
;
1471 vq_idx
= qemu_get_be32(f
);
1473 if (vq_idx
>= nvqs
) {
1474 error_report("Invalid virtqueue index in request list: %#x",
1480 req
= qemu_get_virtqueue_element(vdev
, f
, sizeof(VirtIOBlockReq
));
1481 virtio_blk_init_request(s
, virtio_get_queue(vdev
, vq_idx
), req
);
1489 static void virtio_resize_cb(void *opaque
)
1491 VirtIODevice
*vdev
= opaque
;
1493 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
1494 virtio_notify_config(vdev
);
1497 static void virtio_blk_resize(void *opaque
)
1499 VirtIODevice
*vdev
= VIRTIO_DEVICE(opaque
);
1502 * virtio_notify_config() needs to acquire the global mutex,
1503 * so it can't be called from an iothread. Instead, schedule
1504 * it to be run in the main context BH.
1506 aio_bh_schedule_oneshot(qemu_get_aio_context(), virtio_resize_cb
, vdev
);
1509 /* Suspend virtqueue ioeventfd processing during drain */
1510 static void virtio_blk_drained_begin(void *opaque
)
1512 VirtIOBlock
*s
= opaque
;
1513 VirtIODevice
*vdev
= VIRTIO_DEVICE(opaque
);
1514 AioContext
*ctx
= blk_get_aio_context(s
->conf
.conf
.blk
);
1516 if (!s
->dataplane
|| !s
->dataplane_started
) {
1520 for (uint16_t i
= 0; i
< s
->conf
.num_queues
; i
++) {
1521 VirtQueue
*vq
= virtio_get_queue(vdev
, i
);
1522 virtio_queue_aio_detach_host_notifier(vq
, ctx
);
1526 /* Resume virtqueue ioeventfd processing after drain */
1527 static void virtio_blk_drained_end(void *opaque
)
1529 VirtIOBlock
*s
= opaque
;
1530 VirtIODevice
*vdev
= VIRTIO_DEVICE(opaque
);
1531 AioContext
*ctx
= blk_get_aio_context(s
->conf
.conf
.blk
);
1533 if (!s
->dataplane
|| !s
->dataplane_started
) {
1537 for (uint16_t i
= 0; i
< s
->conf
.num_queues
; i
++) {
1538 VirtQueue
*vq
= virtio_get_queue(vdev
, i
);
1539 virtio_queue_aio_attach_host_notifier(vq
, ctx
);
1543 static const BlockDevOps virtio_block_ops
= {
1544 .resize_cb
= virtio_blk_resize
,
1545 .drained_begin
= virtio_blk_drained_begin
,
1546 .drained_end
= virtio_blk_drained_end
,
1549 static void virtio_blk_device_realize(DeviceState
*dev
, Error
**errp
)
1551 VirtIODevice
*vdev
= VIRTIO_DEVICE(dev
);
1552 VirtIOBlock
*s
= VIRTIO_BLK(dev
);
1553 VirtIOBlkConf
*conf
= &s
->conf
;
1557 if (!conf
->conf
.blk
) {
1558 error_setg(errp
, "drive property not set");
1561 if (!blk_is_inserted(conf
->conf
.blk
)) {
1562 error_setg(errp
, "Device needs media, but drive is empty");
1565 if (conf
->num_queues
== VIRTIO_BLK_AUTO_NUM_QUEUES
) {
1566 conf
->num_queues
= 1;
1568 if (!conf
->num_queues
) {
1569 error_setg(errp
, "num-queues property must be larger than 0");
1572 if (conf
->queue_size
<= 2) {
1573 error_setg(errp
, "invalid queue-size property (%" PRIu16
"), "
1574 "must be > 2", conf
->queue_size
);
1577 if (!is_power_of_2(conf
->queue_size
) ||
1578 conf
->queue_size
> VIRTQUEUE_MAX_SIZE
) {
1579 error_setg(errp
, "invalid queue-size property (%" PRIu16
"), "
1580 "must be a power of 2 (max %d)",
1581 conf
->queue_size
, VIRTQUEUE_MAX_SIZE
);
1585 if (!blkconf_apply_backend_options(&conf
->conf
,
1586 !blk_supports_write_perm(conf
->conf
.blk
),
1590 s
->original_wce
= blk_enable_write_cache(conf
->conf
.blk
);
1591 if (!blkconf_geometry(&conf
->conf
, NULL
, 65535, 255, 255, errp
)) {
1595 if (!blkconf_blocksizes(&conf
->conf
, errp
)) {
1599 BlockDriverState
*bs
= blk_bs(conf
->conf
.blk
);
1600 if (bs
->bl
.zoned
!= BLK_Z_NONE
) {
1601 virtio_add_feature(&s
->host_features
, VIRTIO_BLK_F_ZONED
);
1602 if (bs
->bl
.zoned
== BLK_Z_HM
) {
1603 virtio_clear_feature(&s
->host_features
, VIRTIO_BLK_F_DISCARD
);
1607 if (virtio_has_feature(s
->host_features
, VIRTIO_BLK_F_DISCARD
) &&
1608 (!conf
->max_discard_sectors
||
1609 conf
->max_discard_sectors
> BDRV_REQUEST_MAX_SECTORS
)) {
1610 error_setg(errp
, "invalid max-discard-sectors property (%" PRIu32
")"
1611 ", must be between 1 and %d",
1612 conf
->max_discard_sectors
, (int)BDRV_REQUEST_MAX_SECTORS
);
1616 if (virtio_has_feature(s
->host_features
, VIRTIO_BLK_F_WRITE_ZEROES
) &&
1617 (!conf
->max_write_zeroes_sectors
||
1618 conf
->max_write_zeroes_sectors
> BDRV_REQUEST_MAX_SECTORS
)) {
1619 error_setg(errp
, "invalid max-write-zeroes-sectors property (%" PRIu32
1620 "), must be between 1 and %d",
1621 conf
->max_write_zeroes_sectors
,
1622 (int)BDRV_REQUEST_MAX_SECTORS
);
1626 s
->config_size
= virtio_get_config_size(&virtio_blk_cfg_size_params
,
1628 virtio_init(vdev
, VIRTIO_ID_BLOCK
, s
->config_size
);
1630 s
->blk
= conf
->conf
.blk
;
1632 s
->sector_mask
= (s
->conf
.conf
.logical_block_size
/ BDRV_SECTOR_SIZE
) - 1;
1634 for (i
= 0; i
< conf
->num_queues
; i
++) {
1635 virtio_add_queue(vdev
, conf
->queue_size
, virtio_blk_handle_output
);
1637 qemu_coroutine_inc_pool_size(conf
->num_queues
* conf
->queue_size
/ 2);
1638 virtio_blk_data_plane_create(vdev
, conf
, &s
->dataplane
, &err
);
1640 error_propagate(errp
, err
);
1641 for (i
= 0; i
< conf
->num_queues
; i
++) {
1642 virtio_del_queue(vdev
, i
);
1644 virtio_cleanup(vdev
);
1649 * This must be after virtio_init() so virtio_blk_dma_restart_cb() gets
1650 * called after ->start_ioeventfd() has already set blk's AioContext.
1653 qdev_add_vm_change_state_handler(dev
, virtio_blk_dma_restart_cb
, s
);
1655 blk_ram_registrar_init(&s
->blk_ram_registrar
, s
->blk
);
1656 blk_set_dev_ops(s
->blk
, &virtio_block_ops
, s
);
1658 blk_iostatus_enable(s
->blk
);
1660 add_boot_device_lchs(dev
, "/disk@0,0",
1666 static void virtio_blk_device_unrealize(DeviceState
*dev
)
1668 VirtIODevice
*vdev
= VIRTIO_DEVICE(dev
);
1669 VirtIOBlock
*s
= VIRTIO_BLK(dev
);
1670 VirtIOBlkConf
*conf
= &s
->conf
;
1674 del_boot_device_lchs(dev
, "/disk@0,0");
1675 virtio_blk_data_plane_destroy(s
->dataplane
);
1676 s
->dataplane
= NULL
;
1677 for (i
= 0; i
< conf
->num_queues
; i
++) {
1678 virtio_del_queue(vdev
, i
);
1680 qemu_coroutine_dec_pool_size(conf
->num_queues
* conf
->queue_size
/ 2);
1681 blk_ram_registrar_destroy(&s
->blk_ram_registrar
);
1682 qemu_del_vm_change_state_handler(s
->change
);
1683 blockdev_mark_auto_del(s
->blk
);
1684 virtio_cleanup(vdev
);
1687 static void virtio_blk_instance_init(Object
*obj
)
1689 VirtIOBlock
*s
= VIRTIO_BLK(obj
);
1691 device_add_bootindex_property(obj
, &s
->conf
.conf
.bootindex
,
1692 "bootindex", "/disk@0,0",
1696 static const VMStateDescription vmstate_virtio_blk
= {
1697 .name
= "virtio-blk",
1698 .minimum_version_id
= 2,
1700 .fields
= (VMStateField
[]) {
1701 VMSTATE_VIRTIO_DEVICE
,
1702 VMSTATE_END_OF_LIST()
1706 static Property virtio_blk_properties
[] = {
1707 DEFINE_BLOCK_PROPERTIES(VirtIOBlock
, conf
.conf
),
1708 DEFINE_BLOCK_ERROR_PROPERTIES(VirtIOBlock
, conf
.conf
),
1709 DEFINE_BLOCK_CHS_PROPERTIES(VirtIOBlock
, conf
.conf
),
1710 DEFINE_PROP_STRING("serial", VirtIOBlock
, conf
.serial
),
1711 DEFINE_PROP_BIT64("config-wce", VirtIOBlock
, host_features
,
1712 VIRTIO_BLK_F_CONFIG_WCE
, true),
1714 DEFINE_PROP_BIT64("scsi", VirtIOBlock
, host_features
,
1715 VIRTIO_BLK_F_SCSI
, false),
1717 DEFINE_PROP_BIT("request-merging", VirtIOBlock
, conf
.request_merging
, 0,
1719 DEFINE_PROP_UINT16("num-queues", VirtIOBlock
, conf
.num_queues
,
1720 VIRTIO_BLK_AUTO_NUM_QUEUES
),
1721 DEFINE_PROP_UINT16("queue-size", VirtIOBlock
, conf
.queue_size
, 256),
1722 DEFINE_PROP_BOOL("seg-max-adjust", VirtIOBlock
, conf
.seg_max_adjust
, true),
1723 DEFINE_PROP_LINK("iothread", VirtIOBlock
, conf
.iothread
, TYPE_IOTHREAD
,
1725 DEFINE_PROP_BIT64("discard", VirtIOBlock
, host_features
,
1726 VIRTIO_BLK_F_DISCARD
, true),
1727 DEFINE_PROP_BOOL("report-discard-granularity", VirtIOBlock
,
1728 conf
.report_discard_granularity
, true),
1729 DEFINE_PROP_BIT64("write-zeroes", VirtIOBlock
, host_features
,
1730 VIRTIO_BLK_F_WRITE_ZEROES
, true),
1731 DEFINE_PROP_UINT32("max-discard-sectors", VirtIOBlock
,
1732 conf
.max_discard_sectors
, BDRV_REQUEST_MAX_SECTORS
),
1733 DEFINE_PROP_UINT32("max-write-zeroes-sectors", VirtIOBlock
,
1734 conf
.max_write_zeroes_sectors
, BDRV_REQUEST_MAX_SECTORS
),
1735 DEFINE_PROP_BOOL("x-enable-wce-if-config-wce", VirtIOBlock
,
1736 conf
.x_enable_wce_if_config_wce
, true),
1737 DEFINE_PROP_END_OF_LIST(),
1740 static void virtio_blk_class_init(ObjectClass
*klass
, void *data
)
1742 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1743 VirtioDeviceClass
*vdc
= VIRTIO_DEVICE_CLASS(klass
);
1745 device_class_set_props(dc
, virtio_blk_properties
);
1746 dc
->vmsd
= &vmstate_virtio_blk
;
1747 set_bit(DEVICE_CATEGORY_STORAGE
, dc
->categories
);
1748 vdc
->realize
= virtio_blk_device_realize
;
1749 vdc
->unrealize
= virtio_blk_device_unrealize
;
1750 vdc
->get_config
= virtio_blk_update_config
;
1751 vdc
->set_config
= virtio_blk_set_config
;
1752 vdc
->get_features
= virtio_blk_get_features
;
1753 vdc
->set_status
= virtio_blk_set_status
;
1754 vdc
->reset
= virtio_blk_reset
;
1755 vdc
->save
= virtio_blk_save_device
;
1756 vdc
->load
= virtio_blk_load_device
;
1757 vdc
->start_ioeventfd
= virtio_blk_data_plane_start
;
1758 vdc
->stop_ioeventfd
= virtio_blk_data_plane_stop
;
1761 static const TypeInfo virtio_blk_info
= {
1762 .name
= TYPE_VIRTIO_BLK
,
1763 .parent
= TYPE_VIRTIO_DEVICE
,
1764 .instance_size
= sizeof(VirtIOBlock
),
1765 .instance_init
= virtio_blk_instance_init
,
1766 .class_init
= virtio_blk_class_init
,
1769 static void virtio_register_types(void)
1771 type_register_static(&virtio_blk_info
);
1774 type_init(virtio_register_types
)