]> git.proxmox.com Git - mirror_qemu.git/blame - hw/block/virtio-blk.c
virtio-blk: move qdev properties into virtio-blk.c
[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
5a61cb60 14#include "qemu-common.h"
827805a2 15#include "qemu/iov.h"
1de7afc9 16#include "qemu/error-report.h"
6d519a5f 17#include "trace.h"
0d09e41a 18#include "hw/block/block.h"
9c17d615 19#include "sysemu/blockdev.h"
0d09e41a
PB
20#include "hw/virtio/virtio-blk.h"
21#ifdef CONFIG_VIRTIO_BLK_DATA_PLANE
22# include "dataplane/virtio-blk.h"
84db52d0 23# include "migration/migration.h"
0d09e41a
PB
24#endif
25#include "block/scsi.h"
1063b8b1
CH
26#ifdef __linux__
27# include <scsi/sg.h>
28#endif
0d09e41a 29#include "hw/virtio/virtio-bus.h"
783d1897 30#include "hw/virtio/virtio-access.h"
6e02c38d 31
671ec3f0
FZ
32static VirtIOBlockReq *virtio_blk_alloc_request(VirtIOBlock *s)
33{
34 VirtIOBlockReq *req = g_slice_new0(VirtIOBlockReq);
35 req->dev = s;
36 req->elem = g_slice_new0(VirtQueueElement);
37 return req;
38}
39
40static void virtio_blk_free_request(VirtIOBlockReq *req)
41{
42 if (req) {
43 g_slice_free(VirtQueueElement, req->elem);
44 g_slice_free(VirtIOBlockReq, req);
45 }
46}
47
bf4bd461
FZ
48static void virtio_blk_complete_request(VirtIOBlockReq *req,
49 unsigned char status)
869a5c6d
AL
50{
51 VirtIOBlock *s = req->dev;
1cc91b7d 52 VirtIODevice *vdev = VIRTIO_DEVICE(s);
869a5c6d 53
6d519a5f
SH
54 trace_virtio_blk_req_complete(req, status);
55
92e3c2a3 56 stb_p(&req->in->status, status);
671ec3f0 57 virtqueue_push(s->vq, req->elem, req->qiov.size + sizeof(*req->in));
1cc91b7d 58 virtio_notify(vdev, s->vq);
869a5c6d
AL
59}
60
bf4bd461
FZ
61static void virtio_blk_req_complete(VirtIOBlockReq *req, unsigned char status)
62{
63 req->dev->complete_request(req, status);
64}
65
f35d68f0 66static int virtio_blk_handle_rw_error(VirtIOBlockReq *req, int error,
1ceee0d5 67 bool is_read)
869a5c6d 68{
3e1caa5f 69 BlockErrorAction action = bdrv_get_error_action(req->dev->bs, is_read, error);
869a5c6d
AL
70 VirtIOBlock *s = req->dev;
71
a589569f 72 if (action == BLOCK_ERROR_ACTION_STOP) {
869a5c6d
AL
73 req->next = s->rq;
74 s->rq = req;
a589569f 75 } else if (action == BLOCK_ERROR_ACTION_REPORT) {
869a5c6d 76 virtio_blk_req_complete(req, VIRTIO_BLK_S_IOERR);
a597e79c 77 bdrv_acct_done(s->bs, &req->acct);
671ec3f0 78 virtio_blk_free_request(req);
869a5c6d
AL
79 }
80
3e1caa5f 81 bdrv_error_action(s->bs, action, is_read, error);
a589569f 82 return action != BLOCK_ERROR_ACTION_IGNORE;
869a5c6d
AL
83}
84
6e02c38d
AL
85static void virtio_blk_rw_complete(void *opaque, int ret)
86{
87 VirtIOBlockReq *req = opaque;
6e02c38d 88
6d519a5f
SH
89 trace_virtio_blk_rw_complete(req, ret);
90
f35d68f0 91 if (ret) {
783d1897
RR
92 int p = virtio_ldl_p(VIRTIO_DEVICE(req->dev), &req->out.type);
93 bool is_read = !(p & VIRTIO_BLK_T_OUT);
f35d68f0 94 if (virtio_blk_handle_rw_error(req, -ret, is_read))
869a5c6d 95 return;
6e02c38d
AL
96 }
97
f35d68f0 98 virtio_blk_req_complete(req, VIRTIO_BLK_S_OK);
a597e79c 99 bdrv_acct_done(req->dev->bs, &req->acct);
671ec3f0 100 virtio_blk_free_request(req);
869a5c6d 101}
6e02c38d 102
aa659be3
CH
103static void virtio_blk_flush_complete(void *opaque, int ret)
104{
105 VirtIOBlockReq *req = opaque;
106
8c269b54
KW
107 if (ret) {
108 if (virtio_blk_handle_rw_error(req, -ret, 0)) {
109 return;
110 }
111 }
112
113 virtio_blk_req_complete(req, VIRTIO_BLK_S_OK);
a597e79c 114 bdrv_acct_done(req->dev->bs, &req->acct);
671ec3f0 115 virtio_blk_free_request(req);
6e02c38d
AL
116}
117
118static VirtIOBlockReq *virtio_blk_get_request(VirtIOBlock *s)
119{
869a5c6d 120 VirtIOBlockReq *req = virtio_blk_alloc_request(s);
6e02c38d 121
671ec3f0
FZ
122 if (!virtqueue_pop(s->vq, req->elem)) {
123 virtio_blk_free_request(req);
124 return NULL;
6e02c38d
AL
125 }
126
127 return req;
128}
129
5a05cbee
FZ
130int virtio_blk_handle_scsi_req(VirtIOBlock *blk,
131 VirtQueueElement *elem)
1063b8b1 132{
5a05cbee
FZ
133 int status = VIRTIO_BLK_S_OK;
134 struct virtio_scsi_inhdr *scsi = NULL;
783d1897
RR
135 VirtIODevice *vdev = VIRTIO_DEVICE(blk);
136
47ce9ef7 137#ifdef __linux__
1063b8b1 138 int i;
5a05cbee 139 struct sg_io_hdr hdr;
47ce9ef7 140#endif
1063b8b1
CH
141
142 /*
143 * We require at least one output segment each for the virtio_blk_outhdr
144 * and the SCSI command block.
145 *
146 * We also at least require the virtio_blk_inhdr, the virtio_scsi_inhdr
147 * and the sense buffer pointer in the input segments.
148 */
5a05cbee
FZ
149 if (elem->out_num < 2 || elem->in_num < 3) {
150 status = VIRTIO_BLK_S_IOERR;
151 goto fail;
1063b8b1
CH
152 }
153
154 /*
f34e73cd
PB
155 * The scsi inhdr is placed in the second-to-last input segment, just
156 * before the regular inhdr.
1063b8b1 157 */
5a05cbee 158 scsi = (void *)elem->in_sg[elem->in_num - 2].iov_base;
f34e73cd 159
5a05cbee 160 if (!blk->blk.scsi) {
f34e73cd
PB
161 status = VIRTIO_BLK_S_UNSUPP;
162 goto fail;
1063b8b1
CH
163 }
164
165 /*
f34e73cd 166 * No support for bidirection commands yet.
1063b8b1 167 */
5a05cbee 168 if (elem->out_num > 2 && elem->in_num > 3) {
f34e73cd
PB
169 status = VIRTIO_BLK_S_UNSUPP;
170 goto fail;
171 }
1063b8b1 172
f34e73cd 173#ifdef __linux__
1063b8b1
CH
174 memset(&hdr, 0, sizeof(struct sg_io_hdr));
175 hdr.interface_id = 'S';
5a05cbee
FZ
176 hdr.cmd_len = elem->out_sg[1].iov_len;
177 hdr.cmdp = elem->out_sg[1].iov_base;
1063b8b1
CH
178 hdr.dxfer_len = 0;
179
5a05cbee 180 if (elem->out_num > 2) {
1063b8b1
CH
181 /*
182 * If there are more than the minimally required 2 output segments
183 * there is write payload starting from the third iovec.
184 */
185 hdr.dxfer_direction = SG_DXFER_TO_DEV;
5a05cbee 186 hdr.iovec_count = elem->out_num - 2;
1063b8b1
CH
187
188 for (i = 0; i < hdr.iovec_count; i++)
5a05cbee 189 hdr.dxfer_len += elem->out_sg[i + 2].iov_len;
1063b8b1 190
5a05cbee 191 hdr.dxferp = elem->out_sg + 2;
1063b8b1 192
5a05cbee 193 } else if (elem->in_num > 3) {
1063b8b1
CH
194 /*
195 * If we have more than 3 input segments the guest wants to actually
196 * read data.
197 */
198 hdr.dxfer_direction = SG_DXFER_FROM_DEV;
5a05cbee 199 hdr.iovec_count = elem->in_num - 3;
1063b8b1 200 for (i = 0; i < hdr.iovec_count; i++)
5a05cbee 201 hdr.dxfer_len += elem->in_sg[i].iov_len;
1063b8b1 202
5a05cbee 203 hdr.dxferp = elem->in_sg;
1063b8b1
CH
204 } else {
205 /*
206 * Some SCSI commands don't actually transfer any data.
207 */
208 hdr.dxfer_direction = SG_DXFER_NONE;
209 }
210
5a05cbee
FZ
211 hdr.sbp = elem->in_sg[elem->in_num - 3].iov_base;
212 hdr.mx_sb_len = elem->in_sg[elem->in_num - 3].iov_len;
1063b8b1 213
5a05cbee
FZ
214 status = bdrv_ioctl(blk->bs, SG_IO, &hdr);
215 if (status) {
1063b8b1 216 status = VIRTIO_BLK_S_UNSUPP;
f34e73cd 217 goto fail;
1063b8b1
CH
218 }
219
5bb23927
PB
220 /*
221 * From SCSI-Generic-HOWTO: "Some lower level drivers (e.g. ide-scsi)
222 * clear the masked_status field [hence status gets cleared too, see
223 * block/scsi_ioctl.c] even when a CHECK_CONDITION or COMMAND_TERMINATED
224 * status has occurred. However they do set DRIVER_SENSE in driver_status
225 * field. Also a (sb_len_wr > 0) indicates there is a sense buffer.
226 */
227 if (hdr.status == 0 && hdr.sb_len_wr > 0) {
228 hdr.status = CHECK_CONDITION;
229 }
230
783d1897
RR
231 virtio_stl_p(vdev, &scsi->errors,
232 hdr.status | (hdr.msg_status << 8) |
233 (hdr.host_status << 16) | (hdr.driver_status << 24));
234 virtio_stl_p(vdev, &scsi->residual, hdr.resid);
235 virtio_stl_p(vdev, &scsi->sense_len, hdr.sb_len_wr);
236 virtio_stl_p(vdev, &scsi->data_len, hdr.dxfer_len);
1063b8b1 237
5a05cbee 238 return status;
1063b8b1 239#else
f34e73cd
PB
240 abort();
241#endif
242
243fail:
244 /* Just put anything nonzero so that the ioctl fails in the guest. */
5a05cbee 245 if (scsi) {
783d1897 246 virtio_stl_p(vdev, &scsi->errors, 255);
5a05cbee
FZ
247 }
248 return status;
249}
250
251static void virtio_blk_handle_scsi(VirtIOBlockReq *req)
252{
253 int status;
254
671ec3f0 255 status = virtio_blk_handle_scsi_req(req->dev, req->elem);
f34e73cd 256 virtio_blk_req_complete(req, status);
671ec3f0 257 virtio_blk_free_request(req);
1063b8b1 258}
1063b8b1 259
fee65db7 260void virtio_submit_multiwrite(BlockDriverState *bs, MultiReqBuffer *mrb)
869a5c6d 261{
91553dcc 262 int i, ret;
91553dcc 263
c20fd872
CH
264 if (!mrb->num_writes) {
265 return;
266 }
267
268 ret = bdrv_aio_multiwrite(bs, mrb->blkreq, mrb->num_writes);
91553dcc 269 if (ret != 0) {
c20fd872
CH
270 for (i = 0; i < mrb->num_writes; i++) {
271 if (mrb->blkreq[i].error) {
272 virtio_blk_rw_complete(mrb->blkreq[i].opaque, -EIO);
91553dcc
KW
273 }
274 }
275 }
c20fd872
CH
276
277 mrb->num_writes = 0;
91553dcc 278}
87b245db 279
c20fd872 280static void virtio_blk_handle_flush(VirtIOBlockReq *req, MultiReqBuffer *mrb)
aa659be3 281{
a597e79c
CH
282 bdrv_acct_start(req->dev->bs, &req->acct, 0, BDRV_ACCT_FLUSH);
283
618fbb84
CH
284 /*
285 * Make sure all outstanding writes are posted to the backing device.
286 */
c20fd872 287 virtio_submit_multiwrite(req->dev->bs, mrb);
ad54ae80 288 bdrv_aio_flush(req->dev->bs, virtio_blk_flush_complete, req);
aa659be3
CH
289}
290
c20fd872 291static void virtio_blk_handle_write(VirtIOBlockReq *req, MultiReqBuffer *mrb)
91553dcc 292{
c20fd872 293 BlockRequest *blkreq;
92e3c2a3 294 uint64_t sector;
c20fd872 295
783d1897 296 sector = virtio_ldq_p(VIRTIO_DEVICE(req->dev), &req->out.sector);
6d519a5f 297
a597e79c
CH
298 bdrv_acct_start(req->dev->bs, &req->acct, req->qiov.size, BDRV_ACCT_WRITE);
299
92e3c2a3
AJ
300 trace_virtio_blk_handle_write(req, sector, req->qiov.size / 512);
301
302 if (sector & req->dev->sector_mask) {
8cfacf07
CH
303 virtio_blk_rw_complete(req, -EIO);
304 return;
305 }
52c05023
CH
306 if (req->qiov.size % req->dev->conf->logical_block_size) {
307 virtio_blk_rw_complete(req, -EIO);
308 return;
309 }
8cfacf07 310
c20fd872
CH
311 if (mrb->num_writes == 32) {
312 virtio_submit_multiwrite(req->dev->bs, mrb);
87b245db 313 }
91553dcc 314
c20fd872 315 blkreq = &mrb->blkreq[mrb->num_writes];
92e3c2a3 316 blkreq->sector = sector;
c20fd872
CH
317 blkreq->nb_sectors = req->qiov.size / BDRV_SECTOR_SIZE;
318 blkreq->qiov = &req->qiov;
319 blkreq->cb = virtio_blk_rw_complete;
320 blkreq->opaque = req;
321 blkreq->error = 0;
91553dcc 322
c20fd872 323 mrb->num_writes++;
d28a1b6e 324}
869a5c6d 325
d28a1b6e
AL
326static void virtio_blk_handle_read(VirtIOBlockReq *req)
327{
92e3c2a3
AJ
328 uint64_t sector;
329
783d1897 330 sector = virtio_ldq_p(VIRTIO_DEVICE(req->dev), &req->out.sector);
87b245db 331
a597e79c
CH
332 bdrv_acct_start(req->dev->bs, &req->acct, req->qiov.size, BDRV_ACCT_READ);
333
81b6b9fa
SH
334 trace_virtio_blk_handle_read(req, sector, req->qiov.size / 512);
335
92e3c2a3 336 if (sector & req->dev->sector_mask) {
8cfacf07
CH
337 virtio_blk_rw_complete(req, -EIO);
338 return;
339 }
52c05023
CH
340 if (req->qiov.size % req->dev->conf->logical_block_size) {
341 virtio_blk_rw_complete(req, -EIO);
342 return;
343 }
ad54ae80
PB
344 bdrv_aio_readv(req->dev->bs, sector, &req->qiov,
345 req->qiov.size / BDRV_SECTOR_SIZE,
346 virtio_blk_rw_complete, req);
869a5c6d
AL
347}
348
fee65db7 349void virtio_blk_handle_request(VirtIOBlockReq *req, MultiReqBuffer *mrb)
bc6694d4 350{
92e3c2a3 351 uint32_t type;
ee17e848 352 struct iovec *in_iov = req->elem->in_sg;
827805a2 353 struct iovec *iov = req->elem->out_sg;
ee17e848 354 unsigned in_num = req->elem->in_num;
827805a2 355 unsigned out_num = req->elem->out_num;
92e3c2a3 356
671ec3f0 357 if (req->elem->out_num < 1 || req->elem->in_num < 1) {
870cef1d 358 error_report("virtio-blk missing headers");
bc6694d4
KW
359 exit(1);
360 }
361
827805a2
FZ
362 if (unlikely(iov_to_buf(iov, out_num, 0, &req->out,
363 sizeof(req->out)) != sizeof(req->out))) {
364 error_report("virtio-blk request outhdr too short");
365 exit(1);
366 }
ee17e848 367
827805a2 368 iov_discard_front(&iov, &out_num, sizeof(req->out));
ee17e848
FZ
369
370 if (in_num < 1 ||
371 in_iov[in_num - 1].iov_len < sizeof(struct virtio_blk_inhdr)) {
372 error_report("virtio-blk request inhdr too short");
373 exit(1);
374 }
375
376 req->in = (void *)in_iov[in_num - 1].iov_base
377 + in_iov[in_num - 1].iov_len
378 - sizeof(struct virtio_blk_inhdr);
379 iov_discard_back(in_iov, &in_num, sizeof(struct virtio_blk_inhdr));
bc6694d4 380
783d1897 381 type = virtio_ldl_p(VIRTIO_DEVICE(req->dev), &req->out.type);
92e3c2a3
AJ
382
383 if (type & VIRTIO_BLK_T_FLUSH) {
c20fd872 384 virtio_blk_handle_flush(req, mrb);
92e3c2a3 385 } else if (type & VIRTIO_BLK_T_SCSI_CMD) {
bc6694d4 386 virtio_blk_handle_scsi(req);
92e3c2a3 387 } else if (type & VIRTIO_BLK_T_GET_ID) {
2930b313 388 VirtIOBlock *s = req->dev;
389
a8686a9b
MA
390 /*
391 * NB: per existing s/n string convention the string is
392 * terminated by '\0' only when shorter than buffer.
393 */
671ec3f0 394 strncpy(req->elem->in_sg[0].iov_base,
da3dcefa 395 s->blk.serial ? s->blk.serial : "",
671ec3f0 396 MIN(req->elem->in_sg[0].iov_len, VIRTIO_BLK_ID_BYTES));
2930b313 397 virtio_blk_req_complete(req, VIRTIO_BLK_S_OK);
671ec3f0 398 virtio_blk_free_request(req);
92e3c2a3 399 } else if (type & VIRTIO_BLK_T_OUT) {
671ec3f0
FZ
400 qemu_iovec_init_external(&req->qiov, &req->elem->out_sg[1],
401 req->elem->out_num - 1);
c20fd872 402 virtio_blk_handle_write(req, mrb);
9e72c450
AZ
403 } else if (type == VIRTIO_BLK_T_IN || type == VIRTIO_BLK_T_BARRIER) {
404 /* VIRTIO_BLK_T_IN is 0, so we can't just & it. */
671ec3f0
FZ
405 qemu_iovec_init_external(&req->qiov, &req->elem->in_sg[0],
406 req->elem->in_num - 1);
bc6694d4 407 virtio_blk_handle_read(req);
9e72c450
AZ
408 } else {
409 virtio_blk_req_complete(req, VIRTIO_BLK_S_UNSUPP);
671ec3f0 410 virtio_blk_free_request(req);
bc6694d4
KW
411 }
412}
413
6e02c38d
AL
414static void virtio_blk_handle_output(VirtIODevice *vdev, VirtQueue *vq)
415{
1cc91b7d 416 VirtIOBlock *s = VIRTIO_BLK(vdev);
6e02c38d 417 VirtIOBlockReq *req;
bc6694d4
KW
418 MultiReqBuffer mrb = {
419 .num_writes = 0,
bc6694d4 420 };
6e02c38d 421
392808b4
SH
422#ifdef CONFIG_VIRTIO_BLK_DATA_PLANE
423 /* Some guests kick before setting VIRTIO_CONFIG_S_DRIVER_OK so start
424 * dataplane here instead of waiting for .set_status().
425 */
426 if (s->dataplane) {
427 virtio_blk_data_plane_start(s->dataplane);
428 return;
429 }
430#endif
431
6e02c38d 432 while ((req = virtio_blk_get_request(s))) {
bc6694d4 433 virtio_blk_handle_request(req, &mrb);
6e02c38d 434 }
91553dcc 435
c20fd872 436 virtio_submit_multiwrite(s->bs, &mrb);
91553dcc 437
6e02c38d
AL
438 /*
439 * FIXME: Want to check for completions before returning to guest mode,
440 * so cached reads and writes are reported as quickly as possible. But
441 * that should be done in the generic block layer.
442 */
443}
444
213189ab 445static void virtio_blk_dma_restart_bh(void *opaque)
869a5c6d
AL
446{
447 VirtIOBlock *s = opaque;
448 VirtIOBlockReq *req = s->rq;
f1b52868
KW
449 MultiReqBuffer mrb = {
450 .num_writes = 0,
f1b52868 451 };
869a5c6d 452
213189ab
MA
453 qemu_bh_delete(s->bh);
454 s->bh = NULL;
869a5c6d
AL
455
456 s->rq = NULL;
457
458 while (req) {
f1b52868 459 virtio_blk_handle_request(req, &mrb);
869a5c6d
AL
460 req = req->next;
461 }
f1b52868 462
c20fd872 463 virtio_submit_multiwrite(s->bs, &mrb);
869a5c6d
AL
464}
465
1dfb4dd9
LC
466static void virtio_blk_dma_restart_cb(void *opaque, int running,
467 RunState state)
213189ab
MA
468{
469 VirtIOBlock *s = opaque;
470
392808b4 471 if (!running) {
213189ab 472 return;
392808b4 473 }
213189ab
MA
474
475 if (!s->bh) {
4407c1c5
FZ
476 s->bh = aio_bh_new(bdrv_get_aio_context(s->blk.conf.bs),
477 virtio_blk_dma_restart_bh, s);
213189ab
MA
478 qemu_bh_schedule(s->bh);
479 }
480}
481
6e02c38d
AL
482static void virtio_blk_reset(VirtIODevice *vdev)
483{
1cc91b7d 484 VirtIOBlock *s = VIRTIO_BLK(vdev);
392808b4 485
ef5bc962 486#ifdef CONFIG_VIRTIO_BLK_DATA_PLANE
392808b4
SH
487 if (s->dataplane) {
488 virtio_blk_data_plane_stop(s->dataplane);
489 }
490#endif
491
6e02c38d
AL
492 /*
493 * This should cancel pending requests, but can't do nicely until there
494 * are per-device request lists.
495 */
922453bc 496 bdrv_drain_all();
ef5bc962 497 bdrv_set_enable_write_cache(s->bs, s->original_wce);
6e02c38d
AL
498}
499
bf011293 500/* coalesce internal state, copy to pci i/o region 0
501 */
6e02c38d
AL
502static void virtio_blk_update_config(VirtIODevice *vdev, uint8_t *config)
503{
1cc91b7d 504 VirtIOBlock *s = VIRTIO_BLK(vdev);
6e02c38d
AL
505 struct virtio_blk_config blkcfg;
506 uint64_t capacity;
3a395142 507 int blk_size = s->conf->logical_block_size;
6e02c38d
AL
508
509 bdrv_get_geometry(s->bs, &capacity);
5c5dafdc 510 memset(&blkcfg, 0, sizeof(blkcfg));
783d1897
RR
511 virtio_stq_p(vdev, &blkcfg.capacity, capacity);
512 virtio_stl_p(vdev, &blkcfg.seg_max, 128 - 2);
513 virtio_stw_p(vdev, &blkcfg.cylinders, s->conf->cyls);
514 virtio_stl_p(vdev, &blkcfg.blk_size, blk_size);
515 virtio_stw_p(vdev, &blkcfg.min_io_size, s->conf->min_io_size / blk_size);
516 virtio_stw_p(vdev, &blkcfg.opt_io_size, s->conf->opt_io_size / blk_size);
e63e7fde 517 blkcfg.heads = s->conf->heads;
136be99e
CB
518 /*
519 * We must ensure that the block device capacity is a multiple of
e03ba136 520 * the logical block size. If that is not the case, let's use
136be99e
CB
521 * sector_mask to adopt the geometry to have a correct picture.
522 * For those devices where the capacity is ok for the given geometry
e03ba136 523 * we don't touch the sector value of the geometry, since some devices
136be99e
CB
524 * (like s390 dasd) need a specific value. Here the capacity is already
525 * cyls*heads*secs*blk_size and the sector value is not block size
526 * divided by 512 - instead it is the amount of blk_size blocks
527 * per track (cylinder).
528 */
e63e7fde
MA
529 if (bdrv_getlength(s->bs) / s->conf->heads / s->conf->secs % blk_size) {
530 blkcfg.sectors = s->conf->secs & ~s->sector_mask;
136be99e 531 } else {
e63e7fde 532 blkcfg.sectors = s->conf->secs;
136be99e 533 }
c7085da7 534 blkcfg.size_max = 0;
9752c371
CH
535 blkcfg.physical_block_exp = get_physical_block_exp(s->conf);
536 blkcfg.alignment_offset = 0;
13e3dce0 537 blkcfg.wce = bdrv_enable_write_cache(s->bs);
37d5ddd6 538 memcpy(config, &blkcfg, sizeof(struct virtio_blk_config));
6e02c38d
AL
539}
540
13e3dce0
PB
541static void virtio_blk_set_config(VirtIODevice *vdev, const uint8_t *config)
542{
1cc91b7d 543 VirtIOBlock *s = VIRTIO_BLK(vdev);
13e3dce0
PB
544 struct virtio_blk_config blkcfg;
545
546 memcpy(&blkcfg, config, sizeof(blkcfg));
6d7e73d6
FZ
547
548 aio_context_acquire(bdrv_get_aio_context(s->bs));
13e3dce0 549 bdrv_set_enable_write_cache(s->bs, blkcfg.wce != 0);
6d7e73d6 550 aio_context_release(bdrv_get_aio_context(s->bs));
13e3dce0
PB
551}
552
8172539d 553static uint32_t virtio_blk_get_features(VirtIODevice *vdev, uint32_t features)
6e02c38d 554{
1cc91b7d 555 VirtIOBlock *s = VIRTIO_BLK(vdev);
1063b8b1
CH
556
557 features |= (1 << VIRTIO_BLK_F_SEG_MAX);
558 features |= (1 << VIRTIO_BLK_F_GEOMETRY);
9752c371 559 features |= (1 << VIRTIO_BLK_F_TOPOLOGY);
8cfacf07 560 features |= (1 << VIRTIO_BLK_F_BLK_SIZE);
a6c5c84a 561 features |= (1 << VIRTIO_BLK_F_SCSI);
aa659be3 562
da3dcefa 563 if (s->blk.config_wce) {
8a873ba7
SH
564 features |= (1 << VIRTIO_BLK_F_CONFIG_WCE);
565 }
aa659be3 566 if (bdrv_enable_write_cache(s->bs))
13e3dce0
PB
567 features |= (1 << VIRTIO_BLK_F_WCE);
568
c79662f7
NS
569 if (bdrv_is_read_only(s->bs))
570 features |= 1 << VIRTIO_BLK_F_RO;
1063b8b1
CH
571
572 return features;
6e02c38d
AL
573}
574
9315cbfd
PB
575static void virtio_blk_set_status(VirtIODevice *vdev, uint8_t status)
576{
1cc91b7d 577 VirtIOBlock *s = VIRTIO_BLK(vdev);
9315cbfd
PB
578 uint32_t features;
579
392808b4 580#ifdef CONFIG_VIRTIO_BLK_DATA_PLANE
cf139388
SH
581 if (s->dataplane && !(status & (VIRTIO_CONFIG_S_DRIVER |
582 VIRTIO_CONFIG_S_DRIVER_OK))) {
392808b4
SH
583 virtio_blk_data_plane_stop(s->dataplane);
584 }
585#endif
586
9315cbfd
PB
587 if (!(status & VIRTIO_CONFIG_S_DRIVER_OK)) {
588 return;
589 }
590
591 features = vdev->guest_features;
ef5bc962
PB
592
593 /* A guest that supports VIRTIO_BLK_F_CONFIG_WCE must be able to send
594 * cache flushes. Thus, the "auto writethrough" behavior is never
595 * necessary for guests that support the VIRTIO_BLK_F_CONFIG_WCE feature.
596 * Leaving it enabled would break the following sequence:
597 *
598 * Guest started with "-drive cache=writethrough"
599 * Guest sets status to 0
600 * Guest sets DRIVER bit in status field
601 * Guest reads host features (WCE=0, CONFIG_WCE=1)
602 * Guest writes guest features (WCE=0, CONFIG_WCE=1)
603 * Guest writes 1 to the WCE configuration field (writeback mode)
604 * Guest sets DRIVER_OK bit in status field
605 *
606 * s->bs would erroneously be placed in writethrough mode.
607 */
608 if (!(features & (1 << VIRTIO_BLK_F_CONFIG_WCE))) {
6d7e73d6
FZ
609 aio_context_acquire(bdrv_get_aio_context(s->bs));
610 bdrv_set_enable_write_cache(s->bs,
611 !!(features & (1 << VIRTIO_BLK_F_WCE)));
612 aio_context_release(bdrv_get_aio_context(s->bs));
ef5bc962 613 }
9315cbfd
PB
614}
615
6e02c38d
AL
616static void virtio_blk_save(QEMUFile *f, void *opaque)
617{
b2b295a7 618 VirtIODevice *vdev = VIRTIO_DEVICE(opaque);
869a5c6d 619
1cc91b7d 620 virtio_save(vdev, f);
b2b295a7 621}
869a5c6d 622
b2b295a7
GK
623static void virtio_blk_save_device(VirtIODevice *vdev, QEMUFile *f)
624{
625 VirtIOBlock *s = VIRTIO_BLK(vdev);
626 VirtIOBlockReq *req = s->rq;
627
869a5c6d
AL
628 while (req) {
629 qemu_put_sbyte(f, 1);
671ec3f0
FZ
630 qemu_put_buffer(f, (unsigned char *)req->elem,
631 sizeof(VirtQueueElement));
869a5c6d
AL
632 req = req->next;
633 }
634 qemu_put_sbyte(f, 0);
6e02c38d
AL
635}
636
637static int virtio_blk_load(QEMUFile *f, void *opaque, int version_id)
638{
639 VirtIOBlock *s = opaque;
1cc91b7d 640 VirtIODevice *vdev = VIRTIO_DEVICE(s);
6e02c38d 641
869a5c6d 642 if (version_id != 2)
6e02c38d
AL
643 return -EINVAL;
644
b2b295a7
GK
645 return virtio_load(vdev, f, version_id);
646}
647
648static int virtio_blk_load_device(VirtIODevice *vdev, QEMUFile *f,
649 int version_id)
650{
651 VirtIOBlock *s = VIRTIO_BLK(vdev);
2a633c46 652
869a5c6d
AL
653 while (qemu_get_sbyte(f)) {
654 VirtIOBlockReq *req = virtio_blk_alloc_request(s);
671ec3f0
FZ
655 qemu_get_buffer(f, (unsigned char *)req->elem,
656 sizeof(VirtQueueElement));
869a5c6d 657 req->next = s->rq;
20a81e4d 658 s->rq = req;
b6a4805b 659
671ec3f0
FZ
660 virtqueue_map_sg(req->elem->in_sg, req->elem->in_addr,
661 req->elem->in_num, 1);
662 virtqueue_map_sg(req->elem->out_sg, req->elem->out_addr,
663 req->elem->out_num, 0);
869a5c6d 664 }
6e02c38d
AL
665
666 return 0;
667}
668
145feb17 669static void virtio_blk_resize(void *opaque)
e5051fc7 670{
1cc91b7d 671 VirtIODevice *vdev = VIRTIO_DEVICE(opaque);
e5051fc7 672
1cc91b7d 673 virtio_notify_config(vdev);
e5051fc7
CH
674}
675
0e49de52 676static const BlockDevOps virtio_block_ops = {
145feb17 677 .resize_cb = virtio_blk_resize,
0e49de52
MA
678};
679
84db52d0
SH
680#ifdef CONFIG_VIRTIO_BLK_DATA_PLANE
681/* Disable dataplane thread during live migration since it does not
682 * update the dirty memory bitmap yet.
683 */
684static void virtio_blk_migration_state_changed(Notifier *notifier, void *data)
685{
686 VirtIOBlock *s = container_of(notifier, VirtIOBlock,
687 migration_state_notifier);
688 MigrationState *mig = data;
3ffeeef7 689 Error *err = NULL;
84db52d0
SH
690
691 if (migration_in_setup(mig)) {
692 if (!s->dataplane) {
693 return;
694 }
695 virtio_blk_data_plane_destroy(s->dataplane);
696 s->dataplane = NULL;
697 } else if (migration_has_finished(mig) ||
698 migration_has_failed(mig)) {
699 if (s->dataplane) {
700 return;
701 }
702 bdrv_drain_all(); /* complete in-flight non-dataplane requests */
703 virtio_blk_data_plane_create(VIRTIO_DEVICE(s), &s->blk,
3ffeeef7
AF
704 &s->dataplane, &err);
705 if (err != NULL) {
706 error_report("%s", error_get_pretty(err));
707 error_free(err);
708 }
84db52d0
SH
709 }
710}
711#endif /* CONFIG_VIRTIO_BLK_DATA_PLANE */
712
75884afd 713static void virtio_blk_device_realize(DeviceState *dev, Error **errp)
1c028ddf 714{
75884afd 715 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
179b417e 716 VirtIOBlock *s = VIRTIO_BLK(dev);
05ff6865 717 VirtIOBlkConf *blk = &(s->blk);
3ffeeef7
AF
718#ifdef CONFIG_VIRTIO_BLK_DATA_PLANE
719 Error *err = NULL;
720#endif
6e02c38d 721 static int virtio_blk_id;
cf21e106 722
12c5674b 723 if (!blk->conf.bs) {
75884afd
AF
724 error_setg(errp, "drive property not set");
725 return;
d75d25e3 726 }
12c5674b 727 if (!bdrv_is_inserted(blk->conf.bs)) {
75884afd
AF
728 error_setg(errp, "Device needs media, but drive is empty");
729 return;
98f28ad7 730 }
d75d25e3 731
911525db 732 blkconf_serial(&blk->conf, &blk->serial);
ef5bc962 733 s->original_wce = bdrv_enable_write_cache(blk->conf.bs);
b7eb0c9f 734 if (blkconf_geometry(&blk->conf, NULL, 65535, 255, 255) < 0) {
75884afd
AF
735 error_setg(errp, "Error setting geometry");
736 return;
b7eb0c9f 737 }
a8686a9b 738
05ff6865
FK
739 virtio_init(vdev, "virtio-blk", VIRTIO_ID_BLOCK,
740 sizeof(struct virtio_blk_config));
6e02c38d 741
12c5674b
PB
742 s->bs = blk->conf.bs;
743 s->conf = &blk->conf;
869a5c6d 744 s->rq = NULL;
1573a35d 745 s->sector_mask = (s->conf->logical_block_size / BDRV_SECTOR_SIZE) - 1;
e63e7fde 746
05ff6865 747 s->vq = virtio_add_queue(vdev, 128, virtio_blk_handle_output);
bf4bd461 748 s->complete_request = virtio_blk_complete_request;
392808b4 749#ifdef CONFIG_VIRTIO_BLK_DATA_PLANE
3ffeeef7
AF
750 virtio_blk_data_plane_create(vdev, blk, &s->dataplane, &err);
751 if (err != NULL) {
75884afd 752 error_propagate(errp, err);
6a1a8cc7 753 virtio_cleanup(vdev);
75884afd 754 return;
392808b4 755 }
84db52d0
SH
756 s->migration_state_notifier.notify = virtio_blk_migration_state_changed;
757 add_migration_state_change_notifier(&s->migration_state_notifier);
392808b4 758#endif
6e02c38d 759
69b302b2 760 s->change = qemu_add_vm_change_state_handler(virtio_blk_dma_restart_cb, s);
179b417e 761 register_savevm(dev, "virtio-blk", virtio_blk_id++, 2,
6e02c38d 762 virtio_blk_save, virtio_blk_load, s);
0e49de52 763 bdrv_set_dev_ops(s->bs, &virtio_block_ops, s);
1b7fd729 764 bdrv_set_guest_block_size(s->bs, s->conf->logical_block_size);
6e02c38d 765
af239a62 766 bdrv_iostatus_enable(s->bs);
1ca4d09a 767
179b417e 768 add_boot_device_path(s->conf->bootindex, dev, "/disk@0,0");
1c028ddf
FK
769}
770
306ec6c3 771static void virtio_blk_device_unrealize(DeviceState *dev, Error **errp)
1c028ddf 772{
306ec6c3
AF
773 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
774 VirtIOBlock *s = VIRTIO_BLK(dev);
775
1c028ddf 776#ifdef CONFIG_VIRTIO_BLK_DATA_PLANE
84db52d0 777 remove_migration_state_change_notifier(&s->migration_state_notifier);
1c028ddf
FK
778 virtio_blk_data_plane_destroy(s->dataplane);
779 s->dataplane = NULL;
780#endif
781 qemu_del_vm_change_state_handler(s->change);
306ec6c3 782 unregister_savevm(dev, "virtio-blk", s);
1c028ddf 783 blockdev_mark_auto_del(s->bs);
6a1a8cc7 784 virtio_cleanup(vdev);
1c028ddf
FK
785}
786
787static Property virtio_blk_properties[] = {
32a877e4
SH
788 DEFINE_BLOCK_PROPERTIES(VirtIOBlock, blk.conf),
789 DEFINE_BLOCK_CHS_PROPERTIES(VirtIOBlock, blk.conf),
790 DEFINE_PROP_STRING("serial", VirtIOBlock, blk.serial),
791 DEFINE_PROP_BIT("config-wce", VirtIOBlock, blk.config_wce, 0, true),
792 DEFINE_PROP_IOTHREAD("x-iothread", VirtIOBlock, blk.iothread),
793#ifdef __linux__
794 DEFINE_PROP_BIT("scsi", VirtIOBlock, blk.scsi, 0, true),
795#endif
796#ifdef CONFIG_VIRTIO_BLK_DATA_PLANE
797 DEFINE_PROP_BIT("x-data-plane", VirtIOBlock, blk.data_plane, 0, false),
798#endif
1c028ddf
FK
799 DEFINE_PROP_END_OF_LIST(),
800};
801
802static void virtio_blk_class_init(ObjectClass *klass, void *data)
803{
804 DeviceClass *dc = DEVICE_CLASS(klass);
805 VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
75884afd 806
1c028ddf 807 dc->props = virtio_blk_properties;
125ee0ed 808 set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
75884afd 809 vdc->realize = virtio_blk_device_realize;
306ec6c3 810 vdc->unrealize = virtio_blk_device_unrealize;
1c028ddf
FK
811 vdc->get_config = virtio_blk_update_config;
812 vdc->set_config = virtio_blk_set_config;
813 vdc->get_features = virtio_blk_get_features;
814 vdc->set_status = virtio_blk_set_status;
815 vdc->reset = virtio_blk_reset;
b2b295a7
GK
816 vdc->save = virtio_blk_save_device;
817 vdc->load = virtio_blk_load_device;
1c028ddf
FK
818}
819
820static const TypeInfo virtio_device_info = {
821 .name = TYPE_VIRTIO_BLK,
822 .parent = TYPE_VIRTIO_DEVICE,
823 .instance_size = sizeof(VirtIOBlock),
824 .class_init = virtio_blk_class_init,
825};
826
827static void virtio_register_types(void)
828{
829 type_register_static(&virtio_device_info);
830}
831
832type_init(virtio_register_types)