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/throttle-groups.h"
18 #include "hw/qdev-core.h"
19 #include "sysemu/blockdev.h"
20 #include "sysemu/runstate.h"
21 #include "sysemu/sysemu.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 static AioContext
*blk_aiocb_get_aio_context(BlockAIOCB
*acb
);
38 typedef struct BlockBackendAioNotifier
{
39 void (*attached_aio_context
)(AioContext
*new_context
, void *opaque
);
40 void (*detach_aio_context
)(void *opaque
);
42 QLIST_ENTRY(BlockBackendAioNotifier
) list
;
43 } BlockBackendAioNotifier
;
50 DriveInfo
*legacy_dinfo
; /* null unless created by drive_new() */
51 QTAILQ_ENTRY(BlockBackend
) link
; /* for block_backends */
52 QTAILQ_ENTRY(BlockBackend
) monitor_link
; /* for monitor_block_backends */
53 BlockBackendPublic
public;
55 DeviceState
*dev
; /* attached device model, if any */
56 const BlockDevOps
*dev_ops
;
59 /* the block size for which the guest device expects atomicity */
62 /* If the BDS tree is removed, some of its options are stored here (which
63 * can be used to restore those options in the new BDS on insert) */
64 BlockBackendRootState root_state
;
66 bool enable_write_cache
;
68 /* I/O stats (display with "info blockstats"). */
71 BlockdevOnError on_read_error
, on_write_error
;
72 bool iostatus_enabled
;
73 BlockDeviceIoStatus iostatus
;
79 bool allow_aio_context_change
;
80 bool allow_write_beyond_eof
;
82 NotifierList remove_bs_notifiers
, insert_bs_notifiers
;
83 QLIST_HEAD(, BlockBackendAioNotifier
) aio_notifiers
;
86 CoQueue queued_requests
;
87 bool disable_request_queuing
;
89 VMChangeStateEntry
*vmsh
;
90 bool force_allow_inactivate
;
92 /* Number of in-flight aio requests. BlockDriverState also counts
93 * in-flight requests but aio requests can exist even when blk->root is
94 * NULL, so we cannot rely on its counter for that case.
95 * Accessed with atomic ops.
97 unsigned int in_flight
;
100 typedef struct BlockBackendAIOCB
{
106 static const AIOCBInfo block_backend_aiocb_info
= {
107 .get_aio_context
= blk_aiocb_get_aio_context
,
108 .aiocb_size
= sizeof(BlockBackendAIOCB
),
111 static void drive_info_del(DriveInfo
*dinfo
);
112 static BlockBackend
*bdrv_first_blk(BlockDriverState
*bs
);
114 /* All BlockBackends */
115 static QTAILQ_HEAD(, BlockBackend
) block_backends
=
116 QTAILQ_HEAD_INITIALIZER(block_backends
);
118 /* All BlockBackends referenced by the monitor and which are iterated through by
120 static QTAILQ_HEAD(, BlockBackend
) monitor_block_backends
=
121 QTAILQ_HEAD_INITIALIZER(monitor_block_backends
);
123 static void blk_root_inherit_options(int *child_flags
, QDict
*child_options
,
124 int parent_flags
, QDict
*parent_options
)
126 /* We're not supposed to call this function for root nodes */
129 static void blk_root_drained_begin(BdrvChild
*child
);
130 static bool blk_root_drained_poll(BdrvChild
*child
);
131 static void blk_root_drained_end(BdrvChild
*child
, int *drained_end_counter
);
133 static void blk_root_change_media(BdrvChild
*child
, bool load
);
134 static void blk_root_resize(BdrvChild
*child
);
136 static bool blk_root_can_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
137 GSList
**ignore
, Error
**errp
);
138 static void blk_root_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
141 static char *blk_root_get_parent_desc(BdrvChild
*child
)
143 BlockBackend
*blk
= child
->opaque
;
147 return g_strdup(blk
->name
);
150 dev_id
= blk_get_attached_dev_id(blk
);
154 /* TODO Callback into the BB owner for something more detailed */
156 return g_strdup("a block device");
160 static const char *blk_root_get_name(BdrvChild
*child
)
162 return blk_name(child
->opaque
);
165 static void blk_vm_state_changed(void *opaque
, int running
, RunState state
)
167 Error
*local_err
= NULL
;
168 BlockBackend
*blk
= opaque
;
170 if (state
== RUN_STATE_INMIGRATE
) {
174 qemu_del_vm_change_state_handler(blk
->vmsh
);
176 blk_set_perm(blk
, blk
->perm
, blk
->shared_perm
, &local_err
);
178 error_report_err(local_err
);
183 * Notifies the user of the BlockBackend that migration has completed. qdev
184 * devices can tighten their permissions in response (specifically revoke
185 * shared write permissions that we needed for storage migration).
187 * If an error is returned, the VM cannot be allowed to be resumed.
189 static void blk_root_activate(BdrvChild
*child
, Error
**errp
)
191 BlockBackend
*blk
= child
->opaque
;
192 Error
*local_err
= NULL
;
194 if (!blk
->disable_perm
) {
198 blk
->disable_perm
= false;
200 blk_set_perm(blk
, blk
->perm
, BLK_PERM_ALL
, &local_err
);
202 error_propagate(errp
, local_err
);
203 blk
->disable_perm
= true;
207 if (runstate_check(RUN_STATE_INMIGRATE
)) {
208 /* Activation can happen when migration process is still active, for
209 * example when nbd_server_add is called during non-shared storage
210 * migration. Defer the shared_perm update to migration completion. */
212 blk
->vmsh
= qemu_add_vm_change_state_handler(blk_vm_state_changed
,
218 blk_set_perm(blk
, blk
->perm
, blk
->shared_perm
, &local_err
);
220 error_propagate(errp
, local_err
);
221 blk
->disable_perm
= true;
226 void blk_set_force_allow_inactivate(BlockBackend
*blk
)
228 blk
->force_allow_inactivate
= true;
231 static bool blk_can_inactivate(BlockBackend
*blk
)
233 /* If it is a guest device, inactivate is ok. */
234 if (blk
->dev
|| blk_name(blk
)[0]) {
238 /* Inactivating means no more writes to the image can be done,
239 * even if those writes would be changes invisible to the
240 * guest. For block job BBs that satisfy this, we can just allow
241 * it. This is the case for mirror job source, which is required
242 * by libvirt non-shared block migration. */
243 if (!(blk
->perm
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
))) {
247 return blk
->force_allow_inactivate
;
250 static int blk_root_inactivate(BdrvChild
*child
)
252 BlockBackend
*blk
= child
->opaque
;
254 if (blk
->disable_perm
) {
258 if (!blk_can_inactivate(blk
)) {
262 blk
->disable_perm
= true;
264 bdrv_child_try_set_perm(blk
->root
, 0, BLK_PERM_ALL
, &error_abort
);
270 static void blk_root_attach(BdrvChild
*child
)
272 BlockBackend
*blk
= child
->opaque
;
273 BlockBackendAioNotifier
*notifier
;
275 trace_blk_root_attach(child
, blk
, child
->bs
);
277 QLIST_FOREACH(notifier
, &blk
->aio_notifiers
, list
) {
278 bdrv_add_aio_context_notifier(child
->bs
,
279 notifier
->attached_aio_context
,
280 notifier
->detach_aio_context
,
285 static void blk_root_detach(BdrvChild
*child
)
287 BlockBackend
*blk
= child
->opaque
;
288 BlockBackendAioNotifier
*notifier
;
290 trace_blk_root_detach(child
, blk
, child
->bs
);
292 QLIST_FOREACH(notifier
, &blk
->aio_notifiers
, list
) {
293 bdrv_remove_aio_context_notifier(child
->bs
,
294 notifier
->attached_aio_context
,
295 notifier
->detach_aio_context
,
300 static const BdrvChildRole child_root
= {
301 .inherit_options
= blk_root_inherit_options
,
303 .change_media
= blk_root_change_media
,
304 .resize
= blk_root_resize
,
305 .get_name
= blk_root_get_name
,
306 .get_parent_desc
= blk_root_get_parent_desc
,
308 .drained_begin
= blk_root_drained_begin
,
309 .drained_poll
= blk_root_drained_poll
,
310 .drained_end
= blk_root_drained_end
,
312 .activate
= blk_root_activate
,
313 .inactivate
= blk_root_inactivate
,
315 .attach
= blk_root_attach
,
316 .detach
= blk_root_detach
,
318 .can_set_aio_ctx
= blk_root_can_set_aio_ctx
,
319 .set_aio_ctx
= blk_root_set_aio_ctx
,
323 * Create a new BlockBackend with a reference count of one.
325 * @perm is a bitmasks of BLK_PERM_* constants which describes the permissions
326 * to request for a block driver node that is attached to this BlockBackend.
327 * @shared_perm is a bitmask which describes which permissions may be granted
328 * to other users of the attached node.
329 * Both sets of permissions can be changed later using blk_set_perm().
331 * Return the new BlockBackend on success, null on failure.
333 BlockBackend
*blk_new(AioContext
*ctx
, uint64_t perm
, uint64_t shared_perm
)
337 blk
= g_new0(BlockBackend
, 1);
341 blk
->shared_perm
= shared_perm
;
342 blk_set_enable_write_cache(blk
, true);
344 blk
->on_read_error
= BLOCKDEV_ON_ERROR_REPORT
;
345 blk
->on_write_error
= BLOCKDEV_ON_ERROR_ENOSPC
;
347 block_acct_init(&blk
->stats
);
349 qemu_co_queue_init(&blk
->queued_requests
);
350 notifier_list_init(&blk
->remove_bs_notifiers
);
351 notifier_list_init(&blk
->insert_bs_notifiers
);
352 QLIST_INIT(&blk
->aio_notifiers
);
354 QTAILQ_INSERT_TAIL(&block_backends
, blk
, link
);
359 * Creates a new BlockBackend, opens a new BlockDriverState, and connects both.
360 * The new BlockBackend is in the main AioContext.
362 * Just as with bdrv_open(), after having called this function the reference to
363 * @options belongs to the block layer (even on failure).
365 * TODO: Remove @filename and @flags; it should be possible to specify a whole
366 * BDS tree just by specifying the @options QDict (or @reference,
367 * alternatively). At the time of adding this function, this is not possible,
368 * though, so callers of this function have to be able to specify @filename and
371 BlockBackend
*blk_new_open(const char *filename
, const char *reference
,
372 QDict
*options
, int flags
, Error
**errp
)
375 BlockDriverState
*bs
;
378 /* blk_new_open() is mainly used in .bdrv_create implementations and the
379 * tools where sharing isn't a concern because the BDS stays private, so we
380 * just request permission according to the flags.
382 * The exceptions are xen_disk and blockdev_init(); in these cases, the
383 * caller of blk_new_open() doesn't make use of the permissions, but they
384 * shouldn't hurt either. We can still share everything here because the
385 * guest devices will add their own blockers if they can't share. */
386 if ((flags
& BDRV_O_NO_IO
) == 0) {
387 perm
|= BLK_PERM_CONSISTENT_READ
;
388 if (flags
& BDRV_O_RDWR
) {
389 perm
|= BLK_PERM_WRITE
;
392 if (flags
& BDRV_O_RESIZE
) {
393 perm
|= BLK_PERM_RESIZE
;
396 blk
= blk_new(qemu_get_aio_context(), perm
, BLK_PERM_ALL
);
397 bs
= bdrv_open(filename
, reference
, options
, flags
, errp
);
403 blk
->root
= bdrv_root_attach_child(bs
, "root", &child_root
, blk
->ctx
,
404 perm
, BLK_PERM_ALL
, blk
, errp
);
413 static void blk_delete(BlockBackend
*blk
)
415 assert(!blk
->refcnt
);
418 if (blk
->public.throttle_group_member
.throttle_state
) {
419 blk_io_limits_disable(blk
);
425 qemu_del_vm_change_state_handler(blk
->vmsh
);
428 assert(QLIST_EMPTY(&blk
->remove_bs_notifiers
.notifiers
));
429 assert(QLIST_EMPTY(&blk
->insert_bs_notifiers
.notifiers
));
430 assert(QLIST_EMPTY(&blk
->aio_notifiers
));
431 QTAILQ_REMOVE(&block_backends
, blk
, link
);
432 drive_info_del(blk
->legacy_dinfo
);
433 block_acct_cleanup(&blk
->stats
);
437 static void drive_info_del(DriveInfo
*dinfo
)
442 qemu_opts_del(dinfo
->opts
);
446 int blk_get_refcnt(BlockBackend
*blk
)
448 return blk
? blk
->refcnt
: 0;
452 * Increment @blk's reference count.
453 * @blk must not be null.
455 void blk_ref(BlockBackend
*blk
)
457 assert(blk
->refcnt
> 0);
462 * Decrement @blk's reference count.
463 * If this drops it to zero, destroy @blk.
464 * For convenience, do nothing if @blk is null.
466 void blk_unref(BlockBackend
*blk
)
469 assert(blk
->refcnt
> 0);
470 if (blk
->refcnt
> 1) {
474 /* blk_drain() cannot resurrect blk, nobody held a reference */
475 assert(blk
->refcnt
== 1);
483 * Behaves similarly to blk_next() but iterates over all BlockBackends, even the
484 * ones which are hidden (i.e. are not referenced by the monitor).
486 BlockBackend
*blk_all_next(BlockBackend
*blk
)
488 return blk
? QTAILQ_NEXT(blk
, link
)
489 : QTAILQ_FIRST(&block_backends
);
492 void blk_remove_all_bs(void)
494 BlockBackend
*blk
= NULL
;
496 while ((blk
= blk_all_next(blk
)) != NULL
) {
497 AioContext
*ctx
= blk_get_aio_context(blk
);
499 aio_context_acquire(ctx
);
503 aio_context_release(ctx
);
508 * Return the monitor-owned BlockBackend after @blk.
509 * If @blk is null, return the first one.
510 * Else, return @blk's next sibling, which may be null.
512 * To iterate over all BlockBackends, do
513 * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
517 BlockBackend
*blk_next(BlockBackend
*blk
)
519 return blk
? QTAILQ_NEXT(blk
, monitor_link
)
520 : QTAILQ_FIRST(&monitor_block_backends
);
523 /* Iterates over all top-level BlockDriverStates, i.e. BDSs that are owned by
524 * the monitor or attached to a BlockBackend */
525 BlockDriverState
*bdrv_next(BdrvNextIterator
*it
)
527 BlockDriverState
*bs
, *old_bs
;
529 /* Must be called from the main loop */
530 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
532 /* First, return all root nodes of BlockBackends. In order to avoid
533 * returning a BDS twice when multiple BBs refer to it, we only return it
534 * if the BB is the first one in the parent list of the BDS. */
535 if (it
->phase
== BDRV_NEXT_BACKEND_ROOTS
) {
536 BlockBackend
*old_blk
= it
->blk
;
538 old_bs
= old_blk
? blk_bs(old_blk
) : NULL
;
541 it
->blk
= blk_all_next(it
->blk
);
542 bs
= it
->blk
? blk_bs(it
->blk
) : NULL
;
543 } while (it
->blk
&& (bs
== NULL
|| bdrv_first_blk(bs
) != it
->blk
));
555 it
->phase
= BDRV_NEXT_MONITOR_OWNED
;
560 /* Then return the monitor-owned BDSes without a BB attached. Ignore all
561 * BDSes that are attached to a BlockBackend here; they have been handled
562 * by the above block already */
564 it
->bs
= bdrv_next_monitor_owned(it
->bs
);
566 } while (bs
&& bdrv_has_blk(bs
));
576 static void bdrv_next_reset(BdrvNextIterator
*it
)
578 *it
= (BdrvNextIterator
) {
579 .phase
= BDRV_NEXT_BACKEND_ROOTS
,
583 BlockDriverState
*bdrv_first(BdrvNextIterator
*it
)
586 return bdrv_next(it
);
589 /* Must be called when aborting a bdrv_next() iteration before
590 * bdrv_next() returns NULL */
591 void bdrv_next_cleanup(BdrvNextIterator
*it
)
593 /* Must be called from the main loop */
594 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
596 if (it
->phase
== BDRV_NEXT_BACKEND_ROOTS
) {
598 bdrv_unref(blk_bs(it
->blk
));
609 * Add a BlockBackend into the list of backends referenced by the monitor, with
610 * the given @name acting as the handle for the monitor.
611 * Strictly for use by blockdev.c.
613 * @name must not be null or empty.
615 * Returns true on success and false on failure. In the latter case, an Error
616 * object is returned through @errp.
618 bool monitor_add_blk(BlockBackend
*blk
, const char *name
, Error
**errp
)
621 assert(name
&& name
[0]);
623 if (!id_wellformed(name
)) {
624 error_setg(errp
, "Invalid device name");
627 if (blk_by_name(name
)) {
628 error_setg(errp
, "Device with id '%s' already exists", name
);
631 if (bdrv_find_node(name
)) {
633 "Device name '%s' conflicts with an existing node name",
638 blk
->name
= g_strdup(name
);
639 QTAILQ_INSERT_TAIL(&monitor_block_backends
, blk
, monitor_link
);
644 * Remove a BlockBackend from the list of backends referenced by the monitor.
645 * Strictly for use by blockdev.c.
647 void monitor_remove_blk(BlockBackend
*blk
)
653 QTAILQ_REMOVE(&monitor_block_backends
, blk
, monitor_link
);
659 * Return @blk's name, a non-null string.
660 * Returns an empty string iff @blk is not referenced by the monitor.
662 const char *blk_name(const BlockBackend
*blk
)
664 return blk
->name
?: "";
668 * Return the BlockBackend with name @name if it exists, else null.
669 * @name must not be null.
671 BlockBackend
*blk_by_name(const char *name
)
673 BlockBackend
*blk
= NULL
;
676 while ((blk
= blk_next(blk
)) != NULL
) {
677 if (!strcmp(name
, blk
->name
)) {
685 * Return the BlockDriverState attached to @blk if any, else null.
687 BlockDriverState
*blk_bs(BlockBackend
*blk
)
689 return blk
->root
? blk
->root
->bs
: NULL
;
692 static BlockBackend
*bdrv_first_blk(BlockDriverState
*bs
)
695 QLIST_FOREACH(child
, &bs
->parents
, next_parent
) {
696 if (child
->role
== &child_root
) {
697 return child
->opaque
;
705 * Returns true if @bs has an associated BlockBackend.
707 bool bdrv_has_blk(BlockDriverState
*bs
)
709 return bdrv_first_blk(bs
) != NULL
;
713 * Returns true if @bs has only BlockBackends as parents.
715 bool bdrv_is_root_node(BlockDriverState
*bs
)
719 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
720 if (c
->role
!= &child_root
) {
729 * Return @blk's DriveInfo if any, else null.
731 DriveInfo
*blk_legacy_dinfo(BlockBackend
*blk
)
733 return blk
->legacy_dinfo
;
737 * Set @blk's DriveInfo to @dinfo, and return it.
738 * @blk must not have a DriveInfo set already.
739 * No other BlockBackend may have the same DriveInfo set.
741 DriveInfo
*blk_set_legacy_dinfo(BlockBackend
*blk
, DriveInfo
*dinfo
)
743 assert(!blk
->legacy_dinfo
);
744 return blk
->legacy_dinfo
= dinfo
;
748 * Return the BlockBackend with DriveInfo @dinfo.
751 BlockBackend
*blk_by_legacy_dinfo(DriveInfo
*dinfo
)
753 BlockBackend
*blk
= NULL
;
755 while ((blk
= blk_next(blk
)) != NULL
) {
756 if (blk
->legacy_dinfo
== dinfo
) {
764 * Returns a pointer to the publicly accessible fields of @blk.
766 BlockBackendPublic
*blk_get_public(BlockBackend
*blk
)
772 * Returns a BlockBackend given the associated @public fields.
774 BlockBackend
*blk_by_public(BlockBackendPublic
*public)
776 return container_of(public, BlockBackend
, public);
780 * Disassociates the currently associated BlockDriverState from @blk.
782 void blk_remove_bs(BlockBackend
*blk
)
784 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
785 BlockDriverState
*bs
;
787 notifier_list_notify(&blk
->remove_bs_notifiers
, blk
);
788 if (tgm
->throttle_state
) {
790 bdrv_drained_begin(bs
);
791 throttle_group_detach_aio_context(tgm
);
792 throttle_group_attach_aio_context(tgm
, qemu_get_aio_context());
793 bdrv_drained_end(bs
);
796 blk_update_root_state(blk
);
798 /* bdrv_root_unref_child() will cause blk->root to become stale and may
799 * switch to a completion coroutine later on. Let's drain all I/O here
800 * to avoid that and a potential QEMU crash.
803 bdrv_root_unref_child(blk
->root
);
808 * Associates a new BlockDriverState with @blk.
810 int blk_insert_bs(BlockBackend
*blk
, BlockDriverState
*bs
, Error
**errp
)
812 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
814 blk
->root
= bdrv_root_attach_child(bs
, "root", &child_root
, blk
->ctx
,
815 blk
->perm
, blk
->shared_perm
, blk
, errp
);
816 if (blk
->root
== NULL
) {
820 notifier_list_notify(&blk
->insert_bs_notifiers
, blk
);
821 if (tgm
->throttle_state
) {
822 throttle_group_detach_aio_context(tgm
);
823 throttle_group_attach_aio_context(tgm
, bdrv_get_aio_context(bs
));
830 * Sets the permission bitmasks that the user of the BlockBackend needs.
832 int blk_set_perm(BlockBackend
*blk
, uint64_t perm
, uint64_t shared_perm
,
837 if (blk
->root
&& !blk
->disable_perm
) {
838 ret
= bdrv_child_try_set_perm(blk
->root
, perm
, shared_perm
, errp
);
845 blk
->shared_perm
= shared_perm
;
850 void blk_get_perm(BlockBackend
*blk
, uint64_t *perm
, uint64_t *shared_perm
)
853 *shared_perm
= blk
->shared_perm
;
857 * Attach device model @dev to @blk.
858 * Return 0 on success, -EBUSY when a device model is attached already.
860 int blk_attach_dev(BlockBackend
*blk
, DeviceState
*dev
)
866 /* While migration is still incoming, we don't need to apply the
867 * permissions of guest device BlockBackends. We might still have a block
868 * job or NBD server writing to the image for storage migration. */
869 if (runstate_check(RUN_STATE_INMIGRATE
)) {
870 blk
->disable_perm
= true;
875 blk_iostatus_reset(blk
);
881 * Detach device model @dev from @blk.
882 * @dev must be currently attached to @blk.
884 void blk_detach_dev(BlockBackend
*blk
, DeviceState
*dev
)
886 assert(blk
->dev
== dev
);
889 blk
->dev_opaque
= NULL
;
890 blk
->guest_block_size
= 512;
891 blk_set_perm(blk
, 0, BLK_PERM_ALL
, &error_abort
);
896 * Return the device model attached to @blk if any, else null.
898 DeviceState
*blk_get_attached_dev(BlockBackend
*blk
)
903 /* Return the qdev ID, or if no ID is assigned the QOM path, of the block
904 * device attached to the BlockBackend. */
905 char *blk_get_attached_dev_id(BlockBackend
*blk
)
907 DeviceState
*dev
= blk
->dev
;
911 } else if (dev
->id
) {
912 return g_strdup(dev
->id
);
915 return object_get_canonical_path(OBJECT(dev
)) ?: g_strdup("");
919 * Return the BlockBackend which has the device model @dev attached if it
922 * @dev must not be null.
924 BlockBackend
*blk_by_dev(void *dev
)
926 BlockBackend
*blk
= NULL
;
929 while ((blk
= blk_all_next(blk
)) != NULL
) {
930 if (blk
->dev
== dev
) {
938 * Set @blk's device model callbacks to @ops.
939 * @opaque is the opaque argument to pass to the callbacks.
940 * This is for use by device models.
942 void blk_set_dev_ops(BlockBackend
*blk
, const BlockDevOps
*ops
,
946 blk
->dev_opaque
= opaque
;
948 /* Are we currently quiesced? Should we enforce this right now? */
949 if (blk
->quiesce_counter
&& ops
->drained_begin
) {
950 ops
->drained_begin(opaque
);
955 * Notify @blk's attached device model of media change.
957 * If @load is true, notify of media load. This action can fail, meaning that
958 * the medium cannot be loaded. @errp is set then.
960 * If @load is false, notify of media eject. This can never fail.
962 * Also send DEVICE_TRAY_MOVED events as appropriate.
964 void blk_dev_change_media_cb(BlockBackend
*blk
, bool load
, Error
**errp
)
966 if (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
) {
967 bool tray_was_open
, tray_is_open
;
968 Error
*local_err
= NULL
;
970 tray_was_open
= blk_dev_is_tray_open(blk
);
971 blk
->dev_ops
->change_media_cb(blk
->dev_opaque
, load
, &local_err
);
973 assert(load
== true);
974 error_propagate(errp
, local_err
);
977 tray_is_open
= blk_dev_is_tray_open(blk
);
979 if (tray_was_open
!= tray_is_open
) {
980 char *id
= blk_get_attached_dev_id(blk
);
981 qapi_event_send_device_tray_moved(blk_name(blk
), id
, tray_is_open
);
987 static void blk_root_change_media(BdrvChild
*child
, bool load
)
989 blk_dev_change_media_cb(child
->opaque
, load
, NULL
);
993 * Does @blk's attached device model have removable media?
994 * %true if no device model is attached.
996 bool blk_dev_has_removable_media(BlockBackend
*blk
)
998 return !blk
->dev
|| (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
);
1002 * Does @blk's attached device model have a tray?
1004 bool blk_dev_has_tray(BlockBackend
*blk
)
1006 return blk
->dev_ops
&& blk
->dev_ops
->is_tray_open
;
1010 * Notify @blk's attached device model of a media eject request.
1011 * If @force is true, the medium is about to be yanked out forcefully.
1013 void blk_dev_eject_request(BlockBackend
*blk
, bool force
)
1015 if (blk
->dev_ops
&& blk
->dev_ops
->eject_request_cb
) {
1016 blk
->dev_ops
->eject_request_cb(blk
->dev_opaque
, force
);
1021 * Does @blk's attached device model have a tray, and is it open?
1023 bool blk_dev_is_tray_open(BlockBackend
*blk
)
1025 if (blk_dev_has_tray(blk
)) {
1026 return blk
->dev_ops
->is_tray_open(blk
->dev_opaque
);
1032 * Does @blk's attached device model have the medium locked?
1033 * %false if the device model has no such lock.
1035 bool blk_dev_is_medium_locked(BlockBackend
*blk
)
1037 if (blk
->dev_ops
&& blk
->dev_ops
->is_medium_locked
) {
1038 return blk
->dev_ops
->is_medium_locked(blk
->dev_opaque
);
1044 * Notify @blk's attached device model of a backend size change.
1046 static void blk_root_resize(BdrvChild
*child
)
1048 BlockBackend
*blk
= child
->opaque
;
1050 if (blk
->dev_ops
&& blk
->dev_ops
->resize_cb
) {
1051 blk
->dev_ops
->resize_cb(blk
->dev_opaque
);
1055 void blk_iostatus_enable(BlockBackend
*blk
)
1057 blk
->iostatus_enabled
= true;
1058 blk
->iostatus
= BLOCK_DEVICE_IO_STATUS_OK
;
1061 /* The I/O status is only enabled if the drive explicitly
1062 * enables it _and_ the VM is configured to stop on errors */
1063 bool blk_iostatus_is_enabled(const BlockBackend
*blk
)
1065 return (blk
->iostatus_enabled
&&
1066 (blk
->on_write_error
== BLOCKDEV_ON_ERROR_ENOSPC
||
1067 blk
->on_write_error
== BLOCKDEV_ON_ERROR_STOP
||
1068 blk
->on_read_error
== BLOCKDEV_ON_ERROR_STOP
));
1071 BlockDeviceIoStatus
blk_iostatus(const BlockBackend
*blk
)
1073 return blk
->iostatus
;
1076 void blk_iostatus_disable(BlockBackend
*blk
)
1078 blk
->iostatus_enabled
= false;
1081 void blk_iostatus_reset(BlockBackend
*blk
)
1083 if (blk_iostatus_is_enabled(blk
)) {
1084 blk
->iostatus
= BLOCK_DEVICE_IO_STATUS_OK
;
1088 void blk_iostatus_set_err(BlockBackend
*blk
, int error
)
1090 assert(blk_iostatus_is_enabled(blk
));
1091 if (blk
->iostatus
== BLOCK_DEVICE_IO_STATUS_OK
) {
1092 blk
->iostatus
= error
== ENOSPC
? BLOCK_DEVICE_IO_STATUS_NOSPACE
:
1093 BLOCK_DEVICE_IO_STATUS_FAILED
;
1097 void blk_set_allow_write_beyond_eof(BlockBackend
*blk
, bool allow
)
1099 blk
->allow_write_beyond_eof
= allow
;
1102 void blk_set_allow_aio_context_change(BlockBackend
*blk
, bool allow
)
1104 blk
->allow_aio_context_change
= allow
;
1107 void blk_set_disable_request_queuing(BlockBackend
*blk
, bool disable
)
1109 blk
->disable_request_queuing
= disable
;
1112 static int blk_check_byte_request(BlockBackend
*blk
, int64_t offset
,
1117 if (size
> INT_MAX
) {
1121 if (!blk_is_available(blk
)) {
1129 if (!blk
->allow_write_beyond_eof
) {
1130 len
= blk_getlength(blk
);
1135 if (offset
> len
|| len
- offset
< size
) {
1143 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1144 static void coroutine_fn
blk_wait_while_drained(BlockBackend
*blk
)
1146 assert(blk
->in_flight
> 0);
1148 if (blk
->quiesce_counter
&& !blk
->disable_request_queuing
) {
1149 blk_dec_in_flight(blk
);
1150 qemu_co_queue_wait(&blk
->queued_requests
, NULL
);
1151 blk_inc_in_flight(blk
);
1155 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1156 static int coroutine_fn
1157 blk_do_preadv(BlockBackend
*blk
, int64_t offset
, unsigned int bytes
,
1158 QEMUIOVector
*qiov
, BdrvRequestFlags flags
)
1161 BlockDriverState
*bs
;
1163 blk_wait_while_drained(blk
);
1165 /* Call blk_bs() only after waiting, the graph may have changed */
1167 trace_blk_co_preadv(blk
, bs
, offset
, bytes
, flags
);
1169 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1174 bdrv_inc_in_flight(bs
);
1176 /* throttling disk I/O */
1177 if (blk
->public.throttle_group_member
.throttle_state
) {
1178 throttle_group_co_io_limits_intercept(&blk
->public.throttle_group_member
,
1182 ret
= bdrv_co_preadv(blk
->root
, offset
, bytes
, qiov
, flags
);
1183 bdrv_dec_in_flight(bs
);
1187 int coroutine_fn
blk_co_preadv(BlockBackend
*blk
, int64_t offset
,
1188 unsigned int bytes
, QEMUIOVector
*qiov
,
1189 BdrvRequestFlags flags
)
1193 blk_inc_in_flight(blk
);
1194 ret
= blk_do_preadv(blk
, offset
, bytes
, qiov
, flags
);
1195 blk_dec_in_flight(blk
);
1200 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1201 static int coroutine_fn
1202 blk_do_pwritev_part(BlockBackend
*blk
, int64_t offset
, unsigned int bytes
,
1203 QEMUIOVector
*qiov
, size_t qiov_offset
,
1204 BdrvRequestFlags flags
)
1207 BlockDriverState
*bs
;
1209 blk_wait_while_drained(blk
);
1211 /* Call blk_bs() only after waiting, the graph may have changed */
1213 trace_blk_co_pwritev(blk
, bs
, offset
, bytes
, flags
);
1215 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1220 bdrv_inc_in_flight(bs
);
1221 /* throttling disk I/O */
1222 if (blk
->public.throttle_group_member
.throttle_state
) {
1223 throttle_group_co_io_limits_intercept(&blk
->public.throttle_group_member
,
1227 if (!blk
->enable_write_cache
) {
1228 flags
|= BDRV_REQ_FUA
;
1231 ret
= bdrv_co_pwritev_part(blk
->root
, offset
, bytes
, qiov
, qiov_offset
,
1233 bdrv_dec_in_flight(bs
);
1237 int coroutine_fn
blk_co_pwritev_part(BlockBackend
*blk
, int64_t offset
,
1239 QEMUIOVector
*qiov
, size_t qiov_offset
,
1240 BdrvRequestFlags flags
)
1244 blk_inc_in_flight(blk
);
1245 ret
= blk_do_pwritev_part(blk
, offset
, bytes
, qiov
, qiov_offset
, flags
);
1246 blk_dec_in_flight(blk
);
1251 int coroutine_fn
blk_co_pwritev(BlockBackend
*blk
, int64_t offset
,
1252 unsigned int bytes
, QEMUIOVector
*qiov
,
1253 BdrvRequestFlags flags
)
1255 return blk_co_pwritev_part(blk
, offset
, bytes
, qiov
, 0, flags
);
1258 typedef struct BlkRwCo
{
1263 BdrvRequestFlags flags
;
1266 static void blk_read_entry(void *opaque
)
1268 BlkRwCo
*rwco
= opaque
;
1269 QEMUIOVector
*qiov
= rwco
->iobuf
;
1271 rwco
->ret
= blk_do_preadv(rwco
->blk
, rwco
->offset
, qiov
->size
,
1276 static void blk_write_entry(void *opaque
)
1278 BlkRwCo
*rwco
= opaque
;
1279 QEMUIOVector
*qiov
= rwco
->iobuf
;
1281 rwco
->ret
= blk_do_pwritev_part(rwco
->blk
, rwco
->offset
, qiov
->size
,
1282 qiov
, 0, rwco
->flags
);
1286 static int blk_prw(BlockBackend
*blk
, int64_t offset
, uint8_t *buf
,
1287 int64_t bytes
, CoroutineEntry co_entry
,
1288 BdrvRequestFlags flags
)
1290 QEMUIOVector qiov
= QEMU_IOVEC_INIT_BUF(qiov
, buf
, bytes
);
1299 blk_inc_in_flight(blk
);
1300 if (qemu_in_coroutine()) {
1301 /* Fast-path if already in coroutine context */
1304 Coroutine
*co
= qemu_coroutine_create(co_entry
, &rwco
);
1305 bdrv_coroutine_enter(blk_bs(blk
), co
);
1306 BDRV_POLL_WHILE(blk_bs(blk
), rwco
.ret
== NOT_DONE
);
1308 blk_dec_in_flight(blk
);
1313 int blk_pwrite_zeroes(BlockBackend
*blk
, int64_t offset
,
1314 int bytes
, BdrvRequestFlags flags
)
1316 return blk_prw(blk
, offset
, NULL
, bytes
, blk_write_entry
,
1317 flags
| BDRV_REQ_ZERO_WRITE
);
1320 int blk_make_zero(BlockBackend
*blk
, BdrvRequestFlags flags
)
1322 return bdrv_make_zero(blk
->root
, flags
);
1325 void blk_inc_in_flight(BlockBackend
*blk
)
1327 atomic_inc(&blk
->in_flight
);
1330 void blk_dec_in_flight(BlockBackend
*blk
)
1332 atomic_dec(&blk
->in_flight
);
1336 static void error_callback_bh(void *opaque
)
1338 struct BlockBackendAIOCB
*acb
= opaque
;
1340 blk_dec_in_flight(acb
->blk
);
1341 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
1342 qemu_aio_unref(acb
);
1345 BlockAIOCB
*blk_abort_aio_request(BlockBackend
*blk
,
1346 BlockCompletionFunc
*cb
,
1347 void *opaque
, int ret
)
1349 struct BlockBackendAIOCB
*acb
;
1351 blk_inc_in_flight(blk
);
1352 acb
= blk_aio_get(&block_backend_aiocb_info
, blk
, cb
, opaque
);
1356 replay_bh_schedule_oneshot_event(blk_get_aio_context(blk
),
1357 error_callback_bh
, acb
);
1358 return &acb
->common
;
1361 typedef struct BlkAioEmAIOCB
{
1368 static const AIOCBInfo blk_aio_em_aiocb_info
= {
1369 .aiocb_size
= sizeof(BlkAioEmAIOCB
),
1372 static void blk_aio_complete(BlkAioEmAIOCB
*acb
)
1374 if (acb
->has_returned
) {
1375 acb
->common
.cb(acb
->common
.opaque
, acb
->rwco
.ret
);
1376 blk_dec_in_flight(acb
->rwco
.blk
);
1377 qemu_aio_unref(acb
);
1381 static void blk_aio_complete_bh(void *opaque
)
1383 BlkAioEmAIOCB
*acb
= opaque
;
1384 assert(acb
->has_returned
);
1385 blk_aio_complete(acb
);
1388 static BlockAIOCB
*blk_aio_prwv(BlockBackend
*blk
, int64_t offset
, int bytes
,
1389 void *iobuf
, CoroutineEntry co_entry
,
1390 BdrvRequestFlags flags
,
1391 BlockCompletionFunc
*cb
, void *opaque
)
1396 blk_inc_in_flight(blk
);
1397 acb
= blk_aio_get(&blk_aio_em_aiocb_info
, blk
, cb
, opaque
);
1398 acb
->rwco
= (BlkRwCo
) {
1406 acb
->has_returned
= false;
1408 co
= qemu_coroutine_create(co_entry
, acb
);
1409 bdrv_coroutine_enter(blk_bs(blk
), co
);
1411 acb
->has_returned
= true;
1412 if (acb
->rwco
.ret
!= NOT_DONE
) {
1413 replay_bh_schedule_oneshot_event(blk_get_aio_context(blk
),
1414 blk_aio_complete_bh
, acb
);
1417 return &acb
->common
;
1420 static void blk_aio_read_entry(void *opaque
)
1422 BlkAioEmAIOCB
*acb
= opaque
;
1423 BlkRwCo
*rwco
= &acb
->rwco
;
1424 QEMUIOVector
*qiov
= rwco
->iobuf
;
1426 assert(qiov
->size
== acb
->bytes
);
1427 rwco
->ret
= blk_do_preadv(rwco
->blk
, rwco
->offset
, acb
->bytes
,
1429 blk_aio_complete(acb
);
1432 static void blk_aio_write_entry(void *opaque
)
1434 BlkAioEmAIOCB
*acb
= opaque
;
1435 BlkRwCo
*rwco
= &acb
->rwco
;
1436 QEMUIOVector
*qiov
= rwco
->iobuf
;
1438 assert(!qiov
|| qiov
->size
== acb
->bytes
);
1439 rwco
->ret
= blk_do_pwritev_part(rwco
->blk
, rwco
->offset
, acb
->bytes
,
1440 qiov
, 0, rwco
->flags
);
1441 blk_aio_complete(acb
);
1444 BlockAIOCB
*blk_aio_pwrite_zeroes(BlockBackend
*blk
, int64_t offset
,
1445 int count
, BdrvRequestFlags flags
,
1446 BlockCompletionFunc
*cb
, void *opaque
)
1448 return blk_aio_prwv(blk
, offset
, count
, NULL
, blk_aio_write_entry
,
1449 flags
| BDRV_REQ_ZERO_WRITE
, cb
, opaque
);
1452 int blk_pread(BlockBackend
*blk
, int64_t offset
, void *buf
, int count
)
1454 int ret
= blk_prw(blk
, offset
, buf
, count
, blk_read_entry
, 0);
1461 int blk_pwrite(BlockBackend
*blk
, int64_t offset
, const void *buf
, int count
,
1462 BdrvRequestFlags flags
)
1464 int ret
= blk_prw(blk
, offset
, (void *) buf
, count
, blk_write_entry
,
1472 int64_t blk_getlength(BlockBackend
*blk
)
1474 if (!blk_is_available(blk
)) {
1478 return bdrv_getlength(blk_bs(blk
));
1481 void blk_get_geometry(BlockBackend
*blk
, uint64_t *nb_sectors_ptr
)
1484 *nb_sectors_ptr
= 0;
1486 bdrv_get_geometry(blk_bs(blk
), nb_sectors_ptr
);
1490 int64_t blk_nb_sectors(BlockBackend
*blk
)
1492 if (!blk_is_available(blk
)) {
1496 return bdrv_nb_sectors(blk_bs(blk
));
1499 BlockAIOCB
*blk_aio_preadv(BlockBackend
*blk
, int64_t offset
,
1500 QEMUIOVector
*qiov
, BdrvRequestFlags flags
,
1501 BlockCompletionFunc
*cb
, void *opaque
)
1503 return blk_aio_prwv(blk
, offset
, qiov
->size
, qiov
,
1504 blk_aio_read_entry
, flags
, cb
, opaque
);
1507 BlockAIOCB
*blk_aio_pwritev(BlockBackend
*blk
, int64_t offset
,
1508 QEMUIOVector
*qiov
, BdrvRequestFlags flags
,
1509 BlockCompletionFunc
*cb
, void *opaque
)
1511 return blk_aio_prwv(blk
, offset
, qiov
->size
, qiov
,
1512 blk_aio_write_entry
, flags
, cb
, opaque
);
1515 void blk_aio_cancel(BlockAIOCB
*acb
)
1517 bdrv_aio_cancel(acb
);
1520 void blk_aio_cancel_async(BlockAIOCB
*acb
)
1522 bdrv_aio_cancel_async(acb
);
1525 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1526 static int coroutine_fn
1527 blk_do_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
)
1529 blk_wait_while_drained(blk
);
1531 if (!blk_is_available(blk
)) {
1535 return bdrv_co_ioctl(blk_bs(blk
), req
, buf
);
1538 static void blk_ioctl_entry(void *opaque
)
1540 BlkRwCo
*rwco
= opaque
;
1541 QEMUIOVector
*qiov
= rwco
->iobuf
;
1543 rwco
->ret
= blk_do_ioctl(rwco
->blk
, rwco
->offset
, qiov
->iov
[0].iov_base
);
1547 int blk_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
)
1549 return blk_prw(blk
, req
, buf
, 0, blk_ioctl_entry
, 0);
1552 static void blk_aio_ioctl_entry(void *opaque
)
1554 BlkAioEmAIOCB
*acb
= opaque
;
1555 BlkRwCo
*rwco
= &acb
->rwco
;
1557 rwco
->ret
= blk_do_ioctl(rwco
->blk
, rwco
->offset
, rwco
->iobuf
);
1559 blk_aio_complete(acb
);
1562 BlockAIOCB
*blk_aio_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
,
1563 BlockCompletionFunc
*cb
, void *opaque
)
1565 return blk_aio_prwv(blk
, req
, 0, buf
, blk_aio_ioctl_entry
, 0, cb
, opaque
);
1568 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1569 static int coroutine_fn
1570 blk_do_pdiscard(BlockBackend
*blk
, int64_t offset
, int bytes
)
1574 blk_wait_while_drained(blk
);
1576 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1581 return bdrv_co_pdiscard(blk
->root
, offset
, bytes
);
1584 static void blk_aio_pdiscard_entry(void *opaque
)
1586 BlkAioEmAIOCB
*acb
= opaque
;
1587 BlkRwCo
*rwco
= &acb
->rwco
;
1589 rwco
->ret
= blk_do_pdiscard(rwco
->blk
, rwco
->offset
, acb
->bytes
);
1590 blk_aio_complete(acb
);
1593 BlockAIOCB
*blk_aio_pdiscard(BlockBackend
*blk
,
1594 int64_t offset
, int bytes
,
1595 BlockCompletionFunc
*cb
, void *opaque
)
1597 return blk_aio_prwv(blk
, offset
, bytes
, NULL
, blk_aio_pdiscard_entry
, 0,
1601 int coroutine_fn
blk_co_pdiscard(BlockBackend
*blk
, int64_t offset
, int bytes
)
1605 blk_inc_in_flight(blk
);
1606 ret
= blk_do_pdiscard(blk
, offset
, bytes
);
1607 blk_dec_in_flight(blk
);
1612 static void blk_pdiscard_entry(void *opaque
)
1614 BlkRwCo
*rwco
= opaque
;
1615 QEMUIOVector
*qiov
= rwco
->iobuf
;
1617 rwco
->ret
= blk_do_pdiscard(rwco
->blk
, rwco
->offset
, qiov
->size
);
1621 int blk_pdiscard(BlockBackend
*blk
, int64_t offset
, int bytes
)
1623 return blk_prw(blk
, offset
, NULL
, bytes
, blk_pdiscard_entry
, 0);
1626 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1627 static int coroutine_fn
blk_do_flush(BlockBackend
*blk
)
1629 blk_wait_while_drained(blk
);
1631 if (!blk_is_available(blk
)) {
1635 return bdrv_co_flush(blk_bs(blk
));
1638 static void blk_aio_flush_entry(void *opaque
)
1640 BlkAioEmAIOCB
*acb
= opaque
;
1641 BlkRwCo
*rwco
= &acb
->rwco
;
1643 rwco
->ret
= blk_do_flush(rwco
->blk
);
1644 blk_aio_complete(acb
);
1647 BlockAIOCB
*blk_aio_flush(BlockBackend
*blk
,
1648 BlockCompletionFunc
*cb
, void *opaque
)
1650 return blk_aio_prwv(blk
, 0, 0, NULL
, blk_aio_flush_entry
, 0, cb
, opaque
);
1653 int coroutine_fn
blk_co_flush(BlockBackend
*blk
)
1657 blk_inc_in_flight(blk
);
1658 ret
= blk_do_flush(blk
);
1659 blk_dec_in_flight(blk
);
1664 static void blk_flush_entry(void *opaque
)
1666 BlkRwCo
*rwco
= opaque
;
1667 rwco
->ret
= blk_do_flush(rwco
->blk
);
1671 int blk_flush(BlockBackend
*blk
)
1673 return blk_prw(blk
, 0, NULL
, 0, blk_flush_entry
, 0);
1676 void blk_drain(BlockBackend
*blk
)
1678 BlockDriverState
*bs
= blk_bs(blk
);
1681 bdrv_drained_begin(bs
);
1684 /* We may have -ENOMEDIUM completions in flight */
1685 AIO_WAIT_WHILE(blk_get_aio_context(blk
),
1686 atomic_mb_read(&blk
->in_flight
) > 0);
1689 bdrv_drained_end(bs
);
1693 void blk_drain_all(void)
1695 BlockBackend
*blk
= NULL
;
1697 bdrv_drain_all_begin();
1699 while ((blk
= blk_all_next(blk
)) != NULL
) {
1700 AioContext
*ctx
= blk_get_aio_context(blk
);
1702 aio_context_acquire(ctx
);
1704 /* We may have -ENOMEDIUM completions in flight */
1705 AIO_WAIT_WHILE(ctx
, atomic_mb_read(&blk
->in_flight
) > 0);
1707 aio_context_release(ctx
);
1710 bdrv_drain_all_end();
1713 void blk_set_on_error(BlockBackend
*blk
, BlockdevOnError on_read_error
,
1714 BlockdevOnError on_write_error
)
1716 blk
->on_read_error
= on_read_error
;
1717 blk
->on_write_error
= on_write_error
;
1720 BlockdevOnError
blk_get_on_error(BlockBackend
*blk
, bool is_read
)
1722 return is_read
? blk
->on_read_error
: blk
->on_write_error
;
1725 BlockErrorAction
blk_get_error_action(BlockBackend
*blk
, bool is_read
,
1728 BlockdevOnError on_err
= blk_get_on_error(blk
, is_read
);
1731 case BLOCKDEV_ON_ERROR_ENOSPC
:
1732 return (error
== ENOSPC
) ?
1733 BLOCK_ERROR_ACTION_STOP
: BLOCK_ERROR_ACTION_REPORT
;
1734 case BLOCKDEV_ON_ERROR_STOP
:
1735 return BLOCK_ERROR_ACTION_STOP
;
1736 case BLOCKDEV_ON_ERROR_REPORT
:
1737 return BLOCK_ERROR_ACTION_REPORT
;
1738 case BLOCKDEV_ON_ERROR_IGNORE
:
1739 return BLOCK_ERROR_ACTION_IGNORE
;
1740 case BLOCKDEV_ON_ERROR_AUTO
:
1746 static void send_qmp_error_event(BlockBackend
*blk
,
1747 BlockErrorAction action
,
1748 bool is_read
, int error
)
1750 IoOperationType optype
;
1751 BlockDriverState
*bs
= blk_bs(blk
);
1753 optype
= is_read
? IO_OPERATION_TYPE_READ
: IO_OPERATION_TYPE_WRITE
;
1754 qapi_event_send_block_io_error(blk_name(blk
), !!bs
,
1755 bs
? bdrv_get_node_name(bs
) : NULL
, optype
,
1756 action
, blk_iostatus_is_enabled(blk
),
1757 error
== ENOSPC
, strerror(error
));
1760 /* This is done by device models because, while the block layer knows
1761 * about the error, it does not know whether an operation comes from
1762 * the device or the block layer (from a job, for example).
1764 void blk_error_action(BlockBackend
*blk
, BlockErrorAction action
,
1765 bool is_read
, int error
)
1769 if (action
== BLOCK_ERROR_ACTION_STOP
) {
1770 /* First set the iostatus, so that "info block" returns an iostatus
1771 * that matches the events raised so far (an additional error iostatus
1772 * is fine, but not a lost one).
1774 blk_iostatus_set_err(blk
, error
);
1776 /* Then raise the request to stop the VM and the event.
1777 * qemu_system_vmstop_request_prepare has two effects. First,
1778 * it ensures that the STOP event always comes after the
1779 * BLOCK_IO_ERROR event. Second, it ensures that even if management
1780 * can observe the STOP event and do a "cont" before the STOP
1781 * event is issued, the VM will not stop. In this case, vm_start()
1782 * also ensures that the STOP/RESUME pair of events is emitted.
1784 qemu_system_vmstop_request_prepare();
1785 send_qmp_error_event(blk
, action
, is_read
, error
);
1786 qemu_system_vmstop_request(RUN_STATE_IO_ERROR
);
1788 send_qmp_error_event(blk
, action
, is_read
, error
);
1792 bool blk_is_read_only(BlockBackend
*blk
)
1794 BlockDriverState
*bs
= blk_bs(blk
);
1797 return bdrv_is_read_only(bs
);
1799 return blk
->root_state
.read_only
;
1803 bool blk_is_sg(BlockBackend
*blk
)
1805 BlockDriverState
*bs
= blk_bs(blk
);
1811 return bdrv_is_sg(bs
);
1814 bool blk_enable_write_cache(BlockBackend
*blk
)
1816 return blk
->enable_write_cache
;
1819 void blk_set_enable_write_cache(BlockBackend
*blk
, bool wce
)
1821 blk
->enable_write_cache
= wce
;
1824 void blk_invalidate_cache(BlockBackend
*blk
, Error
**errp
)
1826 BlockDriverState
*bs
= blk_bs(blk
);
1829 error_setg(errp
, "Device '%s' has no medium", blk
->name
);
1833 bdrv_invalidate_cache(bs
, errp
);
1836 bool blk_is_inserted(BlockBackend
*blk
)
1838 BlockDriverState
*bs
= blk_bs(blk
);
1840 return bs
&& bdrv_is_inserted(bs
);
1843 bool blk_is_available(BlockBackend
*blk
)
1845 return blk_is_inserted(blk
) && !blk_dev_is_tray_open(blk
);
1848 void blk_lock_medium(BlockBackend
*blk
, bool locked
)
1850 BlockDriverState
*bs
= blk_bs(blk
);
1853 bdrv_lock_medium(bs
, locked
);
1857 void blk_eject(BlockBackend
*blk
, bool eject_flag
)
1859 BlockDriverState
*bs
= blk_bs(blk
);
1863 bdrv_eject(bs
, eject_flag
);
1866 /* Whether or not we ejected on the backend,
1867 * the frontend experienced a tray event. */
1868 id
= blk_get_attached_dev_id(blk
);
1869 qapi_event_send_device_tray_moved(blk_name(blk
), id
,
1874 int blk_get_flags(BlockBackend
*blk
)
1876 BlockDriverState
*bs
= blk_bs(blk
);
1879 return bdrv_get_flags(bs
);
1881 return blk
->root_state
.open_flags
;
1885 /* Returns the minimum request alignment, in bytes; guaranteed nonzero */
1886 uint32_t blk_get_request_alignment(BlockBackend
*blk
)
1888 BlockDriverState
*bs
= blk_bs(blk
);
1889 return bs
? bs
->bl
.request_alignment
: BDRV_SECTOR_SIZE
;
1892 /* Returns the maximum transfer length, in bytes; guaranteed nonzero */
1893 uint32_t blk_get_max_transfer(BlockBackend
*blk
)
1895 BlockDriverState
*bs
= blk_bs(blk
);
1899 max
= bs
->bl
.max_transfer
;
1901 return MIN_NON_ZERO(max
, INT_MAX
);
1904 int blk_get_max_iov(BlockBackend
*blk
)
1906 return blk
->root
->bs
->bl
.max_iov
;
1909 void blk_set_guest_block_size(BlockBackend
*blk
, int align
)
1911 blk
->guest_block_size
= align
;
1914 void *blk_try_blockalign(BlockBackend
*blk
, size_t size
)
1916 return qemu_try_blockalign(blk
? blk_bs(blk
) : NULL
, size
);
1919 void *blk_blockalign(BlockBackend
*blk
, size_t size
)
1921 return qemu_blockalign(blk
? blk_bs(blk
) : NULL
, size
);
1924 bool blk_op_is_blocked(BlockBackend
*blk
, BlockOpType op
, Error
**errp
)
1926 BlockDriverState
*bs
= blk_bs(blk
);
1932 return bdrv_op_is_blocked(bs
, op
, errp
);
1935 void blk_op_unblock(BlockBackend
*blk
, BlockOpType op
, Error
*reason
)
1937 BlockDriverState
*bs
= blk_bs(blk
);
1940 bdrv_op_unblock(bs
, op
, reason
);
1944 void blk_op_block_all(BlockBackend
*blk
, Error
*reason
)
1946 BlockDriverState
*bs
= blk_bs(blk
);
1949 bdrv_op_block_all(bs
, reason
);
1953 void blk_op_unblock_all(BlockBackend
*blk
, Error
*reason
)
1955 BlockDriverState
*bs
= blk_bs(blk
);
1958 bdrv_op_unblock_all(bs
, reason
);
1962 AioContext
*blk_get_aio_context(BlockBackend
*blk
)
1964 BlockDriverState
*bs
= blk_bs(blk
);
1967 AioContext
*ctx
= bdrv_get_aio_context(blk_bs(blk
));
1968 assert(ctx
== blk
->ctx
);
1974 static AioContext
*blk_aiocb_get_aio_context(BlockAIOCB
*acb
)
1976 BlockBackendAIOCB
*blk_acb
= DO_UPCAST(BlockBackendAIOCB
, common
, acb
);
1977 return blk_get_aio_context(blk_acb
->blk
);
1980 static int blk_do_set_aio_context(BlockBackend
*blk
, AioContext
*new_context
,
1981 bool update_root_node
, Error
**errp
)
1983 BlockDriverState
*bs
= blk_bs(blk
);
1984 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
1988 if (update_root_node
) {
1989 ret
= bdrv_child_try_set_aio_context(bs
, new_context
, blk
->root
,
1995 if (tgm
->throttle_state
) {
1996 bdrv_drained_begin(bs
);
1997 throttle_group_detach_aio_context(tgm
);
1998 throttle_group_attach_aio_context(tgm
, new_context
);
1999 bdrv_drained_end(bs
);
2003 blk
->ctx
= new_context
;
2007 int blk_set_aio_context(BlockBackend
*blk
, AioContext
*new_context
,
2010 return blk_do_set_aio_context(blk
, new_context
, true, errp
);
2013 static bool blk_root_can_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
2014 GSList
**ignore
, Error
**errp
)
2016 BlockBackend
*blk
= child
->opaque
;
2018 if (blk
->allow_aio_context_change
) {
2022 /* Only manually created BlockBackends that are not attached to anything
2023 * can change their AioContext without updating their user. */
2024 if (!blk
->name
|| blk
->dev
) {
2025 /* TODO Add BB name/QOM path */
2026 error_setg(errp
, "Cannot change iothread of active block backend");
2033 static void blk_root_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
2036 BlockBackend
*blk
= child
->opaque
;
2037 blk_do_set_aio_context(blk
, ctx
, false, &error_abort
);
2040 void blk_add_aio_context_notifier(BlockBackend
*blk
,
2041 void (*attached_aio_context
)(AioContext
*new_context
, void *opaque
),
2042 void (*detach_aio_context
)(void *opaque
), void *opaque
)
2044 BlockBackendAioNotifier
*notifier
;
2045 BlockDriverState
*bs
= blk_bs(blk
);
2047 notifier
= g_new(BlockBackendAioNotifier
, 1);
2048 notifier
->attached_aio_context
= attached_aio_context
;
2049 notifier
->detach_aio_context
= detach_aio_context
;
2050 notifier
->opaque
= opaque
;
2051 QLIST_INSERT_HEAD(&blk
->aio_notifiers
, notifier
, list
);
2054 bdrv_add_aio_context_notifier(bs
, attached_aio_context
,
2055 detach_aio_context
, opaque
);
2059 void blk_remove_aio_context_notifier(BlockBackend
*blk
,
2060 void (*attached_aio_context
)(AioContext
*,
2062 void (*detach_aio_context
)(void *),
2065 BlockBackendAioNotifier
*notifier
;
2066 BlockDriverState
*bs
= blk_bs(blk
);
2069 bdrv_remove_aio_context_notifier(bs
, attached_aio_context
,
2070 detach_aio_context
, opaque
);
2073 QLIST_FOREACH(notifier
, &blk
->aio_notifiers
, list
) {
2074 if (notifier
->attached_aio_context
== attached_aio_context
&&
2075 notifier
->detach_aio_context
== detach_aio_context
&&
2076 notifier
->opaque
== opaque
) {
2077 QLIST_REMOVE(notifier
, list
);
2086 void blk_add_remove_bs_notifier(BlockBackend
*blk
, Notifier
*notify
)
2088 notifier_list_add(&blk
->remove_bs_notifiers
, notify
);
2091 void blk_add_insert_bs_notifier(BlockBackend
*blk
, Notifier
*notify
)
2093 notifier_list_add(&blk
->insert_bs_notifiers
, notify
);
2096 void blk_io_plug(BlockBackend
*blk
)
2098 BlockDriverState
*bs
= blk_bs(blk
);
2105 void blk_io_unplug(BlockBackend
*blk
)
2107 BlockDriverState
*bs
= blk_bs(blk
);
2114 BlockAcctStats
*blk_get_stats(BlockBackend
*blk
)
2119 void *blk_aio_get(const AIOCBInfo
*aiocb_info
, BlockBackend
*blk
,
2120 BlockCompletionFunc
*cb
, void *opaque
)
2122 return qemu_aio_get(aiocb_info
, blk_bs(blk
), cb
, opaque
);
2125 int coroutine_fn
blk_co_pwrite_zeroes(BlockBackend
*blk
, int64_t offset
,
2126 int bytes
, BdrvRequestFlags flags
)
2128 return blk_co_pwritev(blk
, offset
, bytes
, NULL
,
2129 flags
| BDRV_REQ_ZERO_WRITE
);
2132 int blk_pwrite_compressed(BlockBackend
*blk
, int64_t offset
, const void *buf
,
2135 return blk_prw(blk
, offset
, (void *) buf
, count
, blk_write_entry
,
2136 BDRV_REQ_WRITE_COMPRESSED
);
2139 int blk_truncate(BlockBackend
*blk
, int64_t offset
, bool exact
,
2140 PreallocMode prealloc
, Error
**errp
)
2142 if (!blk_is_available(blk
)) {
2143 error_setg(errp
, "No medium inserted");
2147 return bdrv_truncate(blk
->root
, offset
, exact
, prealloc
, errp
);
2150 int blk_save_vmstate(BlockBackend
*blk
, const uint8_t *buf
,
2151 int64_t pos
, int size
)
2155 if (!blk_is_available(blk
)) {
2159 ret
= bdrv_save_vmstate(blk_bs(blk
), buf
, pos
, size
);
2164 if (ret
== size
&& !blk
->enable_write_cache
) {
2165 ret
= bdrv_flush(blk_bs(blk
));
2168 return ret
< 0 ? ret
: size
;
2171 int blk_load_vmstate(BlockBackend
*blk
, uint8_t *buf
, int64_t pos
, int size
)
2173 if (!blk_is_available(blk
)) {
2177 return bdrv_load_vmstate(blk_bs(blk
), buf
, pos
, size
);
2180 int blk_probe_blocksizes(BlockBackend
*blk
, BlockSizes
*bsz
)
2182 if (!blk_is_available(blk
)) {
2186 return bdrv_probe_blocksizes(blk_bs(blk
), bsz
);
2189 int blk_probe_geometry(BlockBackend
*blk
, HDGeometry
*geo
)
2191 if (!blk_is_available(blk
)) {
2195 return bdrv_probe_geometry(blk_bs(blk
), geo
);
2199 * Updates the BlockBackendRootState object with data from the currently
2200 * attached BlockDriverState.
2202 void blk_update_root_state(BlockBackend
*blk
)
2206 blk
->root_state
.open_flags
= blk
->root
->bs
->open_flags
;
2207 blk
->root_state
.read_only
= blk
->root
->bs
->read_only
;
2208 blk
->root_state
.detect_zeroes
= blk
->root
->bs
->detect_zeroes
;
2212 * Returns the detect-zeroes setting to be used for bdrv_open() of a
2213 * BlockDriverState which is supposed to inherit the root state.
2215 bool blk_get_detect_zeroes_from_root_state(BlockBackend
*blk
)
2217 return blk
->root_state
.detect_zeroes
;
2221 * Returns the flags to be used for bdrv_open() of a BlockDriverState which is
2222 * supposed to inherit the root state.
2224 int blk_get_open_flags_from_root_state(BlockBackend
*blk
)
2228 bs_flags
= blk
->root_state
.read_only
? 0 : BDRV_O_RDWR
;
2229 bs_flags
|= blk
->root_state
.open_flags
& ~BDRV_O_RDWR
;
2234 BlockBackendRootState
*blk_get_root_state(BlockBackend
*blk
)
2236 return &blk
->root_state
;
2239 int blk_commit_all(void)
2241 BlockBackend
*blk
= NULL
;
2243 while ((blk
= blk_all_next(blk
)) != NULL
) {
2244 AioContext
*aio_context
= blk_get_aio_context(blk
);
2246 aio_context_acquire(aio_context
);
2247 if (blk_is_inserted(blk
) && blk
->root
->bs
->backing
) {
2248 int ret
= bdrv_commit(blk
->root
->bs
);
2250 aio_context_release(aio_context
);
2254 aio_context_release(aio_context
);
2260 /* throttling disk I/O limits */
2261 void blk_set_io_limits(BlockBackend
*blk
, ThrottleConfig
*cfg
)
2263 throttle_group_config(&blk
->public.throttle_group_member
, cfg
);
2266 void blk_io_limits_disable(BlockBackend
*blk
)
2268 BlockDriverState
*bs
= blk_bs(blk
);
2269 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
2270 assert(tgm
->throttle_state
);
2272 bdrv_drained_begin(bs
);
2274 throttle_group_unregister_tgm(tgm
);
2276 bdrv_drained_end(bs
);
2280 /* should be called before blk_set_io_limits if a limit is set */
2281 void blk_io_limits_enable(BlockBackend
*blk
, const char *group
)
2283 assert(!blk
->public.throttle_group_member
.throttle_state
);
2284 throttle_group_register_tgm(&blk
->public.throttle_group_member
,
2285 group
, blk_get_aio_context(blk
));
2288 void blk_io_limits_update_group(BlockBackend
*blk
, const char *group
)
2290 /* this BB is not part of any group */
2291 if (!blk
->public.throttle_group_member
.throttle_state
) {
2295 /* this BB is a part of the same group than the one we want */
2296 if (!g_strcmp0(throttle_group_get_name(&blk
->public.throttle_group_member
),
2301 /* need to change the group this bs belong to */
2302 blk_io_limits_disable(blk
);
2303 blk_io_limits_enable(blk
, group
);
2306 static void blk_root_drained_begin(BdrvChild
*child
)
2308 BlockBackend
*blk
= child
->opaque
;
2310 if (++blk
->quiesce_counter
== 1) {
2311 if (blk
->dev_ops
&& blk
->dev_ops
->drained_begin
) {
2312 blk
->dev_ops
->drained_begin(blk
->dev_opaque
);
2316 /* Note that blk->root may not be accessible here yet if we are just
2317 * attaching to a BlockDriverState that is drained. Use child instead. */
2319 if (atomic_fetch_inc(&blk
->public.throttle_group_member
.io_limits_disabled
) == 0) {
2320 throttle_group_restart_tgm(&blk
->public.throttle_group_member
);
2324 static bool blk_root_drained_poll(BdrvChild
*child
)
2326 BlockBackend
*blk
= child
->opaque
;
2327 assert(blk
->quiesce_counter
);
2328 return !!blk
->in_flight
;
2331 static void blk_root_drained_end(BdrvChild
*child
, int *drained_end_counter
)
2333 BlockBackend
*blk
= child
->opaque
;
2334 assert(blk
->quiesce_counter
);
2336 assert(blk
->public.throttle_group_member
.io_limits_disabled
);
2337 atomic_dec(&blk
->public.throttle_group_member
.io_limits_disabled
);
2339 if (--blk
->quiesce_counter
== 0) {
2340 if (blk
->dev_ops
&& blk
->dev_ops
->drained_end
) {
2341 blk
->dev_ops
->drained_end(blk
->dev_opaque
);
2343 while (qemu_co_enter_next(&blk
->queued_requests
, NULL
)) {
2344 /* Resume all queued requests */
2349 void blk_register_buf(BlockBackend
*blk
, void *host
, size_t size
)
2351 bdrv_register_buf(blk_bs(blk
), host
, size
);
2354 void blk_unregister_buf(BlockBackend
*blk
, void *host
)
2356 bdrv_unregister_buf(blk_bs(blk
), host
);
2359 int coroutine_fn
blk_co_copy_range(BlockBackend
*blk_in
, int64_t off_in
,
2360 BlockBackend
*blk_out
, int64_t off_out
,
2361 int bytes
, BdrvRequestFlags read_flags
,
2362 BdrvRequestFlags write_flags
)
2365 r
= blk_check_byte_request(blk_in
, off_in
, bytes
);
2369 r
= blk_check_byte_request(blk_out
, off_out
, bytes
);
2373 return bdrv_co_copy_range(blk_in
->root
, off_in
,
2374 blk_out
->root
, off_out
,
2375 bytes
, read_flags
, write_flags
);
2378 const BdrvChild
*blk_root(BlockBackend
*blk
)