]> git.proxmox.com Git - mirror_qemu.git/blame - block/block-backend.c
block/vpc: update comments to be compliant w/coding guidelines
[mirror_qemu.git] / block / block-backend.c
CommitLineData
26f54e9a
MA
1/*
2 * QEMU Block backends
3 *
4 * Copyright (C) 2014 Red Hat, Inc.
5 *
6 * Authors:
7 * Markus Armbruster <armbru@redhat.com>,
8 *
9 * This work is licensed under the terms of the GNU LGPL, version 2.1
10 * or later. See the COPYING.LIB file in the top-level directory.
11 */
12
80c71a24 13#include "qemu/osdep.h"
26f54e9a
MA
14#include "sysemu/block-backend.h"
15#include "block/block_int.h"
373340b2 16#include "block/blockjob.h"
281d22d8 17#include "block/throttle-groups.h"
18e46a03 18#include "sysemu/blockdev.h"
373340b2 19#include "sysemu/sysemu.h"
a7f53e26 20#include "qapi-event.h"
f348b6d1 21#include "qemu/id.h"
a7f53e26
MA
22
23/* Number of coroutines to reserve per attached device model */
24#define COROUTINE_POOL_RESERVATION 64
26f54e9a 25
1bf1cbc9
KW
26#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
27
4981bdec
HR
28static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb);
29
26f54e9a
MA
30struct BlockBackend {
31 char *name;
32 int refcnt;
f21d96d0 33 BdrvChild *root;
26f8b3a8 34 DriveInfo *legacy_dinfo; /* null unless created by drive_new() */
2cf22d6a 35 QTAILQ_ENTRY(BlockBackend) link; /* for block_backends */
9492b0b9 36 QTAILQ_ENTRY(BlockBackend) monitor_link; /* for monitor_block_backends */
a7f53e26
MA
37
38 void *dev; /* attached device model, if any */
39 /* TODO change to DeviceState when all users are qdevified */
40 const BlockDevOps *dev_ops;
41 void *dev_opaque;
68e9ec01
HR
42
43 /* the block size for which the guest device expects atomicity */
44 int guest_block_size;
7f0e9da6 45
281d22d8
HR
46 /* If the BDS tree is removed, some of its options are stored here (which
47 * can be used to restore those options in the new BDS on insert) */
48 BlockBackendRootState root_state;
49
bfd18d1e
KW
50 bool enable_write_cache;
51
7f0e9da6
HR
52 /* I/O stats (display with "info blockstats"). */
53 BlockAcctStats stats;
373340b2
HR
54
55 BlockdevOnError on_read_error, on_write_error;
56 bool iostatus_enabled;
57 BlockDeviceIoStatus iostatus;
3301f6c6 58
c10c9d96
KW
59 bool allow_write_beyond_eof;
60
3301f6c6 61 NotifierList remove_bs_notifiers, insert_bs_notifiers;
26f54e9a
MA
62};
63
e7f7d676
HR
64typedef struct BlockBackendAIOCB {
65 BlockAIOCB common;
66 QEMUBH *bh;
4981bdec 67 BlockBackend *blk;
e7f7d676
HR
68 int ret;
69} BlockBackendAIOCB;
70
71static const AIOCBInfo block_backend_aiocb_info = {
4981bdec 72 .get_aio_context = blk_aiocb_get_aio_context,
e7f7d676
HR
73 .aiocb_size = sizeof(BlockBackendAIOCB),
74};
75
8fb3c76c
MA
76static void drive_info_del(DriveInfo *dinfo);
77
2cf22d6a
HR
78/* All BlockBackends */
79static QTAILQ_HEAD(, BlockBackend) block_backends =
80 QTAILQ_HEAD_INITIALIZER(block_backends);
81
9492b0b9
HR
82/* All BlockBackends referenced by the monitor and which are iterated through by
83 * blk_next() */
84static QTAILQ_HEAD(, BlockBackend) monitor_block_backends =
85 QTAILQ_HEAD_INITIALIZER(monitor_block_backends);
26f54e9a 86
f21d96d0
KW
87static void blk_root_inherit_options(int *child_flags, QDict *child_options,
88 int parent_flags, QDict *parent_options)
89{
90 /* We're not supposed to call this function for root nodes */
91 abort();
92}
93
94static const BdrvChildRole child_root = {
95 .inherit_options = blk_root_inherit_options,
96};
97
26f54e9a 98/*
efaa7c4e 99 * Create a new BlockBackend with a reference count of one.
26f54e9a
MA
100 * Store an error through @errp on failure, unless it's null.
101 * Return the new BlockBackend on success, null on failure.
102 */
efaa7c4e 103BlockBackend *blk_new(Error **errp)
26f54e9a
MA
104{
105 BlockBackend *blk;
106
26f54e9a 107 blk = g_new0(BlockBackend, 1);
26f54e9a 108 blk->refcnt = 1;
3301f6c6
HR
109 notifier_list_init(&blk->remove_bs_notifiers);
110 notifier_list_init(&blk->insert_bs_notifiers);
2cf22d6a 111 QTAILQ_INSERT_TAIL(&block_backends, blk, link);
26f54e9a
MA
112 return blk;
113}
114
7e7d56d9
MA
115/*
116 * Create a new BlockBackend with a new BlockDriverState attached.
7e7d56d9
MA
117 * Otherwise just like blk_new(), which see.
118 */
efaa7c4e 119BlockBackend *blk_new_with_bs(Error **errp)
7e7d56d9
MA
120{
121 BlockBackend *blk;
122 BlockDriverState *bs;
123
efaa7c4e 124 blk = blk_new(errp);
7e7d56d9
MA
125 if (!blk) {
126 return NULL;
127 }
128
7f06d47e 129 bs = bdrv_new_root();
f21d96d0 130 blk->root = bdrv_root_attach_child(bs, "root", &child_root);
7e7d56d9
MA
131 bs->blk = blk;
132 return blk;
133}
134
ca49a4fd
HR
135/*
136 * Calls blk_new_with_bs() and then calls bdrv_open() on the BlockDriverState.
137 *
138 * Just as with bdrv_open(), after having called this function the reference to
139 * @options belongs to the block layer (even on failure).
140 *
141 * TODO: Remove @filename and @flags; it should be possible to specify a whole
142 * BDS tree just by specifying the @options QDict (or @reference,
143 * alternatively). At the time of adding this function, this is not possible,
144 * though, so callers of this function have to be able to specify @filename and
145 * @flags.
146 */
efaa7c4e
HR
147BlockBackend *blk_new_open(const char *filename, const char *reference,
148 QDict *options, int flags, Error **errp)
ca49a4fd
HR
149{
150 BlockBackend *blk;
151 int ret;
152
efaa7c4e 153 blk = blk_new_with_bs(errp);
ca49a4fd
HR
154 if (!blk) {
155 QDECREF(options);
156 return NULL;
157 }
158
f21d96d0 159 ret = bdrv_open(&blk->root->bs, filename, reference, options, flags, errp);
ca49a4fd
HR
160 if (ret < 0) {
161 blk_unref(blk);
162 return NULL;
163 }
164
72e775c7
KW
165 blk_set_enable_write_cache(blk, true);
166
ca49a4fd
HR
167 return blk;
168}
169
26f54e9a
MA
170static void blk_delete(BlockBackend *blk)
171{
172 assert(!blk->refcnt);
e5e78550 173 assert(!blk->name);
a7f53e26 174 assert(!blk->dev);
f21d96d0 175 if (blk->root) {
13855c6b 176 blk_remove_bs(blk);
7e7d56d9 177 }
3301f6c6
HR
178 assert(QLIST_EMPTY(&blk->remove_bs_notifiers.notifiers));
179 assert(QLIST_EMPTY(&blk->insert_bs_notifiers.notifiers));
281d22d8
HR
180 if (blk->root_state.throttle_state) {
181 g_free(blk->root_state.throttle_group);
182 throttle_group_unref(blk->root_state.throttle_state);
183 }
2cf22d6a 184 QTAILQ_REMOVE(&block_backends, blk, link);
18e46a03 185 drive_info_del(blk->legacy_dinfo);
979e9b03 186 block_acct_cleanup(&blk->stats);
26f54e9a
MA
187 g_free(blk);
188}
189
8fb3c76c
MA
190static void drive_info_del(DriveInfo *dinfo)
191{
192 if (!dinfo) {
193 return;
194 }
195 qemu_opts_del(dinfo->opts);
8fb3c76c
MA
196 g_free(dinfo->serial);
197 g_free(dinfo);
198}
199
f636ae85
AG
200int blk_get_refcnt(BlockBackend *blk)
201{
202 return blk ? blk->refcnt : 0;
203}
204
26f54e9a
MA
205/*
206 * Increment @blk's reference count.
207 * @blk must not be null.
208 */
209void blk_ref(BlockBackend *blk)
210{
211 blk->refcnt++;
212}
213
214/*
215 * Decrement @blk's reference count.
216 * If this drops it to zero, destroy @blk.
217 * For convenience, do nothing if @blk is null.
218 */
219void blk_unref(BlockBackend *blk)
220{
221 if (blk) {
222 assert(blk->refcnt > 0);
223 if (!--blk->refcnt) {
224 blk_delete(blk);
225 }
226 }
227}
228
2cf22d6a
HR
229/*
230 * Behaves similarly to blk_next() but iterates over all BlockBackends, even the
231 * ones which are hidden (i.e. are not referenced by the monitor).
232 */
233static BlockBackend *blk_all_next(BlockBackend *blk)
234{
235 return blk ? QTAILQ_NEXT(blk, link)
236 : QTAILQ_FIRST(&block_backends);
237}
238
d8da3cef
HR
239void blk_remove_all_bs(void)
240{
74d1b8fc 241 BlockBackend *blk = NULL;
d8da3cef 242
2cf22d6a 243 while ((blk = blk_all_next(blk)) != NULL) {
d8da3cef
HR
244 AioContext *ctx = blk_get_aio_context(blk);
245
246 aio_context_acquire(ctx);
f21d96d0 247 if (blk->root) {
d8da3cef
HR
248 blk_remove_bs(blk);
249 }
250 aio_context_release(ctx);
251 }
252}
253
26f54e9a 254/*
9492b0b9 255 * Return the monitor-owned BlockBackend after @blk.
26f54e9a
MA
256 * If @blk is null, return the first one.
257 * Else, return @blk's next sibling, which may be null.
258 *
259 * To iterate over all BlockBackends, do
260 * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
261 * ...
262 * }
263 */
264BlockBackend *blk_next(BlockBackend *blk)
265{
9492b0b9
HR
266 return blk ? QTAILQ_NEXT(blk, monitor_link)
267 : QTAILQ_FIRST(&monitor_block_backends);
26f54e9a
MA
268}
269
981f4f57
HR
270/*
271 * Iterates over all BlockDriverStates which are attached to a BlockBackend.
272 * This function is for use by bdrv_next().
273 *
274 * @bs must be NULL or a BDS that is attached to a BB.
275 */
276BlockDriverState *blk_next_root_bs(BlockDriverState *bs)
277{
278 BlockBackend *blk;
279
280 if (bs) {
281 assert(bs->blk);
282 blk = bs->blk;
283 } else {
284 blk = NULL;
285 }
286
287 do {
288 blk = blk_all_next(blk);
f21d96d0 289 } while (blk && !blk->root);
981f4f57 290
f21d96d0 291 return blk ? blk->root->bs : NULL;
981f4f57
HR
292}
293
e5e78550
HR
294/*
295 * Add a BlockBackend into the list of backends referenced by the monitor, with
296 * the given @name acting as the handle for the monitor.
297 * Strictly for use by blockdev.c.
298 *
299 * @name must not be null or empty.
300 *
301 * Returns true on success and false on failure. In the latter case, an Error
302 * object is returned through @errp.
303 */
304bool monitor_add_blk(BlockBackend *blk, const char *name, Error **errp)
305{
306 assert(!blk->name);
307 assert(name && name[0]);
308
309 if (!id_wellformed(name)) {
310 error_setg(errp, "Invalid device name");
311 return false;
312 }
313 if (blk_by_name(name)) {
314 error_setg(errp, "Device with id '%s' already exists", name);
315 return false;
316 }
317 if (bdrv_find_node(name)) {
318 error_setg(errp,
319 "Device name '%s' conflicts with an existing node name",
320 name);
321 return false;
322 }
323
324 blk->name = g_strdup(name);
325 QTAILQ_INSERT_TAIL(&monitor_block_backends, blk, monitor_link);
326 return true;
327}
328
329/*
330 * Remove a BlockBackend from the list of backends referenced by the monitor.
331 * Strictly for use by blockdev.c.
332 */
333void monitor_remove_blk(BlockBackend *blk)
334{
335 if (!blk->name) {
336 return;
337 }
338
339 QTAILQ_REMOVE(&monitor_block_backends, blk, monitor_link);
340 g_free(blk->name);
341 blk->name = NULL;
342}
343
26f54e9a 344/*
7e7d56d9 345 * Return @blk's name, a non-null string.
e5e78550 346 * Returns an empty string iff @blk is not referenced by the monitor.
26f54e9a
MA
347 */
348const char *blk_name(BlockBackend *blk)
349{
e5e78550 350 return blk->name ?: "";
26f54e9a
MA
351}
352
353/*
354 * Return the BlockBackend with name @name if it exists, else null.
355 * @name must not be null.
356 */
357BlockBackend *blk_by_name(const char *name)
358{
74d1b8fc 359 BlockBackend *blk = NULL;
26f54e9a
MA
360
361 assert(name);
74d1b8fc 362 while ((blk = blk_next(blk)) != NULL) {
26f54e9a
MA
363 if (!strcmp(name, blk->name)) {
364 return blk;
365 }
366 }
367 return NULL;
368}
7e7d56d9
MA
369
370/*
371 * Return the BlockDriverState attached to @blk if any, else null.
372 */
373BlockDriverState *blk_bs(BlockBackend *blk)
374{
f21d96d0 375 return blk->root ? blk->root->bs : NULL;
7e7d56d9
MA
376}
377
18e46a03
MA
378/*
379 * Return @blk's DriveInfo if any, else null.
380 */
381DriveInfo *blk_legacy_dinfo(BlockBackend *blk)
382{
383 return blk->legacy_dinfo;
384}
385
386/*
387 * Set @blk's DriveInfo to @dinfo, and return it.
388 * @blk must not have a DriveInfo set already.
389 * No other BlockBackend may have the same DriveInfo set.
390 */
391DriveInfo *blk_set_legacy_dinfo(BlockBackend *blk, DriveInfo *dinfo)
392{
393 assert(!blk->legacy_dinfo);
394 return blk->legacy_dinfo = dinfo;
395}
396
397/*
398 * Return the BlockBackend with DriveInfo @dinfo.
399 * It must exist.
400 */
401BlockBackend *blk_by_legacy_dinfo(DriveInfo *dinfo)
402{
74d1b8fc 403 BlockBackend *blk = NULL;
18e46a03 404
74d1b8fc 405 while ((blk = blk_next(blk)) != NULL) {
18e46a03
MA
406 if (blk->legacy_dinfo == dinfo) {
407 return blk;
408 }
409 }
410 abort();
411}
412
1c95f7e1
HR
413/*
414 * Disassociates the currently associated BlockDriverState from @blk.
415 */
416void blk_remove_bs(BlockBackend *blk)
417{
f21d96d0 418 assert(blk->root->bs->blk == blk);
13855c6b 419
3301f6c6
HR
420 notifier_list_notify(&blk->remove_bs_notifiers, blk);
421
1c95f7e1
HR
422 blk_update_root_state(blk);
423
f21d96d0
KW
424 blk->root->bs->blk = NULL;
425 bdrv_root_unref_child(blk->root);
426 blk->root = NULL;
1c95f7e1
HR
427}
428
0c3c36d6
HR
429/*
430 * Associates a new BlockDriverState with @blk.
431 */
432void blk_insert_bs(BlockBackend *blk, BlockDriverState *bs)
433{
f21d96d0 434 assert(!blk->root && !bs->blk);
0c3c36d6 435 bdrv_ref(bs);
f21d96d0 436 blk->root = bdrv_root_attach_child(bs, "root", &child_root);
0c3c36d6 437 bs->blk = blk;
3301f6c6
HR
438
439 notifier_list_notify(&blk->insert_bs_notifiers, blk);
0c3c36d6
HR
440}
441
a7f53e26
MA
442/*
443 * Attach device model @dev to @blk.
444 * Return 0 on success, -EBUSY when a device model is attached already.
445 */
4be74634 446int blk_attach_dev(BlockBackend *blk, void *dev)
a7f53e26 447/* TODO change to DeviceState *dev when all users are qdevified */
4be74634 448{
a7f53e26
MA
449 if (blk->dev) {
450 return -EBUSY;
451 }
84ebe375 452 blk_ref(blk);
a7f53e26 453 blk->dev = dev;
373340b2 454 blk_iostatus_reset(blk);
a7f53e26 455 return 0;
4be74634
MA
456}
457
a7f53e26
MA
458/*
459 * Attach device model @dev to @blk.
460 * @blk must not have a device model attached already.
461 * TODO qdevified devices don't use this, remove when devices are qdevified
462 */
4be74634
MA
463void blk_attach_dev_nofail(BlockBackend *blk, void *dev)
464{
a7f53e26
MA
465 if (blk_attach_dev(blk, dev) < 0) {
466 abort();
467 }
4be74634
MA
468}
469
a7f53e26
MA
470/*
471 * Detach device model @dev from @blk.
472 * @dev must be currently attached to @blk.
473 */
4be74634 474void blk_detach_dev(BlockBackend *blk, void *dev)
a7f53e26 475/* TODO change to DeviceState *dev when all users are qdevified */
4be74634 476{
a7f53e26
MA
477 assert(blk->dev == dev);
478 blk->dev = NULL;
479 blk->dev_ops = NULL;
480 blk->dev_opaque = NULL;
68e9ec01 481 blk->guest_block_size = 512;
84ebe375 482 blk_unref(blk);
4be74634
MA
483}
484
a7f53e26
MA
485/*
486 * Return the device model attached to @blk if any, else null.
487 */
4be74634 488void *blk_get_attached_dev(BlockBackend *blk)
a7f53e26
MA
489/* TODO change to return DeviceState * when all users are qdevified */
490{
491 return blk->dev;
492}
493
494/*
495 * Set @blk's device model callbacks to @ops.
496 * @opaque is the opaque argument to pass to the callbacks.
497 * This is for use by device models.
498 */
499void blk_set_dev_ops(BlockBackend *blk, const BlockDevOps *ops,
500 void *opaque)
501{
502 blk->dev_ops = ops;
503 blk->dev_opaque = opaque;
504}
505
506/*
507 * Notify @blk's attached device model of media change.
508 * If @load is true, notify of media load.
509 * Else, notify of media eject.
510 * Also send DEVICE_TRAY_MOVED events as appropriate.
511 */
512void blk_dev_change_media_cb(BlockBackend *blk, bool load)
513{
514 if (blk->dev_ops && blk->dev_ops->change_media_cb) {
f1f57066 515 bool tray_was_open, tray_is_open;
a7f53e26 516
f1f57066 517 tray_was_open = blk_dev_is_tray_open(blk);
a7f53e26 518 blk->dev_ops->change_media_cb(blk->dev_opaque, load);
f1f57066
HR
519 tray_is_open = blk_dev_is_tray_open(blk);
520
521 if (tray_was_open != tray_is_open) {
522 qapi_event_send_device_tray_moved(blk_name(blk), tray_is_open,
523 &error_abort);
a7f53e26
MA
524 }
525 }
526}
527
528/*
529 * Does @blk's attached device model have removable media?
530 * %true if no device model is attached.
531 */
532bool blk_dev_has_removable_media(BlockBackend *blk)
533{
534 return !blk->dev || (blk->dev_ops && blk->dev_ops->change_media_cb);
535}
536
8f3a73bc
HR
537/*
538 * Does @blk's attached device model have a tray?
539 */
540bool blk_dev_has_tray(BlockBackend *blk)
541{
542 return blk->dev_ops && blk->dev_ops->is_tray_open;
543}
544
a7f53e26
MA
545/*
546 * Notify @blk's attached device model of a media eject request.
547 * If @force is true, the medium is about to be yanked out forcefully.
548 */
549void blk_dev_eject_request(BlockBackend *blk, bool force)
4be74634 550{
a7f53e26
MA
551 if (blk->dev_ops && blk->dev_ops->eject_request_cb) {
552 blk->dev_ops->eject_request_cb(blk->dev_opaque, force);
553 }
4be74634
MA
554}
555
a7f53e26
MA
556/*
557 * Does @blk's attached device model have a tray, and is it open?
558 */
559bool blk_dev_is_tray_open(BlockBackend *blk)
4be74634 560{
8f3a73bc 561 if (blk_dev_has_tray(blk)) {
a7f53e26
MA
562 return blk->dev_ops->is_tray_open(blk->dev_opaque);
563 }
564 return false;
565}
566
567/*
568 * Does @blk's attached device model have the medium locked?
569 * %false if the device model has no such lock.
570 */
571bool blk_dev_is_medium_locked(BlockBackend *blk)
572{
573 if (blk->dev_ops && blk->dev_ops->is_medium_locked) {
574 return blk->dev_ops->is_medium_locked(blk->dev_opaque);
575 }
576 return false;
577}
578
579/*
580 * Notify @blk's attached device model of a backend size change.
581 */
582void blk_dev_resize_cb(BlockBackend *blk)
583{
584 if (blk->dev_ops && blk->dev_ops->resize_cb) {
585 blk->dev_ops->resize_cb(blk->dev_opaque);
586 }
587}
588
589void blk_iostatus_enable(BlockBackend *blk)
590{
373340b2
HR
591 blk->iostatus_enabled = true;
592 blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
593}
594
595/* The I/O status is only enabled if the drive explicitly
596 * enables it _and_ the VM is configured to stop on errors */
597bool blk_iostatus_is_enabled(const BlockBackend *blk)
598{
599 return (blk->iostatus_enabled &&
600 (blk->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC ||
601 blk->on_write_error == BLOCKDEV_ON_ERROR_STOP ||
602 blk->on_read_error == BLOCKDEV_ON_ERROR_STOP));
603}
604
605BlockDeviceIoStatus blk_iostatus(const BlockBackend *blk)
606{
607 return blk->iostatus;
608}
609
610void blk_iostatus_disable(BlockBackend *blk)
611{
612 blk->iostatus_enabled = false;
613}
614
615void blk_iostatus_reset(BlockBackend *blk)
616{
617 if (blk_iostatus_is_enabled(blk)) {
f21d96d0 618 BlockDriverState *bs = blk_bs(blk);
373340b2 619 blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
f21d96d0
KW
620 if (bs && bs->job) {
621 block_job_iostatus_reset(bs->job);
373340b2
HR
622 }
623 }
624}
625
626void blk_iostatus_set_err(BlockBackend *blk, int error)
627{
628 assert(blk_iostatus_is_enabled(blk));
629 if (blk->iostatus == BLOCK_DEVICE_IO_STATUS_OK) {
630 blk->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE :
631 BLOCK_DEVICE_IO_STATUS_FAILED;
632 }
4be74634
MA
633}
634
c10c9d96
KW
635void blk_set_allow_write_beyond_eof(BlockBackend *blk, bool allow)
636{
637 blk->allow_write_beyond_eof = allow;
638}
639
e7f7d676
HR
640static int blk_check_byte_request(BlockBackend *blk, int64_t offset,
641 size_t size)
642{
643 int64_t len;
644
645 if (size > INT_MAX) {
646 return -EIO;
647 }
648
c09ba36c 649 if (!blk_is_available(blk)) {
e7f7d676
HR
650 return -ENOMEDIUM;
651 }
652
e7f7d676
HR
653 if (offset < 0) {
654 return -EIO;
655 }
656
c10c9d96
KW
657 if (!blk->allow_write_beyond_eof) {
658 len = blk_getlength(blk);
659 if (len < 0) {
660 return len;
661 }
662
663 if (offset > len || len - offset < size) {
664 return -EIO;
665 }
e7f7d676
HR
666 }
667
668 return 0;
669}
670
671static int blk_check_request(BlockBackend *blk, int64_t sector_num,
672 int nb_sectors)
673{
674 if (sector_num < 0 || sector_num > INT64_MAX / BDRV_SECTOR_SIZE) {
675 return -EIO;
676 }
677
678 if (nb_sectors < 0 || nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) {
679 return -EIO;
680 }
681
682 return blk_check_byte_request(blk, sector_num * BDRV_SECTOR_SIZE,
683 nb_sectors * BDRV_SECTOR_SIZE);
684}
685
1bf1cbc9
KW
686static int coroutine_fn blk_co_preadv(BlockBackend *blk, int64_t offset,
687 unsigned int bytes, QEMUIOVector *qiov,
688 BdrvRequestFlags flags)
4be74634 689{
1bf1cbc9 690 int ret = blk_check_byte_request(blk, offset, bytes);
e7f7d676
HR
691 if (ret < 0) {
692 return ret;
693 }
694
1bf1cbc9
KW
695 return bdrv_co_do_preadv(blk_bs(blk), offset, bytes, qiov, flags);
696}
697
a8823a3b
KW
698static int coroutine_fn blk_co_pwritev(BlockBackend *blk, int64_t offset,
699 unsigned int bytes, QEMUIOVector *qiov,
700 BdrvRequestFlags flags)
701{
bfd18d1e
KW
702 int ret;
703
704 ret = blk_check_byte_request(blk, offset, bytes);
a8823a3b
KW
705 if (ret < 0) {
706 return ret;
707 }
708
bfd18d1e
KW
709 if (!blk->enable_write_cache) {
710 flags |= BDRV_REQ_FUA;
711 }
712
a8823a3b
KW
713 return bdrv_co_do_pwritev(blk_bs(blk), offset, bytes, qiov, flags);
714}
715
1bf1cbc9
KW
716typedef struct BlkRwCo {
717 BlockBackend *blk;
718 int64_t offset;
719 QEMUIOVector *qiov;
720 int ret;
721 BdrvRequestFlags flags;
722} BlkRwCo;
723
724static void blk_read_entry(void *opaque)
725{
726 BlkRwCo *rwco = opaque;
727
728 rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, rwco->qiov->size,
729 rwco->qiov, rwco->flags);
730}
731
a8823a3b
KW
732static void blk_write_entry(void *opaque)
733{
734 BlkRwCo *rwco = opaque;
735
736 rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, rwco->qiov->size,
737 rwco->qiov, rwco->flags);
738}
739
a55d3fba
KW
740static int blk_prw(BlockBackend *blk, int64_t offset, uint8_t *buf,
741 int64_t bytes, CoroutineEntry co_entry,
742 BdrvRequestFlags flags)
1bf1cbc9
KW
743{
744 AioContext *aio_context;
745 QEMUIOVector qiov;
746 struct iovec iov;
747 Coroutine *co;
748 BlkRwCo rwco;
749
1bf1cbc9
KW
750 iov = (struct iovec) {
751 .iov_base = buf,
a55d3fba 752 .iov_len = bytes,
1bf1cbc9
KW
753 };
754 qemu_iovec_init_external(&qiov, &iov, 1);
755
756 rwco = (BlkRwCo) {
757 .blk = blk,
a55d3fba 758 .offset = offset,
1bf1cbc9 759 .qiov = &qiov,
fc1453cd 760 .flags = flags,
1bf1cbc9
KW
761 .ret = NOT_DONE,
762 };
763
a8823a3b 764 co = qemu_coroutine_create(co_entry);
1bf1cbc9
KW
765 qemu_coroutine_enter(co, &rwco);
766
767 aio_context = blk_get_aio_context(blk);
768 while (rwco.ret == NOT_DONE) {
769 aio_poll(aio_context, true);
770 }
771
772 return rwco.ret;
4be74634
MA
773}
774
a55d3fba
KW
775static int blk_rw(BlockBackend *blk, int64_t sector_num, uint8_t *buf,
776 int nb_sectors, CoroutineEntry co_entry,
777 BdrvRequestFlags flags)
778{
779 if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
780 return -EINVAL;
781 }
782
783 return blk_prw(blk, sector_num << BDRV_SECTOR_BITS, buf,
784 nb_sectors << BDRV_SECTOR_BITS, co_entry, flags);
785}
786
a8823a3b
KW
787int blk_read(BlockBackend *blk, int64_t sector_num, uint8_t *buf,
788 int nb_sectors)
789{
fc1453cd 790 return blk_rw(blk, sector_num, buf, nb_sectors, blk_read_entry, 0);
a8823a3b
KW
791}
792
4be74634
MA
793int blk_read_unthrottled(BlockBackend *blk, int64_t sector_num, uint8_t *buf,
794 int nb_sectors)
795{
5bd51196
KW
796 BlockDriverState *bs = blk_bs(blk);
797 bool enabled;
798 int ret;
799
800 ret = blk_check_request(blk, sector_num, nb_sectors);
e7f7d676
HR
801 if (ret < 0) {
802 return ret;
803 }
804
5bd51196
KW
805 enabled = bs->io_limits_enabled;
806 bs->io_limits_enabled = false;
807 ret = blk_read(blk, sector_num, buf, nb_sectors);
808 bs->io_limits_enabled = enabled;
809 return ret;
4be74634
MA
810}
811
812int blk_write(BlockBackend *blk, int64_t sector_num, const uint8_t *buf,
813 int nb_sectors)
814{
fc1453cd
KW
815 return blk_rw(blk, sector_num, (uint8_t*) buf, nb_sectors,
816 blk_write_entry, 0);
4be74634
MA
817}
818
0df89e8e
KW
819int blk_write_zeroes(BlockBackend *blk, int64_t sector_num,
820 int nb_sectors, BdrvRequestFlags flags)
821{
fc1453cd
KW
822 return blk_rw(blk, sector_num, NULL, nb_sectors, blk_write_entry,
823 BDRV_REQ_ZERO_WRITE);
0df89e8e
KW
824}
825
e7f7d676
HR
826static void error_callback_bh(void *opaque)
827{
828 struct BlockBackendAIOCB *acb = opaque;
829 qemu_bh_delete(acb->bh);
830 acb->common.cb(acb->common.opaque, acb->ret);
831 qemu_aio_unref(acb);
832}
833
ca78ecfa
PL
834BlockAIOCB *blk_abort_aio_request(BlockBackend *blk,
835 BlockCompletionFunc *cb,
836 void *opaque, int ret)
e7f7d676
HR
837{
838 struct BlockBackendAIOCB *acb;
839 QEMUBH *bh;
840
841 acb = blk_aio_get(&block_backend_aiocb_info, blk, cb, opaque);
4981bdec 842 acb->blk = blk;
e7f7d676
HR
843 acb->ret = ret;
844
845 bh = aio_bh_new(blk_get_aio_context(blk), error_callback_bh, acb);
846 acb->bh = bh;
847 qemu_bh_schedule(bh);
848
849 return &acb->common;
850}
851
57d6a428
KW
852typedef struct BlkAioEmAIOCB {
853 BlockAIOCB common;
854 BlkRwCo rwco;
7fa84cd8 855 int bytes;
57d6a428
KW
856 bool has_returned;
857 QEMUBH* bh;
858} BlkAioEmAIOCB;
859
860static const AIOCBInfo blk_aio_em_aiocb_info = {
861 .aiocb_size = sizeof(BlkAioEmAIOCB),
862};
863
864static void blk_aio_complete(BlkAioEmAIOCB *acb)
865{
866 if (acb->bh) {
867 assert(acb->has_returned);
868 qemu_bh_delete(acb->bh);
869 }
870 if (acb->has_returned) {
871 acb->common.cb(acb->common.opaque, acb->rwco.ret);
872 qemu_aio_unref(acb);
873 }
874}
875
876static void blk_aio_complete_bh(void *opaque)
877{
878 blk_aio_complete(opaque);
879}
880
7fa84cd8 881static BlockAIOCB *blk_aio_prwv(BlockBackend *blk, int64_t offset, int bytes,
57d6a428
KW
882 QEMUIOVector *qiov, CoroutineEntry co_entry,
883 BdrvRequestFlags flags,
884 BlockCompletionFunc *cb, void *opaque)
885{
886 BlkAioEmAIOCB *acb;
887 Coroutine *co;
888
889 acb = blk_aio_get(&blk_aio_em_aiocb_info, blk, cb, opaque);
890 acb->rwco = (BlkRwCo) {
891 .blk = blk,
892 .offset = offset,
893 .qiov = qiov,
894 .flags = flags,
895 .ret = NOT_DONE,
896 };
7fa84cd8 897 acb->bytes = bytes;
57d6a428
KW
898 acb->bh = NULL;
899 acb->has_returned = false;
900
901 co = qemu_coroutine_create(co_entry);
902 qemu_coroutine_enter(co, acb);
903
904 acb->has_returned = true;
905 if (acb->rwco.ret != NOT_DONE) {
906 acb->bh = aio_bh_new(blk_get_aio_context(blk), blk_aio_complete_bh, acb);
907 qemu_bh_schedule(acb->bh);
908 }
909
910 return &acb->common;
911}
912
913static void blk_aio_read_entry(void *opaque)
914{
915 BlkAioEmAIOCB *acb = opaque;
916 BlkRwCo *rwco = &acb->rwco;
917
7fa84cd8
KW
918 assert(rwco->qiov->size == acb->bytes);
919 rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, acb->bytes,
57d6a428
KW
920 rwco->qiov, rwco->flags);
921 blk_aio_complete(acb);
922}
923
924static void blk_aio_write_entry(void *opaque)
925{
926 BlkAioEmAIOCB *acb = opaque;
927 BlkRwCo *rwco = &acb->rwco;
928
7fa84cd8
KW
929 assert(!rwco->qiov || rwco->qiov->size == acb->bytes);
930 rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, acb->bytes,
57d6a428
KW
931 rwco->qiov, rwco->flags);
932 blk_aio_complete(acb);
933}
934
4be74634
MA
935BlockAIOCB *blk_aio_write_zeroes(BlockBackend *blk, int64_t sector_num,
936 int nb_sectors, BdrvRequestFlags flags,
937 BlockCompletionFunc *cb, void *opaque)
938{
57d6a428
KW
939 if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
940 return blk_abort_aio_request(blk, cb, opaque, -EINVAL);
e7f7d676
HR
941 }
942
7fa84cd8
KW
943 return blk_aio_prwv(blk, sector_num << BDRV_SECTOR_BITS,
944 nb_sectors << BDRV_SECTOR_BITS, NULL,
57d6a428 945 blk_aio_write_entry, BDRV_REQ_ZERO_WRITE, cb, opaque);
4be74634
MA
946}
947
948int blk_pread(BlockBackend *blk, int64_t offset, void *buf, int count)
949{
a55d3fba 950 int ret = blk_prw(blk, offset, buf, count, blk_read_entry, 0);
e7f7d676
HR
951 if (ret < 0) {
952 return ret;
953 }
a55d3fba 954 return count;
4be74634
MA
955}
956
957int blk_pwrite(BlockBackend *blk, int64_t offset, const void *buf, int count)
958{
a55d3fba 959 int ret = blk_prw(blk, offset, (void*) buf, count, blk_write_entry, 0);
e7f7d676
HR
960 if (ret < 0) {
961 return ret;
962 }
a55d3fba 963 return count;
4be74634
MA
964}
965
966int64_t blk_getlength(BlockBackend *blk)
967{
c09ba36c
HR
968 if (!blk_is_available(blk)) {
969 return -ENOMEDIUM;
970 }
971
f21d96d0 972 return bdrv_getlength(blk_bs(blk));
4be74634
MA
973}
974
975void blk_get_geometry(BlockBackend *blk, uint64_t *nb_sectors_ptr)
976{
f21d96d0 977 if (!blk_bs(blk)) {
a46fc9c9
HR
978 *nb_sectors_ptr = 0;
979 } else {
f21d96d0 980 bdrv_get_geometry(blk_bs(blk), nb_sectors_ptr);
a46fc9c9 981 }
4be74634
MA
982}
983
1ef01253
HR
984int64_t blk_nb_sectors(BlockBackend *blk)
985{
c09ba36c
HR
986 if (!blk_is_available(blk)) {
987 return -ENOMEDIUM;
988 }
989
f21d96d0 990 return bdrv_nb_sectors(blk_bs(blk));
1ef01253
HR
991}
992
4be74634
MA
993BlockAIOCB *blk_aio_readv(BlockBackend *blk, int64_t sector_num,
994 QEMUIOVector *iov, int nb_sectors,
995 BlockCompletionFunc *cb, void *opaque)
996{
57d6a428
KW
997 if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
998 return blk_abort_aio_request(blk, cb, opaque, -EINVAL);
e7f7d676
HR
999 }
1000
7fa84cd8
KW
1001 assert(nb_sectors << BDRV_SECTOR_BITS == iov->size);
1002 return blk_aio_prwv(blk, sector_num << BDRV_SECTOR_BITS, iov->size, iov,
57d6a428 1003 blk_aio_read_entry, 0, cb, opaque);
4be74634
MA
1004}
1005
1006BlockAIOCB *blk_aio_writev(BlockBackend *blk, int64_t sector_num,
1007 QEMUIOVector *iov, int nb_sectors,
1008 BlockCompletionFunc *cb, void *opaque)
1009{
57d6a428
KW
1010 if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
1011 return blk_abort_aio_request(blk, cb, opaque, -EINVAL);
e7f7d676
HR
1012 }
1013
7fa84cd8
KW
1014 assert(nb_sectors << BDRV_SECTOR_BITS == iov->size);
1015 return blk_aio_prwv(blk, sector_num << BDRV_SECTOR_BITS, iov->size, iov,
57d6a428 1016 blk_aio_write_entry, 0, cb, opaque);
4be74634
MA
1017}
1018
1019BlockAIOCB *blk_aio_flush(BlockBackend *blk,
1020 BlockCompletionFunc *cb, void *opaque)
1021{
c09ba36c 1022 if (!blk_is_available(blk)) {
ca78ecfa 1023 return blk_abort_aio_request(blk, cb, opaque, -ENOMEDIUM);
c09ba36c
HR
1024 }
1025
f21d96d0 1026 return bdrv_aio_flush(blk_bs(blk), cb, opaque);
4be74634
MA
1027}
1028
1029BlockAIOCB *blk_aio_discard(BlockBackend *blk,
1030 int64_t sector_num, int nb_sectors,
1031 BlockCompletionFunc *cb, void *opaque)
1032{
e7f7d676
HR
1033 int ret = blk_check_request(blk, sector_num, nb_sectors);
1034 if (ret < 0) {
ca78ecfa 1035 return blk_abort_aio_request(blk, cb, opaque, ret);
e7f7d676
HR
1036 }
1037
f21d96d0 1038 return bdrv_aio_discard(blk_bs(blk), sector_num, nb_sectors, cb, opaque);
4be74634
MA
1039}
1040
1041void blk_aio_cancel(BlockAIOCB *acb)
1042{
1043 bdrv_aio_cancel(acb);
1044}
1045
1046void blk_aio_cancel_async(BlockAIOCB *acb)
1047{
1048 bdrv_aio_cancel_async(acb);
1049}
1050
1051int blk_aio_multiwrite(BlockBackend *blk, BlockRequest *reqs, int num_reqs)
1052{
e7f7d676
HR
1053 int i, ret;
1054
1055 for (i = 0; i < num_reqs; i++) {
1056 ret = blk_check_request(blk, reqs[i].sector, reqs[i].nb_sectors);
1057 if (ret < 0) {
1058 return ret;
1059 }
1060 }
1061
f21d96d0 1062 return bdrv_aio_multiwrite(blk_bs(blk), reqs, num_reqs);
4be74634
MA
1063}
1064
1065int blk_ioctl(BlockBackend *blk, unsigned long int req, void *buf)
1066{
c09ba36c
HR
1067 if (!blk_is_available(blk)) {
1068 return -ENOMEDIUM;
1069 }
1070
f21d96d0 1071 return bdrv_ioctl(blk_bs(blk), req, buf);
4be74634
MA
1072}
1073
1074BlockAIOCB *blk_aio_ioctl(BlockBackend *blk, unsigned long int req, void *buf,
1075 BlockCompletionFunc *cb, void *opaque)
1076{
c09ba36c 1077 if (!blk_is_available(blk)) {
ca78ecfa 1078 return blk_abort_aio_request(blk, cb, opaque, -ENOMEDIUM);
c09ba36c
HR
1079 }
1080
f21d96d0 1081 return bdrv_aio_ioctl(blk_bs(blk), req, buf, cb, opaque);
4be74634
MA
1082}
1083
2bb0dce7
HR
1084int blk_co_discard(BlockBackend *blk, int64_t sector_num, int nb_sectors)
1085{
e7f7d676
HR
1086 int ret = blk_check_request(blk, sector_num, nb_sectors);
1087 if (ret < 0) {
1088 return ret;
1089 }
1090
f21d96d0 1091 return bdrv_co_discard(blk_bs(blk), sector_num, nb_sectors);
2bb0dce7
HR
1092}
1093
1094int blk_co_flush(BlockBackend *blk)
1095{
c09ba36c
HR
1096 if (!blk_is_available(blk)) {
1097 return -ENOMEDIUM;
1098 }
1099
f21d96d0 1100 return bdrv_co_flush(blk_bs(blk));
2bb0dce7
HR
1101}
1102
4be74634
MA
1103int blk_flush(BlockBackend *blk)
1104{
c09ba36c
HR
1105 if (!blk_is_available(blk)) {
1106 return -ENOMEDIUM;
1107 }
1108
f21d96d0 1109 return bdrv_flush(blk_bs(blk));
4be74634
MA
1110}
1111
97b0385a
AY
1112void blk_drain(BlockBackend *blk)
1113{
f21d96d0
KW
1114 if (blk_bs(blk)) {
1115 bdrv_drain(blk_bs(blk));
a46fc9c9 1116 }
97b0385a
AY
1117}
1118
4be74634
MA
1119void blk_drain_all(void)
1120{
1121 bdrv_drain_all();
1122}
1123
373340b2
HR
1124void blk_set_on_error(BlockBackend *blk, BlockdevOnError on_read_error,
1125 BlockdevOnError on_write_error)
1126{
1127 blk->on_read_error = on_read_error;
1128 blk->on_write_error = on_write_error;
1129}
1130
4be74634
MA
1131BlockdevOnError blk_get_on_error(BlockBackend *blk, bool is_read)
1132{
373340b2 1133 return is_read ? blk->on_read_error : blk->on_write_error;
4be74634
MA
1134}
1135
1136BlockErrorAction blk_get_error_action(BlockBackend *blk, bool is_read,
1137 int error)
1138{
373340b2
HR
1139 BlockdevOnError on_err = blk_get_on_error(blk, is_read);
1140
1141 switch (on_err) {
1142 case BLOCKDEV_ON_ERROR_ENOSPC:
1143 return (error == ENOSPC) ?
1144 BLOCK_ERROR_ACTION_STOP : BLOCK_ERROR_ACTION_REPORT;
1145 case BLOCKDEV_ON_ERROR_STOP:
1146 return BLOCK_ERROR_ACTION_STOP;
1147 case BLOCKDEV_ON_ERROR_REPORT:
1148 return BLOCK_ERROR_ACTION_REPORT;
1149 case BLOCKDEV_ON_ERROR_IGNORE:
1150 return BLOCK_ERROR_ACTION_IGNORE;
1151 default:
1152 abort();
1153 }
4be74634
MA
1154}
1155
373340b2
HR
1156static void send_qmp_error_event(BlockBackend *blk,
1157 BlockErrorAction action,
1158 bool is_read, int error)
1159{
1160 IoOperationType optype;
1161
1162 optype = is_read ? IO_OPERATION_TYPE_READ : IO_OPERATION_TYPE_WRITE;
1163 qapi_event_send_block_io_error(blk_name(blk), optype, action,
1164 blk_iostatus_is_enabled(blk),
1165 error == ENOSPC, strerror(error),
1166 &error_abort);
1167}
1168
1169/* This is done by device models because, while the block layer knows
1170 * about the error, it does not know whether an operation comes from
1171 * the device or the block layer (from a job, for example).
1172 */
4be74634
MA
1173void blk_error_action(BlockBackend *blk, BlockErrorAction action,
1174 bool is_read, int error)
1175{
373340b2
HR
1176 assert(error >= 0);
1177
1178 if (action == BLOCK_ERROR_ACTION_STOP) {
1179 /* First set the iostatus, so that "info block" returns an iostatus
1180 * that matches the events raised so far (an additional error iostatus
1181 * is fine, but not a lost one).
1182 */
1183 blk_iostatus_set_err(blk, error);
1184
1185 /* Then raise the request to stop the VM and the event.
1186 * qemu_system_vmstop_request_prepare has two effects. First,
1187 * it ensures that the STOP event always comes after the
1188 * BLOCK_IO_ERROR event. Second, it ensures that even if management
1189 * can observe the STOP event and do a "cont" before the STOP
1190 * event is issued, the VM will not stop. In this case, vm_start()
1191 * also ensures that the STOP/RESUME pair of events is emitted.
1192 */
1193 qemu_system_vmstop_request_prepare();
1194 send_qmp_error_event(blk, action, is_read, error);
1195 qemu_system_vmstop_request(RUN_STATE_IO_ERROR);
1196 } else {
1197 send_qmp_error_event(blk, action, is_read, error);
1198 }
4be74634
MA
1199}
1200
1201int blk_is_read_only(BlockBackend *blk)
1202{
f21d96d0
KW
1203 BlockDriverState *bs = blk_bs(blk);
1204
1205 if (bs) {
1206 return bdrv_is_read_only(bs);
061959e8
HR
1207 } else {
1208 return blk->root_state.read_only;
1209 }
4be74634
MA
1210}
1211
1212int blk_is_sg(BlockBackend *blk)
1213{
f21d96d0
KW
1214 BlockDriverState *bs = blk_bs(blk);
1215
1216 if (!bs) {
a46fc9c9
HR
1217 return 0;
1218 }
1219
f21d96d0 1220 return bdrv_is_sg(bs);
4be74634
MA
1221}
1222
1223int blk_enable_write_cache(BlockBackend *blk)
1224{
bfd18d1e 1225 return blk->enable_write_cache;
4be74634
MA
1226}
1227
1228void blk_set_enable_write_cache(BlockBackend *blk, bool wce)
1229{
bfd18d1e 1230 blk->enable_write_cache = wce;
4be74634
MA
1231}
1232
2bb0dce7
HR
1233void blk_invalidate_cache(BlockBackend *blk, Error **errp)
1234{
f21d96d0
KW
1235 BlockDriverState *bs = blk_bs(blk);
1236
1237 if (!bs) {
c09ba36c
HR
1238 error_setg(errp, "Device '%s' has no medium", blk->name);
1239 return;
1240 }
1241
f21d96d0 1242 bdrv_invalidate_cache(bs, errp);
2bb0dce7
HR
1243}
1244
e031f750 1245bool blk_is_inserted(BlockBackend *blk)
4be74634 1246{
f21d96d0
KW
1247 BlockDriverState *bs = blk_bs(blk);
1248
1249 return bs && bdrv_is_inserted(bs);
db0284f8
HR
1250}
1251
1252bool blk_is_available(BlockBackend *blk)
1253{
1254 return blk_is_inserted(blk) && !blk_dev_is_tray_open(blk);
4be74634
MA
1255}
1256
1257void blk_lock_medium(BlockBackend *blk, bool locked)
1258{
f21d96d0
KW
1259 BlockDriverState *bs = blk_bs(blk);
1260
1261 if (bs) {
1262 bdrv_lock_medium(bs, locked);
a46fc9c9 1263 }
4be74634
MA
1264}
1265
1266void blk_eject(BlockBackend *blk, bool eject_flag)
1267{
f21d96d0
KW
1268 BlockDriverState *bs = blk_bs(blk);
1269
1270 if (bs) {
1271 bdrv_eject(bs, eject_flag);
a46fc9c9 1272 }
4be74634
MA
1273}
1274
1275int blk_get_flags(BlockBackend *blk)
1276{
f21d96d0
KW
1277 BlockDriverState *bs = blk_bs(blk);
1278
1279 if (bs) {
1280 return bdrv_get_flags(bs);
061959e8
HR
1281 } else {
1282 return blk->root_state.open_flags;
1283 }
4be74634
MA
1284}
1285
454057b7
PL
1286int blk_get_max_transfer_length(BlockBackend *blk)
1287{
f21d96d0
KW
1288 BlockDriverState *bs = blk_bs(blk);
1289
1290 if (bs) {
1291 return bs->bl.max_transfer_length;
a46fc9c9
HR
1292 } else {
1293 return 0;
1294 }
454057b7
PL
1295}
1296
648296e0
SH
1297int blk_get_max_iov(BlockBackend *blk)
1298{
f21d96d0 1299 return blk->root->bs->bl.max_iov;
648296e0
SH
1300}
1301
4be74634
MA
1302void blk_set_guest_block_size(BlockBackend *blk, int align)
1303{
68e9ec01 1304 blk->guest_block_size = align;
4be74634
MA
1305}
1306
f1c17521
PB
1307void *blk_try_blockalign(BlockBackend *blk, size_t size)
1308{
f21d96d0 1309 return qemu_try_blockalign(blk ? blk_bs(blk) : NULL, size);
f1c17521
PB
1310}
1311
4be74634
MA
1312void *blk_blockalign(BlockBackend *blk, size_t size)
1313{
f21d96d0 1314 return qemu_blockalign(blk ? blk_bs(blk) : NULL, size);
4be74634
MA
1315}
1316
1317bool blk_op_is_blocked(BlockBackend *blk, BlockOpType op, Error **errp)
1318{
f21d96d0
KW
1319 BlockDriverState *bs = blk_bs(blk);
1320
1321 if (!bs) {
a46fc9c9
HR
1322 return false;
1323 }
1324
f21d96d0 1325 return bdrv_op_is_blocked(bs, op, errp);
4be74634
MA
1326}
1327
1328void blk_op_unblock(BlockBackend *blk, BlockOpType op, Error *reason)
1329{
f21d96d0
KW
1330 BlockDriverState *bs = blk_bs(blk);
1331
1332 if (bs) {
1333 bdrv_op_unblock(bs, op, reason);
a46fc9c9 1334 }
4be74634
MA
1335}
1336
1337void blk_op_block_all(BlockBackend *blk, Error *reason)
1338{
f21d96d0
KW
1339 BlockDriverState *bs = blk_bs(blk);
1340
1341 if (bs) {
1342 bdrv_op_block_all(bs, reason);
a46fc9c9 1343 }
4be74634
MA
1344}
1345
1346void blk_op_unblock_all(BlockBackend *blk, Error *reason)
1347{
f21d96d0
KW
1348 BlockDriverState *bs = blk_bs(blk);
1349
1350 if (bs) {
1351 bdrv_op_unblock_all(bs, reason);
a46fc9c9 1352 }
4be74634
MA
1353}
1354
1355AioContext *blk_get_aio_context(BlockBackend *blk)
1356{
f21d96d0
KW
1357 BlockDriverState *bs = blk_bs(blk);
1358
1359 if (bs) {
1360 return bdrv_get_aio_context(bs);
4981bdec
HR
1361 } else {
1362 return qemu_get_aio_context();
1363 }
1364}
1365
1366static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb)
1367{
1368 BlockBackendAIOCB *blk_acb = DO_UPCAST(BlockBackendAIOCB, common, acb);
1369 return blk_get_aio_context(blk_acb->blk);
4be74634
MA
1370}
1371
1372void blk_set_aio_context(BlockBackend *blk, AioContext *new_context)
1373{
f21d96d0
KW
1374 BlockDriverState *bs = blk_bs(blk);
1375
1376 if (bs) {
1377 bdrv_set_aio_context(bs, new_context);
a46fc9c9 1378 }
4be74634
MA
1379}
1380
2019ba0a
HR
1381void blk_add_aio_context_notifier(BlockBackend *blk,
1382 void (*attached_aio_context)(AioContext *new_context, void *opaque),
1383 void (*detach_aio_context)(void *opaque), void *opaque)
1384{
f21d96d0
KW
1385 BlockDriverState *bs = blk_bs(blk);
1386
1387 if (bs) {
1388 bdrv_add_aio_context_notifier(bs, attached_aio_context,
a46fc9c9
HR
1389 detach_aio_context, opaque);
1390 }
2019ba0a
HR
1391}
1392
1393void blk_remove_aio_context_notifier(BlockBackend *blk,
1394 void (*attached_aio_context)(AioContext *,
1395 void *),
1396 void (*detach_aio_context)(void *),
1397 void *opaque)
1398{
f21d96d0
KW
1399 BlockDriverState *bs = blk_bs(blk);
1400
1401 if (bs) {
1402 bdrv_remove_aio_context_notifier(bs, attached_aio_context,
a46fc9c9
HR
1403 detach_aio_context, opaque);
1404 }
2019ba0a
HR
1405}
1406
3301f6c6
HR
1407void blk_add_remove_bs_notifier(BlockBackend *blk, Notifier *notify)
1408{
1409 notifier_list_add(&blk->remove_bs_notifiers, notify);
1410}
1411
1412void blk_add_insert_bs_notifier(BlockBackend *blk, Notifier *notify)
1413{
1414 notifier_list_add(&blk->insert_bs_notifiers, notify);
1415}
1416
4be74634
MA
1417void blk_io_plug(BlockBackend *blk)
1418{
f21d96d0
KW
1419 BlockDriverState *bs = blk_bs(blk);
1420
1421 if (bs) {
1422 bdrv_io_plug(bs);
a46fc9c9 1423 }
4be74634
MA
1424}
1425
1426void blk_io_unplug(BlockBackend *blk)
1427{
f21d96d0
KW
1428 BlockDriverState *bs = blk_bs(blk);
1429
1430 if (bs) {
1431 bdrv_io_unplug(bs);
a46fc9c9 1432 }
4be74634
MA
1433}
1434
1435BlockAcctStats *blk_get_stats(BlockBackend *blk)
1436{
7f0e9da6 1437 return &blk->stats;
4be74634
MA
1438}
1439
1440void *blk_aio_get(const AIOCBInfo *aiocb_info, BlockBackend *blk,
1441 BlockCompletionFunc *cb, void *opaque)
1442{
1443 return qemu_aio_get(aiocb_info, blk_bs(blk), cb, opaque);
1444}
1ef01253
HR
1445
1446int coroutine_fn blk_co_write_zeroes(BlockBackend *blk, int64_t sector_num,
1447 int nb_sectors, BdrvRequestFlags flags)
1448{
8896e088
KW
1449 if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
1450 return -EINVAL;
e7f7d676
HR
1451 }
1452
8896e088
KW
1453 return blk_co_pwritev(blk, sector_num << BDRV_SECTOR_BITS,
1454 nb_sectors << BDRV_SECTOR_BITS, NULL,
1455 BDRV_REQ_ZERO_WRITE);
1ef01253
HR
1456}
1457
1458int blk_write_compressed(BlockBackend *blk, int64_t sector_num,
1459 const uint8_t *buf, int nb_sectors)
1460{
e7f7d676
HR
1461 int ret = blk_check_request(blk, sector_num, nb_sectors);
1462 if (ret < 0) {
1463 return ret;
1464 }
1465
f21d96d0 1466 return bdrv_write_compressed(blk_bs(blk), sector_num, buf, nb_sectors);
1ef01253
HR
1467}
1468
1469int blk_truncate(BlockBackend *blk, int64_t offset)
1470{
c09ba36c
HR
1471 if (!blk_is_available(blk)) {
1472 return -ENOMEDIUM;
1473 }
1474
f21d96d0 1475 return bdrv_truncate(blk_bs(blk), offset);
1ef01253
HR
1476}
1477
1478int blk_discard(BlockBackend *blk, int64_t sector_num, int nb_sectors)
1479{
e7f7d676
HR
1480 int ret = blk_check_request(blk, sector_num, nb_sectors);
1481 if (ret < 0) {
1482 return ret;
1483 }
1484
f21d96d0 1485 return bdrv_discard(blk_bs(blk), sector_num, nb_sectors);
1ef01253
HR
1486}
1487
1488int blk_save_vmstate(BlockBackend *blk, const uint8_t *buf,
1489 int64_t pos, int size)
1490{
bfd18d1e
KW
1491 int ret;
1492
c09ba36c
HR
1493 if (!blk_is_available(blk)) {
1494 return -ENOMEDIUM;
1495 }
1496
bfd18d1e
KW
1497 ret = bdrv_save_vmstate(blk_bs(blk), buf, pos, size);
1498 if (ret < 0) {
1499 return ret;
1500 }
1501
1502 if (ret == size && !blk->enable_write_cache) {
1503 ret = bdrv_flush(blk_bs(blk));
1504 }
1505
1506 return ret < 0 ? ret : size;
1ef01253
HR
1507}
1508
1509int blk_load_vmstate(BlockBackend *blk, uint8_t *buf, int64_t pos, int size)
1510{
c09ba36c
HR
1511 if (!blk_is_available(blk)) {
1512 return -ENOMEDIUM;
1513 }
1514
f21d96d0 1515 return bdrv_load_vmstate(blk_bs(blk), buf, pos, size);
1ef01253 1516}
f0272c4d
ET
1517
1518int blk_probe_blocksizes(BlockBackend *blk, BlockSizes *bsz)
1519{
c09ba36c
HR
1520 if (!blk_is_available(blk)) {
1521 return -ENOMEDIUM;
1522 }
1523
f21d96d0 1524 return bdrv_probe_blocksizes(blk_bs(blk), bsz);
f0272c4d
ET
1525}
1526
1527int blk_probe_geometry(BlockBackend *blk, HDGeometry *geo)
1528{
c09ba36c
HR
1529 if (!blk_is_available(blk)) {
1530 return -ENOMEDIUM;
1531 }
1532
f21d96d0 1533 return bdrv_probe_geometry(blk_bs(blk), geo);
f0272c4d 1534}
281d22d8
HR
1535
1536/*
1537 * Updates the BlockBackendRootState object with data from the currently
1538 * attached BlockDriverState.
1539 */
1540void blk_update_root_state(BlockBackend *blk)
1541{
f21d96d0 1542 assert(blk->root);
281d22d8 1543
f21d96d0
KW
1544 blk->root_state.open_flags = blk->root->bs->open_flags;
1545 blk->root_state.read_only = blk->root->bs->read_only;
1546 blk->root_state.detect_zeroes = blk->root->bs->detect_zeroes;
281d22d8
HR
1547
1548 if (blk->root_state.throttle_group) {
1549 g_free(blk->root_state.throttle_group);
1550 throttle_group_unref(blk->root_state.throttle_state);
1551 }
f21d96d0
KW
1552 if (blk->root->bs->throttle_state) {
1553 const char *name = throttle_group_get_name(blk->root->bs);
281d22d8
HR
1554 blk->root_state.throttle_group = g_strdup(name);
1555 blk->root_state.throttle_state = throttle_group_incref(name);
1556 } else {
1557 blk->root_state.throttle_group = NULL;
1558 blk->root_state.throttle_state = NULL;
1559 }
1560}
1561
38cb18f5
HR
1562/*
1563 * Applies the information in the root state to the given BlockDriverState. This
1564 * does not include the flags which have to be specified for bdrv_open(), use
1565 * blk_get_open_flags_from_root_state() to inquire them.
1566 */
1567void blk_apply_root_state(BlockBackend *blk, BlockDriverState *bs)
1568{
1569 bs->detect_zeroes = blk->root_state.detect_zeroes;
1570 if (blk->root_state.throttle_group) {
1571 bdrv_io_limits_enable(bs, blk->root_state.throttle_group);
1572 }
1573}
1574
1575/*
1576 * Returns the flags to be used for bdrv_open() of a BlockDriverState which is
1577 * supposed to inherit the root state.
1578 */
1579int blk_get_open_flags_from_root_state(BlockBackend *blk)
1580{
1581 int bs_flags;
1582
1583 bs_flags = blk->root_state.read_only ? 0 : BDRV_O_RDWR;
1584 bs_flags |= blk->root_state.open_flags & ~BDRV_O_RDWR;
1585
1586 return bs_flags;
1587}
1588
281d22d8
HR
1589BlockBackendRootState *blk_get_root_state(BlockBackend *blk)
1590{
1591 return &blk->root_state;
1592}
1393f212
HR
1593
1594int blk_commit_all(void)
1595{
fe1a9cbc
HR
1596 BlockBackend *blk = NULL;
1597
1598 while ((blk = blk_all_next(blk)) != NULL) {
1599 AioContext *aio_context = blk_get_aio_context(blk);
1600
1601 aio_context_acquire(aio_context);
f21d96d0
KW
1602 if (blk_is_inserted(blk) && blk->root->bs->backing) {
1603 int ret = bdrv_commit(blk->root->bs);
fe1a9cbc
HR
1604 if (ret < 0) {
1605 aio_context_release(aio_context);
1606 return ret;
1607 }
1608 }
1609 aio_context_release(aio_context);
1610 }
1611 return 0;
1612}
1613
1614int blk_flush_all(void)
1615{
1616 BlockBackend *blk = NULL;
1617 int result = 0;
1618
1619 while ((blk = blk_all_next(blk)) != NULL) {
1620 AioContext *aio_context = blk_get_aio_context(blk);
1621 int ret;
1622
1623 aio_context_acquire(aio_context);
1624 if (blk_is_inserted(blk)) {
1625 ret = blk_flush(blk);
1626 if (ret < 0 && !result) {
1627 result = ret;
1628 }
1629 }
1630 aio_context_release(aio_context);
1631 }
1632
1633 return result;
1393f212 1634}