]> git.proxmox.com Git - mirror_qemu.git/blame - hw/block/virtio-blk.c
block: remove AioContext locking
[mirror_qemu.git] / hw / block / virtio-blk.c
CommitLineData
6e02c38d
AL
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
80c71a24 14#include "qemu/osdep.h"
433fcea4 15#include "qemu/defer-call.h"
da34e65c 16#include "qapi/error.h"
827805a2 17#include "qemu/iov.h"
0b8fa32f 18#include "qemu/module.h"
1de7afc9 19#include "qemu/error-report.h"
9b92fbcf 20#include "qemu/main-loop.h"
4f736650 21#include "block/block_int.h"
6d519a5f 22#include "trace.h"
0d09e41a 23#include "hw/block/block.h"
a27bd6c7 24#include "hw/qdev-properties.h"
9c17d615 25#include "sysemu/blockdev.h"
baf42268 26#include "sysemu/block-ram-registrar.h"
2f780b6a 27#include "sysemu/sysemu.h"
54d31236 28#include "sysemu/runstate.h"
0d09e41a 29#include "hw/virtio/virtio-blk.h"
52b53c04 30#include "dataplane/virtio-blk.h"
08e2c9f1 31#include "scsi/constants.h"
1063b8b1
CH
32#ifdef __linux__
33# include <scsi/sg.h>
34#endif
0d09e41a 35#include "hw/virtio/virtio-bus.h"
ca77ee28 36#include "migration/qemu-file-types.h"
783d1897 37#include "hw/virtio/virtio-access.h"
d9cf55a8 38#include "hw/virtio/virtio-blk-common.h"
4c41c69e 39#include "qemu/coroutine.h"
6e02c38d 40
d14dde5e
GK
41static void virtio_blk_init_request(VirtIOBlock *s, VirtQueue *vq,
42 VirtIOBlockReq *req)
671ec3f0 43{
671ec3f0 44 req->dev = s;
edaffd9f 45 req->vq = vq;
869d66af 46 req->qiov.size = 0;
2a6cdd6d 47 req->in_len = 0;
869d66af 48 req->next = NULL;
95f7142a 49 req->mr_next = NULL;
671ec3f0
FZ
50}
51
d14dde5e 52static void virtio_blk_free_request(VirtIOBlockReq *req)
671ec3f0 53{
1d29b5b0 54 g_free(req);
671ec3f0
FZ
55}
56
03de2f52 57static void virtio_blk_req_complete(VirtIOBlockReq *req, unsigned char status)
869a5c6d
AL
58{
59 VirtIOBlock *s = req->dev;
1cc91b7d 60 VirtIODevice *vdev = VIRTIO_DEVICE(s);
869a5c6d 61
a576ceac 62 trace_virtio_blk_req_complete(vdev, req, status);
6d519a5f 63
92e3c2a3 64 stb_p(&req->in->status, status);
7bd04a04
SH
65 iov_discard_undo(&req->inhdr_undo);
66 iov_discard_undo(&req->outhdr_undo);
edaffd9f 67 virtqueue_push(req->vq, &req->elem, req->in_len);
eb41cf78 68 if (s->dataplane_started && !s->dataplane_disabled) {
edaffd9f 69 virtio_blk_data_plane_notify(s->dataplane, req->vq);
03de2f52 70 } else {
edaffd9f 71 virtio_notify(vdev, req->vq);
03de2f52 72 }
bf4bd461
FZ
73}
74
f35d68f0 75static int virtio_blk_handle_rw_error(VirtIOBlockReq *req, int error,
00f639fb 76 bool is_read, bool acct_failed)
869a5c6d 77{
869a5c6d 78 VirtIOBlock *s = req->dev;
9a6719d5 79 BlockErrorAction action = blk_get_error_action(s->blk, is_read, error);
869a5c6d 80
a589569f 81 if (action == BLOCK_ERROR_ACTION_STOP) {
466138dc
FZ
82 /* Break the link as the next request is going to be parsed from the
83 * ring again. Otherwise we may end up doing a double completion! */
84 req->mr_next = NULL;
9c67f33f
SH
85
86 WITH_QEMU_LOCK_GUARD(&s->rq_lock) {
87 req->next = s->rq;
88 s->rq = req;
89 }
a589569f 90 } else if (action == BLOCK_ERROR_ACTION_REPORT) {
869a5c6d 91 virtio_blk_req_complete(req, VIRTIO_BLK_S_IOERR);
00f639fb
SG
92 if (acct_failed) {
93 block_acct_failed(blk_get_stats(s->blk), &req->acct);
94 }
671ec3f0 95 virtio_blk_free_request(req);
869a5c6d
AL
96 }
97
4be74634 98 blk_error_action(s->blk, action, is_read, error);
a589569f 99 return action != BLOCK_ERROR_ACTION_IGNORE;
869a5c6d
AL
100}
101
6e02c38d
AL
102static void virtio_blk_rw_complete(void *opaque, int ret)
103{
95f7142a 104 VirtIOBlockReq *next = opaque;
b9e413dd 105 VirtIOBlock *s = next->dev;
a576ceac 106 VirtIODevice *vdev = VIRTIO_DEVICE(s);
95f7142a
PL
107
108 while (next) {
109 VirtIOBlockReq *req = next;
110 next = req->mr_next;
a576ceac 111 trace_virtio_blk_rw_complete(vdev, req, ret);
95f7142a
PL
112
113 if (req->qiov.nalloc != -1) {
e61809ed 114 /* If nalloc is != -1 req->qiov is a local copy of the original
9bb192a4
YB
115 * external iovec. It was allocated in submit_requests to be
116 * able to merge requests. */
95f7142a
PL
117 qemu_iovec_destroy(&req->qiov);
118 }
6e02c38d 119
95f7142a 120 if (ret) {
bf4069fb 121 int p = virtio_ldl_p(VIRTIO_DEVICE(s), &req->out.type);
95f7142a 122 bool is_read = !(p & VIRTIO_BLK_T_OUT);
2a6cdd6d
PB
123 /* Note that memory may be dirtied on read failure. If the
124 * virtio request is not completed here, as is the case for
125 * BLOCK_ERROR_ACTION_STOP, the memory may not be copied
126 * correctly during live migration. While this is ugly,
127 * it is acceptable because the device is free to write to
128 * the memory until the request is completed (which will
129 * happen on the other side of the migration).
130 */
00f639fb 131 if (virtio_blk_handle_rw_error(req, -ret, is_read, true)) {
95f7142a
PL
132 continue;
133 }
134 }
6d519a5f 135
95f7142a 136 virtio_blk_req_complete(req, VIRTIO_BLK_S_OK);
bf4069fb 137 block_acct_done(blk_get_stats(s->blk), &req->acct);
95f7142a 138 virtio_blk_free_request(req);
6e02c38d 139 }
869a5c6d 140}
6e02c38d 141
aa659be3
CH
142static void virtio_blk_flush_complete(void *opaque, int ret)
143{
144 VirtIOBlockReq *req = opaque;
b9e413dd 145 VirtIOBlock *s = req->dev;
aa659be3 146
c1135913
SH
147 if (ret && virtio_blk_handle_rw_error(req, -ret, 0, true)) {
148 return;
8c269b54
KW
149 }
150
151 virtio_blk_req_complete(req, VIRTIO_BLK_S_OK);
9a6719d5 152 block_acct_done(blk_get_stats(s->blk), &req->acct);
671ec3f0 153 virtio_blk_free_request(req);
6e02c38d
AL
154}
155
37b06f8d
SG
156static void virtio_blk_discard_write_zeroes_complete(void *opaque, int ret)
157{
158 VirtIOBlockReq *req = opaque;
159 VirtIOBlock *s = req->dev;
160 bool is_write_zeroes = (virtio_ldl_p(VIRTIO_DEVICE(s), &req->out.type) &
161 ~VIRTIO_BLK_T_BARRIER) == VIRTIO_BLK_T_WRITE_ZEROES;
162
c1135913
SH
163 if (ret && virtio_blk_handle_rw_error(req, -ret, false, is_write_zeroes)) {
164 return;
37b06f8d
SG
165 }
166
167 virtio_blk_req_complete(req, VIRTIO_BLK_S_OK);
168 if (is_write_zeroes) {
169 block_acct_done(blk_get_stats(s->blk), &req->acct);
170 }
171 virtio_blk_free_request(req);
37b06f8d
SG
172}
173
1dc936aa
FZ
174#ifdef __linux__
175
176typedef struct {
177 VirtIOBlockReq *req;
178 struct sg_io_hdr hdr;
179} VirtIOBlockIoctlReq;
180
181static void virtio_blk_ioctl_complete(void *opaque, int status)
182{
183 VirtIOBlockIoctlReq *ioctl_req = opaque;
184 VirtIOBlockReq *req = ioctl_req->req;
9d456654
PB
185 VirtIOBlock *s = req->dev;
186 VirtIODevice *vdev = VIRTIO_DEVICE(s);
1dc936aa
FZ
187 struct virtio_scsi_inhdr *scsi;
188 struct sg_io_hdr *hdr;
189
190 scsi = (void *)req->elem.in_sg[req->elem.in_num - 2].iov_base;
191
192 if (status) {
193 status = VIRTIO_BLK_S_UNSUPP;
194 virtio_stl_p(vdev, &scsi->errors, 255);
195 goto out;
196 }
197
198 hdr = &ioctl_req->hdr;
199 /*
200 * From SCSI-Generic-HOWTO: "Some lower level drivers (e.g. ide-scsi)
201 * clear the masked_status field [hence status gets cleared too, see
202 * block/scsi_ioctl.c] even when a CHECK_CONDITION or COMMAND_TERMINATED
203 * status has occurred. However they do set DRIVER_SENSE in driver_status
204 * field. Also a (sb_len_wr > 0) indicates there is a sense buffer.
205 */
206 if (hdr->status == 0 && hdr->sb_len_wr > 0) {
207 hdr->status = CHECK_CONDITION;
208 }
209
210 virtio_stl_p(vdev, &scsi->errors,
211 hdr->status | (hdr->msg_status << 8) |
212 (hdr->host_status << 16) | (hdr->driver_status << 24));
213 virtio_stl_p(vdev, &scsi->residual, hdr->resid);
214 virtio_stl_p(vdev, &scsi->sense_len, hdr->sb_len_wr);
215 virtio_stl_p(vdev, &scsi->data_len, hdr->dxfer_len);
216
217out:
218 virtio_blk_req_complete(req, status);
219 virtio_blk_free_request(req);
220 g_free(ioctl_req);
221}
222
223#endif
224
edaffd9f 225static VirtIOBlockReq *virtio_blk_get_request(VirtIOBlock *s, VirtQueue *vq)
6e02c38d 226{
edaffd9f 227 VirtIOBlockReq *req = virtqueue_pop(vq, sizeof(VirtIOBlockReq));
6e02c38d 228
51b19ebe 229 if (req) {
edaffd9f 230 virtio_blk_init_request(s, vq, req);
6e02c38d 231 }
6e02c38d
AL
232 return req;
233}
234
75344fa4 235static int virtio_blk_handle_scsi_req(VirtIOBlockReq *req)
1063b8b1 236{
5a05cbee
FZ
237 int status = VIRTIO_BLK_S_OK;
238 struct virtio_scsi_inhdr *scsi = NULL;
75344fa4 239 VirtIOBlock *blk = req->dev;
bf4069fb
AR
240 VirtIODevice *vdev = VIRTIO_DEVICE(blk);
241 VirtQueueElement *elem = &req->elem;
783d1897 242
47ce9ef7 243#ifdef __linux__
1063b8b1 244 int i;
1dc936aa 245 VirtIOBlockIoctlReq *ioctl_req;
a209f461 246 BlockAIOCB *acb;
47ce9ef7 247#endif
1063b8b1
CH
248
249 /*
250 * We require at least one output segment each for the virtio_blk_outhdr
251 * and the SCSI command block.
252 *
253 * We also at least require the virtio_blk_inhdr, the virtio_scsi_inhdr
254 * and the sense buffer pointer in the input segments.
255 */
5a05cbee
FZ
256 if (elem->out_num < 2 || elem->in_num < 3) {
257 status = VIRTIO_BLK_S_IOERR;
258 goto fail;
1063b8b1
CH
259 }
260
261 /*
f34e73cd
PB
262 * The scsi inhdr is placed in the second-to-last input segment, just
263 * before the regular inhdr.
1063b8b1 264 */
5a05cbee 265 scsi = (void *)elem->in_sg[elem->in_num - 2].iov_base;
f34e73cd 266
bbe8bd4d 267 if (!virtio_has_feature(blk->host_features, VIRTIO_BLK_F_SCSI)) {
f34e73cd
PB
268 status = VIRTIO_BLK_S_UNSUPP;
269 goto fail;
1063b8b1
CH
270 }
271
272 /*
f34e73cd 273 * No support for bidirection commands yet.
1063b8b1 274 */
5a05cbee 275 if (elem->out_num > 2 && elem->in_num > 3) {
f34e73cd
PB
276 status = VIRTIO_BLK_S_UNSUPP;
277 goto fail;
278 }
1063b8b1 279
f34e73cd 280#ifdef __linux__
1dc936aa
FZ
281 ioctl_req = g_new0(VirtIOBlockIoctlReq, 1);
282 ioctl_req->req = req;
283 ioctl_req->hdr.interface_id = 'S';
284 ioctl_req->hdr.cmd_len = elem->out_sg[1].iov_len;
285 ioctl_req->hdr.cmdp = elem->out_sg[1].iov_base;
286 ioctl_req->hdr.dxfer_len = 0;
1063b8b1 287
5a05cbee 288 if (elem->out_num > 2) {
1063b8b1
CH
289 /*
290 * If there are more than the minimally required 2 output segments
291 * there is write payload starting from the third iovec.
292 */
1dc936aa
FZ
293 ioctl_req->hdr.dxfer_direction = SG_DXFER_TO_DEV;
294 ioctl_req->hdr.iovec_count = elem->out_num - 2;
1063b8b1 295
1dc936aa
FZ
296 for (i = 0; i < ioctl_req->hdr.iovec_count; i++) {
297 ioctl_req->hdr.dxfer_len += elem->out_sg[i + 2].iov_len;
298 }
1063b8b1 299
1dc936aa 300 ioctl_req->hdr.dxferp = elem->out_sg + 2;
1063b8b1 301
5a05cbee 302 } else if (elem->in_num > 3) {
1063b8b1
CH
303 /*
304 * If we have more than 3 input segments the guest wants to actually
305 * read data.
306 */
1dc936aa
FZ
307 ioctl_req->hdr.dxfer_direction = SG_DXFER_FROM_DEV;
308 ioctl_req->hdr.iovec_count = elem->in_num - 3;
309 for (i = 0; i < ioctl_req->hdr.iovec_count; i++) {
310 ioctl_req->hdr.dxfer_len += elem->in_sg[i].iov_len;
311 }
1063b8b1 312
1dc936aa 313 ioctl_req->hdr.dxferp = elem->in_sg;
1063b8b1
CH
314 } else {
315 /*
316 * Some SCSI commands don't actually transfer any data.
317 */
1dc936aa 318 ioctl_req->hdr.dxfer_direction = SG_DXFER_NONE;
1063b8b1
CH
319 }
320
1dc936aa
FZ
321 ioctl_req->hdr.sbp = elem->in_sg[elem->in_num - 3].iov_base;
322 ioctl_req->hdr.mx_sb_len = elem->in_sg[elem->in_num - 3].iov_len;
1063b8b1 323
a209f461
FZ
324 acb = blk_aio_ioctl(blk->blk, SG_IO, &ioctl_req->hdr,
325 virtio_blk_ioctl_complete, ioctl_req);
326 if (!acb) {
327 g_free(ioctl_req);
328 status = VIRTIO_BLK_S_UNSUPP;
329 goto fail;
330 }
1dc936aa 331 return -EINPROGRESS;
1063b8b1 332#else
f34e73cd
PB
333 abort();
334#endif
335
336fail:
337 /* Just put anything nonzero so that the ioctl fails in the guest. */
5a05cbee 338 if (scsi) {
783d1897 339 virtio_stl_p(vdev, &scsi->errors, 255);
5a05cbee
FZ
340 }
341 return status;
342}
343
344static void virtio_blk_handle_scsi(VirtIOBlockReq *req)
345{
346 int status;
347
75344fa4 348 status = virtio_blk_handle_scsi_req(req);
1dc936aa
FZ
349 if (status != -EINPROGRESS) {
350 virtio_blk_req_complete(req, status);
351 virtio_blk_free_request(req);
352 }
1063b8b1 353}
1063b8b1 354
baf42268 355static inline void submit_requests(VirtIOBlock *s, MultiReqBuffer *mrb,
95f7142a 356 int start, int num_reqs, int niov)
869a5c6d 357{
baf42268 358 BlockBackend *blk = s->blk;
95f7142a
PL
359 QEMUIOVector *qiov = &mrb->reqs[start]->qiov;
360 int64_t sector_num = mrb->reqs[start]->sector_num;
95f7142a 361 bool is_write = mrb->is_write;
baf42268 362 BdrvRequestFlags flags = 0;
95f7142a
PL
363
364 if (num_reqs > 1) {
365 int i;
366 struct iovec *tmp_iov = qiov->iov;
367 int tmp_niov = qiov->niov;
368
369 /* mrb->reqs[start]->qiov was initialized from external so we can't
b5772fdd 370 * modify it here. We need to initialize it locally and then add the
95f7142a
PL
371 * external iovecs. */
372 qemu_iovec_init(qiov, niov);
373
374 for (i = 0; i < tmp_niov; i++) {
375 qemu_iovec_add(qiov, tmp_iov[i].iov_base, tmp_iov[i].iov_len);
376 }
377
378 for (i = start + 1; i < start + num_reqs; i++) {
379 qemu_iovec_concat(qiov, &mrb->reqs[i]->qiov, 0,
380 mrb->reqs[i]->qiov.size);
381 mrb->reqs[i - 1]->mr_next = mrb->reqs[i];
95f7142a 382 }
95f7142a 383
a576ceac
SH
384 trace_virtio_blk_submit_multireq(VIRTIO_DEVICE(mrb->reqs[start]->dev),
385 mrb, start, num_reqs,
b5772fdd
EB
386 sector_num << BDRV_SECTOR_BITS,
387 qiov->size, is_write);
95f7142a
PL
388 block_acct_merge_done(blk_get_stats(blk),
389 is_write ? BLOCK_ACCT_WRITE : BLOCK_ACCT_READ,
390 num_reqs - 1);
391 }
91553dcc 392
baf42268
SH
393 if (blk_ram_registrar_ok(&s->blk_ram_registrar)) {
394 flags |= BDRV_REQ_REGISTERED_BUF;
395 }
396
95f7142a 397 if (is_write) {
baf42268
SH
398 blk_aio_pwritev(blk, sector_num << BDRV_SECTOR_BITS, qiov,
399 flags, virtio_blk_rw_complete,
400 mrb->reqs[start]);
95f7142a 401 } else {
baf42268
SH
402 blk_aio_preadv(blk, sector_num << BDRV_SECTOR_BITS, qiov,
403 flags, virtio_blk_rw_complete,
404 mrb->reqs[start]);
95f7142a
PL
405 }
406}
407
408static int multireq_compare(const void *a, const void *b)
409{
410 const VirtIOBlockReq *req1 = *(VirtIOBlockReq **)a,
411 *req2 = *(VirtIOBlockReq **)b;
412
413 /*
414 * Note that we can't simply subtract sector_num1 from sector_num2
415 * here as that could overflow the return value.
416 */
417 if (req1->sector_num > req2->sector_num) {
418 return 1;
419 } else if (req1->sector_num < req2->sector_num) {
420 return -1;
421 } else {
422 return 0;
423 }
424}
425
baf42268 426static void virtio_blk_submit_multireq(VirtIOBlock *s, MultiReqBuffer *mrb)
95f7142a
PL
427{
428 int i = 0, start = 0, num_reqs = 0, niov = 0, nb_sectors = 0;
5def6b80 429 uint32_t max_transfer;
95f7142a
PL
430 int64_t sector_num = 0;
431
432 if (mrb->num_reqs == 1) {
baf42268 433 submit_requests(s, mrb, 0, 1, -1);
95f7142a 434 mrb->num_reqs = 0;
c20fd872
CH
435 return;
436 }
437
5def6b80 438 max_transfer = blk_get_max_transfer(mrb->reqs[0]->dev->blk);
95f7142a
PL
439
440 qsort(mrb->reqs, mrb->num_reqs, sizeof(*mrb->reqs),
441 &multireq_compare);
442
443 for (i = 0; i < mrb->num_reqs; i++) {
444 VirtIOBlockReq *req = mrb->reqs[i];
445 if (num_reqs > 0) {
49cffbc6
GA
446 /*
447 * NOTE: We cannot merge the requests in below situations:
448 * 1. requests are not sequential
449 * 2. merge would exceed maximum number of IOVs
450 * 3. merge would exceed maximum transfer length of backend device
451 */
452 if (sector_num + nb_sectors != req->sector_num ||
baf42268 453 niov > blk_get_max_iov(s->blk) - req->qiov.niov ||
5def6b80
EB
454 req->qiov.size > max_transfer ||
455 nb_sectors > (max_transfer -
456 req->qiov.size) / BDRV_SECTOR_SIZE) {
baf42268 457 submit_requests(s, mrb, start, num_reqs, niov);
95f7142a 458 num_reqs = 0;
91553dcc
KW
459 }
460 }
95f7142a
PL
461
462 if (num_reqs == 0) {
463 sector_num = req->sector_num;
464 nb_sectors = niov = 0;
465 start = i;
466 }
467
468 nb_sectors += req->qiov.size / BDRV_SECTOR_SIZE;
469 niov += req->qiov.niov;
470 num_reqs++;
91553dcc 471 }
c20fd872 472
baf42268 473 submit_requests(s, mrb, start, num_reqs, niov);
95f7142a 474 mrb->num_reqs = 0;
91553dcc 475}
87b245db 476
c20fd872 477static void virtio_blk_handle_flush(VirtIOBlockReq *req, MultiReqBuffer *mrb)
aa659be3 478{
bf4069fb
AR
479 VirtIOBlock *s = req->dev;
480
481 block_acct_start(blk_get_stats(s->blk), &req->acct, 0,
5366d0c8 482 BLOCK_ACCT_FLUSH);
a597e79c 483
618fbb84
CH
484 /*
485 * Make sure all outstanding writes are posted to the backing device.
486 */
95f7142a 487 if (mrb->is_write && mrb->num_reqs > 0) {
baf42268 488 virtio_blk_submit_multireq(s, mrb);
95f7142a 489 }
bf4069fb 490 blk_aio_flush(s->blk, virtio_blk_flush_complete, req);
aa659be3
CH
491}
492
d0e14376
MA
493static bool virtio_blk_sect_range_ok(VirtIOBlock *dev,
494 uint64_t sector, size_t size)
495{
3c2daac0
MA
496 uint64_t nb_sectors = size >> BDRV_SECTOR_BITS;
497 uint64_t total_sectors;
498
75af1f34 499 if (nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
95f7142a
PL
500 return false;
501 }
d0e14376
MA
502 if (sector & dev->sector_mask) {
503 return false;
504 }
2a30307f 505 if (size % dev->conf.conf.logical_block_size) {
d0e14376
MA
506 return false;
507 }
4be74634 508 blk_get_geometry(dev->blk, &total_sectors);
3c2daac0
MA
509 if (sector > total_sectors || nb_sectors > total_sectors - sector) {
510 return false;
511 }
d0e14376
MA
512 return true;
513}
514
37b06f8d
SG
515static uint8_t virtio_blk_handle_discard_write_zeroes(VirtIOBlockReq *req,
516 struct virtio_blk_discard_write_zeroes *dwz_hdr, bool is_write_zeroes)
517{
518 VirtIOBlock *s = req->dev;
519 VirtIODevice *vdev = VIRTIO_DEVICE(s);
520 uint64_t sector;
521 uint32_t num_sectors, flags, max_sectors;
522 uint8_t err_status;
523 int bytes;
524
525 sector = virtio_ldq_p(vdev, &dwz_hdr->sector);
526 num_sectors = virtio_ldl_p(vdev, &dwz_hdr->num_sectors);
527 flags = virtio_ldl_p(vdev, &dwz_hdr->flags);
528 max_sectors = is_write_zeroes ? s->conf.max_write_zeroes_sectors :
529 s->conf.max_discard_sectors;
530
531 /*
532 * max_sectors is at most BDRV_REQUEST_MAX_SECTORS, this check
533 * make us sure that "num_sectors << BDRV_SECTOR_BITS" can fit in
534 * the integer variable.
535 */
536 if (unlikely(num_sectors > max_sectors)) {
537 err_status = VIRTIO_BLK_S_IOERR;
538 goto err;
539 }
540
541 bytes = num_sectors << BDRV_SECTOR_BITS;
542
543 if (unlikely(!virtio_blk_sect_range_ok(s, sector, bytes))) {
544 err_status = VIRTIO_BLK_S_IOERR;
545 goto err;
546 }
547
548 /*
549 * The device MUST set the status byte to VIRTIO_BLK_S_UNSUPP for discard
550 * and write zeroes commands if any unknown flag is set.
551 */
552 if (unlikely(flags & ~VIRTIO_BLK_WRITE_ZEROES_FLAG_UNMAP)) {
553 err_status = VIRTIO_BLK_S_UNSUPP;
554 goto err;
555 }
556
557 if (is_write_zeroes) { /* VIRTIO_BLK_T_WRITE_ZEROES */
558 int blk_aio_flags = 0;
559
560 if (flags & VIRTIO_BLK_WRITE_ZEROES_FLAG_UNMAP) {
561 blk_aio_flags |= BDRV_REQ_MAY_UNMAP;
562 }
563
564 block_acct_start(blk_get_stats(s->blk), &req->acct, bytes,
565 BLOCK_ACCT_WRITE);
566
567 blk_aio_pwrite_zeroes(s->blk, sector << BDRV_SECTOR_BITS,
568 bytes, blk_aio_flags,
569 virtio_blk_discard_write_zeroes_complete, req);
570 } else { /* VIRTIO_BLK_T_DISCARD */
571 /*
572 * The device MUST set the status byte to VIRTIO_BLK_S_UNSUPP for
573 * discard commands if the unmap flag is set.
574 */
575 if (unlikely(flags & VIRTIO_BLK_WRITE_ZEROES_FLAG_UNMAP)) {
576 err_status = VIRTIO_BLK_S_UNSUPP;
577 goto err;
578 }
579
580 blk_aio_pdiscard(s->blk, sector << BDRV_SECTOR_BITS, bytes,
581 virtio_blk_discard_write_zeroes_complete, req);
582 }
583
584 return VIRTIO_BLK_S_OK;
585
586err:
587 if (is_write_zeroes) {
588 block_acct_invalid(blk_get_stats(s->blk), BLOCK_ACCT_WRITE);
589 }
590 return err_status;
591}
592
4f736650
SL
593typedef struct ZoneCmdData {
594 VirtIOBlockReq *req;
595 struct iovec *in_iov;
596 unsigned in_num;
597 union {
598 struct {
599 unsigned int nr_zones;
600 BlockZoneDescriptor *zones;
601 } zone_report_data;
602 struct {
603 int64_t offset;
604 } zone_append_data;
605 };
606} ZoneCmdData;
607
608/*
609 * check zoned_request: error checking before issuing requests. If all checks
610 * passed, return true.
611 * append: true if only zone append requests issued.
612 */
613static bool check_zoned_request(VirtIOBlock *s, int64_t offset, int64_t len,
614 bool append, uint8_t *status) {
615 BlockDriverState *bs = blk_bs(s->blk);
616 int index;
617
618 if (!virtio_has_feature(s->host_features, VIRTIO_BLK_F_ZONED)) {
619 *status = VIRTIO_BLK_S_UNSUPP;
620 return false;
621 }
622
623 if (offset < 0 || len < 0 || len > (bs->total_sectors << BDRV_SECTOR_BITS)
624 || offset > (bs->total_sectors << BDRV_SECTOR_BITS) - len) {
625 *status = VIRTIO_BLK_S_ZONE_INVALID_CMD;
626 return false;
627 }
628
629 if (append) {
630 if (bs->bl.write_granularity) {
631 if ((offset % bs->bl.write_granularity) != 0) {
632 *status = VIRTIO_BLK_S_ZONE_UNALIGNED_WP;
633 return false;
634 }
635 }
636
637 index = offset / bs->bl.zone_size;
638 if (BDRV_ZT_IS_CONV(bs->wps->wp[index])) {
639 *status = VIRTIO_BLK_S_ZONE_INVALID_CMD;
640 return false;
641 }
642
643 if (len / 512 > bs->bl.max_append_sectors) {
644 if (bs->bl.max_append_sectors == 0) {
645 *status = VIRTIO_BLK_S_UNSUPP;
646 } else {
647 *status = VIRTIO_BLK_S_ZONE_INVALID_CMD;
648 }
649 return false;
650 }
651 }
652 return true;
653}
654
655static void virtio_blk_zone_report_complete(void *opaque, int ret)
656{
657 ZoneCmdData *data = opaque;
658 VirtIOBlockReq *req = data->req;
4f736650
SL
659 VirtIODevice *vdev = VIRTIO_DEVICE(req->dev);
660 struct iovec *in_iov = data->in_iov;
661 unsigned in_num = data->in_num;
662 int64_t zrp_size, n, j = 0;
663 int64_t nz = data->zone_report_data.nr_zones;
664 int8_t err_status = VIRTIO_BLK_S_OK;
665
4e92acf7 666 trace_virtio_blk_zone_report_complete(vdev, req, nz, ret);
4f736650
SL
667 if (ret) {
668 err_status = VIRTIO_BLK_S_ZONE_INVALID_CMD;
669 goto out;
670 }
671
672 struct virtio_blk_zone_report zrp_hdr = (struct virtio_blk_zone_report) {
673 .nr_zones = cpu_to_le64(nz),
674 };
675 zrp_size = sizeof(struct virtio_blk_zone_report)
676 + sizeof(struct virtio_blk_zone_descriptor) * nz;
677 n = iov_from_buf(in_iov, in_num, 0, &zrp_hdr, sizeof(zrp_hdr));
678 if (n != sizeof(zrp_hdr)) {
679 virtio_error(vdev, "Driver provided input buffer that is too small!");
680 err_status = VIRTIO_BLK_S_ZONE_INVALID_CMD;
681 goto out;
682 }
683
684 for (size_t i = sizeof(zrp_hdr); i < zrp_size;
685 i += sizeof(struct virtio_blk_zone_descriptor), ++j) {
686 struct virtio_blk_zone_descriptor desc =
687 (struct virtio_blk_zone_descriptor) {
688 .z_start = cpu_to_le64(data->zone_report_data.zones[j].start
689 >> BDRV_SECTOR_BITS),
690 .z_cap = cpu_to_le64(data->zone_report_data.zones[j].cap
691 >> BDRV_SECTOR_BITS),
692 .z_wp = cpu_to_le64(data->zone_report_data.zones[j].wp
693 >> BDRV_SECTOR_BITS),
694 };
695
696 switch (data->zone_report_data.zones[j].type) {
697 case BLK_ZT_CONV:
698 desc.z_type = VIRTIO_BLK_ZT_CONV;
699 break;
700 case BLK_ZT_SWR:
701 desc.z_type = VIRTIO_BLK_ZT_SWR;
702 break;
703 case BLK_ZT_SWP:
704 desc.z_type = VIRTIO_BLK_ZT_SWP;
705 break;
706 default:
707 g_assert_not_reached();
708 }
709
710 switch (data->zone_report_data.zones[j].state) {
711 case BLK_ZS_RDONLY:
712 desc.z_state = VIRTIO_BLK_ZS_RDONLY;
713 break;
714 case BLK_ZS_OFFLINE:
715 desc.z_state = VIRTIO_BLK_ZS_OFFLINE;
716 break;
717 case BLK_ZS_EMPTY:
718 desc.z_state = VIRTIO_BLK_ZS_EMPTY;
719 break;
720 case BLK_ZS_CLOSED:
721 desc.z_state = VIRTIO_BLK_ZS_CLOSED;
722 break;
723 case BLK_ZS_FULL:
724 desc.z_state = VIRTIO_BLK_ZS_FULL;
725 break;
726 case BLK_ZS_EOPEN:
727 desc.z_state = VIRTIO_BLK_ZS_EOPEN;
728 break;
729 case BLK_ZS_IOPEN:
730 desc.z_state = VIRTIO_BLK_ZS_IOPEN;
731 break;
732 case BLK_ZS_NOT_WP:
733 desc.z_state = VIRTIO_BLK_ZS_NOT_WP;
734 break;
735 default:
736 g_assert_not_reached();
737 }
738
739 /* TODO: it takes O(n^2) time complexity. Optimizations required. */
740 n = iov_from_buf(in_iov, in_num, i, &desc, sizeof(desc));
741 if (n != sizeof(desc)) {
742 virtio_error(vdev, "Driver provided input buffer "
743 "for descriptors that is too small!");
744 err_status = VIRTIO_BLK_S_ZONE_INVALID_CMD;
745 }
746 }
747
748out:
4f736650
SL
749 virtio_blk_req_complete(req, err_status);
750 virtio_blk_free_request(req);
4f736650
SL
751 g_free(data->zone_report_data.zones);
752 g_free(data);
753}
754
755static void virtio_blk_handle_zone_report(VirtIOBlockReq *req,
756 struct iovec *in_iov,
757 unsigned in_num)
758{
759 VirtIOBlock *s = req->dev;
760 VirtIODevice *vdev = VIRTIO_DEVICE(s);
761 unsigned int nr_zones;
762 ZoneCmdData *data;
763 int64_t zone_size, offset;
764 uint8_t err_status;
765
766 if (req->in_len < sizeof(struct virtio_blk_inhdr) +
767 sizeof(struct virtio_blk_zone_report) +
768 sizeof(struct virtio_blk_zone_descriptor)) {
769 virtio_error(vdev, "in buffer too small for zone report");
770 return;
771 }
772
773 /* start byte offset of the zone report */
774 offset = virtio_ldq_p(vdev, &req->out.sector) << BDRV_SECTOR_BITS;
775 if (!check_zoned_request(s, offset, 0, false, &err_status)) {
776 goto out;
777 }
778 nr_zones = (req->in_len - sizeof(struct virtio_blk_inhdr) -
779 sizeof(struct virtio_blk_zone_report)) /
780 sizeof(struct virtio_blk_zone_descriptor);
4e92acf7
SL
781 trace_virtio_blk_handle_zone_report(vdev, req,
782 offset >> BDRV_SECTOR_BITS, nr_zones);
4f736650
SL
783
784 zone_size = sizeof(BlockZoneDescriptor) * nr_zones;
785 data = g_malloc(sizeof(ZoneCmdData));
786 data->req = req;
787 data->in_iov = in_iov;
788 data->in_num = in_num;
789 data->zone_report_data.nr_zones = nr_zones;
790 data->zone_report_data.zones = g_malloc(zone_size),
791
792 blk_aio_zone_report(s->blk, offset, &data->zone_report_data.nr_zones,
793 data->zone_report_data.zones,
794 virtio_blk_zone_report_complete, data);
795 return;
796out:
797 virtio_blk_req_complete(req, err_status);
798 virtio_blk_free_request(req);
799}
800
801static void virtio_blk_zone_mgmt_complete(void *opaque, int ret)
802{
803 VirtIOBlockReq *req = opaque;
804 VirtIOBlock *s = req->dev;
4e92acf7 805 VirtIODevice *vdev = VIRTIO_DEVICE(s);
4f736650 806 int8_t err_status = VIRTIO_BLK_S_OK;
4e92acf7 807 trace_virtio_blk_zone_mgmt_complete(vdev, req,ret);
4f736650
SL
808
809 if (ret) {
810 err_status = VIRTIO_BLK_S_ZONE_INVALID_CMD;
811 }
812
4f736650
SL
813 virtio_blk_req_complete(req, err_status);
814 virtio_blk_free_request(req);
4f736650
SL
815}
816
817static int virtio_blk_handle_zone_mgmt(VirtIOBlockReq *req, BlockZoneOp op)
818{
819 VirtIOBlock *s = req->dev;
820 VirtIODevice *vdev = VIRTIO_DEVICE(s);
821 BlockDriverState *bs = blk_bs(s->blk);
822 int64_t offset = virtio_ldq_p(vdev, &req->out.sector) << BDRV_SECTOR_BITS;
823 uint64_t len;
824 uint64_t capacity = bs->total_sectors << BDRV_SECTOR_BITS;
825 uint8_t err_status = VIRTIO_BLK_S_OK;
826
827 uint32_t type = virtio_ldl_p(vdev, &req->out.type);
828 if (type == VIRTIO_BLK_T_ZONE_RESET_ALL) {
829 /* Entire drive capacity */
830 offset = 0;
831 len = capacity;
4e92acf7
SL
832 trace_virtio_blk_handle_zone_reset_all(vdev, req, 0,
833 bs->total_sectors);
4f736650
SL
834 } else {
835 if (bs->bl.zone_size > capacity - offset) {
836 /* The zoned device allows the last smaller zone. */
837 len = capacity - bs->bl.zone_size * (bs->bl.nr_zones - 1);
838 } else {
839 len = bs->bl.zone_size;
840 }
4e92acf7
SL
841 trace_virtio_blk_handle_zone_mgmt(vdev, req, op,
842 offset >> BDRV_SECTOR_BITS,
843 len >> BDRV_SECTOR_BITS);
4f736650
SL
844 }
845
846 if (!check_zoned_request(s, offset, len, false, &err_status)) {
847 goto out;
848 }
849
850 blk_aio_zone_mgmt(s->blk, op, offset, len,
851 virtio_blk_zone_mgmt_complete, req);
852
853 return 0;
854out:
855 virtio_blk_req_complete(req, err_status);
856 virtio_blk_free_request(req);
857 return err_status;
858}
859
860static void virtio_blk_zone_append_complete(void *opaque, int ret)
861{
862 ZoneCmdData *data = opaque;
863 VirtIOBlockReq *req = data->req;
4f736650
SL
864 VirtIODevice *vdev = VIRTIO_DEVICE(req->dev);
865 int64_t append_sector, n;
866 uint8_t err_status = VIRTIO_BLK_S_OK;
867
868 if (ret) {
869 err_status = VIRTIO_BLK_S_ZONE_INVALID_CMD;
870 goto out;
871 }
872
873 virtio_stq_p(vdev, &append_sector,
874 data->zone_append_data.offset >> BDRV_SECTOR_BITS);
875 n = iov_from_buf(data->in_iov, data->in_num, 0, &append_sector,
876 sizeof(append_sector));
877 if (n != sizeof(append_sector)) {
878 virtio_error(vdev, "Driver provided input buffer less than size of "
879 "append_sector");
880 err_status = VIRTIO_BLK_S_ZONE_INVALID_CMD;
881 goto out;
882 }
4e92acf7 883 trace_virtio_blk_zone_append_complete(vdev, req, append_sector, ret);
4f736650
SL
884
885out:
4f736650
SL
886 virtio_blk_req_complete(req, err_status);
887 virtio_blk_free_request(req);
4f736650
SL
888 g_free(data);
889}
890
891static int virtio_blk_handle_zone_append(VirtIOBlockReq *req,
892 struct iovec *out_iov,
893 struct iovec *in_iov,
894 uint64_t out_num,
895 unsigned in_num) {
896 VirtIOBlock *s = req->dev;
897 VirtIODevice *vdev = VIRTIO_DEVICE(s);
898 uint8_t err_status = VIRTIO_BLK_S_OK;
899
900 int64_t offset = virtio_ldq_p(vdev, &req->out.sector) << BDRV_SECTOR_BITS;
901 int64_t len = iov_size(out_iov, out_num);
902
4e92acf7 903 trace_virtio_blk_handle_zone_append(vdev, req, offset >> BDRV_SECTOR_BITS);
4f736650
SL
904 if (!check_zoned_request(s, offset, len, true, &err_status)) {
905 goto out;
906 }
907
908 ZoneCmdData *data = g_malloc(sizeof(ZoneCmdData));
909 data->req = req;
910 data->in_iov = in_iov;
911 data->in_num = in_num;
912 data->zone_append_data.offset = offset;
913 qemu_iovec_init_external(&req->qiov, out_iov, out_num);
52eb76f4
SL
914
915 block_acct_start(blk_get_stats(s->blk), &req->acct, len,
916 BLOCK_ACCT_ZONE_APPEND);
917
4f736650
SL
918 blk_aio_zone_append(s->blk, &data->zone_append_data.offset, &req->qiov, 0,
919 virtio_blk_zone_append_complete, data);
920 return 0;
921
922out:
4f736650
SL
923 virtio_blk_req_complete(req, err_status);
924 virtio_blk_free_request(req);
4f736650
SL
925 return err_status;
926}
927
20ea686a 928static int virtio_blk_handle_request(VirtIOBlockReq *req, MultiReqBuffer *mrb)
bc6694d4 929{
92e3c2a3 930 uint32_t type;
f897bf75 931 struct iovec *in_iov = req->elem.in_sg;
5636da76 932 struct iovec *out_iov = req->elem.out_sg;
f897bf75
SH
933 unsigned in_num = req->elem.in_num;
934 unsigned out_num = req->elem.out_num;
20ea686a
GK
935 VirtIOBlock *s = req->dev;
936 VirtIODevice *vdev = VIRTIO_DEVICE(s);
92e3c2a3 937
f897bf75 938 if (req->elem.out_num < 1 || req->elem.in_num < 1) {
20ea686a
GK
939 virtio_error(vdev, "virtio-blk missing headers");
940 return -1;
bc6694d4
KW
941 }
942
5636da76 943 if (unlikely(iov_to_buf(out_iov, out_num, 0, &req->out,
827805a2 944 sizeof(req->out)) != sizeof(req->out))) {
20ea686a
GK
945 virtio_error(vdev, "virtio-blk request outhdr too short");
946 return -1;
827805a2 947 }
ee17e848 948
7bd04a04
SH
949 iov_discard_front_undoable(&out_iov, &out_num, sizeof(req->out),
950 &req->outhdr_undo);
ee17e848 951
12048545 952 if (in_iov[in_num - 1].iov_len < sizeof(struct virtio_blk_inhdr)) {
20ea686a 953 virtio_error(vdev, "virtio-blk request inhdr too short");
7bd04a04 954 iov_discard_undo(&req->outhdr_undo);
20ea686a 955 return -1;
ee17e848
FZ
956 }
957
2a6cdd6d
PB
958 /* We always touch the last byte, so just see how big in_iov is. */
959 req->in_len = iov_size(in_iov, in_num);
ee17e848
FZ
960 req->in = (void *)in_iov[in_num - 1].iov_base
961 + in_iov[in_num - 1].iov_len
962 - sizeof(struct virtio_blk_inhdr);
7bd04a04
SH
963 iov_discard_back_undoable(in_iov, &in_num, sizeof(struct virtio_blk_inhdr),
964 &req->inhdr_undo);
bc6694d4 965
9a6719d5 966 type = virtio_ldl_p(vdev, &req->out.type);
92e3c2a3 967
95f7142a 968 /* VIRTIO_BLK_T_OUT defines the command direction. VIRTIO_BLK_T_BARRIER
631b22ea 969 * is an optional flag. Although a guest should not send this flag if
95f7142a
PL
970 * not negotiated we ignored it in the past. So keep ignoring it. */
971 switch (type & ~(VIRTIO_BLK_T_OUT | VIRTIO_BLK_T_BARRIER)) {
972 case VIRTIO_BLK_T_IN:
973 {
974 bool is_write = type & VIRTIO_BLK_T_OUT;
9a6719d5 975 req->sector_num = virtio_ldq_p(vdev, &req->out.sector);
95f7142a
PL
976
977 if (is_write) {
5636da76 978 qemu_iovec_init_external(&req->qiov, out_iov, out_num);
a576ceac 979 trace_virtio_blk_handle_write(vdev, req, req->sector_num,
95f7142a
PL
980 req->qiov.size / BDRV_SECTOR_SIZE);
981 } else {
982 qemu_iovec_init_external(&req->qiov, in_iov, in_num);
a576ceac 983 trace_virtio_blk_handle_read(vdev, req, req->sector_num,
95f7142a
PL
984 req->qiov.size / BDRV_SECTOR_SIZE);
985 }
986
9a6719d5 987 if (!virtio_blk_sect_range_ok(s, req->sector_num, req->qiov.size)) {
95f7142a 988 virtio_blk_req_complete(req, VIRTIO_BLK_S_IOERR);
9a6719d5 989 block_acct_invalid(blk_get_stats(s->blk),
01762e03 990 is_write ? BLOCK_ACCT_WRITE : BLOCK_ACCT_READ);
95f7142a 991 virtio_blk_free_request(req);
20ea686a 992 return 0;
95f7142a
PL
993 }
994
9a6719d5 995 block_acct_start(blk_get_stats(s->blk), &req->acct, req->qiov.size,
95f7142a
PL
996 is_write ? BLOCK_ACCT_WRITE : BLOCK_ACCT_READ);
997
998 /* merge would exceed maximum number of requests or IO direction
999 * changes */
1000 if (mrb->num_reqs > 0 && (mrb->num_reqs == VIRTIO_BLK_MAX_MERGE_REQS ||
c99495ac 1001 is_write != mrb->is_write ||
9a6719d5 1002 !s->conf.request_merging)) {
baf42268 1003 virtio_blk_submit_multireq(s, mrb);
95f7142a
PL
1004 }
1005
1006 assert(mrb->num_reqs < VIRTIO_BLK_MAX_MERGE_REQS);
1007 mrb->reqs[mrb->num_reqs++] = req;
1008 mrb->is_write = is_write;
1009 break;
1010 }
1011 case VIRTIO_BLK_T_FLUSH:
c20fd872 1012 virtio_blk_handle_flush(req, mrb);
95f7142a 1013 break;
4f736650
SL
1014 case VIRTIO_BLK_T_ZONE_REPORT:
1015 virtio_blk_handle_zone_report(req, in_iov, in_num);
1016 break;
1017 case VIRTIO_BLK_T_ZONE_OPEN:
1018 virtio_blk_handle_zone_mgmt(req, BLK_ZO_OPEN);
1019 break;
1020 case VIRTIO_BLK_T_ZONE_CLOSE:
1021 virtio_blk_handle_zone_mgmt(req, BLK_ZO_CLOSE);
1022 break;
1023 case VIRTIO_BLK_T_ZONE_FINISH:
1024 virtio_blk_handle_zone_mgmt(req, BLK_ZO_FINISH);
1025 break;
1026 case VIRTIO_BLK_T_ZONE_RESET:
1027 virtio_blk_handle_zone_mgmt(req, BLK_ZO_RESET);
1028 break;
1029 case VIRTIO_BLK_T_ZONE_RESET_ALL:
1030 virtio_blk_handle_zone_mgmt(req, BLK_ZO_RESET);
1031 break;
95f7142a 1032 case VIRTIO_BLK_T_SCSI_CMD:
bc6694d4 1033 virtio_blk_handle_scsi(req);
95f7142a
PL
1034 break;
1035 case VIRTIO_BLK_T_GET_ID:
1036 {
a8686a9b
MA
1037 /*
1038 * NB: per existing s/n string convention the string is
1039 * terminated by '\0' only when shorter than buffer.
1040 */
2a30307f 1041 const char *serial = s->conf.serial ? s->conf.serial : "";
a83ceea8
MM
1042 size_t size = MIN(strlen(serial) + 1,
1043 MIN(iov_size(in_iov, in_num),
1044 VIRTIO_BLK_ID_BYTES));
1045 iov_from_buf(in_iov, in_num, 0, serial, size);
2930b313 1046 virtio_blk_req_complete(req, VIRTIO_BLK_S_OK);
671ec3f0 1047 virtio_blk_free_request(req);
95f7142a
PL
1048 break;
1049 }
4f736650
SL
1050 case VIRTIO_BLK_T_ZONE_APPEND & ~VIRTIO_BLK_T_OUT:
1051 /*
1052 * Passing out_iov/out_num and in_iov/in_num is not safe
1053 * to access req->elem.out_sg directly because it may be
1054 * modified by virtio_blk_handle_request().
1055 */
1056 virtio_blk_handle_zone_append(req, out_iov, in_iov, out_num, in_num);
1057 break;
37b06f8d
SG
1058 /*
1059 * VIRTIO_BLK_T_DISCARD and VIRTIO_BLK_T_WRITE_ZEROES are defined with
1060 * VIRTIO_BLK_T_OUT flag set. We masked this flag in the switch statement,
1061 * so we must mask it for these requests, then we will check if it is set.
1062 */
1063 case VIRTIO_BLK_T_DISCARD & ~VIRTIO_BLK_T_OUT:
1064 case VIRTIO_BLK_T_WRITE_ZEROES & ~VIRTIO_BLK_T_OUT:
1065 {
1066 struct virtio_blk_discard_write_zeroes dwz_hdr;
1067 size_t out_len = iov_size(out_iov, out_num);
1068 bool is_write_zeroes = (type & ~VIRTIO_BLK_T_BARRIER) ==
1069 VIRTIO_BLK_T_WRITE_ZEROES;
1070 uint8_t err_status;
1071
1072 /*
1073 * Unsupported if VIRTIO_BLK_T_OUT is not set or the request contains
1074 * more than one segment.
1075 */
1076 if (unlikely(!(type & VIRTIO_BLK_T_OUT) ||
1077 out_len > sizeof(dwz_hdr))) {
1078 virtio_blk_req_complete(req, VIRTIO_BLK_S_UNSUPP);
1079 virtio_blk_free_request(req);
1080 return 0;
1081 }
1082
1083 if (unlikely(iov_to_buf(out_iov, out_num, 0, &dwz_hdr,
1084 sizeof(dwz_hdr)) != sizeof(dwz_hdr))) {
7bd04a04
SH
1085 iov_discard_undo(&req->inhdr_undo);
1086 iov_discard_undo(&req->outhdr_undo);
37b06f8d
SG
1087 virtio_error(vdev, "virtio-blk discard/write_zeroes header"
1088 " too short");
1089 return -1;
1090 }
1091
1092 err_status = virtio_blk_handle_discard_write_zeroes(req, &dwz_hdr,
1093 is_write_zeroes);
1094 if (err_status != VIRTIO_BLK_S_OK) {
1095 virtio_blk_req_complete(req, err_status);
1096 virtio_blk_free_request(req);
1097 }
1098
1099 break;
1100 }
95f7142a 1101 default:
9e72c450 1102 virtio_blk_req_complete(req, VIRTIO_BLK_S_UNSUPP);
671ec3f0 1103 virtio_blk_free_request(req);
bc6694d4 1104 }
20ea686a 1105 return 0;
bc6694d4
KW
1106}
1107
186b9691 1108void virtio_blk_handle_vq(VirtIOBlock *s, VirtQueue *vq)
6e02c38d 1109{
6e02c38d 1110 VirtIOBlockReq *req;
95f7142a 1111 MultiReqBuffer mrb = {};
d0435bc5 1112 bool suppress_notifications = virtio_queue_get_notification(vq);
6e02c38d 1113
ccee48aa 1114 defer_call_begin();
fc73548e 1115
9ef9d402 1116 do {
d0435bc5
SH
1117 if (suppress_notifications) {
1118 virtio_queue_set_notification(vq, 0);
1119 }
9ef9d402
SH
1120
1121 while ((req = virtio_blk_get_request(s, vq))) {
1122 if (virtio_blk_handle_request(req, &mrb)) {
1123 virtqueue_detach_element(req->vq, &req->elem, 0);
1124 virtio_blk_free_request(req);
1125 break;
1126 }
20ea686a 1127 }
9ef9d402 1128
d0435bc5
SH
1129 if (suppress_notifications) {
1130 virtio_queue_set_notification(vq, 1);
1131 }
9ef9d402 1132 } while (!virtio_queue_empty(vq));
91553dcc 1133
95f7142a 1134 if (mrb.num_reqs) {
baf42268 1135 virtio_blk_submit_multireq(s, &mrb);
95f7142a 1136 }
fc73548e 1137
ccee48aa 1138 defer_call_end();
6e02c38d
AL
1139}
1140
8a2fad57
MT
1141static void virtio_blk_handle_output(VirtIODevice *vdev, VirtQueue *vq)
1142{
1143 VirtIOBlock *s = (VirtIOBlock *)vdev;
1144
186b9691 1145 if (s->dataplane && !s->dataplane_started) {
8a2fad57
MT
1146 /* Some guests kick before setting VIRTIO_CONFIG_S_DRIVER_OK so start
1147 * dataplane here instead of waiting for .set_status().
1148 */
9ffe337c 1149 virtio_device_start_ioeventfd(vdev);
8a2fad57
MT
1150 if (!s->dataplane_disabled) {
1151 return;
1152 }
1153 }
186b9691 1154 virtio_blk_handle_vq(s, vq);
8a2fad57
MT
1155}
1156
a937f8e8 1157static void virtio_blk_dma_restart_bh(void *opaque)
869a5c6d 1158{
a937f8e8
SH
1159 VirtIOBlock *s = opaque;
1160
9c67f33f 1161 VirtIOBlockReq *req;
95f7142a 1162 MultiReqBuffer mrb = {};
869a5c6d 1163
9c67f33f
SH
1164 WITH_QEMU_LOCK_GUARD(&s->rq_lock) {
1165 req = s->rq;
1166 s->rq = NULL;
1167 }
869a5c6d
AL
1168
1169 while (req) {
1bdb176a 1170 VirtIOBlockReq *next = req->next;
20ea686a
GK
1171 if (virtio_blk_handle_request(req, &mrb)) {
1172 /* Device is now broken and won't do any processing until it gets
1173 * reset. Already queued requests will be lost: let's purge them.
1174 */
1175 while (req) {
1176 next = req->next;
1177 virtqueue_detach_element(req->vq, &req->elem, 0);
1178 virtio_blk_free_request(req);
1179 req = next;
1180 }
1181 break;
1182 }
1bdb176a 1183 req = next;
869a5c6d 1184 }
f1b52868 1185
95f7142a 1186 if (mrb.num_reqs) {
baf42268 1187 virtio_blk_submit_multireq(s, &mrb);
95f7142a 1188 }
7aa1c247 1189
a937f8e8
SH
1190 /* Paired with inc in virtio_blk_dma_restart_cb() */
1191 blk_dec_in_flight(s->conf.conf.blk);
7aa1c247
SL
1192}
1193
538f0497 1194static void virtio_blk_dma_restart_cb(void *opaque, bool running,
1dfb4dd9 1195 RunState state)
213189ab
MA
1196{
1197 VirtIOBlock *s = opaque;
1198
392808b4 1199 if (!running) {
213189ab 1200 return;
392808b4 1201 }
213189ab 1202
a937f8e8
SH
1203 /* Paired with dec in virtio_blk_dma_restart_bh() */
1204 blk_inc_in_flight(s->conf.conf.blk);
1205
1206 aio_bh_schedule_oneshot(blk_get_aio_context(s->conf.conf.blk),
1207 virtio_blk_dma_restart_bh, s);
213189ab
MA
1208}
1209
6e02c38d
AL
1210static void virtio_blk_reset(VirtIODevice *vdev)
1211{
1cc91b7d 1212 VirtIOBlock *s = VIRTIO_BLK(vdev);
26307f6a 1213 VirtIOBlockReq *req;
392808b4 1214
9c67f33f
SH
1215 /* Dataplane has stopped... */
1216 assert(!s->dataplane_started);
1217
1218 /* ...but requests may still be in flight. */
6e40b3bf
AY
1219 blk_drain(s->blk);
1220
26307f6a
FZ
1221 /* We drop queued requests after blk_drain() because blk_drain() itself can
1222 * produce them. */
9c67f33f
SH
1223 WITH_QEMU_LOCK_GUARD(&s->rq_lock) {
1224 while (s->rq) {
1225 req = s->rq;
1226 s->rq = req->next;
26307f6a 1227
9c67f33f
SH
1228 /* No other threads can access req->vq here */
1229 virtqueue_detach_element(req->vq, &req->elem, 0);
1230
1231 virtio_blk_free_request(req);
1232 }
1233 }
6e40b3bf 1234
4be74634 1235 blk_set_enable_write_cache(s->blk, s->original_wce);
6e02c38d
AL
1236}
1237
bf011293 1238/* coalesce internal state, copy to pci i/o region 0
1239 */
6e02c38d
AL
1240static void virtio_blk_update_config(VirtIODevice *vdev, uint8_t *config)
1241{
1cc91b7d 1242 VirtIOBlock *s = VIRTIO_BLK(vdev);
2a30307f 1243 BlockConf *conf = &s->conf.conf;
4f736650 1244 BlockDriverState *bs = blk_bs(s->blk);
6e02c38d
AL
1245 struct virtio_blk_config blkcfg;
1246 uint64_t capacity;
17d0bc01 1247 int64_t length;
f7516731 1248 int blk_size = conf->logical_block_size;
6e02c38d 1249
4be74634 1250 blk_get_geometry(s->blk, &capacity);
5c5dafdc 1251 memset(&blkcfg, 0, sizeof(blkcfg));
783d1897 1252 virtio_stq_p(vdev, &blkcfg.capacity, capacity);
1bf8a989
DP
1253 virtio_stl_p(vdev, &blkcfg.seg_max,
1254 s->conf.seg_max_adjust ? s->conf.queue_size - 2 : 128 - 2);
907eb3e5 1255 virtio_stw_p(vdev, &blkcfg.geometry.cylinders, conf->cyls);
783d1897 1256 virtio_stl_p(vdev, &blkcfg.blk_size, blk_size);
f7516731 1257 virtio_stw_p(vdev, &blkcfg.min_io_size, conf->min_io_size / blk_size);
6abee260 1258 virtio_stl_p(vdev, &blkcfg.opt_io_size, conf->opt_io_size / blk_size);
907eb3e5 1259 blkcfg.geometry.heads = conf->heads;
136be99e
CB
1260 /*
1261 * We must ensure that the block device capacity is a multiple of
e03ba136 1262 * the logical block size. If that is not the case, let's use
136be99e
CB
1263 * sector_mask to adopt the geometry to have a correct picture.
1264 * For those devices where the capacity is ok for the given geometry
e03ba136 1265 * we don't touch the sector value of the geometry, since some devices
136be99e
CB
1266 * (like s390 dasd) need a specific value. Here the capacity is already
1267 * cyls*heads*secs*blk_size and the sector value is not block size
1268 * divided by 512 - instead it is the amount of blk_size blocks
1269 * per track (cylinder).
1270 */
17d0bc01
SH
1271 length = blk_getlength(s->blk);
1272 if (length > 0 && length / conf->heads / conf->secs % blk_size) {
907eb3e5 1273 blkcfg.geometry.sectors = conf->secs & ~s->sector_mask;
136be99e 1274 } else {
907eb3e5 1275 blkcfg.geometry.sectors = conf->secs;
136be99e 1276 }
c7085da7 1277 blkcfg.size_max = 0;
f7516731 1278 blkcfg.physical_block_exp = get_physical_block_exp(conf);
9752c371 1279 blkcfg.alignment_offset = 0;
4be74634 1280 blkcfg.wce = blk_enable_write_cache(s->blk);
2f270590 1281 virtio_stw_p(vdev, &blkcfg.num_queues, s->conf.num_queues);
37b06f8d 1282 if (virtio_has_feature(s->host_features, VIRTIO_BLK_F_DISCARD)) {
fb0b154c
AO
1283 uint32_t discard_granularity = conf->discard_granularity;
1284 if (discard_granularity == -1 || !s->conf.report_discard_granularity) {
1285 discard_granularity = blk_size;
1286 }
37b06f8d
SG
1287 virtio_stl_p(vdev, &blkcfg.max_discard_sectors,
1288 s->conf.max_discard_sectors);
1289 virtio_stl_p(vdev, &blkcfg.discard_sector_alignment,
fb0b154c 1290 discard_granularity >> BDRV_SECTOR_BITS);
37b06f8d
SG
1291 /*
1292 * We support only one segment per request since multiple segments
1293 * are not widely used and there are no userspace APIs that allow
1294 * applications to submit multiple segments in a single call.
1295 */
1296 virtio_stl_p(vdev, &blkcfg.max_discard_seg, 1);
1297 }
1298 if (virtio_has_feature(s->host_features, VIRTIO_BLK_F_WRITE_ZEROES)) {
1299 virtio_stl_p(vdev, &blkcfg.max_write_zeroes_sectors,
1300 s->conf.max_write_zeroes_sectors);
1301 blkcfg.write_zeroes_may_unmap = 1;
1302 virtio_stl_p(vdev, &blkcfg.max_write_zeroes_seg, 1);
1303 }
4f736650
SL
1304 if (bs->bl.zoned != BLK_Z_NONE) {
1305 switch (bs->bl.zoned) {
1306 case BLK_Z_HM:
1307 blkcfg.zoned.model = VIRTIO_BLK_Z_HM;
1308 break;
1309 case BLK_Z_HA:
1310 blkcfg.zoned.model = VIRTIO_BLK_Z_HA;
1311 break;
1312 default:
1313 g_assert_not_reached();
1314 }
1315
1316 virtio_stl_p(vdev, &blkcfg.zoned.zone_sectors,
1317 bs->bl.zone_size / 512);
1318 virtio_stl_p(vdev, &blkcfg.zoned.max_active_zones,
1319 bs->bl.max_active_zones);
1320 virtio_stl_p(vdev, &blkcfg.zoned.max_open_zones,
1321 bs->bl.max_open_zones);
1322 virtio_stl_p(vdev, &blkcfg.zoned.write_granularity, blk_size);
1323 virtio_stl_p(vdev, &blkcfg.zoned.max_append_sectors,
1324 bs->bl.max_append_sectors);
1325 } else {
1326 blkcfg.zoned.model = VIRTIO_BLK_Z_NONE;
1327 }
20764be0 1328 memcpy(config, &blkcfg, s->config_size);
6e02c38d
AL
1329}
1330
13e3dce0
PB
1331static void virtio_blk_set_config(VirtIODevice *vdev, const uint8_t *config)
1332{
1cc91b7d 1333 VirtIOBlock *s = VIRTIO_BLK(vdev);
13e3dce0
PB
1334 struct virtio_blk_config blkcfg;
1335
20764be0 1336 memcpy(&blkcfg, config, s->config_size);
6d7e73d6 1337
4be74634 1338 blk_set_enable_write_cache(s->blk, blkcfg.wce != 0);
13e3dce0
PB
1339}
1340
9d5b731d
JW
1341static uint64_t virtio_blk_get_features(VirtIODevice *vdev, uint64_t features,
1342 Error **errp)
6e02c38d 1343{
1cc91b7d 1344 VirtIOBlock *s = VIRTIO_BLK(vdev);
1063b8b1 1345
bbe8bd4d
SG
1346 /* Firstly sync all virtio-blk possible supported features */
1347 features |= s->host_features;
1348
0cd09c3a
CH
1349 virtio_add_feature(&features, VIRTIO_BLK_F_SEG_MAX);
1350 virtio_add_feature(&features, VIRTIO_BLK_F_GEOMETRY);
1351 virtio_add_feature(&features, VIRTIO_BLK_F_TOPOLOGY);
1352 virtio_add_feature(&features, VIRTIO_BLK_F_BLK_SIZE);
95129d6f 1353 if (virtio_has_feature(features, VIRTIO_F_VERSION_1)) {
bbe8bd4d 1354 if (virtio_has_feature(s->host_features, VIRTIO_BLK_F_SCSI)) {
efb8206c
JW
1355 error_setg(errp, "Please set scsi=off for virtio-blk devices in order to use virtio 1.0");
1356 return 0;
1357 }
efb8206c 1358 } else {
c9b11f97 1359 virtio_clear_feature(&features, VIRTIO_F_ANY_LAYOUT);
efb8206c
JW
1360 virtio_add_feature(&features, VIRTIO_BLK_F_SCSI);
1361 }
aa659be3 1362
5f258577
EY
1363 if (blk_enable_write_cache(s->blk) ||
1364 (s->conf.x_enable_wce_if_config_wce &&
1365 virtio_has_feature(features, VIRTIO_BLK_F_CONFIG_WCE))) {
0cd09c3a 1366 virtio_add_feature(&features, VIRTIO_BLK_F_WCE);
4be74634 1367 }
86b1cf32 1368 if (!blk_is_writable(s->blk)) {
0cd09c3a 1369 virtio_add_feature(&features, VIRTIO_BLK_F_RO);
4be74634 1370 }
2f270590
SH
1371 if (s->conf.num_queues > 1) {
1372 virtio_add_feature(&features, VIRTIO_BLK_F_MQ);
1373 }
1063b8b1
CH
1374
1375 return features;
6e02c38d
AL
1376}
1377
9315cbfd
PB
1378static void virtio_blk_set_status(VirtIODevice *vdev, uint8_t status)
1379{
1cc91b7d 1380 VirtIOBlock *s = VIRTIO_BLK(vdev);
9315cbfd 1381
9ffe337c
PB
1382 if (!(status & (VIRTIO_CONFIG_S_DRIVER | VIRTIO_CONFIG_S_DRIVER_OK))) {
1383 assert(!s->dataplane_started);
392808b4 1384 }
392808b4 1385
9315cbfd
PB
1386 if (!(status & VIRTIO_CONFIG_S_DRIVER_OK)) {
1387 return;
1388 }
1389
ef5bc962
PB
1390 /* A guest that supports VIRTIO_BLK_F_CONFIG_WCE must be able to send
1391 * cache flushes. Thus, the "auto writethrough" behavior is never
1392 * necessary for guests that support the VIRTIO_BLK_F_CONFIG_WCE feature.
1393 * Leaving it enabled would break the following sequence:
1394 *
1395 * Guest started with "-drive cache=writethrough"
1396 * Guest sets status to 0
1397 * Guest sets DRIVER bit in status field
1398 * Guest reads host features (WCE=0, CONFIG_WCE=1)
1399 * Guest writes guest features (WCE=0, CONFIG_WCE=1)
1400 * Guest writes 1 to the WCE configuration field (writeback mode)
1401 * Guest sets DRIVER_OK bit in status field
1402 *
4be74634 1403 * s->blk would erroneously be placed in writethrough mode.
ef5bc962 1404 */
95129d6f 1405 if (!virtio_vdev_has_feature(vdev, VIRTIO_BLK_F_CONFIG_WCE)) {
4be74634 1406 blk_set_enable_write_cache(s->blk,
95129d6f
CH
1407 virtio_vdev_has_feature(vdev,
1408 VIRTIO_BLK_F_WCE));
ef5bc962 1409 }
9315cbfd
PB
1410}
1411
b2b295a7
GK
1412static void virtio_blk_save_device(VirtIODevice *vdev, QEMUFile *f)
1413{
1414 VirtIOBlock *s = VIRTIO_BLK(vdev);
b2b295a7 1415
9c67f33f
SH
1416 WITH_QEMU_LOCK_GUARD(&s->rq_lock) {
1417 VirtIOBlockReq *req = s->rq;
30d8bf6d 1418
9c67f33f
SH
1419 while (req) {
1420 qemu_put_sbyte(f, 1);
30d8bf6d 1421
9c67f33f
SH
1422 if (s->conf.num_queues > 1) {
1423 qemu_put_be32(f, virtio_get_queue_index(req->vq));
1424 }
1425
1426 qemu_put_virtqueue_element(vdev, f, &req->elem);
1427 req = req->next;
1428 }
869a5c6d 1429 }
9c67f33f 1430
869a5c6d 1431 qemu_put_sbyte(f, 0);
6e02c38d
AL
1432}
1433
b2b295a7
GK
1434static int virtio_blk_load_device(VirtIODevice *vdev, QEMUFile *f,
1435 int version_id)
1436{
1437 VirtIOBlock *s = VIRTIO_BLK(vdev);
2a633c46 1438
869a5c6d 1439 while (qemu_get_sbyte(f)) {
30d8bf6d
SH
1440 unsigned nvqs = s->conf.num_queues;
1441 unsigned vq_idx = 0;
ab281c17 1442 VirtIOBlockReq *req;
30d8bf6d
SH
1443
1444 if (nvqs > 1) {
1445 vq_idx = qemu_get_be32(f);
1446
1447 if (vq_idx >= nvqs) {
1448 error_report("Invalid virtqueue index in request list: %#x",
1449 vq_idx);
1450 return -EINVAL;
1451 }
1452 }
1453
8607f5c3 1454 req = qemu_get_virtqueue_element(vdev, f, sizeof(VirtIOBlockReq));
30d8bf6d 1455 virtio_blk_init_request(s, virtio_get_queue(vdev, vq_idx), req);
9c67f33f
SH
1456
1457 WITH_QEMU_LOCK_GUARD(&s->rq_lock) {
1458 req->next = s->rq;
1459 s->rq = req;
1460 }
869a5c6d 1461 }
6e02c38d
AL
1462
1463 return 0;
1464}
1465
9b92fbcf
SL
1466static void virtio_resize_cb(void *opaque)
1467{
1468 VirtIODevice *vdev = opaque;
1469
1470 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
1471 virtio_notify_config(vdev);
1472}
1473
145feb17 1474static void virtio_blk_resize(void *opaque)
e5051fc7 1475{
1cc91b7d 1476 VirtIODevice *vdev = VIRTIO_DEVICE(opaque);
e5051fc7 1477
9b92fbcf
SL
1478 /*
1479 * virtio_notify_config() needs to acquire the global mutex,
1480 * so it can't be called from an iothread. Instead, schedule
1481 * it to be run in the main context BH.
1482 */
1483 aio_bh_schedule_oneshot(qemu_get_aio_context(), virtio_resize_cb, vdev);
e5051fc7
CH
1484}
1485
1665d932
SH
1486/* Suspend virtqueue ioeventfd processing during drain */
1487static void virtio_blk_drained_begin(void *opaque)
1488{
1489 VirtIOBlock *s = opaque;
1490 VirtIODevice *vdev = VIRTIO_DEVICE(opaque);
1491 AioContext *ctx = blk_get_aio_context(s->conf.conf.blk);
1492
1493 if (!s->dataplane || !s->dataplane_started) {
1494 return;
1495 }
1496
1497 for (uint16_t i = 0; i < s->conf.num_queues; i++) {
1498 VirtQueue *vq = virtio_get_queue(vdev, i);
1499 virtio_queue_aio_detach_host_notifier(vq, ctx);
1500 }
1501}
1502
1503/* Resume virtqueue ioeventfd processing after drain */
1504static void virtio_blk_drained_end(void *opaque)
1505{
1506 VirtIOBlock *s = opaque;
1507 VirtIODevice *vdev = VIRTIO_DEVICE(opaque);
1508 AioContext *ctx = blk_get_aio_context(s->conf.conf.blk);
1509
1510 if (!s->dataplane || !s->dataplane_started) {
1511 return;
1512 }
1513
1514 for (uint16_t i = 0; i < s->conf.num_queues; i++) {
1515 VirtQueue *vq = virtio_get_queue(vdev, i);
1516 virtio_queue_aio_attach_host_notifier(vq, ctx);
1517 }
1518}
1519
0e49de52 1520static const BlockDevOps virtio_block_ops = {
1665d932
SH
1521 .resize_cb = virtio_blk_resize,
1522 .drained_begin = virtio_blk_drained_begin,
1523 .drained_end = virtio_blk_drained_end,
0e49de52
MA
1524};
1525
75884afd 1526static void virtio_blk_device_realize(DeviceState *dev, Error **errp)
1c028ddf 1527{
75884afd 1528 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
179b417e 1529 VirtIOBlock *s = VIRTIO_BLK(dev);
2a30307f 1530 VirtIOBlkConf *conf = &s->conf;
3ffeeef7 1531 Error *err = NULL;
2f270590 1532 unsigned i;
cf21e106 1533
4be74634 1534 if (!conf->conf.blk) {
75884afd
AF
1535 error_setg(errp, "drive property not set");
1536 return;
d75d25e3 1537 }
4be74634 1538 if (!blk_is_inserted(conf->conf.blk)) {
75884afd
AF
1539 error_setg(errp, "Device needs media, but drive is empty");
1540 return;
98f28ad7 1541 }
9445e1e1
SH
1542 if (conf->num_queues == VIRTIO_BLK_AUTO_NUM_QUEUES) {
1543 conf->num_queues = 1;
1544 }
2f270590
SH
1545 if (!conf->num_queues) {
1546 error_setg(errp, "num-queues property must be larger than 0");
1547 return;
1548 }
1bf8a989
DP
1549 if (conf->queue_size <= 2) {
1550 error_setg(errp, "invalid queue-size property (%" PRIu16 "), "
1551 "must be > 2", conf->queue_size);
1552 return;
1553 }
6040aedd
MK
1554 if (!is_power_of_2(conf->queue_size) ||
1555 conf->queue_size > VIRTQUEUE_MAX_SIZE) {
1556 error_setg(errp, "invalid queue-size property (%" PRIu16 "), "
1557 "must be a power of 2 (max %d)",
1558 conf->queue_size, VIRTQUEUE_MAX_SIZE);
1559 return;
1560 }
d75d25e3 1561
ceff3e1f 1562 if (!blkconf_apply_backend_options(&conf->conf,
86b1cf32
KW
1563 !blk_supports_write_perm(conf->conf.blk),
1564 true, errp)) {
a17c17a2
KW
1565 return;
1566 }
4be74634 1567 s->original_wce = blk_enable_write_cache(conf->conf.blk);
ceff3e1f 1568 if (!blkconf_geometry(&conf->conf, NULL, 65535, 255, 255, errp)) {
75884afd 1569 return;
b7eb0c9f 1570 }
ceff3e1f 1571
c56ee92f 1572 if (!blkconf_blocksizes(&conf->conf, errp)) {
0a75b60c
MK
1573 return;
1574 }
1575
4f736650
SL
1576 BlockDriverState *bs = blk_bs(conf->conf.blk);
1577 if (bs->bl.zoned != BLK_Z_NONE) {
1578 virtio_add_feature(&s->host_features, VIRTIO_BLK_F_ZONED);
1579 if (bs->bl.zoned == BLK_Z_HM) {
1580 virtio_clear_feature(&s->host_features, VIRTIO_BLK_F_DISCARD);
1581 }
1582 }
1583
37b06f8d
SG
1584 if (virtio_has_feature(s->host_features, VIRTIO_BLK_F_DISCARD) &&
1585 (!conf->max_discard_sectors ||
1586 conf->max_discard_sectors > BDRV_REQUEST_MAX_SECTORS)) {
1587 error_setg(errp, "invalid max-discard-sectors property (%" PRIu32 ")"
1588 ", must be between 1 and %d",
1589 conf->max_discard_sectors, (int)BDRV_REQUEST_MAX_SECTORS);
1590 return;
1591 }
1592
1593 if (virtio_has_feature(s->host_features, VIRTIO_BLK_F_WRITE_ZEROES) &&
1594 (!conf->max_write_zeroes_sectors ||
1595 conf->max_write_zeroes_sectors > BDRV_REQUEST_MAX_SECTORS)) {
1596 error_setg(errp, "invalid max-write-zeroes-sectors property (%" PRIu32
1597 "), must be between 1 and %d",
1598 conf->max_write_zeroes_sectors,
1599 (int)BDRV_REQUEST_MAX_SECTORS);
1600 return;
1601 }
1602
d9cf55a8 1603 s->config_size = virtio_get_config_size(&virtio_blk_cfg_size_params,
d74c30c8 1604 s->host_features);
3857cd5c 1605 virtio_init(vdev, VIRTIO_ID_BLOCK, s->config_size);
6e02c38d 1606
9c67f33f
SH
1607 qemu_mutex_init(&s->rq_lock);
1608
4be74634 1609 s->blk = conf->conf.blk;
869a5c6d 1610 s->rq = NULL;
2a30307f 1611 s->sector_mask = (s->conf.conf.logical_block_size / BDRV_SECTOR_SIZE) - 1;
e63e7fde 1612
2f270590 1613 for (i = 0; i < conf->num_queues; i++) {
6040aedd 1614 virtio_add_queue(vdev, conf->queue_size, virtio_blk_handle_output);
2f270590 1615 }
98e3ab35 1616 qemu_coroutine_inc_pool_size(conf->num_queues * conf->queue_size / 2);
2a30307f 1617 virtio_blk_data_plane_create(vdev, conf, &s->dataplane, &err);
3ffeeef7 1618 if (err != NULL) {
75884afd 1619 error_propagate(errp, err);
cfaf757e
PN
1620 for (i = 0; i < conf->num_queues; i++) {
1621 virtio_del_queue(vdev, i);
1622 }
6a1a8cc7 1623 virtio_cleanup(vdev);
75884afd 1624 return;
392808b4 1625 }
6e02c38d 1626
a937f8e8
SH
1627 /*
1628 * This must be after virtio_init() so virtio_blk_dma_restart_cb() gets
1629 * called after ->start_ioeventfd() has already set blk's AioContext.
1630 */
1631 s->change =
1632 qdev_add_vm_change_state_handler(dev, virtio_blk_dma_restart_cb, s);
1633
baf42268 1634 blk_ram_registrar_init(&s->blk_ram_registrar, s->blk);
4be74634 1635 blk_set_dev_ops(s->blk, &virtio_block_ops, s);
6e02c38d 1636
4be74634 1637 blk_iostatus_enable(s->blk);
71f571a2
SE
1638
1639 add_boot_device_lchs(dev, "/disk@0,0",
1640 conf->conf.lcyls,
1641 conf->conf.lheads,
1642 conf->conf.lsecs);
1c028ddf
FK
1643}
1644
b69c3c21 1645static void virtio_blk_device_unrealize(DeviceState *dev)
1c028ddf 1646{
306ec6c3
AF
1647 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
1648 VirtIOBlock *s = VIRTIO_BLK(dev);
4a0117cf
EP
1649 VirtIOBlkConf *conf = &s->conf;
1650 unsigned i;
306ec6c3 1651
7bfde688 1652 blk_drain(s->blk);
71f571a2 1653 del_boot_device_lchs(dev, "/disk@0,0");
1c028ddf
FK
1654 virtio_blk_data_plane_destroy(s->dataplane);
1655 s->dataplane = NULL;
4a0117cf
EP
1656 for (i = 0; i < conf->num_queues; i++) {
1657 virtio_del_queue(vdev, i);
1658 }
98e3ab35 1659 qemu_coroutine_dec_pool_size(conf->num_queues * conf->queue_size / 2);
9c67f33f 1660 qemu_mutex_destroy(&s->rq_lock);
baf42268 1661 blk_ram_registrar_destroy(&s->blk_ram_registrar);
1c028ddf 1662 qemu_del_vm_change_state_handler(s->change);
4be74634 1663 blockdev_mark_auto_del(s->blk);
6a1a8cc7 1664 virtio_cleanup(vdev);
1c028ddf
FK
1665}
1666
467b3f33
SH
1667static void virtio_blk_instance_init(Object *obj)
1668{
1669 VirtIOBlock *s = VIRTIO_BLK(obj);
1670
2a30307f 1671 device_add_bootindex_property(obj, &s->conf.conf.bootindex,
3342ec32 1672 "bootindex", "/disk@0,0",
40c2281c 1673 DEVICE(obj));
467b3f33
SH
1674}
1675
977a117f
HP
1676static const VMStateDescription vmstate_virtio_blk = {
1677 .name = "virtio-blk",
1678 .minimum_version_id = 2,
1679 .version_id = 2,
1680 .fields = (VMStateField[]) {
1681 VMSTATE_VIRTIO_DEVICE,
1682 VMSTATE_END_OF_LIST()
1683 },
1684};
bbded32c 1685
1c028ddf 1686static Property virtio_blk_properties[] = {
2a30307f 1687 DEFINE_BLOCK_PROPERTIES(VirtIOBlock, conf.conf),
8c398252 1688 DEFINE_BLOCK_ERROR_PROPERTIES(VirtIOBlock, conf.conf),
2a30307f
MA
1689 DEFINE_BLOCK_CHS_PROPERTIES(VirtIOBlock, conf.conf),
1690 DEFINE_PROP_STRING("serial", VirtIOBlock, conf.serial),
bbe8bd4d
SG
1691 DEFINE_PROP_BIT64("config-wce", VirtIOBlock, host_features,
1692 VIRTIO_BLK_F_CONFIG_WCE, true),
32a877e4 1693#ifdef __linux__
bbe8bd4d
SG
1694 DEFINE_PROP_BIT64("scsi", VirtIOBlock, host_features,
1695 VIRTIO_BLK_F_SCSI, false),
32a877e4 1696#endif
c99495ac
PL
1697 DEFINE_PROP_BIT("request-merging", VirtIOBlock, conf.request_merging, 0,
1698 true),
9445e1e1
SH
1699 DEFINE_PROP_UINT16("num-queues", VirtIOBlock, conf.num_queues,
1700 VIRTIO_BLK_AUTO_NUM_QUEUES),
c9b7d9ec 1701 DEFINE_PROP_UINT16("queue-size", VirtIOBlock, conf.queue_size, 256),
1bf8a989 1702 DEFINE_PROP_BOOL("seg-max-adjust", VirtIOBlock, conf.seg_max_adjust, true),
d679ac09
FZ
1703 DEFINE_PROP_LINK("iothread", VirtIOBlock, conf.iothread, TYPE_IOTHREAD,
1704 IOThread *),
5c81161f
SG
1705 DEFINE_PROP_BIT64("discard", VirtIOBlock, host_features,
1706 VIRTIO_BLK_F_DISCARD, true),
fb0b154c
AO
1707 DEFINE_PROP_BOOL("report-discard-granularity", VirtIOBlock,
1708 conf.report_discard_granularity, true),
5c81161f
SG
1709 DEFINE_PROP_BIT64("write-zeroes", VirtIOBlock, host_features,
1710 VIRTIO_BLK_F_WRITE_ZEROES, true),
37b06f8d
SG
1711 DEFINE_PROP_UINT32("max-discard-sectors", VirtIOBlock,
1712 conf.max_discard_sectors, BDRV_REQUEST_MAX_SECTORS),
1713 DEFINE_PROP_UINT32("max-write-zeroes-sectors", VirtIOBlock,
1714 conf.max_write_zeroes_sectors, BDRV_REQUEST_MAX_SECTORS),
5f258577
EY
1715 DEFINE_PROP_BOOL("x-enable-wce-if-config-wce", VirtIOBlock,
1716 conf.x_enable_wce_if_config_wce, true),
1c028ddf
FK
1717 DEFINE_PROP_END_OF_LIST(),
1718};
1719
1720static void virtio_blk_class_init(ObjectClass *klass, void *data)
1721{
1722 DeviceClass *dc = DEVICE_CLASS(klass);
1723 VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
75884afd 1724
4f67d30b 1725 device_class_set_props(dc, virtio_blk_properties);
bbded32c 1726 dc->vmsd = &vmstate_virtio_blk;
125ee0ed 1727 set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
75884afd 1728 vdc->realize = virtio_blk_device_realize;
306ec6c3 1729 vdc->unrealize = virtio_blk_device_unrealize;
1c028ddf
FK
1730 vdc->get_config = virtio_blk_update_config;
1731 vdc->set_config = virtio_blk_set_config;
1732 vdc->get_features = virtio_blk_get_features;
1733 vdc->set_status = virtio_blk_set_status;
1734 vdc->reset = virtio_blk_reset;
b2b295a7
GK
1735 vdc->save = virtio_blk_save_device;
1736 vdc->load = virtio_blk_load_device;
9ffe337c
PB
1737 vdc->start_ioeventfd = virtio_blk_data_plane_start;
1738 vdc->stop_ioeventfd = virtio_blk_data_plane_stop;
1c028ddf
FK
1739}
1740
b5c7ceaf 1741static const TypeInfo virtio_blk_info = {
1c028ddf
FK
1742 .name = TYPE_VIRTIO_BLK,
1743 .parent = TYPE_VIRTIO_DEVICE,
1744 .instance_size = sizeof(VirtIOBlock),
467b3f33 1745 .instance_init = virtio_blk_instance_init,
1c028ddf
FK
1746 .class_init = virtio_blk_class_init,
1747};
1748
1749static void virtio_register_types(void)
1750{
b5c7ceaf 1751 type_register_static(&virtio_blk_info);
1c028ddf
FK
1752}
1753
1754type_init(virtio_register_types)