hw: virtio-pci: drop DO_UPCAST
[qemu/ar7.git] / block / block-backend.c
blobf6ea8243080bb13dc1ac443fc4800d3eaded47e8
1 /*
2 * QEMU Block backends
4 * Copyright (C) 2014-2016 Red Hat, Inc.
6 * Authors:
7 * Markus Armbruster <armbru@redhat.com>,
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.
13 #include "qemu/osdep.h"
14 #include "sysemu/block-backend.h"
15 #include "block/block_int.h"
16 #include "block/blockjob.h"
17 #include "block/throttle-groups.h"
18 #include "sysemu/blockdev.h"
19 #include "sysemu/sysemu.h"
20 #include "qapi/error.h"
21 #include "qapi/qapi-events-block.h"
22 #include "qemu/id.h"
23 #include "qemu/option.h"
24 #include "trace.h"
25 #include "migration/misc.h"
27 /* Number of coroutines to reserve per attached device model */
28 #define COROUTINE_POOL_RESERVATION 64
30 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
32 static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb);
34 typedef struct BlockBackendAioNotifier {
35 void (*attached_aio_context)(AioContext *new_context, void *opaque);
36 void (*detach_aio_context)(void *opaque);
37 void *opaque;
38 QLIST_ENTRY(BlockBackendAioNotifier) list;
39 } BlockBackendAioNotifier;
41 struct BlockBackend {
42 char *name;
43 int refcnt;
44 BdrvChild *root;
45 DriveInfo *legacy_dinfo; /* null unless created by drive_new() */
46 QTAILQ_ENTRY(BlockBackend) link; /* for block_backends */
47 QTAILQ_ENTRY(BlockBackend) monitor_link; /* for monitor_block_backends */
48 BlockBackendPublic public;
50 DeviceState *dev; /* attached device model, if any */
51 const BlockDevOps *dev_ops;
52 void *dev_opaque;
54 /* the block size for which the guest device expects atomicity */
55 int guest_block_size;
57 /* If the BDS tree is removed, some of its options are stored here (which
58 * can be used to restore those options in the new BDS on insert) */
59 BlockBackendRootState root_state;
61 bool enable_write_cache;
63 /* I/O stats (display with "info blockstats"). */
64 BlockAcctStats stats;
66 BlockdevOnError on_read_error, on_write_error;
67 bool iostatus_enabled;
68 BlockDeviceIoStatus iostatus;
70 uint64_t perm;
71 uint64_t shared_perm;
72 bool disable_perm;
74 bool allow_write_beyond_eof;
76 NotifierList remove_bs_notifiers, insert_bs_notifiers;
77 QLIST_HEAD(, BlockBackendAioNotifier) aio_notifiers;
79 int quiesce_counter;
80 VMChangeStateEntry *vmsh;
81 bool force_allow_inactivate;
83 /* Number of in-flight aio requests. BlockDriverState also counts
84 * in-flight requests but aio requests can exist even when blk->root is
85 * NULL, so we cannot rely on its counter for that case.
86 * Accessed with atomic ops.
88 unsigned int in_flight;
91 typedef struct BlockBackendAIOCB {
92 BlockAIOCB common;
93 BlockBackend *blk;
94 int ret;
95 } BlockBackendAIOCB;
97 static const AIOCBInfo block_backend_aiocb_info = {
98 .get_aio_context = blk_aiocb_get_aio_context,
99 .aiocb_size = sizeof(BlockBackendAIOCB),
102 static void drive_info_del(DriveInfo *dinfo);
103 static BlockBackend *bdrv_first_blk(BlockDriverState *bs);
105 /* All BlockBackends */
106 static QTAILQ_HEAD(, BlockBackend) block_backends =
107 QTAILQ_HEAD_INITIALIZER(block_backends);
109 /* All BlockBackends referenced by the monitor and which are iterated through by
110 * blk_next() */
111 static QTAILQ_HEAD(, BlockBackend) monitor_block_backends =
112 QTAILQ_HEAD_INITIALIZER(monitor_block_backends);
114 static void blk_root_inherit_options(int *child_flags, QDict *child_options,
115 int parent_flags, QDict *parent_options)
117 /* We're not supposed to call this function for root nodes */
118 abort();
120 static void blk_root_drained_begin(BdrvChild *child);
121 static bool blk_root_drained_poll(BdrvChild *child);
122 static void blk_root_drained_end(BdrvChild *child);
124 static void blk_root_change_media(BdrvChild *child, bool load);
125 static void blk_root_resize(BdrvChild *child);
127 static char *blk_root_get_parent_desc(BdrvChild *child)
129 BlockBackend *blk = child->opaque;
130 char *dev_id;
132 if (blk->name) {
133 return g_strdup(blk->name);
136 dev_id = blk_get_attached_dev_id(blk);
137 if (*dev_id) {
138 return dev_id;
139 } else {
140 /* TODO Callback into the BB owner for something more detailed */
141 g_free(dev_id);
142 return g_strdup("a block device");
146 static const char *blk_root_get_name(BdrvChild *child)
148 return blk_name(child->opaque);
151 static void blk_vm_state_changed(void *opaque, int running, RunState state)
153 Error *local_err = NULL;
154 BlockBackend *blk = opaque;
156 if (state == RUN_STATE_INMIGRATE) {
157 return;
160 qemu_del_vm_change_state_handler(blk->vmsh);
161 blk->vmsh = NULL;
162 blk_set_perm(blk, blk->perm, blk->shared_perm, &local_err);
163 if (local_err) {
164 error_report_err(local_err);
169 * Notifies the user of the BlockBackend that migration has completed. qdev
170 * devices can tighten their permissions in response (specifically revoke
171 * shared write permissions that we needed for storage migration).
173 * If an error is returned, the VM cannot be allowed to be resumed.
175 static void blk_root_activate(BdrvChild *child, Error **errp)
177 BlockBackend *blk = child->opaque;
178 Error *local_err = NULL;
180 if (!blk->disable_perm) {
181 return;
184 blk->disable_perm = false;
186 blk_set_perm(blk, blk->perm, BLK_PERM_ALL, &local_err);
187 if (local_err) {
188 error_propagate(errp, local_err);
189 blk->disable_perm = true;
190 return;
193 if (runstate_check(RUN_STATE_INMIGRATE)) {
194 /* Activation can happen when migration process is still active, for
195 * example when nbd_server_add is called during non-shared storage
196 * migration. Defer the shared_perm update to migration completion. */
197 if (!blk->vmsh) {
198 blk->vmsh = qemu_add_vm_change_state_handler(blk_vm_state_changed,
199 blk);
201 return;
204 blk_set_perm(blk, blk->perm, blk->shared_perm, &local_err);
205 if (local_err) {
206 error_propagate(errp, local_err);
207 blk->disable_perm = true;
208 return;
212 void blk_set_force_allow_inactivate(BlockBackend *blk)
214 blk->force_allow_inactivate = true;
217 static bool blk_can_inactivate(BlockBackend *blk)
219 /* If it is a guest device, inactivate is ok. */
220 if (blk->dev || blk_name(blk)[0]) {
221 return true;
224 /* Inactivating means no more writes to the image can be done,
225 * even if those writes would be changes invisible to the
226 * guest. For block job BBs that satisfy this, we can just allow
227 * it. This is the case for mirror job source, which is required
228 * by libvirt non-shared block migration. */
229 if (!(blk->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED))) {
230 return true;
233 return blk->force_allow_inactivate;
236 static int blk_root_inactivate(BdrvChild *child)
238 BlockBackend *blk = child->opaque;
240 if (blk->disable_perm) {
241 return 0;
244 if (!blk_can_inactivate(blk)) {
245 return -EPERM;
248 blk->disable_perm = true;
249 if (blk->root) {
250 bdrv_child_try_set_perm(blk->root, 0, BLK_PERM_ALL, &error_abort);
253 return 0;
256 static void blk_root_attach(BdrvChild *child)
258 BlockBackend *blk = child->opaque;
259 BlockBackendAioNotifier *notifier;
261 trace_blk_root_attach(child, blk, child->bs);
263 QLIST_FOREACH(notifier, &blk->aio_notifiers, list) {
264 bdrv_add_aio_context_notifier(child->bs,
265 notifier->attached_aio_context,
266 notifier->detach_aio_context,
267 notifier->opaque);
271 static void blk_root_detach(BdrvChild *child)
273 BlockBackend *blk = child->opaque;
274 BlockBackendAioNotifier *notifier;
276 trace_blk_root_detach(child, blk, child->bs);
278 QLIST_FOREACH(notifier, &blk->aio_notifiers, list) {
279 bdrv_remove_aio_context_notifier(child->bs,
280 notifier->attached_aio_context,
281 notifier->detach_aio_context,
282 notifier->opaque);
286 static const BdrvChildRole child_root = {
287 .inherit_options = blk_root_inherit_options,
289 .change_media = blk_root_change_media,
290 .resize = blk_root_resize,
291 .get_name = blk_root_get_name,
292 .get_parent_desc = blk_root_get_parent_desc,
294 .drained_begin = blk_root_drained_begin,
295 .drained_poll = blk_root_drained_poll,
296 .drained_end = blk_root_drained_end,
298 .activate = blk_root_activate,
299 .inactivate = blk_root_inactivate,
301 .attach = blk_root_attach,
302 .detach = blk_root_detach,
306 * Create a new BlockBackend with a reference count of one.
308 * @perm is a bitmasks of BLK_PERM_* constants which describes the permissions
309 * to request for a block driver node that is attached to this BlockBackend.
310 * @shared_perm is a bitmask which describes which permissions may be granted
311 * to other users of the attached node.
312 * Both sets of permissions can be changed later using blk_set_perm().
314 * Return the new BlockBackend on success, null on failure.
316 BlockBackend *blk_new(uint64_t perm, uint64_t shared_perm)
318 BlockBackend *blk;
320 blk = g_new0(BlockBackend, 1);
321 blk->refcnt = 1;
322 blk->perm = perm;
323 blk->shared_perm = shared_perm;
324 blk_set_enable_write_cache(blk, true);
326 blk->on_read_error = BLOCKDEV_ON_ERROR_REPORT;
327 blk->on_write_error = BLOCKDEV_ON_ERROR_ENOSPC;
329 block_acct_init(&blk->stats);
331 notifier_list_init(&blk->remove_bs_notifiers);
332 notifier_list_init(&blk->insert_bs_notifiers);
333 QLIST_INIT(&blk->aio_notifiers);
335 QTAILQ_INSERT_TAIL(&block_backends, blk, link);
336 return blk;
340 * Creates a new BlockBackend, opens a new BlockDriverState, and connects both.
342 * Just as with bdrv_open(), after having called this function the reference to
343 * @options belongs to the block layer (even on failure).
345 * TODO: Remove @filename and @flags; it should be possible to specify a whole
346 * BDS tree just by specifying the @options QDict (or @reference,
347 * alternatively). At the time of adding this function, this is not possible,
348 * though, so callers of this function have to be able to specify @filename and
349 * @flags.
351 BlockBackend *blk_new_open(const char *filename, const char *reference,
352 QDict *options, int flags, Error **errp)
354 BlockBackend *blk;
355 BlockDriverState *bs;
356 uint64_t perm = 0;
358 /* blk_new_open() is mainly used in .bdrv_create implementations and the
359 * tools where sharing isn't a concern because the BDS stays private, so we
360 * just request permission according to the flags.
362 * The exceptions are xen_disk and blockdev_init(); in these cases, the
363 * caller of blk_new_open() doesn't make use of the permissions, but they
364 * shouldn't hurt either. We can still share everything here because the
365 * guest devices will add their own blockers if they can't share. */
366 if ((flags & BDRV_O_NO_IO) == 0) {
367 perm |= BLK_PERM_CONSISTENT_READ;
368 if (flags & BDRV_O_RDWR) {
369 perm |= BLK_PERM_WRITE;
372 if (flags & BDRV_O_RESIZE) {
373 perm |= BLK_PERM_RESIZE;
376 blk = blk_new(perm, BLK_PERM_ALL);
377 bs = bdrv_open(filename, reference, options, flags, errp);
378 if (!bs) {
379 blk_unref(blk);
380 return NULL;
383 blk->root = bdrv_root_attach_child(bs, "root", &child_root,
384 perm, BLK_PERM_ALL, blk, errp);
385 if (!blk->root) {
386 bdrv_unref(bs);
387 blk_unref(blk);
388 return NULL;
391 return blk;
394 static void blk_delete(BlockBackend *blk)
396 assert(!blk->refcnt);
397 assert(!blk->name);
398 assert(!blk->dev);
399 if (blk->public.throttle_group_member.throttle_state) {
400 blk_io_limits_disable(blk);
402 if (blk->root) {
403 blk_remove_bs(blk);
405 if (blk->vmsh) {
406 qemu_del_vm_change_state_handler(blk->vmsh);
407 blk->vmsh = NULL;
409 assert(QLIST_EMPTY(&blk->remove_bs_notifiers.notifiers));
410 assert(QLIST_EMPTY(&blk->insert_bs_notifiers.notifiers));
411 assert(QLIST_EMPTY(&blk->aio_notifiers));
412 QTAILQ_REMOVE(&block_backends, blk, link);
413 drive_info_del(blk->legacy_dinfo);
414 block_acct_cleanup(&blk->stats);
415 g_free(blk);
418 static void drive_info_del(DriveInfo *dinfo)
420 if (!dinfo) {
421 return;
423 qemu_opts_del(dinfo->opts);
424 g_free(dinfo);
427 int blk_get_refcnt(BlockBackend *blk)
429 return blk ? blk->refcnt : 0;
433 * Increment @blk's reference count.
434 * @blk must not be null.
436 void blk_ref(BlockBackend *blk)
438 assert(blk->refcnt > 0);
439 blk->refcnt++;
443 * Decrement @blk's reference count.
444 * If this drops it to zero, destroy @blk.
445 * For convenience, do nothing if @blk is null.
447 void blk_unref(BlockBackend *blk)
449 if (blk) {
450 assert(blk->refcnt > 0);
451 if (blk->refcnt > 1) {
452 blk->refcnt--;
453 } else {
454 blk_drain(blk);
455 /* blk_drain() cannot resurrect blk, nobody held a reference */
456 assert(blk->refcnt == 1);
457 blk->refcnt = 0;
458 blk_delete(blk);
464 * Behaves similarly to blk_next() but iterates over all BlockBackends, even the
465 * ones which are hidden (i.e. are not referenced by the monitor).
467 BlockBackend *blk_all_next(BlockBackend *blk)
469 return blk ? QTAILQ_NEXT(blk, link)
470 : QTAILQ_FIRST(&block_backends);
473 void blk_remove_all_bs(void)
475 BlockBackend *blk = NULL;
477 while ((blk = blk_all_next(blk)) != NULL) {
478 AioContext *ctx = blk_get_aio_context(blk);
480 aio_context_acquire(ctx);
481 if (blk->root) {
482 blk_remove_bs(blk);
484 aio_context_release(ctx);
489 * Return the monitor-owned BlockBackend after @blk.
490 * If @blk is null, return the first one.
491 * Else, return @blk's next sibling, which may be null.
493 * To iterate over all BlockBackends, do
494 * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
495 * ...
498 BlockBackend *blk_next(BlockBackend *blk)
500 return blk ? QTAILQ_NEXT(blk, monitor_link)
501 : QTAILQ_FIRST(&monitor_block_backends);
504 /* Iterates over all top-level BlockDriverStates, i.e. BDSs that are owned by
505 * the monitor or attached to a BlockBackend */
506 BlockDriverState *bdrv_next(BdrvNextIterator *it)
508 BlockDriverState *bs, *old_bs;
510 /* Must be called from the main loop */
511 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
513 /* First, return all root nodes of BlockBackends. In order to avoid
514 * returning a BDS twice when multiple BBs refer to it, we only return it
515 * if the BB is the first one in the parent list of the BDS. */
516 if (it->phase == BDRV_NEXT_BACKEND_ROOTS) {
517 BlockBackend *old_blk = it->blk;
519 old_bs = old_blk ? blk_bs(old_blk) : NULL;
521 do {
522 it->blk = blk_all_next(it->blk);
523 bs = it->blk ? blk_bs(it->blk) : NULL;
524 } while (it->blk && (bs == NULL || bdrv_first_blk(bs) != it->blk));
526 if (it->blk) {
527 blk_ref(it->blk);
529 blk_unref(old_blk);
531 if (bs) {
532 bdrv_ref(bs);
533 bdrv_unref(old_bs);
534 return bs;
536 it->phase = BDRV_NEXT_MONITOR_OWNED;
537 } else {
538 old_bs = it->bs;
541 /* Then return the monitor-owned BDSes without a BB attached. Ignore all
542 * BDSes that are attached to a BlockBackend here; they have been handled
543 * by the above block already */
544 do {
545 it->bs = bdrv_next_monitor_owned(it->bs);
546 bs = it->bs;
547 } while (bs && bdrv_has_blk(bs));
549 if (bs) {
550 bdrv_ref(bs);
552 bdrv_unref(old_bs);
554 return bs;
557 static void bdrv_next_reset(BdrvNextIterator *it)
559 *it = (BdrvNextIterator) {
560 .phase = BDRV_NEXT_BACKEND_ROOTS,
564 BlockDriverState *bdrv_first(BdrvNextIterator *it)
566 bdrv_next_reset(it);
567 return bdrv_next(it);
570 /* Must be called when aborting a bdrv_next() iteration before
571 * bdrv_next() returns NULL */
572 void bdrv_next_cleanup(BdrvNextIterator *it)
574 /* Must be called from the main loop */
575 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
577 if (it->phase == BDRV_NEXT_BACKEND_ROOTS) {
578 if (it->blk) {
579 bdrv_unref(blk_bs(it->blk));
580 blk_unref(it->blk);
582 } else {
583 bdrv_unref(it->bs);
586 bdrv_next_reset(it);
590 * Add a BlockBackend into the list of backends referenced by the monitor, with
591 * the given @name acting as the handle for the monitor.
592 * Strictly for use by blockdev.c.
594 * @name must not be null or empty.
596 * Returns true on success and false on failure. In the latter case, an Error
597 * object is returned through @errp.
599 bool monitor_add_blk(BlockBackend *blk, const char *name, Error **errp)
601 assert(!blk->name);
602 assert(name && name[0]);
604 if (!id_wellformed(name)) {
605 error_setg(errp, "Invalid device name");
606 return false;
608 if (blk_by_name(name)) {
609 error_setg(errp, "Device with id '%s' already exists", name);
610 return false;
612 if (bdrv_find_node(name)) {
613 error_setg(errp,
614 "Device name '%s' conflicts with an existing node name",
615 name);
616 return false;
619 blk->name = g_strdup(name);
620 QTAILQ_INSERT_TAIL(&monitor_block_backends, blk, monitor_link);
621 return true;
625 * Remove a BlockBackend from the list of backends referenced by the monitor.
626 * Strictly for use by blockdev.c.
628 void monitor_remove_blk(BlockBackend *blk)
630 if (!blk->name) {
631 return;
634 QTAILQ_REMOVE(&monitor_block_backends, blk, monitor_link);
635 g_free(blk->name);
636 blk->name = NULL;
640 * Return @blk's name, a non-null string.
641 * Returns an empty string iff @blk is not referenced by the monitor.
643 const char *blk_name(const BlockBackend *blk)
645 return blk->name ?: "";
649 * Return the BlockBackend with name @name if it exists, else null.
650 * @name must not be null.
652 BlockBackend *blk_by_name(const char *name)
654 BlockBackend *blk = NULL;
656 assert(name);
657 while ((blk = blk_next(blk)) != NULL) {
658 if (!strcmp(name, blk->name)) {
659 return blk;
662 return NULL;
666 * Return the BlockDriverState attached to @blk if any, else null.
668 BlockDriverState *blk_bs(BlockBackend *blk)
670 return blk->root ? blk->root->bs : NULL;
673 static BlockBackend *bdrv_first_blk(BlockDriverState *bs)
675 BdrvChild *child;
676 QLIST_FOREACH(child, &bs->parents, next_parent) {
677 if (child->role == &child_root) {
678 return child->opaque;
682 return NULL;
686 * Returns true if @bs has an associated BlockBackend.
688 bool bdrv_has_blk(BlockDriverState *bs)
690 return bdrv_first_blk(bs) != NULL;
694 * Returns true if @bs has only BlockBackends as parents.
696 bool bdrv_is_root_node(BlockDriverState *bs)
698 BdrvChild *c;
700 QLIST_FOREACH(c, &bs->parents, next_parent) {
701 if (c->role != &child_root) {
702 return false;
706 return true;
710 * Return @blk's DriveInfo if any, else null.
712 DriveInfo *blk_legacy_dinfo(BlockBackend *blk)
714 return blk->legacy_dinfo;
718 * Set @blk's DriveInfo to @dinfo, and return it.
719 * @blk must not have a DriveInfo set already.
720 * No other BlockBackend may have the same DriveInfo set.
722 DriveInfo *blk_set_legacy_dinfo(BlockBackend *blk, DriveInfo *dinfo)
724 assert(!blk->legacy_dinfo);
725 return blk->legacy_dinfo = dinfo;
729 * Return the BlockBackend with DriveInfo @dinfo.
730 * It must exist.
732 BlockBackend *blk_by_legacy_dinfo(DriveInfo *dinfo)
734 BlockBackend *blk = NULL;
736 while ((blk = blk_next(blk)) != NULL) {
737 if (blk->legacy_dinfo == dinfo) {
738 return blk;
741 abort();
745 * Returns a pointer to the publicly accessible fields of @blk.
747 BlockBackendPublic *blk_get_public(BlockBackend *blk)
749 return &blk->public;
753 * Returns a BlockBackend given the associated @public fields.
755 BlockBackend *blk_by_public(BlockBackendPublic *public)
757 return container_of(public, BlockBackend, public);
761 * Disassociates the currently associated BlockDriverState from @blk.
763 void blk_remove_bs(BlockBackend *blk)
765 ThrottleGroupMember *tgm = &blk->public.throttle_group_member;
766 BlockDriverState *bs;
768 notifier_list_notify(&blk->remove_bs_notifiers, blk);
769 if (tgm->throttle_state) {
770 bs = blk_bs(blk);
771 bdrv_drained_begin(bs);
772 throttle_group_detach_aio_context(tgm);
773 throttle_group_attach_aio_context(tgm, qemu_get_aio_context());
774 bdrv_drained_end(bs);
777 blk_update_root_state(blk);
779 /* bdrv_root_unref_child() will cause blk->root to become stale and may
780 * switch to a completion coroutine later on. Let's drain all I/O here
781 * to avoid that and a potential QEMU crash.
783 blk_drain(blk);
784 bdrv_root_unref_child(blk->root);
785 blk->root = NULL;
789 * Associates a new BlockDriverState with @blk.
791 int blk_insert_bs(BlockBackend *blk, BlockDriverState *bs, Error **errp)
793 ThrottleGroupMember *tgm = &blk->public.throttle_group_member;
794 blk->root = bdrv_root_attach_child(bs, "root", &child_root,
795 blk->perm, blk->shared_perm, blk, errp);
796 if (blk->root == NULL) {
797 return -EPERM;
799 bdrv_ref(bs);
801 notifier_list_notify(&blk->insert_bs_notifiers, blk);
802 if (tgm->throttle_state) {
803 throttle_group_detach_aio_context(tgm);
804 throttle_group_attach_aio_context(tgm, bdrv_get_aio_context(bs));
807 return 0;
811 * Sets the permission bitmasks that the user of the BlockBackend needs.
813 int blk_set_perm(BlockBackend *blk, uint64_t perm, uint64_t shared_perm,
814 Error **errp)
816 int ret;
818 if (blk->root && !blk->disable_perm) {
819 ret = bdrv_child_try_set_perm(blk->root, perm, shared_perm, errp);
820 if (ret < 0) {
821 return ret;
825 blk->perm = perm;
826 blk->shared_perm = shared_perm;
828 return 0;
831 void blk_get_perm(BlockBackend *blk, uint64_t *perm, uint64_t *shared_perm)
833 *perm = blk->perm;
834 *shared_perm = blk->shared_perm;
838 * Attach device model @dev to @blk.
839 * Return 0 on success, -EBUSY when a device model is attached already.
841 int blk_attach_dev(BlockBackend *blk, DeviceState *dev)
843 if (blk->dev) {
844 return -EBUSY;
847 /* While migration is still incoming, we don't need to apply the
848 * permissions of guest device BlockBackends. We might still have a block
849 * job or NBD server writing to the image for storage migration. */
850 if (runstate_check(RUN_STATE_INMIGRATE)) {
851 blk->disable_perm = true;
854 blk_ref(blk);
855 blk->dev = dev;
856 blk_iostatus_reset(blk);
858 return 0;
862 * Detach device model @dev from @blk.
863 * @dev must be currently attached to @blk.
865 void blk_detach_dev(BlockBackend *blk, DeviceState *dev)
867 assert(blk->dev == dev);
868 blk->dev = NULL;
869 blk->dev_ops = NULL;
870 blk->dev_opaque = NULL;
871 blk->guest_block_size = 512;
872 blk_set_perm(blk, 0, BLK_PERM_ALL, &error_abort);
873 blk_unref(blk);
877 * Return the device model attached to @blk if any, else null.
879 DeviceState *blk_get_attached_dev(BlockBackend *blk)
881 return blk->dev;
884 /* Return the qdev ID, or if no ID is assigned the QOM path, of the block
885 * device attached to the BlockBackend. */
886 char *blk_get_attached_dev_id(BlockBackend *blk)
888 DeviceState *dev = blk->dev;
890 if (!dev) {
891 return g_strdup("");
892 } else if (dev->id) {
893 return g_strdup(dev->id);
896 return object_get_canonical_path(OBJECT(dev)) ?: g_strdup("");
900 * Return the BlockBackend which has the device model @dev attached if it
901 * exists, else null.
903 * @dev must not be null.
905 BlockBackend *blk_by_dev(void *dev)
907 BlockBackend *blk = NULL;
909 assert(dev != NULL);
910 while ((blk = blk_all_next(blk)) != NULL) {
911 if (blk->dev == dev) {
912 return blk;
915 return NULL;
919 * Set @blk's device model callbacks to @ops.
920 * @opaque is the opaque argument to pass to the callbacks.
921 * This is for use by device models.
923 void blk_set_dev_ops(BlockBackend *blk, const BlockDevOps *ops,
924 void *opaque)
926 blk->dev_ops = ops;
927 blk->dev_opaque = opaque;
929 /* Are we currently quiesced? Should we enforce this right now? */
930 if (blk->quiesce_counter && ops->drained_begin) {
931 ops->drained_begin(opaque);
936 * Notify @blk's attached device model of media change.
938 * If @load is true, notify of media load. This action can fail, meaning that
939 * the medium cannot be loaded. @errp is set then.
941 * If @load is false, notify of media eject. This can never fail.
943 * Also send DEVICE_TRAY_MOVED events as appropriate.
945 void blk_dev_change_media_cb(BlockBackend *blk, bool load, Error **errp)
947 if (blk->dev_ops && blk->dev_ops->change_media_cb) {
948 bool tray_was_open, tray_is_open;
949 Error *local_err = NULL;
951 tray_was_open = blk_dev_is_tray_open(blk);
952 blk->dev_ops->change_media_cb(blk->dev_opaque, load, &local_err);
953 if (local_err) {
954 assert(load == true);
955 error_propagate(errp, local_err);
956 return;
958 tray_is_open = blk_dev_is_tray_open(blk);
960 if (tray_was_open != tray_is_open) {
961 char *id = blk_get_attached_dev_id(blk);
962 qapi_event_send_device_tray_moved(blk_name(blk), id, tray_is_open);
963 g_free(id);
968 static void blk_root_change_media(BdrvChild *child, bool load)
970 blk_dev_change_media_cb(child->opaque, load, NULL);
974 * Does @blk's attached device model have removable media?
975 * %true if no device model is attached.
977 bool blk_dev_has_removable_media(BlockBackend *blk)
979 return !blk->dev || (blk->dev_ops && blk->dev_ops->change_media_cb);
983 * Does @blk's attached device model have a tray?
985 bool blk_dev_has_tray(BlockBackend *blk)
987 return blk->dev_ops && blk->dev_ops->is_tray_open;
991 * Notify @blk's attached device model of a media eject request.
992 * If @force is true, the medium is about to be yanked out forcefully.
994 void blk_dev_eject_request(BlockBackend *blk, bool force)
996 if (blk->dev_ops && blk->dev_ops->eject_request_cb) {
997 blk->dev_ops->eject_request_cb(blk->dev_opaque, force);
1002 * Does @blk's attached device model have a tray, and is it open?
1004 bool blk_dev_is_tray_open(BlockBackend *blk)
1006 if (blk_dev_has_tray(blk)) {
1007 return blk->dev_ops->is_tray_open(blk->dev_opaque);
1009 return false;
1013 * Does @blk's attached device model have the medium locked?
1014 * %false if the device model has no such lock.
1016 bool blk_dev_is_medium_locked(BlockBackend *blk)
1018 if (blk->dev_ops && blk->dev_ops->is_medium_locked) {
1019 return blk->dev_ops->is_medium_locked(blk->dev_opaque);
1021 return false;
1025 * Notify @blk's attached device model of a backend size change.
1027 static void blk_root_resize(BdrvChild *child)
1029 BlockBackend *blk = child->opaque;
1031 if (blk->dev_ops && blk->dev_ops->resize_cb) {
1032 blk->dev_ops->resize_cb(blk->dev_opaque);
1036 void blk_iostatus_enable(BlockBackend *blk)
1038 blk->iostatus_enabled = true;
1039 blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
1042 /* The I/O status is only enabled if the drive explicitly
1043 * enables it _and_ the VM is configured to stop on errors */
1044 bool blk_iostatus_is_enabled(const BlockBackend *blk)
1046 return (blk->iostatus_enabled &&
1047 (blk->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC ||
1048 blk->on_write_error == BLOCKDEV_ON_ERROR_STOP ||
1049 blk->on_read_error == BLOCKDEV_ON_ERROR_STOP));
1052 BlockDeviceIoStatus blk_iostatus(const BlockBackend *blk)
1054 return blk->iostatus;
1057 void blk_iostatus_disable(BlockBackend *blk)
1059 blk->iostatus_enabled = false;
1062 void blk_iostatus_reset(BlockBackend *blk)
1064 if (blk_iostatus_is_enabled(blk)) {
1065 BlockDriverState *bs = blk_bs(blk);
1066 blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
1067 if (bs && bs->job) {
1068 block_job_iostatus_reset(bs->job);
1073 void blk_iostatus_set_err(BlockBackend *blk, int error)
1075 assert(blk_iostatus_is_enabled(blk));
1076 if (blk->iostatus == BLOCK_DEVICE_IO_STATUS_OK) {
1077 blk->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE :
1078 BLOCK_DEVICE_IO_STATUS_FAILED;
1082 void blk_set_allow_write_beyond_eof(BlockBackend *blk, bool allow)
1084 blk->allow_write_beyond_eof = allow;
1087 static int blk_check_byte_request(BlockBackend *blk, int64_t offset,
1088 size_t size)
1090 int64_t len;
1092 if (size > INT_MAX) {
1093 return -EIO;
1096 if (!blk_is_available(blk)) {
1097 return -ENOMEDIUM;
1100 if (offset < 0) {
1101 return -EIO;
1104 if (!blk->allow_write_beyond_eof) {
1105 len = blk_getlength(blk);
1106 if (len < 0) {
1107 return len;
1110 if (offset > len || len - offset < size) {
1111 return -EIO;
1115 return 0;
1118 int coroutine_fn blk_co_preadv(BlockBackend *blk, int64_t offset,
1119 unsigned int bytes, QEMUIOVector *qiov,
1120 BdrvRequestFlags flags)
1122 int ret;
1123 BlockDriverState *bs = blk_bs(blk);
1125 trace_blk_co_preadv(blk, bs, offset, bytes, flags);
1127 ret = blk_check_byte_request(blk, offset, bytes);
1128 if (ret < 0) {
1129 return ret;
1132 bdrv_inc_in_flight(bs);
1134 /* throttling disk I/O */
1135 if (blk->public.throttle_group_member.throttle_state) {
1136 throttle_group_co_io_limits_intercept(&blk->public.throttle_group_member,
1137 bytes, false);
1140 ret = bdrv_co_preadv(blk->root, offset, bytes, qiov, flags);
1141 bdrv_dec_in_flight(bs);
1142 return ret;
1145 int coroutine_fn blk_co_pwritev(BlockBackend *blk, int64_t offset,
1146 unsigned int bytes, QEMUIOVector *qiov,
1147 BdrvRequestFlags flags)
1149 int ret;
1150 BlockDriverState *bs = blk_bs(blk);
1152 trace_blk_co_pwritev(blk, bs, offset, bytes, flags);
1154 ret = blk_check_byte_request(blk, offset, bytes);
1155 if (ret < 0) {
1156 return ret;
1159 bdrv_inc_in_flight(bs);
1160 /* throttling disk I/O */
1161 if (blk->public.throttle_group_member.throttle_state) {
1162 throttle_group_co_io_limits_intercept(&blk->public.throttle_group_member,
1163 bytes, true);
1166 if (!blk->enable_write_cache) {
1167 flags |= BDRV_REQ_FUA;
1170 ret = bdrv_co_pwritev(blk->root, offset, bytes, qiov, flags);
1171 bdrv_dec_in_flight(bs);
1172 return ret;
1175 typedef struct BlkRwCo {
1176 BlockBackend *blk;
1177 int64_t offset;
1178 void *iobuf;
1179 int ret;
1180 BdrvRequestFlags flags;
1181 } BlkRwCo;
1183 static void blk_read_entry(void *opaque)
1185 BlkRwCo *rwco = opaque;
1186 QEMUIOVector *qiov = rwco->iobuf;
1188 rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, qiov->size,
1189 qiov, rwco->flags);
1190 aio_wait_kick();
1193 static void blk_write_entry(void *opaque)
1195 BlkRwCo *rwco = opaque;
1196 QEMUIOVector *qiov = rwco->iobuf;
1198 rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, qiov->size,
1199 qiov, rwco->flags);
1200 aio_wait_kick();
1203 static int blk_prw(BlockBackend *blk, int64_t offset, uint8_t *buf,
1204 int64_t bytes, CoroutineEntry co_entry,
1205 BdrvRequestFlags flags)
1207 QEMUIOVector qiov;
1208 struct iovec iov;
1209 BlkRwCo rwco;
1211 iov = (struct iovec) {
1212 .iov_base = buf,
1213 .iov_len = bytes,
1215 qemu_iovec_init_external(&qiov, &iov, 1);
1217 rwco = (BlkRwCo) {
1218 .blk = blk,
1219 .offset = offset,
1220 .iobuf = &qiov,
1221 .flags = flags,
1222 .ret = NOT_DONE,
1225 if (qemu_in_coroutine()) {
1226 /* Fast-path if already in coroutine context */
1227 co_entry(&rwco);
1228 } else {
1229 Coroutine *co = qemu_coroutine_create(co_entry, &rwco);
1230 bdrv_coroutine_enter(blk_bs(blk), co);
1231 BDRV_POLL_WHILE(blk_bs(blk), rwco.ret == NOT_DONE);
1234 return rwco.ret;
1237 int blk_pread_unthrottled(BlockBackend *blk, int64_t offset, uint8_t *buf,
1238 int count)
1240 int ret;
1242 ret = blk_check_byte_request(blk, offset, count);
1243 if (ret < 0) {
1244 return ret;
1247 blk_root_drained_begin(blk->root);
1248 ret = blk_pread(blk, offset, buf, count);
1249 blk_root_drained_end(blk->root);
1250 return ret;
1253 int blk_pwrite_zeroes(BlockBackend *blk, int64_t offset,
1254 int bytes, BdrvRequestFlags flags)
1256 return blk_prw(blk, offset, NULL, bytes, blk_write_entry,
1257 flags | BDRV_REQ_ZERO_WRITE);
1260 int blk_make_zero(BlockBackend *blk, BdrvRequestFlags flags)
1262 return bdrv_make_zero(blk->root, flags);
1265 static void blk_inc_in_flight(BlockBackend *blk)
1267 atomic_inc(&blk->in_flight);
1270 static void blk_dec_in_flight(BlockBackend *blk)
1272 atomic_dec(&blk->in_flight);
1273 aio_wait_kick();
1276 static void error_callback_bh(void *opaque)
1278 struct BlockBackendAIOCB *acb = opaque;
1280 blk_dec_in_flight(acb->blk);
1281 acb->common.cb(acb->common.opaque, acb->ret);
1282 qemu_aio_unref(acb);
1285 BlockAIOCB *blk_abort_aio_request(BlockBackend *blk,
1286 BlockCompletionFunc *cb,
1287 void *opaque, int ret)
1289 struct BlockBackendAIOCB *acb;
1291 blk_inc_in_flight(blk);
1292 acb = blk_aio_get(&block_backend_aiocb_info, blk, cb, opaque);
1293 acb->blk = blk;
1294 acb->ret = ret;
1296 aio_bh_schedule_oneshot(blk_get_aio_context(blk), error_callback_bh, acb);
1297 return &acb->common;
1300 typedef struct BlkAioEmAIOCB {
1301 BlockAIOCB common;
1302 BlkRwCo rwco;
1303 int bytes;
1304 bool has_returned;
1305 } BlkAioEmAIOCB;
1307 static const AIOCBInfo blk_aio_em_aiocb_info = {
1308 .aiocb_size = sizeof(BlkAioEmAIOCB),
1311 static void blk_aio_complete(BlkAioEmAIOCB *acb)
1313 if (acb->has_returned) {
1314 acb->common.cb(acb->common.opaque, acb->rwco.ret);
1315 blk_dec_in_flight(acb->rwco.blk);
1316 qemu_aio_unref(acb);
1320 static void blk_aio_complete_bh(void *opaque)
1322 BlkAioEmAIOCB *acb = opaque;
1323 assert(acb->has_returned);
1324 blk_aio_complete(acb);
1327 static BlockAIOCB *blk_aio_prwv(BlockBackend *blk, int64_t offset, int bytes,
1328 void *iobuf, CoroutineEntry co_entry,
1329 BdrvRequestFlags flags,
1330 BlockCompletionFunc *cb, void *opaque)
1332 BlkAioEmAIOCB *acb;
1333 Coroutine *co;
1335 blk_inc_in_flight(blk);
1336 acb = blk_aio_get(&blk_aio_em_aiocb_info, blk, cb, opaque);
1337 acb->rwco = (BlkRwCo) {
1338 .blk = blk,
1339 .offset = offset,
1340 .iobuf = iobuf,
1341 .flags = flags,
1342 .ret = NOT_DONE,
1344 acb->bytes = bytes;
1345 acb->has_returned = false;
1347 co = qemu_coroutine_create(co_entry, acb);
1348 bdrv_coroutine_enter(blk_bs(blk), co);
1350 acb->has_returned = true;
1351 if (acb->rwco.ret != NOT_DONE) {
1352 aio_bh_schedule_oneshot(blk_get_aio_context(blk),
1353 blk_aio_complete_bh, acb);
1356 return &acb->common;
1359 static void blk_aio_read_entry(void *opaque)
1361 BlkAioEmAIOCB *acb = opaque;
1362 BlkRwCo *rwco = &acb->rwco;
1363 QEMUIOVector *qiov = rwco->iobuf;
1365 assert(qiov->size == acb->bytes);
1366 rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, acb->bytes,
1367 qiov, rwco->flags);
1368 blk_aio_complete(acb);
1371 static void blk_aio_write_entry(void *opaque)
1373 BlkAioEmAIOCB *acb = opaque;
1374 BlkRwCo *rwco = &acb->rwco;
1375 QEMUIOVector *qiov = rwco->iobuf;
1377 assert(!qiov || qiov->size == acb->bytes);
1378 rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, acb->bytes,
1379 qiov, rwco->flags);
1380 blk_aio_complete(acb);
1383 BlockAIOCB *blk_aio_pwrite_zeroes(BlockBackend *blk, int64_t offset,
1384 int count, BdrvRequestFlags flags,
1385 BlockCompletionFunc *cb, void *opaque)
1387 return blk_aio_prwv(blk, offset, count, NULL, blk_aio_write_entry,
1388 flags | BDRV_REQ_ZERO_WRITE, cb, opaque);
1391 int blk_pread(BlockBackend *blk, int64_t offset, void *buf, int count)
1393 int ret = blk_prw(blk, offset, buf, count, blk_read_entry, 0);
1394 if (ret < 0) {
1395 return ret;
1397 return count;
1400 int blk_pwrite(BlockBackend *blk, int64_t offset, const void *buf, int count,
1401 BdrvRequestFlags flags)
1403 int ret = blk_prw(blk, offset, (void *) buf, count, blk_write_entry,
1404 flags);
1405 if (ret < 0) {
1406 return ret;
1408 return count;
1411 int64_t blk_getlength(BlockBackend *blk)
1413 if (!blk_is_available(blk)) {
1414 return -ENOMEDIUM;
1417 return bdrv_getlength(blk_bs(blk));
1420 void blk_get_geometry(BlockBackend *blk, uint64_t *nb_sectors_ptr)
1422 if (!blk_bs(blk)) {
1423 *nb_sectors_ptr = 0;
1424 } else {
1425 bdrv_get_geometry(blk_bs(blk), nb_sectors_ptr);
1429 int64_t blk_nb_sectors(BlockBackend *blk)
1431 if (!blk_is_available(blk)) {
1432 return -ENOMEDIUM;
1435 return bdrv_nb_sectors(blk_bs(blk));
1438 BlockAIOCB *blk_aio_preadv(BlockBackend *blk, int64_t offset,
1439 QEMUIOVector *qiov, BdrvRequestFlags flags,
1440 BlockCompletionFunc *cb, void *opaque)
1442 return blk_aio_prwv(blk, offset, qiov->size, qiov,
1443 blk_aio_read_entry, flags, cb, opaque);
1446 BlockAIOCB *blk_aio_pwritev(BlockBackend *blk, int64_t offset,
1447 QEMUIOVector *qiov, BdrvRequestFlags flags,
1448 BlockCompletionFunc *cb, void *opaque)
1450 return blk_aio_prwv(blk, offset, qiov->size, qiov,
1451 blk_aio_write_entry, flags, cb, opaque);
1454 static void blk_aio_flush_entry(void *opaque)
1456 BlkAioEmAIOCB *acb = opaque;
1457 BlkRwCo *rwco = &acb->rwco;
1459 rwco->ret = blk_co_flush(rwco->blk);
1460 blk_aio_complete(acb);
1463 BlockAIOCB *blk_aio_flush(BlockBackend *blk,
1464 BlockCompletionFunc *cb, void *opaque)
1466 return blk_aio_prwv(blk, 0, 0, NULL, blk_aio_flush_entry, 0, cb, opaque);
1469 static void blk_aio_pdiscard_entry(void *opaque)
1471 BlkAioEmAIOCB *acb = opaque;
1472 BlkRwCo *rwco = &acb->rwco;
1474 rwco->ret = blk_co_pdiscard(rwco->blk, rwco->offset, acb->bytes);
1475 blk_aio_complete(acb);
1478 BlockAIOCB *blk_aio_pdiscard(BlockBackend *blk,
1479 int64_t offset, int bytes,
1480 BlockCompletionFunc *cb, void *opaque)
1482 return blk_aio_prwv(blk, offset, bytes, NULL, blk_aio_pdiscard_entry, 0,
1483 cb, opaque);
1486 void blk_aio_cancel(BlockAIOCB *acb)
1488 bdrv_aio_cancel(acb);
1491 void blk_aio_cancel_async(BlockAIOCB *acb)
1493 bdrv_aio_cancel_async(acb);
1496 int blk_co_ioctl(BlockBackend *blk, unsigned long int req, void *buf)
1498 if (!blk_is_available(blk)) {
1499 return -ENOMEDIUM;
1502 return bdrv_co_ioctl(blk_bs(blk), req, buf);
1505 static void blk_ioctl_entry(void *opaque)
1507 BlkRwCo *rwco = opaque;
1508 QEMUIOVector *qiov = rwco->iobuf;
1510 rwco->ret = blk_co_ioctl(rwco->blk, rwco->offset,
1511 qiov->iov[0].iov_base);
1512 aio_wait_kick();
1515 int blk_ioctl(BlockBackend *blk, unsigned long int req, void *buf)
1517 return blk_prw(blk, req, buf, 0, blk_ioctl_entry, 0);
1520 static void blk_aio_ioctl_entry(void *opaque)
1522 BlkAioEmAIOCB *acb = opaque;
1523 BlkRwCo *rwco = &acb->rwco;
1525 rwco->ret = blk_co_ioctl(rwco->blk, rwco->offset, rwco->iobuf);
1527 blk_aio_complete(acb);
1530 BlockAIOCB *blk_aio_ioctl(BlockBackend *blk, unsigned long int req, void *buf,
1531 BlockCompletionFunc *cb, void *opaque)
1533 return blk_aio_prwv(blk, req, 0, buf, blk_aio_ioctl_entry, 0, cb, opaque);
1536 int blk_co_pdiscard(BlockBackend *blk, int64_t offset, int bytes)
1538 int ret = blk_check_byte_request(blk, offset, bytes);
1539 if (ret < 0) {
1540 return ret;
1543 return bdrv_co_pdiscard(blk->root, offset, bytes);
1546 int blk_co_flush(BlockBackend *blk)
1548 if (!blk_is_available(blk)) {
1549 return -ENOMEDIUM;
1552 return bdrv_co_flush(blk_bs(blk));
1555 static void blk_flush_entry(void *opaque)
1557 BlkRwCo *rwco = opaque;
1558 rwco->ret = blk_co_flush(rwco->blk);
1559 aio_wait_kick();
1562 int blk_flush(BlockBackend *blk)
1564 return blk_prw(blk, 0, NULL, 0, blk_flush_entry, 0);
1567 void blk_drain(BlockBackend *blk)
1569 BlockDriverState *bs = blk_bs(blk);
1571 if (bs) {
1572 bdrv_drained_begin(bs);
1575 /* We may have -ENOMEDIUM completions in flight */
1576 AIO_WAIT_WHILE(blk_get_aio_context(blk),
1577 atomic_mb_read(&blk->in_flight) > 0);
1579 if (bs) {
1580 bdrv_drained_end(bs);
1584 void blk_drain_all(void)
1586 BlockBackend *blk = NULL;
1588 bdrv_drain_all_begin();
1590 while ((blk = blk_all_next(blk)) != NULL) {
1591 AioContext *ctx = blk_get_aio_context(blk);
1593 aio_context_acquire(ctx);
1595 /* We may have -ENOMEDIUM completions in flight */
1596 AIO_WAIT_WHILE(ctx, atomic_mb_read(&blk->in_flight) > 0);
1598 aio_context_release(ctx);
1601 bdrv_drain_all_end();
1604 void blk_set_on_error(BlockBackend *blk, BlockdevOnError on_read_error,
1605 BlockdevOnError on_write_error)
1607 blk->on_read_error = on_read_error;
1608 blk->on_write_error = on_write_error;
1611 BlockdevOnError blk_get_on_error(BlockBackend *blk, bool is_read)
1613 return is_read ? blk->on_read_error : blk->on_write_error;
1616 BlockErrorAction blk_get_error_action(BlockBackend *blk, bool is_read,
1617 int error)
1619 BlockdevOnError on_err = blk_get_on_error(blk, is_read);
1621 switch (on_err) {
1622 case BLOCKDEV_ON_ERROR_ENOSPC:
1623 return (error == ENOSPC) ?
1624 BLOCK_ERROR_ACTION_STOP : BLOCK_ERROR_ACTION_REPORT;
1625 case BLOCKDEV_ON_ERROR_STOP:
1626 return BLOCK_ERROR_ACTION_STOP;
1627 case BLOCKDEV_ON_ERROR_REPORT:
1628 return BLOCK_ERROR_ACTION_REPORT;
1629 case BLOCKDEV_ON_ERROR_IGNORE:
1630 return BLOCK_ERROR_ACTION_IGNORE;
1631 case BLOCKDEV_ON_ERROR_AUTO:
1632 default:
1633 abort();
1637 static void send_qmp_error_event(BlockBackend *blk,
1638 BlockErrorAction action,
1639 bool is_read, int error)
1641 IoOperationType optype;
1642 BlockDriverState *bs = blk_bs(blk);
1644 optype = is_read ? IO_OPERATION_TYPE_READ : IO_OPERATION_TYPE_WRITE;
1645 qapi_event_send_block_io_error(blk_name(blk), !!bs,
1646 bs ? bdrv_get_node_name(bs) : NULL, optype,
1647 action, blk_iostatus_is_enabled(blk),
1648 error == ENOSPC, strerror(error));
1651 /* This is done by device models because, while the block layer knows
1652 * about the error, it does not know whether an operation comes from
1653 * the device or the block layer (from a job, for example).
1655 void blk_error_action(BlockBackend *blk, BlockErrorAction action,
1656 bool is_read, int error)
1658 assert(error >= 0);
1660 if (action == BLOCK_ERROR_ACTION_STOP) {
1661 /* First set the iostatus, so that "info block" returns an iostatus
1662 * that matches the events raised so far (an additional error iostatus
1663 * is fine, but not a lost one).
1665 blk_iostatus_set_err(blk, error);
1667 /* Then raise the request to stop the VM and the event.
1668 * qemu_system_vmstop_request_prepare has two effects. First,
1669 * it ensures that the STOP event always comes after the
1670 * BLOCK_IO_ERROR event. Second, it ensures that even if management
1671 * can observe the STOP event and do a "cont" before the STOP
1672 * event is issued, the VM will not stop. In this case, vm_start()
1673 * also ensures that the STOP/RESUME pair of events is emitted.
1675 qemu_system_vmstop_request_prepare();
1676 send_qmp_error_event(blk, action, is_read, error);
1677 qemu_system_vmstop_request(RUN_STATE_IO_ERROR);
1678 } else {
1679 send_qmp_error_event(blk, action, is_read, error);
1683 bool blk_is_read_only(BlockBackend *blk)
1685 BlockDriverState *bs = blk_bs(blk);
1687 if (bs) {
1688 return bdrv_is_read_only(bs);
1689 } else {
1690 return blk->root_state.read_only;
1694 bool blk_is_sg(BlockBackend *blk)
1696 BlockDriverState *bs = blk_bs(blk);
1698 if (!bs) {
1699 return false;
1702 return bdrv_is_sg(bs);
1705 bool blk_enable_write_cache(BlockBackend *blk)
1707 return blk->enable_write_cache;
1710 void blk_set_enable_write_cache(BlockBackend *blk, bool wce)
1712 blk->enable_write_cache = wce;
1715 void blk_invalidate_cache(BlockBackend *blk, Error **errp)
1717 BlockDriverState *bs = blk_bs(blk);
1719 if (!bs) {
1720 error_setg(errp, "Device '%s' has no medium", blk->name);
1721 return;
1724 bdrv_invalidate_cache(bs, errp);
1727 bool blk_is_inserted(BlockBackend *blk)
1729 BlockDriverState *bs = blk_bs(blk);
1731 return bs && bdrv_is_inserted(bs);
1734 bool blk_is_available(BlockBackend *blk)
1736 return blk_is_inserted(blk) && !blk_dev_is_tray_open(blk);
1739 void blk_lock_medium(BlockBackend *blk, bool locked)
1741 BlockDriverState *bs = blk_bs(blk);
1743 if (bs) {
1744 bdrv_lock_medium(bs, locked);
1748 void blk_eject(BlockBackend *blk, bool eject_flag)
1750 BlockDriverState *bs = blk_bs(blk);
1751 char *id;
1753 if (bs) {
1754 bdrv_eject(bs, eject_flag);
1757 /* Whether or not we ejected on the backend,
1758 * the frontend experienced a tray event. */
1759 id = blk_get_attached_dev_id(blk);
1760 qapi_event_send_device_tray_moved(blk_name(blk), id,
1761 eject_flag);
1762 g_free(id);
1765 int blk_get_flags(BlockBackend *blk)
1767 BlockDriverState *bs = blk_bs(blk);
1769 if (bs) {
1770 return bdrv_get_flags(bs);
1771 } else {
1772 return blk->root_state.open_flags;
1776 /* Returns the maximum transfer length, in bytes; guaranteed nonzero */
1777 uint32_t blk_get_max_transfer(BlockBackend *blk)
1779 BlockDriverState *bs = blk_bs(blk);
1780 uint32_t max = 0;
1782 if (bs) {
1783 max = bs->bl.max_transfer;
1785 return MIN_NON_ZERO(max, INT_MAX);
1788 int blk_get_max_iov(BlockBackend *blk)
1790 return blk->root->bs->bl.max_iov;
1793 void blk_set_guest_block_size(BlockBackend *blk, int align)
1795 blk->guest_block_size = align;
1798 void *blk_try_blockalign(BlockBackend *blk, size_t size)
1800 return qemu_try_blockalign(blk ? blk_bs(blk) : NULL, size);
1803 void *blk_blockalign(BlockBackend *blk, size_t size)
1805 return qemu_blockalign(blk ? blk_bs(blk) : NULL, size);
1808 bool blk_op_is_blocked(BlockBackend *blk, BlockOpType op, Error **errp)
1810 BlockDriverState *bs = blk_bs(blk);
1812 if (!bs) {
1813 return false;
1816 return bdrv_op_is_blocked(bs, op, errp);
1819 void blk_op_unblock(BlockBackend *blk, BlockOpType op, Error *reason)
1821 BlockDriverState *bs = blk_bs(blk);
1823 if (bs) {
1824 bdrv_op_unblock(bs, op, reason);
1828 void blk_op_block_all(BlockBackend *blk, Error *reason)
1830 BlockDriverState *bs = blk_bs(blk);
1832 if (bs) {
1833 bdrv_op_block_all(bs, reason);
1837 void blk_op_unblock_all(BlockBackend *blk, Error *reason)
1839 BlockDriverState *bs = blk_bs(blk);
1841 if (bs) {
1842 bdrv_op_unblock_all(bs, reason);
1846 AioContext *blk_get_aio_context(BlockBackend *blk)
1848 return bdrv_get_aio_context(blk_bs(blk));
1851 static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb)
1853 BlockBackendAIOCB *blk_acb = DO_UPCAST(BlockBackendAIOCB, common, acb);
1854 return blk_get_aio_context(blk_acb->blk);
1857 void blk_set_aio_context(BlockBackend *blk, AioContext *new_context)
1859 BlockDriverState *bs = blk_bs(blk);
1860 ThrottleGroupMember *tgm = &blk->public.throttle_group_member;
1862 if (bs) {
1863 if (tgm->throttle_state) {
1864 bdrv_drained_begin(bs);
1865 throttle_group_detach_aio_context(tgm);
1866 throttle_group_attach_aio_context(tgm, new_context);
1867 bdrv_drained_end(bs);
1869 bdrv_set_aio_context(bs, new_context);
1873 void blk_add_aio_context_notifier(BlockBackend *blk,
1874 void (*attached_aio_context)(AioContext *new_context, void *opaque),
1875 void (*detach_aio_context)(void *opaque), void *opaque)
1877 BlockBackendAioNotifier *notifier;
1878 BlockDriverState *bs = blk_bs(blk);
1880 notifier = g_new(BlockBackendAioNotifier, 1);
1881 notifier->attached_aio_context = attached_aio_context;
1882 notifier->detach_aio_context = detach_aio_context;
1883 notifier->opaque = opaque;
1884 QLIST_INSERT_HEAD(&blk->aio_notifiers, notifier, list);
1886 if (bs) {
1887 bdrv_add_aio_context_notifier(bs, attached_aio_context,
1888 detach_aio_context, opaque);
1892 void blk_remove_aio_context_notifier(BlockBackend *blk,
1893 void (*attached_aio_context)(AioContext *,
1894 void *),
1895 void (*detach_aio_context)(void *),
1896 void *opaque)
1898 BlockBackendAioNotifier *notifier;
1899 BlockDriverState *bs = blk_bs(blk);
1901 if (bs) {
1902 bdrv_remove_aio_context_notifier(bs, attached_aio_context,
1903 detach_aio_context, opaque);
1906 QLIST_FOREACH(notifier, &blk->aio_notifiers, list) {
1907 if (notifier->attached_aio_context == attached_aio_context &&
1908 notifier->detach_aio_context == detach_aio_context &&
1909 notifier->opaque == opaque) {
1910 QLIST_REMOVE(notifier, list);
1911 g_free(notifier);
1912 return;
1916 abort();
1919 void blk_add_remove_bs_notifier(BlockBackend *blk, Notifier *notify)
1921 notifier_list_add(&blk->remove_bs_notifiers, notify);
1924 void blk_add_insert_bs_notifier(BlockBackend *blk, Notifier *notify)
1926 notifier_list_add(&blk->insert_bs_notifiers, notify);
1929 void blk_io_plug(BlockBackend *blk)
1931 BlockDriverState *bs = blk_bs(blk);
1933 if (bs) {
1934 bdrv_io_plug(bs);
1938 void blk_io_unplug(BlockBackend *blk)
1940 BlockDriverState *bs = blk_bs(blk);
1942 if (bs) {
1943 bdrv_io_unplug(bs);
1947 BlockAcctStats *blk_get_stats(BlockBackend *blk)
1949 return &blk->stats;
1952 void *blk_aio_get(const AIOCBInfo *aiocb_info, BlockBackend *blk,
1953 BlockCompletionFunc *cb, void *opaque)
1955 return qemu_aio_get(aiocb_info, blk_bs(blk), cb, opaque);
1958 int coroutine_fn blk_co_pwrite_zeroes(BlockBackend *blk, int64_t offset,
1959 int bytes, BdrvRequestFlags flags)
1961 return blk_co_pwritev(blk, offset, bytes, NULL,
1962 flags | BDRV_REQ_ZERO_WRITE);
1965 int blk_pwrite_compressed(BlockBackend *blk, int64_t offset, const void *buf,
1966 int count)
1968 return blk_prw(blk, offset, (void *) buf, count, blk_write_entry,
1969 BDRV_REQ_WRITE_COMPRESSED);
1972 int blk_truncate(BlockBackend *blk, int64_t offset, PreallocMode prealloc,
1973 Error **errp)
1975 if (!blk_is_available(blk)) {
1976 error_setg(errp, "No medium inserted");
1977 return -ENOMEDIUM;
1980 return bdrv_truncate(blk->root, offset, prealloc, errp);
1983 static void blk_pdiscard_entry(void *opaque)
1985 BlkRwCo *rwco = opaque;
1986 QEMUIOVector *qiov = rwco->iobuf;
1988 rwco->ret = blk_co_pdiscard(rwco->blk, rwco->offset, qiov->size);
1989 aio_wait_kick();
1992 int blk_pdiscard(BlockBackend *blk, int64_t offset, int bytes)
1994 return blk_prw(blk, offset, NULL, bytes, blk_pdiscard_entry, 0);
1997 int blk_save_vmstate(BlockBackend *blk, const uint8_t *buf,
1998 int64_t pos, int size)
2000 int ret;
2002 if (!blk_is_available(blk)) {
2003 return -ENOMEDIUM;
2006 ret = bdrv_save_vmstate(blk_bs(blk), buf, pos, size);
2007 if (ret < 0) {
2008 return ret;
2011 if (ret == size && !blk->enable_write_cache) {
2012 ret = bdrv_flush(blk_bs(blk));
2015 return ret < 0 ? ret : size;
2018 int blk_load_vmstate(BlockBackend *blk, uint8_t *buf, int64_t pos, int size)
2020 if (!blk_is_available(blk)) {
2021 return -ENOMEDIUM;
2024 return bdrv_load_vmstate(blk_bs(blk), buf, pos, size);
2027 int blk_probe_blocksizes(BlockBackend *blk, BlockSizes *bsz)
2029 if (!blk_is_available(blk)) {
2030 return -ENOMEDIUM;
2033 return bdrv_probe_blocksizes(blk_bs(blk), bsz);
2036 int blk_probe_geometry(BlockBackend *blk, HDGeometry *geo)
2038 if (!blk_is_available(blk)) {
2039 return -ENOMEDIUM;
2042 return bdrv_probe_geometry(blk_bs(blk), geo);
2046 * Updates the BlockBackendRootState object with data from the currently
2047 * attached BlockDriverState.
2049 void blk_update_root_state(BlockBackend *blk)
2051 assert(blk->root);
2053 blk->root_state.open_flags = blk->root->bs->open_flags;
2054 blk->root_state.read_only = blk->root->bs->read_only;
2055 blk->root_state.detect_zeroes = blk->root->bs->detect_zeroes;
2059 * Returns the detect-zeroes setting to be used for bdrv_open() of a
2060 * BlockDriverState which is supposed to inherit the root state.
2062 bool blk_get_detect_zeroes_from_root_state(BlockBackend *blk)
2064 return blk->root_state.detect_zeroes;
2068 * Returns the flags to be used for bdrv_open() of a BlockDriverState which is
2069 * supposed to inherit the root state.
2071 int blk_get_open_flags_from_root_state(BlockBackend *blk)
2073 int bs_flags;
2075 bs_flags = blk->root_state.read_only ? 0 : BDRV_O_RDWR;
2076 bs_flags |= blk->root_state.open_flags & ~BDRV_O_RDWR;
2078 return bs_flags;
2081 BlockBackendRootState *blk_get_root_state(BlockBackend *blk)
2083 return &blk->root_state;
2086 int blk_commit_all(void)
2088 BlockBackend *blk = NULL;
2090 while ((blk = blk_all_next(blk)) != NULL) {
2091 AioContext *aio_context = blk_get_aio_context(blk);
2093 aio_context_acquire(aio_context);
2094 if (blk_is_inserted(blk) && blk->root->bs->backing) {
2095 int ret = bdrv_commit(blk->root->bs);
2096 if (ret < 0) {
2097 aio_context_release(aio_context);
2098 return ret;
2101 aio_context_release(aio_context);
2103 return 0;
2107 /* throttling disk I/O limits */
2108 void blk_set_io_limits(BlockBackend *blk, ThrottleConfig *cfg)
2110 throttle_group_config(&blk->public.throttle_group_member, cfg);
2113 void blk_io_limits_disable(BlockBackend *blk)
2115 BlockDriverState *bs = blk_bs(blk);
2116 ThrottleGroupMember *tgm = &blk->public.throttle_group_member;
2117 assert(tgm->throttle_state);
2118 if (bs) {
2119 bdrv_drained_begin(bs);
2121 throttle_group_unregister_tgm(tgm);
2122 if (bs) {
2123 bdrv_drained_end(bs);
2127 /* should be called before blk_set_io_limits if a limit is set */
2128 void blk_io_limits_enable(BlockBackend *blk, const char *group)
2130 assert(!blk->public.throttle_group_member.throttle_state);
2131 throttle_group_register_tgm(&blk->public.throttle_group_member,
2132 group, blk_get_aio_context(blk));
2135 void blk_io_limits_update_group(BlockBackend *blk, const char *group)
2137 /* this BB is not part of any group */
2138 if (!blk->public.throttle_group_member.throttle_state) {
2139 return;
2142 /* this BB is a part of the same group than the one we want */
2143 if (!g_strcmp0(throttle_group_get_name(&blk->public.throttle_group_member),
2144 group)) {
2145 return;
2148 /* need to change the group this bs belong to */
2149 blk_io_limits_disable(blk);
2150 blk_io_limits_enable(blk, group);
2153 static void blk_root_drained_begin(BdrvChild *child)
2155 BlockBackend *blk = child->opaque;
2157 if (++blk->quiesce_counter == 1) {
2158 if (blk->dev_ops && blk->dev_ops->drained_begin) {
2159 blk->dev_ops->drained_begin(blk->dev_opaque);
2163 /* Note that blk->root may not be accessible here yet if we are just
2164 * attaching to a BlockDriverState that is drained. Use child instead. */
2166 if (atomic_fetch_inc(&blk->public.throttle_group_member.io_limits_disabled) == 0) {
2167 throttle_group_restart_tgm(&blk->public.throttle_group_member);
2171 static bool blk_root_drained_poll(BdrvChild *child)
2173 BlockBackend *blk = child->opaque;
2174 assert(blk->quiesce_counter);
2175 return !!blk->in_flight;
2178 static void blk_root_drained_end(BdrvChild *child)
2180 BlockBackend *blk = child->opaque;
2181 assert(blk->quiesce_counter);
2183 assert(blk->public.throttle_group_member.io_limits_disabled);
2184 atomic_dec(&blk->public.throttle_group_member.io_limits_disabled);
2186 if (--blk->quiesce_counter == 0) {
2187 if (blk->dev_ops && blk->dev_ops->drained_end) {
2188 blk->dev_ops->drained_end(blk->dev_opaque);
2193 void blk_register_buf(BlockBackend *blk, void *host, size_t size)
2195 bdrv_register_buf(blk_bs(blk), host, size);
2198 void blk_unregister_buf(BlockBackend *blk, void *host)
2200 bdrv_unregister_buf(blk_bs(blk), host);
2203 int coroutine_fn blk_co_copy_range(BlockBackend *blk_in, int64_t off_in,
2204 BlockBackend *blk_out, int64_t off_out,
2205 int bytes, BdrvRequestFlags read_flags,
2206 BdrvRequestFlags write_flags)
2208 int r;
2209 r = blk_check_byte_request(blk_in, off_in, bytes);
2210 if (r) {
2211 return r;
2213 r = blk_check_byte_request(blk_out, off_out, bytes);
2214 if (r) {
2215 return r;
2217 return bdrv_co_copy_range(blk_in->root, off_in,
2218 blk_out->root, off_out,
2219 bytes, read_flags, write_flags);
2222 const BdrvChild *blk_root(BlockBackend *blk)
2224 return blk->root;