4 * Copyright (C) 2014-2016 Red Hat, Inc.
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/coroutines.h"
18 #include "block/throttle-groups.h"
19 #include "hw/qdev-core.h"
20 #include "sysemu/blockdev.h"
21 #include "sysemu/runstate.h"
22 #include "sysemu/replay.h"
23 #include "qapi/error.h"
24 #include "qapi/qapi-events-block.h"
26 #include "qemu/main-loop.h"
27 #include "qemu/option.h"
29 #include "migration/misc.h"
31 /* Number of coroutines to reserve per attached device model */
32 #define COROUTINE_POOL_RESERVATION 64
34 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
36 typedef struct BlockBackendAioNotifier
{
37 void (*attached_aio_context
)(AioContext
*new_context
, void *opaque
);
38 void (*detach_aio_context
)(void *opaque
);
40 QLIST_ENTRY(BlockBackendAioNotifier
) list
;
41 } BlockBackendAioNotifier
;
47 AioContext
*ctx
; /* access with atomic operations only */
48 DriveInfo
*legacy_dinfo
; /* null unless created by drive_new() */
49 QTAILQ_ENTRY(BlockBackend
) link
; /* for block_backends */
50 QTAILQ_ENTRY(BlockBackend
) monitor_link
; /* for monitor_block_backends */
51 BlockBackendPublic
public;
53 DeviceState
*dev
; /* attached device model, if any */
54 const BlockDevOps
*dev_ops
;
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"). */
66 BlockdevOnError on_read_error
, on_write_error
;
67 bool iostatus_enabled
;
68 BlockDeviceIoStatus iostatus
;
74 bool allow_aio_context_change
;
75 bool allow_write_beyond_eof
;
77 /* Protected by BQL */
78 NotifierList remove_bs_notifiers
, insert_bs_notifiers
;
79 QLIST_HEAD(, BlockBackendAioNotifier
) aio_notifiers
;
81 int quiesce_counter
; /* atomic: written under BQL, read by other threads */
82 QemuMutex queued_requests_lock
; /* protects queued_requests */
83 CoQueue queued_requests
;
84 bool disable_request_queuing
; /* atomic */
86 VMChangeStateEntry
*vmsh
;
87 bool force_allow_inactivate
;
89 /* Number of in-flight aio requests. BlockDriverState also counts
90 * in-flight requests but aio requests can exist even when blk->root is
91 * NULL, so we cannot rely on its counter for that case.
92 * Accessed with atomic ops.
94 unsigned int in_flight
;
97 typedef struct BlockBackendAIOCB
{
103 static const AIOCBInfo block_backend_aiocb_info
= {
104 .aiocb_size
= sizeof(BlockBackendAIOCB
),
107 static void drive_info_del(DriveInfo
*dinfo
);
108 static BlockBackend
*bdrv_first_blk(BlockDriverState
*bs
);
110 /* All BlockBackends. Protected by BQL. */
111 static QTAILQ_HEAD(, BlockBackend
) block_backends
=
112 QTAILQ_HEAD_INITIALIZER(block_backends
);
115 * All BlockBackends referenced by the monitor and which are iterated through by
116 * blk_next(). Protected by BQL.
118 static QTAILQ_HEAD(, BlockBackend
) monitor_block_backends
=
119 QTAILQ_HEAD_INITIALIZER(monitor_block_backends
);
121 static int coroutine_mixed_fn GRAPH_RDLOCK
122 blk_set_perm_locked(BlockBackend
*blk
, uint64_t perm
, uint64_t shared_perm
,
125 static void blk_root_inherit_options(BdrvChildRole role
, bool parent_is_format
,
126 int *child_flags
, QDict
*child_options
,
127 int parent_flags
, QDict
*parent_options
)
129 /* We're not supposed to call this function for root nodes */
132 static void blk_root_drained_begin(BdrvChild
*child
);
133 static bool blk_root_drained_poll(BdrvChild
*child
);
134 static void blk_root_drained_end(BdrvChild
*child
);
136 static void blk_root_change_media(BdrvChild
*child
, bool load
);
137 static void blk_root_resize(BdrvChild
*child
);
139 static bool blk_root_change_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
140 GHashTable
*visited
, Transaction
*tran
,
143 static char *blk_root_get_parent_desc(BdrvChild
*child
)
145 BlockBackend
*blk
= child
->opaque
;
146 g_autofree
char *dev_id
= NULL
;
149 return g_strdup_printf("block device '%s'", blk
->name
);
152 dev_id
= blk_get_attached_dev_id(blk
);
154 return g_strdup_printf("block device '%s'", dev_id
);
156 /* TODO Callback into the BB owner for something more detailed */
157 return g_strdup("an unnamed block device");
161 static const char *blk_root_get_name(BdrvChild
*child
)
163 return blk_name(child
->opaque
);
166 static void blk_vm_state_changed(void *opaque
, bool running
, RunState state
)
168 Error
*local_err
= NULL
;
169 BlockBackend
*blk
= opaque
;
171 if (state
== RUN_STATE_INMIGRATE
) {
175 qemu_del_vm_change_state_handler(blk
->vmsh
);
177 blk_set_perm(blk
, blk
->perm
, blk
->shared_perm
, &local_err
);
179 error_report_err(local_err
);
184 * Notifies the user of the BlockBackend that migration has completed. qdev
185 * devices can tighten their permissions in response (specifically revoke
186 * shared write permissions that we needed for storage migration).
188 * If an error is returned, the VM cannot be allowed to be resumed.
190 static void GRAPH_RDLOCK
blk_root_activate(BdrvChild
*child
, Error
**errp
)
192 BlockBackend
*blk
= child
->opaque
;
193 Error
*local_err
= NULL
;
194 uint64_t saved_shared_perm
;
196 if (!blk
->disable_perm
) {
200 blk
->disable_perm
= false;
203 * blk->shared_perm contains the permissions we want to share once
204 * migration is really completely done. For now, we need to share
205 * all; but we also need to retain blk->shared_perm, which is
206 * overwritten by a successful blk_set_perm() call. Save it and
209 saved_shared_perm
= blk
->shared_perm
;
211 blk_set_perm_locked(blk
, blk
->perm
, BLK_PERM_ALL
, &local_err
);
213 error_propagate(errp
, local_err
);
214 blk
->disable_perm
= true;
217 blk
->shared_perm
= saved_shared_perm
;
219 if (runstate_check(RUN_STATE_INMIGRATE
)) {
220 /* Activation can happen when migration process is still active, for
221 * example when nbd_server_add is called during non-shared storage
222 * migration. Defer the shared_perm update to migration completion. */
224 blk
->vmsh
= qemu_add_vm_change_state_handler(blk_vm_state_changed
,
230 blk_set_perm_locked(blk
, blk
->perm
, blk
->shared_perm
, &local_err
);
232 error_propagate(errp
, local_err
);
233 blk
->disable_perm
= true;
238 void blk_set_force_allow_inactivate(BlockBackend
*blk
)
241 blk
->force_allow_inactivate
= true;
244 static bool blk_can_inactivate(BlockBackend
*blk
)
246 /* If it is a guest device, inactivate is ok. */
247 if (blk
->dev
|| blk_name(blk
)[0]) {
251 /* Inactivating means no more writes to the image can be done,
252 * even if those writes would be changes invisible to the
253 * guest. For block job BBs that satisfy this, we can just allow
254 * it. This is the case for mirror job source, which is required
255 * by libvirt non-shared block migration. */
256 if (!(blk
->perm
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
))) {
260 return blk
->force_allow_inactivate
;
263 static int GRAPH_RDLOCK
blk_root_inactivate(BdrvChild
*child
)
265 BlockBackend
*blk
= child
->opaque
;
267 if (blk
->disable_perm
) {
271 if (!blk_can_inactivate(blk
)) {
275 blk
->disable_perm
= true;
277 bdrv_child_try_set_perm(blk
->root
, 0, BLK_PERM_ALL
, &error_abort
);
283 static void blk_root_attach(BdrvChild
*child
)
285 BlockBackend
*blk
= child
->opaque
;
286 BlockBackendAioNotifier
*notifier
;
288 trace_blk_root_attach(child
, blk
, child
->bs
);
290 QLIST_FOREACH(notifier
, &blk
->aio_notifiers
, list
) {
291 bdrv_add_aio_context_notifier(child
->bs
,
292 notifier
->attached_aio_context
,
293 notifier
->detach_aio_context
,
298 static void blk_root_detach(BdrvChild
*child
)
300 BlockBackend
*blk
= child
->opaque
;
301 BlockBackendAioNotifier
*notifier
;
303 trace_blk_root_detach(child
, blk
, child
->bs
);
305 QLIST_FOREACH(notifier
, &blk
->aio_notifiers
, list
) {
306 bdrv_remove_aio_context_notifier(child
->bs
,
307 notifier
->attached_aio_context
,
308 notifier
->detach_aio_context
,
313 static AioContext
*blk_root_get_parent_aio_context(BdrvChild
*c
)
315 BlockBackend
*blk
= c
->opaque
;
318 return blk_get_aio_context(blk
);
321 static const BdrvChildClass child_root
= {
322 .inherit_options
= blk_root_inherit_options
,
324 .change_media
= blk_root_change_media
,
325 .resize
= blk_root_resize
,
326 .get_name
= blk_root_get_name
,
327 .get_parent_desc
= blk_root_get_parent_desc
,
329 .drained_begin
= blk_root_drained_begin
,
330 .drained_poll
= blk_root_drained_poll
,
331 .drained_end
= blk_root_drained_end
,
333 .activate
= blk_root_activate
,
334 .inactivate
= blk_root_inactivate
,
336 .attach
= blk_root_attach
,
337 .detach
= blk_root_detach
,
339 .change_aio_ctx
= blk_root_change_aio_ctx
,
341 .get_parent_aio_context
= blk_root_get_parent_aio_context
,
345 * Create a new BlockBackend with a reference count of one.
347 * @perm is a bitmasks of BLK_PERM_* constants which describes the permissions
348 * to request for a block driver node that is attached to this BlockBackend.
349 * @shared_perm is a bitmask which describes which permissions may be granted
350 * to other users of the attached node.
351 * Both sets of permissions can be changed later using blk_set_perm().
353 * Return the new BlockBackend on success, null on failure.
355 BlockBackend
*blk_new(AioContext
*ctx
, uint64_t perm
, uint64_t shared_perm
)
361 blk
= g_new0(BlockBackend
, 1);
365 blk
->shared_perm
= shared_perm
;
366 blk_set_enable_write_cache(blk
, true);
368 blk
->on_read_error
= BLOCKDEV_ON_ERROR_REPORT
;
369 blk
->on_write_error
= BLOCKDEV_ON_ERROR_ENOSPC
;
371 block_acct_init(&blk
->stats
);
373 qemu_mutex_init(&blk
->queued_requests_lock
);
374 qemu_co_queue_init(&blk
->queued_requests
);
375 notifier_list_init(&blk
->remove_bs_notifiers
);
376 notifier_list_init(&blk
->insert_bs_notifiers
);
377 QLIST_INIT(&blk
->aio_notifiers
);
379 QTAILQ_INSERT_TAIL(&block_backends
, blk
, link
);
384 * Create a new BlockBackend connected to an existing BlockDriverState.
386 * @perm is a bitmasks of BLK_PERM_* constants which describes the
387 * permissions to request for @bs that is attached to this
388 * BlockBackend. @shared_perm is a bitmask which describes which
389 * permissions may be granted to other users of the attached node.
390 * Both sets of permissions can be changed later using blk_set_perm().
392 * Return the new BlockBackend on success, null on failure.
394 BlockBackend
*blk_new_with_bs(BlockDriverState
*bs
, uint64_t perm
,
395 uint64_t shared_perm
, Error
**errp
)
397 BlockBackend
*blk
= blk_new(bdrv_get_aio_context(bs
), perm
, shared_perm
);
401 if (blk_insert_bs(blk
, bs
, errp
) < 0) {
409 * Creates a new BlockBackend, opens a new BlockDriverState, and connects both.
410 * By default, the new BlockBackend is in the main AioContext, but if the
411 * parameters connect it with any existing node in a different AioContext, it
412 * may end up there instead.
414 * Just as with bdrv_open(), after having called this function the reference to
415 * @options belongs to the block layer (even on failure).
417 * TODO: Remove @filename and @flags; it should be possible to specify a whole
418 * BDS tree just by specifying the @options QDict (or @reference,
419 * alternatively). At the time of adding this function, this is not possible,
420 * though, so callers of this function have to be able to specify @filename and
423 BlockBackend
*blk_new_open(const char *filename
, const char *reference
,
424 QDict
*options
, int flags
, Error
**errp
)
427 BlockDriverState
*bs
;
429 uint64_t shared
= BLK_PERM_ALL
;
434 * blk_new_open() is mainly used in .bdrv_create implementations and the
435 * tools where sharing isn't a major concern because the BDS stays private
436 * and the file is generally not supposed to be used by a second process,
437 * so we just request permission according to the flags.
439 * The exceptions are xen_disk and blockdev_init(); in these cases, the
440 * caller of blk_new_open() doesn't make use of the permissions, but they
441 * shouldn't hurt either. We can still share everything here because the
442 * guest devices will add their own blockers if they can't share.
444 if ((flags
& BDRV_O_NO_IO
) == 0) {
445 perm
|= BLK_PERM_CONSISTENT_READ
;
446 if (flags
& BDRV_O_RDWR
) {
447 perm
|= BLK_PERM_WRITE
;
450 if (flags
& BDRV_O_RESIZE
) {
451 perm
|= BLK_PERM_RESIZE
;
453 if (flags
& BDRV_O_NO_SHARE
) {
454 shared
= BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
;
457 bs
= bdrv_open(filename
, reference
, options
, flags
, errp
);
462 /* bdrv_open() could have moved bs to a different AioContext */
463 blk
= blk_new(bdrv_get_aio_context(bs
), perm
, shared
);
465 blk
->shared_perm
= shared
;
467 blk_insert_bs(blk
, bs
, errp
);
478 static void blk_delete(BlockBackend
*blk
)
480 assert(!blk
->refcnt
);
483 if (blk
->public.throttle_group_member
.throttle_state
) {
484 blk_io_limits_disable(blk
);
490 qemu_del_vm_change_state_handler(blk
->vmsh
);
493 assert(QLIST_EMPTY(&blk
->remove_bs_notifiers
.notifiers
));
494 assert(QLIST_EMPTY(&blk
->insert_bs_notifiers
.notifiers
));
495 assert(QLIST_EMPTY(&blk
->aio_notifiers
));
496 assert(qemu_co_queue_empty(&blk
->queued_requests
));
497 qemu_mutex_destroy(&blk
->queued_requests_lock
);
498 QTAILQ_REMOVE(&block_backends
, blk
, link
);
499 drive_info_del(blk
->legacy_dinfo
);
500 block_acct_cleanup(&blk
->stats
);
504 static void drive_info_del(DriveInfo
*dinfo
)
509 qemu_opts_del(dinfo
->opts
);
513 int blk_get_refcnt(BlockBackend
*blk
)
516 return blk
? blk
->refcnt
: 0;
520 * Increment @blk's reference count.
521 * @blk must not be null.
523 void blk_ref(BlockBackend
*blk
)
525 assert(blk
->refcnt
> 0);
531 * Decrement @blk's reference count.
532 * If this drops it to zero, destroy @blk.
533 * For convenience, do nothing if @blk is null.
535 void blk_unref(BlockBackend
*blk
)
539 assert(blk
->refcnt
> 0);
540 if (blk
->refcnt
> 1) {
544 /* blk_drain() cannot resurrect blk, nobody held a reference */
545 assert(blk
->refcnt
== 1);
553 * Behaves similarly to blk_next() but iterates over all BlockBackends, even the
554 * ones which are hidden (i.e. are not referenced by the monitor).
556 BlockBackend
*blk_all_next(BlockBackend
*blk
)
559 return blk
? QTAILQ_NEXT(blk
, link
)
560 : QTAILQ_FIRST(&block_backends
);
563 void blk_remove_all_bs(void)
565 BlockBackend
*blk
= NULL
;
569 while ((blk
= blk_all_next(blk
)) != NULL
) {
577 * Return the monitor-owned BlockBackend after @blk.
578 * If @blk is null, return the first one.
579 * Else, return @blk's next sibling, which may be null.
581 * To iterate over all BlockBackends, do
582 * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
586 BlockBackend
*blk_next(BlockBackend
*blk
)
589 return blk
? QTAILQ_NEXT(blk
, monitor_link
)
590 : QTAILQ_FIRST(&monitor_block_backends
);
593 /* Iterates over all top-level BlockDriverStates, i.e. BDSs that are owned by
594 * the monitor or attached to a BlockBackend */
595 BlockDriverState
*bdrv_next(BdrvNextIterator
*it
)
597 BlockDriverState
*bs
, *old_bs
;
599 /* Must be called from the main loop */
600 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
602 /* First, return all root nodes of BlockBackends. In order to avoid
603 * returning a BDS twice when multiple BBs refer to it, we only return it
604 * if the BB is the first one in the parent list of the BDS. */
605 if (it
->phase
== BDRV_NEXT_BACKEND_ROOTS
) {
606 BlockBackend
*old_blk
= it
->blk
;
608 old_bs
= old_blk
? blk_bs(old_blk
) : NULL
;
611 it
->blk
= blk_all_next(it
->blk
);
612 bs
= it
->blk
? blk_bs(it
->blk
) : NULL
;
613 } while (it
->blk
&& (bs
== NULL
|| bdrv_first_blk(bs
) != it
->blk
));
625 it
->phase
= BDRV_NEXT_MONITOR_OWNED
;
630 /* Then return the monitor-owned BDSes without a BB attached. Ignore all
631 * BDSes that are attached to a BlockBackend here; they have been handled
632 * by the above block already */
634 it
->bs
= bdrv_next_monitor_owned(it
->bs
);
636 } while (bs
&& bdrv_has_blk(bs
));
646 static void bdrv_next_reset(BdrvNextIterator
*it
)
648 *it
= (BdrvNextIterator
) {
649 .phase
= BDRV_NEXT_BACKEND_ROOTS
,
653 BlockDriverState
*bdrv_first(BdrvNextIterator
*it
)
657 return bdrv_next(it
);
660 /* Must be called when aborting a bdrv_next() iteration before
661 * bdrv_next() returns NULL */
662 void bdrv_next_cleanup(BdrvNextIterator
*it
)
664 /* Must be called from the main loop */
665 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
667 if (it
->phase
== BDRV_NEXT_BACKEND_ROOTS
) {
669 bdrv_unref(blk_bs(it
->blk
));
680 * Add a BlockBackend into the list of backends referenced by the monitor, with
681 * the given @name acting as the handle for the monitor.
682 * Strictly for use by blockdev.c.
684 * @name must not be null or empty.
686 * Returns true on success and false on failure. In the latter case, an Error
687 * object is returned through @errp.
689 bool monitor_add_blk(BlockBackend
*blk
, const char *name
, Error
**errp
)
692 assert(name
&& name
[0]);
695 if (!id_wellformed(name
)) {
696 error_setg(errp
, "Invalid device name");
699 if (blk_by_name(name
)) {
700 error_setg(errp
, "Device with id '%s' already exists", name
);
703 if (bdrv_find_node(name
)) {
705 "Device name '%s' conflicts with an existing node name",
710 blk
->name
= g_strdup(name
);
711 QTAILQ_INSERT_TAIL(&monitor_block_backends
, blk
, monitor_link
);
716 * Remove a BlockBackend from the list of backends referenced by the monitor.
717 * Strictly for use by blockdev.c.
719 void monitor_remove_blk(BlockBackend
*blk
)
727 QTAILQ_REMOVE(&monitor_block_backends
, blk
, monitor_link
);
733 * Return @blk's name, a non-null string.
734 * Returns an empty string iff @blk is not referenced by the monitor.
736 const char *blk_name(const BlockBackend
*blk
)
739 return blk
->name
?: "";
743 * Return the BlockBackend with name @name if it exists, else null.
744 * @name must not be null.
746 BlockBackend
*blk_by_name(const char *name
)
748 BlockBackend
*blk
= NULL
;
752 while ((blk
= blk_next(blk
)) != NULL
) {
753 if (!strcmp(name
, blk
->name
)) {
761 * Return the BlockDriverState attached to @blk if any, else null.
763 BlockDriverState
*blk_bs(BlockBackend
*blk
)
766 return blk
->root
? blk
->root
->bs
: NULL
;
769 static BlockBackend
* GRAPH_RDLOCK
bdrv_first_blk(BlockDriverState
*bs
)
774 assert_bdrv_graph_readable();
776 QLIST_FOREACH(child
, &bs
->parents
, next_parent
) {
777 if (child
->klass
== &child_root
) {
778 return child
->opaque
;
786 * Returns true if @bs has an associated BlockBackend.
788 bool bdrv_has_blk(BlockDriverState
*bs
)
791 return bdrv_first_blk(bs
) != NULL
;
795 * Returns true if @bs has only BlockBackends as parents.
797 bool bdrv_is_root_node(BlockDriverState
*bs
)
802 assert_bdrv_graph_readable();
804 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
805 if (c
->klass
!= &child_root
) {
814 * Return @blk's DriveInfo if any, else null.
816 DriveInfo
*blk_legacy_dinfo(BlockBackend
*blk
)
819 return blk
->legacy_dinfo
;
823 * Set @blk's DriveInfo to @dinfo, and return it.
824 * @blk must not have a DriveInfo set already.
825 * No other BlockBackend may have the same DriveInfo set.
827 DriveInfo
*blk_set_legacy_dinfo(BlockBackend
*blk
, DriveInfo
*dinfo
)
829 assert(!blk
->legacy_dinfo
);
831 return blk
->legacy_dinfo
= dinfo
;
835 * Return the BlockBackend with DriveInfo @dinfo.
838 BlockBackend
*blk_by_legacy_dinfo(DriveInfo
*dinfo
)
840 BlockBackend
*blk
= NULL
;
843 while ((blk
= blk_next(blk
)) != NULL
) {
844 if (blk
->legacy_dinfo
== dinfo
) {
852 * Returns a pointer to the publicly accessible fields of @blk.
854 BlockBackendPublic
*blk_get_public(BlockBackend
*blk
)
861 * Returns a BlockBackend given the associated @public fields.
863 BlockBackend
*blk_by_public(BlockBackendPublic
*public)
866 return container_of(public, BlockBackend
, public);
870 * Disassociates the currently associated BlockDriverState from @blk.
872 void blk_remove_bs(BlockBackend
*blk
)
874 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
879 notifier_list_notify(&blk
->remove_bs_notifiers
, blk
);
880 if (tgm
->throttle_state
) {
881 BlockDriverState
*bs
= blk_bs(blk
);
884 * Take a ref in case blk_bs() changes across bdrv_drained_begin(), for
885 * example, if a temporary filter node is removed by a blockjob.
888 bdrv_drained_begin(bs
);
889 throttle_group_detach_aio_context(tgm
);
890 throttle_group_attach_aio_context(tgm
, qemu_get_aio_context());
891 bdrv_drained_end(bs
);
895 blk_update_root_state(blk
);
897 /* bdrv_root_unref_child() will cause blk->root to become stale and may
898 * switch to a completion coroutine later on. Let's drain all I/O here
899 * to avoid that and a potential QEMU crash.
906 bdrv_root_unref_child(root
);
907 bdrv_graph_wrunlock();
911 * Associates a new BlockDriverState with @blk.
913 int blk_insert_bs(BlockBackend
*blk
, BlockDriverState
*bs
, Error
**errp
)
915 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
920 blk
->root
= bdrv_root_attach_child(bs
, "root", &child_root
,
921 BDRV_CHILD_FILTERED
| BDRV_CHILD_PRIMARY
,
922 blk
->perm
, blk
->shared_perm
,
924 bdrv_graph_wrunlock();
925 if (blk
->root
== NULL
) {
929 notifier_list_notify(&blk
->insert_bs_notifiers
, blk
);
930 if (tgm
->throttle_state
) {
931 throttle_group_detach_aio_context(tgm
);
932 throttle_group_attach_aio_context(tgm
, bdrv_get_aio_context(bs
));
939 * Change BlockDriverState associated with @blk.
941 int blk_replace_bs(BlockBackend
*blk
, BlockDriverState
*new_bs
, Error
**errp
)
944 return bdrv_replace_child_bs(blk
->root
, new_bs
, errp
);
948 * Sets the permission bitmasks that the user of the BlockBackend needs.
950 static int coroutine_mixed_fn GRAPH_RDLOCK
951 blk_set_perm_locked(BlockBackend
*blk
, uint64_t perm
, uint64_t shared_perm
,
957 if (blk
->root
&& !blk
->disable_perm
) {
958 ret
= bdrv_child_try_set_perm(blk
->root
, perm
, shared_perm
, errp
);
965 blk
->shared_perm
= shared_perm
;
970 int blk_set_perm(BlockBackend
*blk
, uint64_t perm
, uint64_t shared_perm
,
974 GRAPH_RDLOCK_GUARD_MAINLOOP();
976 return blk_set_perm_locked(blk
, perm
, shared_perm
, errp
);
979 void blk_get_perm(BlockBackend
*blk
, uint64_t *perm
, uint64_t *shared_perm
)
983 *shared_perm
= blk
->shared_perm
;
987 * Attach device model @dev to @blk.
988 * Return 0 on success, -EBUSY when a device model is attached already.
990 int blk_attach_dev(BlockBackend
*blk
, DeviceState
*dev
)
997 /* While migration is still incoming, we don't need to apply the
998 * permissions of guest device BlockBackends. We might still have a block
999 * job or NBD server writing to the image for storage migration. */
1000 if (runstate_check(RUN_STATE_INMIGRATE
)) {
1001 blk
->disable_perm
= true;
1006 blk_iostatus_reset(blk
);
1012 * Detach device model @dev from @blk.
1013 * @dev must be currently attached to @blk.
1015 void blk_detach_dev(BlockBackend
*blk
, DeviceState
*dev
)
1017 assert(blk
->dev
== dev
);
1018 GLOBAL_STATE_CODE();
1020 blk
->dev_ops
= NULL
;
1021 blk
->dev_opaque
= NULL
;
1022 blk_set_perm(blk
, 0, BLK_PERM_ALL
, &error_abort
);
1027 * Return the device model attached to @blk if any, else null.
1029 DeviceState
*blk_get_attached_dev(BlockBackend
*blk
)
1031 GLOBAL_STATE_CODE();
1035 /* Return the qdev ID, or if no ID is assigned the QOM path, of the block
1036 * device attached to the BlockBackend. */
1037 char *blk_get_attached_dev_id(BlockBackend
*blk
)
1039 DeviceState
*dev
= blk
->dev
;
1043 return g_strdup("");
1044 } else if (dev
->id
) {
1045 return g_strdup(dev
->id
);
1048 return object_get_canonical_path(OBJECT(dev
)) ?: g_strdup("");
1052 * Return the BlockBackend which has the device model @dev attached if it
1053 * exists, else null.
1055 * @dev must not be null.
1057 BlockBackend
*blk_by_dev(void *dev
)
1059 BlockBackend
*blk
= NULL
;
1061 GLOBAL_STATE_CODE();
1063 assert(dev
!= NULL
);
1064 while ((blk
= blk_all_next(blk
)) != NULL
) {
1065 if (blk
->dev
== dev
) {
1073 * Set @blk's device model callbacks to @ops.
1074 * @opaque is the opaque argument to pass to the callbacks.
1075 * This is for use by device models.
1077 void blk_set_dev_ops(BlockBackend
*blk
, const BlockDevOps
*ops
,
1080 GLOBAL_STATE_CODE();
1082 blk
->dev_opaque
= opaque
;
1084 /* Are we currently quiesced? Should we enforce this right now? */
1085 if (qatomic_read(&blk
->quiesce_counter
) && ops
&& ops
->drained_begin
) {
1086 ops
->drained_begin(opaque
);
1091 * Notify @blk's attached device model of media change.
1093 * If @load is true, notify of media load. This action can fail, meaning that
1094 * the medium cannot be loaded. @errp is set then.
1096 * If @load is false, notify of media eject. This can never fail.
1098 * Also send DEVICE_TRAY_MOVED events as appropriate.
1100 void blk_dev_change_media_cb(BlockBackend
*blk
, bool load
, Error
**errp
)
1102 GLOBAL_STATE_CODE();
1103 if (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
) {
1104 bool tray_was_open
, tray_is_open
;
1105 Error
*local_err
= NULL
;
1107 tray_was_open
= blk_dev_is_tray_open(blk
);
1108 blk
->dev_ops
->change_media_cb(blk
->dev_opaque
, load
, &local_err
);
1110 assert(load
== true);
1111 error_propagate(errp
, local_err
);
1114 tray_is_open
= blk_dev_is_tray_open(blk
);
1116 if (tray_was_open
!= tray_is_open
) {
1117 char *id
= blk_get_attached_dev_id(blk
);
1118 qapi_event_send_device_tray_moved(blk_name(blk
), id
, tray_is_open
);
1124 static void blk_root_change_media(BdrvChild
*child
, bool load
)
1126 blk_dev_change_media_cb(child
->opaque
, load
, NULL
);
1130 * Does @blk's attached device model have removable media?
1131 * %true if no device model is attached.
1133 bool blk_dev_has_removable_media(BlockBackend
*blk
)
1135 GLOBAL_STATE_CODE();
1136 return !blk
->dev
|| (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
);
1140 * Does @blk's attached device model have a tray?
1142 bool blk_dev_has_tray(BlockBackend
*blk
)
1145 return blk
->dev_ops
&& blk
->dev_ops
->is_tray_open
;
1149 * Notify @blk's attached device model of a media eject request.
1150 * If @force is true, the medium is about to be yanked out forcefully.
1152 void blk_dev_eject_request(BlockBackend
*blk
, bool force
)
1154 GLOBAL_STATE_CODE();
1155 if (blk
->dev_ops
&& blk
->dev_ops
->eject_request_cb
) {
1156 blk
->dev_ops
->eject_request_cb(blk
->dev_opaque
, force
);
1161 * Does @blk's attached device model have a tray, and is it open?
1163 bool blk_dev_is_tray_open(BlockBackend
*blk
)
1166 if (blk_dev_has_tray(blk
)) {
1167 return blk
->dev_ops
->is_tray_open(blk
->dev_opaque
);
1173 * Does @blk's attached device model have the medium locked?
1174 * %false if the device model has no such lock.
1176 bool blk_dev_is_medium_locked(BlockBackend
*blk
)
1178 GLOBAL_STATE_CODE();
1179 if (blk
->dev_ops
&& blk
->dev_ops
->is_medium_locked
) {
1180 return blk
->dev_ops
->is_medium_locked(blk
->dev_opaque
);
1186 * Notify @blk's attached device model of a backend size change.
1188 static void blk_root_resize(BdrvChild
*child
)
1190 BlockBackend
*blk
= child
->opaque
;
1192 if (blk
->dev_ops
&& blk
->dev_ops
->resize_cb
) {
1193 blk
->dev_ops
->resize_cb(blk
->dev_opaque
);
1197 void blk_iostatus_enable(BlockBackend
*blk
)
1199 GLOBAL_STATE_CODE();
1200 blk
->iostatus_enabled
= true;
1201 blk
->iostatus
= BLOCK_DEVICE_IO_STATUS_OK
;
1204 /* The I/O status is only enabled if the drive explicitly
1205 * enables it _and_ the VM is configured to stop on errors */
1206 bool blk_iostatus_is_enabled(const BlockBackend
*blk
)
1209 return (blk
->iostatus_enabled
&&
1210 (blk
->on_write_error
== BLOCKDEV_ON_ERROR_ENOSPC
||
1211 blk
->on_write_error
== BLOCKDEV_ON_ERROR_STOP
||
1212 blk
->on_read_error
== BLOCKDEV_ON_ERROR_STOP
));
1215 BlockDeviceIoStatus
blk_iostatus(const BlockBackend
*blk
)
1217 GLOBAL_STATE_CODE();
1218 return blk
->iostatus
;
1221 void blk_iostatus_disable(BlockBackend
*blk
)
1223 GLOBAL_STATE_CODE();
1224 blk
->iostatus_enabled
= false;
1227 void blk_iostatus_reset(BlockBackend
*blk
)
1229 GLOBAL_STATE_CODE();
1230 if (blk_iostatus_is_enabled(blk
)) {
1231 blk
->iostatus
= BLOCK_DEVICE_IO_STATUS_OK
;
1235 void blk_iostatus_set_err(BlockBackend
*blk
, int error
)
1238 assert(blk_iostatus_is_enabled(blk
));
1239 if (blk
->iostatus
== BLOCK_DEVICE_IO_STATUS_OK
) {
1240 blk
->iostatus
= error
== ENOSPC
? BLOCK_DEVICE_IO_STATUS_NOSPACE
:
1241 BLOCK_DEVICE_IO_STATUS_FAILED
;
1245 void blk_set_allow_write_beyond_eof(BlockBackend
*blk
, bool allow
)
1248 blk
->allow_write_beyond_eof
= allow
;
1251 void blk_set_allow_aio_context_change(BlockBackend
*blk
, bool allow
)
1254 blk
->allow_aio_context_change
= allow
;
1257 void blk_set_disable_request_queuing(BlockBackend
*blk
, bool disable
)
1260 qatomic_set(&blk
->disable_request_queuing
, disable
);
1263 static int coroutine_fn GRAPH_RDLOCK
1264 blk_check_byte_request(BlockBackend
*blk
, int64_t offset
, int64_t bytes
)
1272 if (!blk_co_is_available(blk
)) {
1280 if (!blk
->allow_write_beyond_eof
) {
1281 len
= bdrv_co_getlength(blk_bs(blk
));
1286 if (offset
> len
|| len
- offset
< bytes
) {
1294 /* Are we currently in a drained section? */
1295 bool blk_in_drain(BlockBackend
*blk
)
1297 GLOBAL_STATE_CODE(); /* change to IO_OR_GS_CODE(), if necessary */
1298 return qatomic_read(&blk
->quiesce_counter
);
1301 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1302 static void coroutine_fn
blk_wait_while_drained(BlockBackend
*blk
)
1304 assert(blk
->in_flight
> 0);
1306 if (qatomic_read(&blk
->quiesce_counter
) &&
1307 !qatomic_read(&blk
->disable_request_queuing
)) {
1309 * Take lock before decrementing in flight counter so main loop thread
1310 * waits for us to enqueue ourselves before it can leave the drained
1313 qemu_mutex_lock(&blk
->queued_requests_lock
);
1314 blk_dec_in_flight(blk
);
1315 qemu_co_queue_wait(&blk
->queued_requests
, &blk
->queued_requests_lock
);
1316 blk_inc_in_flight(blk
);
1317 qemu_mutex_unlock(&blk
->queued_requests_lock
);
1321 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1322 static int coroutine_fn
1323 blk_co_do_preadv_part(BlockBackend
*blk
, int64_t offset
, int64_t bytes
,
1324 QEMUIOVector
*qiov
, size_t qiov_offset
,
1325 BdrvRequestFlags flags
)
1328 BlockDriverState
*bs
;
1331 blk_wait_while_drained(blk
);
1332 GRAPH_RDLOCK_GUARD();
1334 /* Call blk_bs() only after waiting, the graph may have changed */
1336 trace_blk_co_preadv(blk
, bs
, offset
, bytes
, flags
);
1338 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1343 bdrv_inc_in_flight(bs
);
1345 /* throttling disk I/O */
1346 if (blk
->public.throttle_group_member
.throttle_state
) {
1347 throttle_group_co_io_limits_intercept(&blk
->public.throttle_group_member
,
1348 bytes
, THROTTLE_READ
);
1351 ret
= bdrv_co_preadv_part(blk
->root
, offset
, bytes
, qiov
, qiov_offset
,
1353 bdrv_dec_in_flight(bs
);
1357 int coroutine_fn
blk_co_pread(BlockBackend
*blk
, int64_t offset
, int64_t bytes
,
1358 void *buf
, BdrvRequestFlags flags
)
1360 QEMUIOVector qiov
= QEMU_IOVEC_INIT_BUF(qiov
, buf
, bytes
);
1363 assert(bytes
<= SIZE_MAX
);
1365 return blk_co_preadv(blk
, offset
, bytes
, &qiov
, flags
);
1368 int coroutine_fn
blk_co_preadv(BlockBackend
*blk
, int64_t offset
,
1369 int64_t bytes
, QEMUIOVector
*qiov
,
1370 BdrvRequestFlags flags
)
1375 blk_inc_in_flight(blk
);
1376 ret
= blk_co_do_preadv_part(blk
, offset
, bytes
, qiov
, 0, flags
);
1377 blk_dec_in_flight(blk
);
1382 int coroutine_fn
blk_co_preadv_part(BlockBackend
*blk
, int64_t offset
,
1383 int64_t bytes
, QEMUIOVector
*qiov
,
1384 size_t qiov_offset
, BdrvRequestFlags flags
)
1389 blk_inc_in_flight(blk
);
1390 ret
= blk_co_do_preadv_part(blk
, offset
, bytes
, qiov
, qiov_offset
, flags
);
1391 blk_dec_in_flight(blk
);
1396 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1397 static int coroutine_fn
1398 blk_co_do_pwritev_part(BlockBackend
*blk
, int64_t offset
, int64_t bytes
,
1399 QEMUIOVector
*qiov
, size_t qiov_offset
,
1400 BdrvRequestFlags flags
)
1403 BlockDriverState
*bs
;
1406 blk_wait_while_drained(blk
);
1407 GRAPH_RDLOCK_GUARD();
1409 /* Call blk_bs() only after waiting, the graph may have changed */
1411 trace_blk_co_pwritev(blk
, bs
, offset
, bytes
, flags
);
1413 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1418 bdrv_inc_in_flight(bs
);
1419 /* throttling disk I/O */
1420 if (blk
->public.throttle_group_member
.throttle_state
) {
1421 throttle_group_co_io_limits_intercept(&blk
->public.throttle_group_member
,
1422 bytes
, THROTTLE_WRITE
);
1425 if (!blk
->enable_write_cache
) {
1426 flags
|= BDRV_REQ_FUA
;
1429 ret
= bdrv_co_pwritev_part(blk
->root
, offset
, bytes
, qiov
, qiov_offset
,
1431 bdrv_dec_in_flight(bs
);
1435 int coroutine_fn
blk_co_pwritev_part(BlockBackend
*blk
, int64_t offset
,
1437 QEMUIOVector
*qiov
, size_t qiov_offset
,
1438 BdrvRequestFlags flags
)
1443 blk_inc_in_flight(blk
);
1444 ret
= blk_co_do_pwritev_part(blk
, offset
, bytes
, qiov
, qiov_offset
, flags
);
1445 blk_dec_in_flight(blk
);
1450 int coroutine_fn
blk_co_pwrite(BlockBackend
*blk
, int64_t offset
, int64_t bytes
,
1451 const void *buf
, BdrvRequestFlags flags
)
1453 QEMUIOVector qiov
= QEMU_IOVEC_INIT_BUF(qiov
, buf
, bytes
);
1456 assert(bytes
<= SIZE_MAX
);
1458 return blk_co_pwritev(blk
, offset
, bytes
, &qiov
, flags
);
1461 int coroutine_fn
blk_co_pwritev(BlockBackend
*blk
, int64_t offset
,
1462 int64_t bytes
, QEMUIOVector
*qiov
,
1463 BdrvRequestFlags flags
)
1466 return blk_co_pwritev_part(blk
, offset
, bytes
, qiov
, 0, flags
);
1469 int coroutine_fn
blk_co_block_status_above(BlockBackend
*blk
,
1470 BlockDriverState
*base
,
1471 int64_t offset
, int64_t bytes
,
1472 int64_t *pnum
, int64_t *map
,
1473 BlockDriverState
**file
)
1476 GRAPH_RDLOCK_GUARD();
1477 return bdrv_co_block_status_above(blk_bs(blk
), base
, offset
, bytes
, pnum
,
1481 int coroutine_fn
blk_co_is_allocated_above(BlockBackend
*blk
,
1482 BlockDriverState
*base
,
1483 bool include_base
, int64_t offset
,
1484 int64_t bytes
, int64_t *pnum
)
1487 GRAPH_RDLOCK_GUARD();
1488 return bdrv_co_is_allocated_above(blk_bs(blk
), base
, include_base
, offset
,
1492 typedef struct BlkRwCo
{
1497 BdrvRequestFlags flags
;
1500 int blk_make_zero(BlockBackend
*blk
, BdrvRequestFlags flags
)
1502 GLOBAL_STATE_CODE();
1503 return bdrv_make_zero(blk
->root
, flags
);
1506 void blk_inc_in_flight(BlockBackend
*blk
)
1509 qatomic_inc(&blk
->in_flight
);
1512 void blk_dec_in_flight(BlockBackend
*blk
)
1515 qatomic_dec(&blk
->in_flight
);
1519 static void error_callback_bh(void *opaque
)
1521 struct BlockBackendAIOCB
*acb
= opaque
;
1523 blk_dec_in_flight(acb
->blk
);
1524 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
1525 qemu_aio_unref(acb
);
1528 BlockAIOCB
*blk_abort_aio_request(BlockBackend
*blk
,
1529 BlockCompletionFunc
*cb
,
1530 void *opaque
, int ret
)
1532 struct BlockBackendAIOCB
*acb
;
1535 blk_inc_in_flight(blk
);
1536 acb
= blk_aio_get(&block_backend_aiocb_info
, blk
, cb
, opaque
);
1540 replay_bh_schedule_oneshot_event(qemu_get_current_aio_context(),
1541 error_callback_bh
, acb
);
1542 return &acb
->common
;
1545 typedef struct BlkAioEmAIOCB
{
1552 static const AIOCBInfo blk_aio_em_aiocb_info
= {
1553 .aiocb_size
= sizeof(BlkAioEmAIOCB
),
1556 static void blk_aio_complete(BlkAioEmAIOCB
*acb
)
1558 if (acb
->has_returned
) {
1559 acb
->common
.cb(acb
->common
.opaque
, acb
->rwco
.ret
);
1560 blk_dec_in_flight(acb
->rwco
.blk
);
1561 qemu_aio_unref(acb
);
1565 static void blk_aio_complete_bh(void *opaque
)
1567 BlkAioEmAIOCB
*acb
= opaque
;
1568 assert(acb
->has_returned
);
1569 blk_aio_complete(acb
);
1572 static BlockAIOCB
*blk_aio_prwv(BlockBackend
*blk
, int64_t offset
,
1574 void *iobuf
, CoroutineEntry co_entry
,
1575 BdrvRequestFlags flags
,
1576 BlockCompletionFunc
*cb
, void *opaque
)
1581 blk_inc_in_flight(blk
);
1582 acb
= blk_aio_get(&blk_aio_em_aiocb_info
, blk
, cb
, opaque
);
1583 acb
->rwco
= (BlkRwCo
) {
1591 acb
->has_returned
= false;
1593 co
= qemu_coroutine_create(co_entry
, acb
);
1594 aio_co_enter(qemu_get_current_aio_context(), co
);
1596 acb
->has_returned
= true;
1597 if (acb
->rwco
.ret
!= NOT_DONE
) {
1598 replay_bh_schedule_oneshot_event(qemu_get_current_aio_context(),
1599 blk_aio_complete_bh
, acb
);
1602 return &acb
->common
;
1605 static void coroutine_fn
blk_aio_read_entry(void *opaque
)
1607 BlkAioEmAIOCB
*acb
= opaque
;
1608 BlkRwCo
*rwco
= &acb
->rwco
;
1609 QEMUIOVector
*qiov
= rwco
->iobuf
;
1611 assert(qiov
->size
== acb
->bytes
);
1612 rwco
->ret
= blk_co_do_preadv_part(rwco
->blk
, rwco
->offset
, acb
->bytes
, qiov
,
1614 blk_aio_complete(acb
);
1617 static void coroutine_fn
blk_aio_write_entry(void *opaque
)
1619 BlkAioEmAIOCB
*acb
= opaque
;
1620 BlkRwCo
*rwco
= &acb
->rwco
;
1621 QEMUIOVector
*qiov
= rwco
->iobuf
;
1623 assert(!qiov
|| qiov
->size
== acb
->bytes
);
1624 rwco
->ret
= blk_co_do_pwritev_part(rwco
->blk
, rwco
->offset
, acb
->bytes
,
1625 qiov
, 0, rwco
->flags
);
1626 blk_aio_complete(acb
);
1629 BlockAIOCB
*blk_aio_pwrite_zeroes(BlockBackend
*blk
, int64_t offset
,
1630 int64_t bytes
, BdrvRequestFlags flags
,
1631 BlockCompletionFunc
*cb
, void *opaque
)
1634 return blk_aio_prwv(blk
, offset
, bytes
, NULL
, blk_aio_write_entry
,
1635 flags
| BDRV_REQ_ZERO_WRITE
, cb
, opaque
);
1638 int64_t coroutine_fn
blk_co_getlength(BlockBackend
*blk
)
1641 GRAPH_RDLOCK_GUARD();
1643 if (!blk_co_is_available(blk
)) {
1647 return bdrv_co_getlength(blk_bs(blk
));
1650 int64_t coroutine_fn
blk_co_nb_sectors(BlockBackend
*blk
)
1652 BlockDriverState
*bs
= blk_bs(blk
);
1655 GRAPH_RDLOCK_GUARD();
1660 return bdrv_co_nb_sectors(bs
);
1665 * This wrapper is written by hand because this function is in the hot I/O path,
1666 * via blk_get_geometry.
1668 int64_t coroutine_mixed_fn
blk_nb_sectors(BlockBackend
*blk
)
1670 BlockDriverState
*bs
= blk_bs(blk
);
1677 return bdrv_nb_sectors(bs
);
1681 /* return 0 as number of sectors if no device present or error */
1682 void coroutine_fn
blk_co_get_geometry(BlockBackend
*blk
,
1683 uint64_t *nb_sectors_ptr
)
1685 int64_t ret
= blk_co_nb_sectors(blk
);
1686 *nb_sectors_ptr
= ret
< 0 ? 0 : ret
;
1690 * This wrapper is written by hand because this function is in the hot I/O path.
1692 void coroutine_mixed_fn
blk_get_geometry(BlockBackend
*blk
,
1693 uint64_t *nb_sectors_ptr
)
1695 int64_t ret
= blk_nb_sectors(blk
);
1696 *nb_sectors_ptr
= ret
< 0 ? 0 : ret
;
1699 BlockAIOCB
*blk_aio_preadv(BlockBackend
*blk
, int64_t offset
,
1700 QEMUIOVector
*qiov
, BdrvRequestFlags flags
,
1701 BlockCompletionFunc
*cb
, void *opaque
)
1704 assert((uint64_t)qiov
->size
<= INT64_MAX
);
1705 return blk_aio_prwv(blk
, offset
, qiov
->size
, qiov
,
1706 blk_aio_read_entry
, flags
, cb
, opaque
);
1709 BlockAIOCB
*blk_aio_pwritev(BlockBackend
*blk
, int64_t offset
,
1710 QEMUIOVector
*qiov
, BdrvRequestFlags flags
,
1711 BlockCompletionFunc
*cb
, void *opaque
)
1714 assert((uint64_t)qiov
->size
<= INT64_MAX
);
1715 return blk_aio_prwv(blk
, offset
, qiov
->size
, qiov
,
1716 blk_aio_write_entry
, flags
, cb
, opaque
);
1719 void blk_aio_cancel(BlockAIOCB
*acb
)
1721 GLOBAL_STATE_CODE();
1722 bdrv_aio_cancel(acb
);
1725 void blk_aio_cancel_async(BlockAIOCB
*acb
)
1728 bdrv_aio_cancel_async(acb
);
1731 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1732 static int coroutine_fn
1733 blk_co_do_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
)
1737 blk_wait_while_drained(blk
);
1738 GRAPH_RDLOCK_GUARD();
1740 if (!blk_co_is_available(blk
)) {
1744 return bdrv_co_ioctl(blk_bs(blk
), req
, buf
);
1747 int coroutine_fn
blk_co_ioctl(BlockBackend
*blk
, unsigned long int req
,
1753 blk_inc_in_flight(blk
);
1754 ret
= blk_co_do_ioctl(blk
, req
, buf
);
1755 blk_dec_in_flight(blk
);
1760 static void coroutine_fn
blk_aio_ioctl_entry(void *opaque
)
1762 BlkAioEmAIOCB
*acb
= opaque
;
1763 BlkRwCo
*rwco
= &acb
->rwco
;
1765 rwco
->ret
= blk_co_do_ioctl(rwco
->blk
, rwco
->offset
, rwco
->iobuf
);
1767 blk_aio_complete(acb
);
1770 BlockAIOCB
*blk_aio_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
,
1771 BlockCompletionFunc
*cb
, void *opaque
)
1774 return blk_aio_prwv(blk
, req
, 0, buf
, blk_aio_ioctl_entry
, 0, cb
, opaque
);
1777 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1778 static int coroutine_fn
1779 blk_co_do_pdiscard(BlockBackend
*blk
, int64_t offset
, int64_t bytes
)
1784 blk_wait_while_drained(blk
);
1785 GRAPH_RDLOCK_GUARD();
1787 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1792 return bdrv_co_pdiscard(blk
->root
, offset
, bytes
);
1795 static void coroutine_fn
blk_aio_pdiscard_entry(void *opaque
)
1797 BlkAioEmAIOCB
*acb
= opaque
;
1798 BlkRwCo
*rwco
= &acb
->rwco
;
1800 rwco
->ret
= blk_co_do_pdiscard(rwco
->blk
, rwco
->offset
, acb
->bytes
);
1801 blk_aio_complete(acb
);
1804 BlockAIOCB
*blk_aio_pdiscard(BlockBackend
*blk
,
1805 int64_t offset
, int64_t bytes
,
1806 BlockCompletionFunc
*cb
, void *opaque
)
1809 return blk_aio_prwv(blk
, offset
, bytes
, NULL
, blk_aio_pdiscard_entry
, 0,
1813 int coroutine_fn
blk_co_pdiscard(BlockBackend
*blk
, int64_t offset
,
1819 blk_inc_in_flight(blk
);
1820 ret
= blk_co_do_pdiscard(blk
, offset
, bytes
);
1821 blk_dec_in_flight(blk
);
1826 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1827 static int coroutine_fn
blk_co_do_flush(BlockBackend
*blk
)
1830 blk_wait_while_drained(blk
);
1831 GRAPH_RDLOCK_GUARD();
1833 if (!blk_co_is_available(blk
)) {
1837 return bdrv_co_flush(blk_bs(blk
));
1840 static void coroutine_fn
blk_aio_flush_entry(void *opaque
)
1842 BlkAioEmAIOCB
*acb
= opaque
;
1843 BlkRwCo
*rwco
= &acb
->rwco
;
1845 rwco
->ret
= blk_co_do_flush(rwco
->blk
);
1846 blk_aio_complete(acb
);
1849 BlockAIOCB
*blk_aio_flush(BlockBackend
*blk
,
1850 BlockCompletionFunc
*cb
, void *opaque
)
1853 return blk_aio_prwv(blk
, 0, 0, NULL
, blk_aio_flush_entry
, 0, cb
, opaque
);
1856 int coroutine_fn
blk_co_flush(BlockBackend
*blk
)
1861 blk_inc_in_flight(blk
);
1862 ret
= blk_co_do_flush(blk
);
1863 blk_dec_in_flight(blk
);
1868 static void coroutine_fn
blk_aio_zone_report_entry(void *opaque
)
1870 BlkAioEmAIOCB
*acb
= opaque
;
1871 BlkRwCo
*rwco
= &acb
->rwco
;
1873 rwco
->ret
= blk_co_zone_report(rwco
->blk
, rwco
->offset
,
1874 (unsigned int*)(uintptr_t)acb
->bytes
,
1876 blk_aio_complete(acb
);
1879 BlockAIOCB
*blk_aio_zone_report(BlockBackend
*blk
, int64_t offset
,
1880 unsigned int *nr_zones
,
1881 BlockZoneDescriptor
*zones
,
1882 BlockCompletionFunc
*cb
, void *opaque
)
1888 blk_inc_in_flight(blk
);
1889 acb
= blk_aio_get(&blk_aio_em_aiocb_info
, blk
, cb
, opaque
);
1890 acb
->rwco
= (BlkRwCo
) {
1896 acb
->bytes
= (int64_t)(uintptr_t)nr_zones
,
1897 acb
->has_returned
= false;
1899 co
= qemu_coroutine_create(blk_aio_zone_report_entry
, acb
);
1900 aio_co_enter(qemu_get_current_aio_context(), co
);
1902 acb
->has_returned
= true;
1903 if (acb
->rwco
.ret
!= NOT_DONE
) {
1904 replay_bh_schedule_oneshot_event(qemu_get_current_aio_context(),
1905 blk_aio_complete_bh
, acb
);
1908 return &acb
->common
;
1911 static void coroutine_fn
blk_aio_zone_mgmt_entry(void *opaque
)
1913 BlkAioEmAIOCB
*acb
= opaque
;
1914 BlkRwCo
*rwco
= &acb
->rwco
;
1916 rwco
->ret
= blk_co_zone_mgmt(rwco
->blk
,
1917 (BlockZoneOp
)(uintptr_t)rwco
->iobuf
,
1918 rwco
->offset
, acb
->bytes
);
1919 blk_aio_complete(acb
);
1922 BlockAIOCB
*blk_aio_zone_mgmt(BlockBackend
*blk
, BlockZoneOp op
,
1923 int64_t offset
, int64_t len
,
1924 BlockCompletionFunc
*cb
, void *opaque
) {
1929 blk_inc_in_flight(blk
);
1930 acb
= blk_aio_get(&blk_aio_em_aiocb_info
, blk
, cb
, opaque
);
1931 acb
->rwco
= (BlkRwCo
) {
1934 .iobuf
= (void *)(uintptr_t)op
,
1938 acb
->has_returned
= false;
1940 co
= qemu_coroutine_create(blk_aio_zone_mgmt_entry
, acb
);
1941 aio_co_enter(qemu_get_current_aio_context(), co
);
1943 acb
->has_returned
= true;
1944 if (acb
->rwco
.ret
!= NOT_DONE
) {
1945 replay_bh_schedule_oneshot_event(qemu_get_current_aio_context(),
1946 blk_aio_complete_bh
, acb
);
1949 return &acb
->common
;
1952 static void coroutine_fn
blk_aio_zone_append_entry(void *opaque
)
1954 BlkAioEmAIOCB
*acb
= opaque
;
1955 BlkRwCo
*rwco
= &acb
->rwco
;
1957 rwco
->ret
= blk_co_zone_append(rwco
->blk
, (int64_t *)(uintptr_t)acb
->bytes
,
1958 rwco
->iobuf
, rwco
->flags
);
1959 blk_aio_complete(acb
);
1962 BlockAIOCB
*blk_aio_zone_append(BlockBackend
*blk
, int64_t *offset
,
1963 QEMUIOVector
*qiov
, BdrvRequestFlags flags
,
1964 BlockCompletionFunc
*cb
, void *opaque
) {
1969 blk_inc_in_flight(blk
);
1970 acb
= blk_aio_get(&blk_aio_em_aiocb_info
, blk
, cb
, opaque
);
1971 acb
->rwco
= (BlkRwCo
) {
1977 acb
->bytes
= (int64_t)(uintptr_t)offset
;
1978 acb
->has_returned
= false;
1980 co
= qemu_coroutine_create(blk_aio_zone_append_entry
, acb
);
1981 aio_co_enter(qemu_get_current_aio_context(), co
);
1982 acb
->has_returned
= true;
1983 if (acb
->rwco
.ret
!= NOT_DONE
) {
1984 replay_bh_schedule_oneshot_event(qemu_get_current_aio_context(),
1985 blk_aio_complete_bh
, acb
);
1988 return &acb
->common
;
1992 * Send a zone_report command.
1993 * offset is a byte offset from the start of the device. No alignment
1994 * required for offset.
1995 * nr_zones represents IN maximum and OUT actual.
1997 int coroutine_fn
blk_co_zone_report(BlockBackend
*blk
, int64_t offset
,
1998 unsigned int *nr_zones
,
1999 BlockZoneDescriptor
*zones
)
2004 blk_inc_in_flight(blk
); /* increase before waiting */
2005 blk_wait_while_drained(blk
);
2006 GRAPH_RDLOCK_GUARD();
2007 if (!blk_is_available(blk
)) {
2008 blk_dec_in_flight(blk
);
2011 ret
= bdrv_co_zone_report(blk_bs(blk
), offset
, nr_zones
, zones
);
2012 blk_dec_in_flight(blk
);
2017 * Send a zone_management command.
2018 * op is the zone operation;
2019 * offset is the byte offset from the start of the zoned device;
2020 * len is the maximum number of bytes the command should operate on. It
2021 * should be aligned with the device zone size.
2023 int coroutine_fn
blk_co_zone_mgmt(BlockBackend
*blk
, BlockZoneOp op
,
2024 int64_t offset
, int64_t len
)
2029 blk_inc_in_flight(blk
);
2030 blk_wait_while_drained(blk
);
2031 GRAPH_RDLOCK_GUARD();
2033 ret
= blk_check_byte_request(blk
, offset
, len
);
2035 blk_dec_in_flight(blk
);
2039 ret
= bdrv_co_zone_mgmt(blk_bs(blk
), op
, offset
, len
);
2040 blk_dec_in_flight(blk
);
2045 * Send a zone_append command.
2047 int coroutine_fn
blk_co_zone_append(BlockBackend
*blk
, int64_t *offset
,
2048 QEMUIOVector
*qiov
, BdrvRequestFlags flags
)
2053 blk_inc_in_flight(blk
);
2054 blk_wait_while_drained(blk
);
2055 GRAPH_RDLOCK_GUARD();
2056 if (!blk_is_available(blk
)) {
2057 blk_dec_in_flight(blk
);
2061 ret
= bdrv_co_zone_append(blk_bs(blk
), offset
, qiov
, flags
);
2062 blk_dec_in_flight(blk
);
2066 void blk_drain(BlockBackend
*blk
)
2068 BlockDriverState
*bs
= blk_bs(blk
);
2069 GLOBAL_STATE_CODE();
2073 bdrv_drained_begin(bs
);
2076 /* We may have -ENOMEDIUM completions in flight */
2077 AIO_WAIT_WHILE(blk_get_aio_context(blk
),
2078 qatomic_read(&blk
->in_flight
) > 0);
2081 bdrv_drained_end(bs
);
2086 void blk_drain_all(void)
2088 BlockBackend
*blk
= NULL
;
2090 GLOBAL_STATE_CODE();
2092 bdrv_drain_all_begin();
2094 while ((blk
= blk_all_next(blk
)) != NULL
) {
2095 /* We may have -ENOMEDIUM completions in flight */
2096 AIO_WAIT_WHILE_UNLOCKED(NULL
, qatomic_read(&blk
->in_flight
) > 0);
2099 bdrv_drain_all_end();
2102 void blk_set_on_error(BlockBackend
*blk
, BlockdevOnError on_read_error
,
2103 BlockdevOnError on_write_error
)
2105 GLOBAL_STATE_CODE();
2106 blk
->on_read_error
= on_read_error
;
2107 blk
->on_write_error
= on_write_error
;
2110 BlockdevOnError
blk_get_on_error(BlockBackend
*blk
, bool is_read
)
2113 return is_read
? blk
->on_read_error
: blk
->on_write_error
;
2116 BlockErrorAction
blk_get_error_action(BlockBackend
*blk
, bool is_read
,
2119 BlockdevOnError on_err
= blk_get_on_error(blk
, is_read
);
2123 case BLOCKDEV_ON_ERROR_ENOSPC
:
2124 return (error
== ENOSPC
) ?
2125 BLOCK_ERROR_ACTION_STOP
: BLOCK_ERROR_ACTION_REPORT
;
2126 case BLOCKDEV_ON_ERROR_STOP
:
2127 return BLOCK_ERROR_ACTION_STOP
;
2128 case BLOCKDEV_ON_ERROR_REPORT
:
2129 return BLOCK_ERROR_ACTION_REPORT
;
2130 case BLOCKDEV_ON_ERROR_IGNORE
:
2131 return BLOCK_ERROR_ACTION_IGNORE
;
2132 case BLOCKDEV_ON_ERROR_AUTO
:
2138 static void send_qmp_error_event(BlockBackend
*blk
,
2139 BlockErrorAction action
,
2140 bool is_read
, int error
)
2142 IoOperationType optype
;
2143 BlockDriverState
*bs
= blk_bs(blk
);
2145 optype
= is_read
? IO_OPERATION_TYPE_READ
: IO_OPERATION_TYPE_WRITE
;
2146 qapi_event_send_block_io_error(blk_name(blk
),
2147 bs
? bdrv_get_node_name(bs
) : NULL
, optype
,
2148 action
, blk_iostatus_is_enabled(blk
),
2149 error
== ENOSPC
, strerror(error
));
2152 /* This is done by device models because, while the block layer knows
2153 * about the error, it does not know whether an operation comes from
2154 * the device or the block layer (from a job, for example).
2156 void blk_error_action(BlockBackend
*blk
, BlockErrorAction action
,
2157 bool is_read
, int error
)
2162 if (action
== BLOCK_ERROR_ACTION_STOP
) {
2163 /* First set the iostatus, so that "info block" returns an iostatus
2164 * that matches the events raised so far (an additional error iostatus
2165 * is fine, but not a lost one).
2167 blk_iostatus_set_err(blk
, error
);
2169 /* Then raise the request to stop the VM and the event.
2170 * qemu_system_vmstop_request_prepare has two effects. First,
2171 * it ensures that the STOP event always comes after the
2172 * BLOCK_IO_ERROR event. Second, it ensures that even if management
2173 * can observe the STOP event and do a "cont" before the STOP
2174 * event is issued, the VM will not stop. In this case, vm_start()
2175 * also ensures that the STOP/RESUME pair of events is emitted.
2177 qemu_system_vmstop_request_prepare();
2178 send_qmp_error_event(blk
, action
, is_read
, error
);
2179 qemu_system_vmstop_request(RUN_STATE_IO_ERROR
);
2181 send_qmp_error_event(blk
, action
, is_read
, error
);
2186 * Returns true if the BlockBackend can support taking write permissions
2187 * (because its root node is not read-only).
2189 bool blk_supports_write_perm(BlockBackend
*blk
)
2191 BlockDriverState
*bs
= blk_bs(blk
);
2192 GLOBAL_STATE_CODE();
2195 return !bdrv_is_read_only(bs
);
2197 return blk
->root_state
.open_flags
& BDRV_O_RDWR
;
2202 * Returns true if the BlockBackend can be written to in its current
2203 * configuration (i.e. if write permission have been requested)
2205 bool blk_is_writable(BlockBackend
*blk
)
2208 return blk
->perm
& BLK_PERM_WRITE
;
2211 bool blk_is_sg(BlockBackend
*blk
)
2213 BlockDriverState
*bs
= blk_bs(blk
);
2214 GLOBAL_STATE_CODE();
2220 return bdrv_is_sg(bs
);
2223 bool blk_enable_write_cache(BlockBackend
*blk
)
2226 return blk
->enable_write_cache
;
2229 void blk_set_enable_write_cache(BlockBackend
*blk
, bool wce
)
2232 blk
->enable_write_cache
= wce
;
2235 void blk_activate(BlockBackend
*blk
, Error
**errp
)
2237 BlockDriverState
*bs
= blk_bs(blk
);
2238 GLOBAL_STATE_CODE();
2241 error_setg(errp
, "Device '%s' has no medium", blk
->name
);
2246 * Migration code can call this function in coroutine context, so leave
2247 * coroutine context if necessary.
2249 if (qemu_in_coroutine()) {
2250 bdrv_co_activate(bs
, errp
);
2252 GRAPH_RDLOCK_GUARD_MAINLOOP();
2253 bdrv_activate(bs
, errp
);
2257 bool coroutine_fn
blk_co_is_inserted(BlockBackend
*blk
)
2259 BlockDriverState
*bs
= blk_bs(blk
);
2261 assert_bdrv_graph_readable();
2263 return bs
&& bdrv_co_is_inserted(bs
);
2266 bool coroutine_fn
blk_co_is_available(BlockBackend
*blk
)
2269 return blk_co_is_inserted(blk
) && !blk_dev_is_tray_open(blk
);
2272 void coroutine_fn
blk_co_lock_medium(BlockBackend
*blk
, bool locked
)
2274 BlockDriverState
*bs
= blk_bs(blk
);
2276 GRAPH_RDLOCK_GUARD();
2279 bdrv_co_lock_medium(bs
, locked
);
2283 void coroutine_fn
blk_co_eject(BlockBackend
*blk
, bool eject_flag
)
2285 BlockDriverState
*bs
= blk_bs(blk
);
2288 GRAPH_RDLOCK_GUARD();
2291 bdrv_co_eject(bs
, eject_flag
);
2294 /* Whether or not we ejected on the backend,
2295 * the frontend experienced a tray event. */
2296 id
= blk_get_attached_dev_id(blk
);
2297 qapi_event_send_device_tray_moved(blk_name(blk
), id
,
2302 int blk_get_flags(BlockBackend
*blk
)
2304 BlockDriverState
*bs
= blk_bs(blk
);
2305 GLOBAL_STATE_CODE();
2308 return bdrv_get_flags(bs
);
2310 return blk
->root_state
.open_flags
;
2314 /* Returns the minimum request alignment, in bytes; guaranteed nonzero */
2315 uint32_t blk_get_request_alignment(BlockBackend
*blk
)
2317 BlockDriverState
*bs
= blk_bs(blk
);
2319 return bs
? bs
->bl
.request_alignment
: BDRV_SECTOR_SIZE
;
2322 /* Returns the maximum hardware transfer length, in bytes; guaranteed nonzero */
2323 uint64_t blk_get_max_hw_transfer(BlockBackend
*blk
)
2325 BlockDriverState
*bs
= blk_bs(blk
);
2326 uint64_t max
= INT_MAX
;
2330 max
= MIN_NON_ZERO(max
, bs
->bl
.max_hw_transfer
);
2331 max
= MIN_NON_ZERO(max
, bs
->bl
.max_transfer
);
2333 return ROUND_DOWN(max
, blk_get_request_alignment(blk
));
2336 /* Returns the maximum transfer length, in bytes; guaranteed nonzero */
2337 uint32_t blk_get_max_transfer(BlockBackend
*blk
)
2339 BlockDriverState
*bs
= blk_bs(blk
);
2340 uint32_t max
= INT_MAX
;
2344 max
= MIN_NON_ZERO(max
, bs
->bl
.max_transfer
);
2346 return ROUND_DOWN(max
, blk_get_request_alignment(blk
));
2349 int blk_get_max_hw_iov(BlockBackend
*blk
)
2352 return MIN_NON_ZERO(blk
->root
->bs
->bl
.max_hw_iov
,
2353 blk
->root
->bs
->bl
.max_iov
);
2356 int blk_get_max_iov(BlockBackend
*blk
)
2359 return blk
->root
->bs
->bl
.max_iov
;
2362 void *blk_try_blockalign(BlockBackend
*blk
, size_t size
)
2365 return qemu_try_blockalign(blk
? blk_bs(blk
) : NULL
, size
);
2368 void *blk_blockalign(BlockBackend
*blk
, size_t size
)
2371 return qemu_blockalign(blk
? blk_bs(blk
) : NULL
, size
);
2374 bool blk_op_is_blocked(BlockBackend
*blk
, BlockOpType op
, Error
**errp
)
2376 BlockDriverState
*bs
= blk_bs(blk
);
2377 GLOBAL_STATE_CODE();
2378 GRAPH_RDLOCK_GUARD_MAINLOOP();
2384 return bdrv_op_is_blocked(bs
, op
, errp
);
2387 void blk_op_unblock(BlockBackend
*blk
, BlockOpType op
, Error
*reason
)
2389 BlockDriverState
*bs
= blk_bs(blk
);
2390 GLOBAL_STATE_CODE();
2393 bdrv_op_unblock(bs
, op
, reason
);
2397 void blk_op_block_all(BlockBackend
*blk
, Error
*reason
)
2399 BlockDriverState
*bs
= blk_bs(blk
);
2400 GLOBAL_STATE_CODE();
2403 bdrv_op_block_all(bs
, reason
);
2407 void blk_op_unblock_all(BlockBackend
*blk
, Error
*reason
)
2409 BlockDriverState
*bs
= blk_bs(blk
);
2410 GLOBAL_STATE_CODE();
2413 bdrv_op_unblock_all(bs
, reason
);
2418 * Return BB's current AioContext. Note that this context may change
2419 * concurrently at any time, with one exception: If the BB has a root node
2420 * attached, its context will only change through bdrv_try_change_aio_context(),
2421 * which creates a drained section. Therefore, incrementing such a BB's
2422 * in-flight counter will prevent its context from changing.
2424 AioContext
*blk_get_aio_context(BlockBackend
*blk
)
2429 return qemu_get_aio_context();
2432 return qatomic_read(&blk
->ctx
);
2435 int blk_set_aio_context(BlockBackend
*blk
, AioContext
*new_context
,
2438 bool old_allow_change
;
2439 BlockDriverState
*bs
= blk_bs(blk
);
2442 GLOBAL_STATE_CODE();
2445 qatomic_set(&blk
->ctx
, new_context
);
2451 old_allow_change
= blk
->allow_aio_context_change
;
2452 blk
->allow_aio_context_change
= true;
2454 ret
= bdrv_try_change_aio_context(bs
, new_context
, NULL
, errp
);
2456 blk
->allow_aio_context_change
= old_allow_change
;
2462 typedef struct BdrvStateBlkRootContext
{
2463 AioContext
*new_ctx
;
2465 } BdrvStateBlkRootContext
;
2467 static void blk_root_set_aio_ctx_commit(void *opaque
)
2469 BdrvStateBlkRootContext
*s
= opaque
;
2470 BlockBackend
*blk
= s
->blk
;
2471 AioContext
*new_context
= s
->new_ctx
;
2472 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
2474 qatomic_set(&blk
->ctx
, new_context
);
2475 if (tgm
->throttle_state
) {
2476 throttle_group_detach_aio_context(tgm
);
2477 throttle_group_attach_aio_context(tgm
, new_context
);
2481 static TransactionActionDrv set_blk_root_context
= {
2482 .commit
= blk_root_set_aio_ctx_commit
,
2486 static bool blk_root_change_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
2487 GHashTable
*visited
, Transaction
*tran
,
2490 BlockBackend
*blk
= child
->opaque
;
2491 BdrvStateBlkRootContext
*s
;
2493 if (!blk
->allow_aio_context_change
) {
2495 * Manually created BlockBackends (those with a name) that are not
2496 * attached to anything can change their AioContext without updating
2497 * their user; return an error for others.
2499 if (!blk
->name
|| blk
->dev
) {
2500 /* TODO Add BB name/QOM path */
2501 error_setg(errp
, "Cannot change iothread of active block backend");
2506 s
= g_new(BdrvStateBlkRootContext
, 1);
2507 *s
= (BdrvStateBlkRootContext
) {
2512 tran_add(tran
, &set_blk_root_context
, s
);
2516 void blk_add_aio_context_notifier(BlockBackend
*blk
,
2517 void (*attached_aio_context
)(AioContext
*new_context
, void *opaque
),
2518 void (*detach_aio_context
)(void *opaque
), void *opaque
)
2520 BlockBackendAioNotifier
*notifier
;
2521 BlockDriverState
*bs
= blk_bs(blk
);
2522 GLOBAL_STATE_CODE();
2524 notifier
= g_new(BlockBackendAioNotifier
, 1);
2525 notifier
->attached_aio_context
= attached_aio_context
;
2526 notifier
->detach_aio_context
= detach_aio_context
;
2527 notifier
->opaque
= opaque
;
2528 QLIST_INSERT_HEAD(&blk
->aio_notifiers
, notifier
, list
);
2531 bdrv_add_aio_context_notifier(bs
, attached_aio_context
,
2532 detach_aio_context
, opaque
);
2536 void blk_remove_aio_context_notifier(BlockBackend
*blk
,
2537 void (*attached_aio_context
)(AioContext
*,
2539 void (*detach_aio_context
)(void *),
2542 BlockBackendAioNotifier
*notifier
;
2543 BlockDriverState
*bs
= blk_bs(blk
);
2545 GLOBAL_STATE_CODE();
2548 bdrv_remove_aio_context_notifier(bs
, attached_aio_context
,
2549 detach_aio_context
, opaque
);
2552 QLIST_FOREACH(notifier
, &blk
->aio_notifiers
, list
) {
2553 if (notifier
->attached_aio_context
== attached_aio_context
&&
2554 notifier
->detach_aio_context
== detach_aio_context
&&
2555 notifier
->opaque
== opaque
) {
2556 QLIST_REMOVE(notifier
, list
);
2565 void blk_add_remove_bs_notifier(BlockBackend
*blk
, Notifier
*notify
)
2567 GLOBAL_STATE_CODE();
2568 notifier_list_add(&blk
->remove_bs_notifiers
, notify
);
2571 void blk_add_insert_bs_notifier(BlockBackend
*blk
, Notifier
*notify
)
2573 GLOBAL_STATE_CODE();
2574 notifier_list_add(&blk
->insert_bs_notifiers
, notify
);
2577 BlockAcctStats
*blk_get_stats(BlockBackend
*blk
)
2583 void *blk_aio_get(const AIOCBInfo
*aiocb_info
, BlockBackend
*blk
,
2584 BlockCompletionFunc
*cb
, void *opaque
)
2587 return qemu_aio_get(aiocb_info
, blk_bs(blk
), cb
, opaque
);
2590 int coroutine_fn
blk_co_pwrite_zeroes(BlockBackend
*blk
, int64_t offset
,
2591 int64_t bytes
, BdrvRequestFlags flags
)
2594 return blk_co_pwritev(blk
, offset
, bytes
, NULL
,
2595 flags
| BDRV_REQ_ZERO_WRITE
);
2598 int coroutine_fn
blk_co_pwrite_compressed(BlockBackend
*blk
, int64_t offset
,
2599 int64_t bytes
, const void *buf
)
2601 QEMUIOVector qiov
= QEMU_IOVEC_INIT_BUF(qiov
, buf
, bytes
);
2603 return blk_co_pwritev_part(blk
, offset
, bytes
, &qiov
, 0,
2604 BDRV_REQ_WRITE_COMPRESSED
);
2607 int coroutine_fn
blk_co_truncate(BlockBackend
*blk
, int64_t offset
, bool exact
,
2608 PreallocMode prealloc
, BdrvRequestFlags flags
,
2612 GRAPH_RDLOCK_GUARD();
2613 if (!blk_co_is_available(blk
)) {
2614 error_setg(errp
, "No medium inserted");
2618 return bdrv_co_truncate(blk
->root
, offset
, exact
, prealloc
, flags
, errp
);
2621 int blk_save_vmstate(BlockBackend
*blk
, const uint8_t *buf
,
2622 int64_t pos
, int size
)
2625 GLOBAL_STATE_CODE();
2627 if (!blk_is_available(blk
)) {
2631 ret
= bdrv_save_vmstate(blk_bs(blk
), buf
, pos
, size
);
2636 if (ret
== size
&& !blk
->enable_write_cache
) {
2637 ret
= bdrv_flush(blk_bs(blk
));
2640 return ret
< 0 ? ret
: size
;
2643 int blk_load_vmstate(BlockBackend
*blk
, uint8_t *buf
, int64_t pos
, int size
)
2645 GLOBAL_STATE_CODE();
2646 if (!blk_is_available(blk
)) {
2650 return bdrv_load_vmstate(blk_bs(blk
), buf
, pos
, size
);
2653 int blk_probe_blocksizes(BlockBackend
*blk
, BlockSizes
*bsz
)
2655 GLOBAL_STATE_CODE();
2656 GRAPH_RDLOCK_GUARD_MAINLOOP();
2658 if (!blk_is_available(blk
)) {
2662 return bdrv_probe_blocksizes(blk_bs(blk
), bsz
);
2665 int blk_probe_geometry(BlockBackend
*blk
, HDGeometry
*geo
)
2667 GLOBAL_STATE_CODE();
2668 if (!blk_is_available(blk
)) {
2672 return bdrv_probe_geometry(blk_bs(blk
), geo
);
2676 * Updates the BlockBackendRootState object with data from the currently
2677 * attached BlockDriverState.
2679 void blk_update_root_state(BlockBackend
*blk
)
2681 GLOBAL_STATE_CODE();
2684 blk
->root_state
.open_flags
= blk
->root
->bs
->open_flags
;
2685 blk
->root_state
.detect_zeroes
= blk
->root
->bs
->detect_zeroes
;
2689 * Returns the detect-zeroes setting to be used for bdrv_open() of a
2690 * BlockDriverState which is supposed to inherit the root state.
2692 bool blk_get_detect_zeroes_from_root_state(BlockBackend
*blk
)
2694 GLOBAL_STATE_CODE();
2695 return blk
->root_state
.detect_zeroes
;
2699 * Returns the flags to be used for bdrv_open() of a BlockDriverState which is
2700 * supposed to inherit the root state.
2702 int blk_get_open_flags_from_root_state(BlockBackend
*blk
)
2704 GLOBAL_STATE_CODE();
2705 return blk
->root_state
.open_flags
;
2708 BlockBackendRootState
*blk_get_root_state(BlockBackend
*blk
)
2710 GLOBAL_STATE_CODE();
2711 return &blk
->root_state
;
2714 int blk_commit_all(void)
2716 BlockBackend
*blk
= NULL
;
2717 GLOBAL_STATE_CODE();
2718 GRAPH_RDLOCK_GUARD_MAINLOOP();
2720 while ((blk
= blk_all_next(blk
)) != NULL
) {
2721 BlockDriverState
*unfiltered_bs
= bdrv_skip_filters(blk_bs(blk
));
2723 if (blk_is_inserted(blk
) && bdrv_cow_child(unfiltered_bs
)) {
2726 ret
= bdrv_commit(unfiltered_bs
);
2736 /* throttling disk I/O limits */
2737 void blk_set_io_limits(BlockBackend
*blk
, ThrottleConfig
*cfg
)
2739 GLOBAL_STATE_CODE();
2740 throttle_group_config(&blk
->public.throttle_group_member
, cfg
);
2743 void blk_io_limits_disable(BlockBackend
*blk
)
2745 BlockDriverState
*bs
= blk_bs(blk
);
2746 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
2747 assert(tgm
->throttle_state
);
2748 GLOBAL_STATE_CODE();
2751 bdrv_drained_begin(bs
);
2753 throttle_group_unregister_tgm(tgm
);
2755 bdrv_drained_end(bs
);
2760 /* should be called before blk_set_io_limits if a limit is set */
2761 void blk_io_limits_enable(BlockBackend
*blk
, const char *group
)
2763 assert(!blk
->public.throttle_group_member
.throttle_state
);
2764 GLOBAL_STATE_CODE();
2765 throttle_group_register_tgm(&blk
->public.throttle_group_member
,
2766 group
, blk_get_aio_context(blk
));
2769 void blk_io_limits_update_group(BlockBackend
*blk
, const char *group
)
2771 GLOBAL_STATE_CODE();
2772 /* this BB is not part of any group */
2773 if (!blk
->public.throttle_group_member
.throttle_state
) {
2777 /* this BB is a part of the same group than the one we want */
2778 if (!g_strcmp0(throttle_group_get_name(&blk
->public.throttle_group_member
),
2783 /* need to change the group this bs belong to */
2784 blk_io_limits_disable(blk
);
2785 blk_io_limits_enable(blk
, group
);
2788 static void blk_root_drained_begin(BdrvChild
*child
)
2790 BlockBackend
*blk
= child
->opaque
;
2791 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
2793 if (qatomic_fetch_inc(&blk
->quiesce_counter
) == 0) {
2794 if (blk
->dev_ops
&& blk
->dev_ops
->drained_begin
) {
2795 blk
->dev_ops
->drained_begin(blk
->dev_opaque
);
2799 /* Note that blk->root may not be accessible here yet if we are just
2800 * attaching to a BlockDriverState that is drained. Use child instead. */
2802 if (qatomic_fetch_inc(&tgm
->io_limits_disabled
) == 0) {
2803 throttle_group_restart_tgm(tgm
);
2807 static bool blk_root_drained_poll(BdrvChild
*child
)
2809 BlockBackend
*blk
= child
->opaque
;
2811 assert(qatomic_read(&blk
->quiesce_counter
));
2813 if (blk
->dev_ops
&& blk
->dev_ops
->drained_poll
) {
2814 busy
= blk
->dev_ops
->drained_poll(blk
->dev_opaque
);
2816 return busy
|| !!blk
->in_flight
;
2819 static void blk_root_drained_end(BdrvChild
*child
)
2821 BlockBackend
*blk
= child
->opaque
;
2822 assert(qatomic_read(&blk
->quiesce_counter
));
2824 assert(blk
->public.throttle_group_member
.io_limits_disabled
);
2825 qatomic_dec(&blk
->public.throttle_group_member
.io_limits_disabled
);
2827 if (qatomic_fetch_dec(&blk
->quiesce_counter
) == 1) {
2828 if (blk
->dev_ops
&& blk
->dev_ops
->drained_end
) {
2829 blk
->dev_ops
->drained_end(blk
->dev_opaque
);
2831 qemu_mutex_lock(&blk
->queued_requests_lock
);
2832 while (qemu_co_enter_next(&blk
->queued_requests
,
2833 &blk
->queued_requests_lock
)) {
2834 /* Resume all queued requests */
2836 qemu_mutex_unlock(&blk
->queued_requests_lock
);
2840 bool blk_register_buf(BlockBackend
*blk
, void *host
, size_t size
, Error
**errp
)
2842 BlockDriverState
*bs
= blk_bs(blk
);
2844 GLOBAL_STATE_CODE();
2847 return bdrv_register_buf(bs
, host
, size
, errp
);
2852 void blk_unregister_buf(BlockBackend
*blk
, void *host
, size_t size
)
2854 BlockDriverState
*bs
= blk_bs(blk
);
2856 GLOBAL_STATE_CODE();
2859 bdrv_unregister_buf(bs
, host
, size
);
2863 int coroutine_fn
blk_co_copy_range(BlockBackend
*blk_in
, int64_t off_in
,
2864 BlockBackend
*blk_out
, int64_t off_out
,
2865 int64_t bytes
, BdrvRequestFlags read_flags
,
2866 BdrvRequestFlags write_flags
)
2870 GRAPH_RDLOCK_GUARD();
2872 r
= blk_check_byte_request(blk_in
, off_in
, bytes
);
2876 r
= blk_check_byte_request(blk_out
, off_out
, bytes
);
2881 return bdrv_co_copy_range(blk_in
->root
, off_in
,
2882 blk_out
->root
, off_out
,
2883 bytes
, read_flags
, write_flags
);
2886 const BdrvChild
*blk_root(BlockBackend
*blk
)
2888 GLOBAL_STATE_CODE();
2892 int blk_make_empty(BlockBackend
*blk
, Error
**errp
)
2894 GLOBAL_STATE_CODE();
2895 GRAPH_RDLOCK_GUARD_MAINLOOP();
2897 if (!blk_is_available(blk
)) {
2898 error_setg(errp
, "No medium inserted");
2902 return bdrv_make_empty(blk
->root
, errp
);