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/replay.h"
22 #include "qapi/error.h"
23 #include "qapi/qapi-events-block.h"
25 #include "qemu/main-loop.h"
26 #include "qemu/option.h"
28 #include "migration/misc.h"
30 /* Number of coroutines to reserve per attached device model */
31 #define COROUTINE_POOL_RESERVATION 64
33 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
35 static AioContext
*blk_aiocb_get_aio_context(BlockAIOCB
*acb
);
37 typedef struct BlockBackendAioNotifier
{
38 void (*attached_aio_context
)(AioContext
*new_context
, void *opaque
);
39 void (*detach_aio_context
)(void *opaque
);
41 QLIST_ENTRY(BlockBackendAioNotifier
) list
;
42 } BlockBackendAioNotifier
;
49 DriveInfo
*legacy_dinfo
; /* null unless created by drive_new() */
50 QTAILQ_ENTRY(BlockBackend
) link
; /* for block_backends */
51 QTAILQ_ENTRY(BlockBackend
) monitor_link
; /* for monitor_block_backends */
52 BlockBackendPublic
public;
54 DeviceState
*dev
; /* attached device model, if any */
55 const BlockDevOps
*dev_ops
;
58 /* the block size for which the guest device expects atomicity */
61 /* If the BDS tree is removed, some of its options are stored here (which
62 * can be used to restore those options in the new BDS on insert) */
63 BlockBackendRootState root_state
;
65 bool enable_write_cache
;
67 /* I/O stats (display with "info blockstats"). */
70 BlockdevOnError on_read_error
, on_write_error
;
71 bool iostatus_enabled
;
72 BlockDeviceIoStatus iostatus
;
78 bool allow_aio_context_change
;
79 bool allow_write_beyond_eof
;
81 NotifierList remove_bs_notifiers
, insert_bs_notifiers
;
82 QLIST_HEAD(, BlockBackendAioNotifier
) aio_notifiers
;
85 CoQueue queued_requests
;
86 bool disable_request_queuing
;
88 VMChangeStateEntry
*vmsh
;
89 bool force_allow_inactivate
;
91 /* Number of in-flight aio requests. BlockDriverState also counts
92 * in-flight requests but aio requests can exist even when blk->root is
93 * NULL, so we cannot rely on its counter for that case.
94 * Accessed with atomic ops.
96 unsigned int in_flight
;
99 typedef struct BlockBackendAIOCB
{
105 static const AIOCBInfo block_backend_aiocb_info
= {
106 .get_aio_context
= blk_aiocb_get_aio_context
,
107 .aiocb_size
= sizeof(BlockBackendAIOCB
),
110 static void drive_info_del(DriveInfo
*dinfo
);
111 static BlockBackend
*bdrv_first_blk(BlockDriverState
*bs
);
113 /* All BlockBackends */
114 static QTAILQ_HEAD(, BlockBackend
) block_backends
=
115 QTAILQ_HEAD_INITIALIZER(block_backends
);
117 /* All BlockBackends referenced by the monitor and which are iterated through by
119 static QTAILQ_HEAD(, BlockBackend
) monitor_block_backends
=
120 QTAILQ_HEAD_INITIALIZER(monitor_block_backends
);
122 static void blk_root_inherit_options(BdrvChildRole role
, bool parent_is_format
,
123 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
;
144 g_autofree
char *dev_id
= NULL
;
147 return g_strdup_printf("block device '%s'", blk
->name
);
150 dev_id
= blk_get_attached_dev_id(blk
);
152 return g_strdup_printf("block device '%s'", dev_id
);
154 /* TODO Callback into the BB owner for something more detailed */
155 return g_strdup("an unnamed block device");
159 static const char *blk_root_get_name(BdrvChild
*child
)
161 return blk_name(child
->opaque
);
164 static void blk_vm_state_changed(void *opaque
, bool running
, RunState state
)
166 Error
*local_err
= NULL
;
167 BlockBackend
*blk
= opaque
;
169 if (state
== RUN_STATE_INMIGRATE
) {
173 qemu_del_vm_change_state_handler(blk
->vmsh
);
175 blk_set_perm(blk
, blk
->perm
, blk
->shared_perm
, &local_err
);
177 error_report_err(local_err
);
182 * Notifies the user of the BlockBackend that migration has completed. qdev
183 * devices can tighten their permissions in response (specifically revoke
184 * shared write permissions that we needed for storage migration).
186 * If an error is returned, the VM cannot be allowed to be resumed.
188 static void blk_root_activate(BdrvChild
*child
, Error
**errp
)
190 BlockBackend
*blk
= child
->opaque
;
191 Error
*local_err
= NULL
;
193 if (!blk
->disable_perm
) {
197 blk
->disable_perm
= false;
199 blk_set_perm(blk
, blk
->perm
, BLK_PERM_ALL
, &local_err
);
201 error_propagate(errp
, local_err
);
202 blk
->disable_perm
= true;
206 if (runstate_check(RUN_STATE_INMIGRATE
)) {
207 /* Activation can happen when migration process is still active, for
208 * example when nbd_server_add is called during non-shared storage
209 * migration. Defer the shared_perm update to migration completion. */
211 blk
->vmsh
= qemu_add_vm_change_state_handler(blk_vm_state_changed
,
217 blk_set_perm(blk
, blk
->perm
, blk
->shared_perm
, &local_err
);
219 error_propagate(errp
, local_err
);
220 blk
->disable_perm
= true;
225 void blk_set_force_allow_inactivate(BlockBackend
*blk
)
227 blk
->force_allow_inactivate
= true;
230 static bool blk_can_inactivate(BlockBackend
*blk
)
232 /* If it is a guest device, inactivate is ok. */
233 if (blk
->dev
|| blk_name(blk
)[0]) {
237 /* Inactivating means no more writes to the image can be done,
238 * even if those writes would be changes invisible to the
239 * guest. For block job BBs that satisfy this, we can just allow
240 * it. This is the case for mirror job source, which is required
241 * by libvirt non-shared block migration. */
242 if (!(blk
->perm
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
))) {
246 return blk
->force_allow_inactivate
;
249 static int blk_root_inactivate(BdrvChild
*child
)
251 BlockBackend
*blk
= child
->opaque
;
253 if (blk
->disable_perm
) {
257 if (!blk_can_inactivate(blk
)) {
261 blk
->disable_perm
= true;
263 bdrv_child_try_set_perm(blk
->root
, 0, BLK_PERM_ALL
, &error_abort
);
269 static void blk_root_attach(BdrvChild
*child
)
271 BlockBackend
*blk
= child
->opaque
;
272 BlockBackendAioNotifier
*notifier
;
274 trace_blk_root_attach(child
, blk
, child
->bs
);
276 QLIST_FOREACH(notifier
, &blk
->aio_notifiers
, list
) {
277 bdrv_add_aio_context_notifier(child
->bs
,
278 notifier
->attached_aio_context
,
279 notifier
->detach_aio_context
,
284 static void blk_root_detach(BdrvChild
*child
)
286 BlockBackend
*blk
= child
->opaque
;
287 BlockBackendAioNotifier
*notifier
;
289 trace_blk_root_detach(child
, blk
, child
->bs
);
291 QLIST_FOREACH(notifier
, &blk
->aio_notifiers
, list
) {
292 bdrv_remove_aio_context_notifier(child
->bs
,
293 notifier
->attached_aio_context
,
294 notifier
->detach_aio_context
,
299 static AioContext
*blk_root_get_parent_aio_context(BdrvChild
*c
)
301 BlockBackend
*blk
= c
->opaque
;
303 return blk_get_aio_context(blk
);
306 static const BdrvChildClass child_root
= {
307 .inherit_options
= blk_root_inherit_options
,
309 .change_media
= blk_root_change_media
,
310 .resize
= blk_root_resize
,
311 .get_name
= blk_root_get_name
,
312 .get_parent_desc
= blk_root_get_parent_desc
,
314 .drained_begin
= blk_root_drained_begin
,
315 .drained_poll
= blk_root_drained_poll
,
316 .drained_end
= blk_root_drained_end
,
318 .activate
= blk_root_activate
,
319 .inactivate
= blk_root_inactivate
,
321 .attach
= blk_root_attach
,
322 .detach
= blk_root_detach
,
324 .can_set_aio_ctx
= blk_root_can_set_aio_ctx
,
325 .set_aio_ctx
= blk_root_set_aio_ctx
,
327 .get_parent_aio_context
= blk_root_get_parent_aio_context
,
331 * Create a new BlockBackend with a reference count of one.
333 * @perm is a bitmasks of BLK_PERM_* constants which describes the permissions
334 * to request for a block driver node that is attached to this BlockBackend.
335 * @shared_perm is a bitmask which describes which permissions may be granted
336 * to other users of the attached node.
337 * Both sets of permissions can be changed later using blk_set_perm().
339 * Return the new BlockBackend on success, null on failure.
341 BlockBackend
*blk_new(AioContext
*ctx
, uint64_t perm
, uint64_t shared_perm
)
345 blk
= g_new0(BlockBackend
, 1);
349 blk
->shared_perm
= shared_perm
;
350 blk_set_enable_write_cache(blk
, true);
352 blk
->on_read_error
= BLOCKDEV_ON_ERROR_REPORT
;
353 blk
->on_write_error
= BLOCKDEV_ON_ERROR_ENOSPC
;
355 block_acct_init(&blk
->stats
);
357 qemu_co_queue_init(&blk
->queued_requests
);
358 notifier_list_init(&blk
->remove_bs_notifiers
);
359 notifier_list_init(&blk
->insert_bs_notifiers
);
360 QLIST_INIT(&blk
->aio_notifiers
);
362 QTAILQ_INSERT_TAIL(&block_backends
, blk
, link
);
367 * Create a new BlockBackend connected to an existing BlockDriverState.
369 * @perm is a bitmasks of BLK_PERM_* constants which describes the
370 * permissions to request for @bs that is attached to this
371 * BlockBackend. @shared_perm is a bitmask which describes which
372 * permissions may be granted to other users of the attached node.
373 * Both sets of permissions can be changed later using blk_set_perm().
375 * Return the new BlockBackend on success, null on failure.
377 BlockBackend
*blk_new_with_bs(BlockDriverState
*bs
, uint64_t perm
,
378 uint64_t shared_perm
, Error
**errp
)
380 BlockBackend
*blk
= blk_new(bdrv_get_aio_context(bs
), perm
, shared_perm
);
382 if (blk_insert_bs(blk
, bs
, errp
) < 0) {
390 * Creates a new BlockBackend, opens a new BlockDriverState, and connects both.
391 * The new BlockBackend is in the main AioContext.
393 * Just as with bdrv_open(), after having called this function the reference to
394 * @options belongs to the block layer (even on failure).
396 * TODO: Remove @filename and @flags; it should be possible to specify a whole
397 * BDS tree just by specifying the @options QDict (or @reference,
398 * alternatively). At the time of adding this function, this is not possible,
399 * though, so callers of this function have to be able to specify @filename and
402 BlockBackend
*blk_new_open(const char *filename
, const char *reference
,
403 QDict
*options
, int flags
, Error
**errp
)
406 BlockDriverState
*bs
;
408 uint64_t shared
= BLK_PERM_ALL
;
411 * blk_new_open() is mainly used in .bdrv_create implementations and the
412 * tools where sharing isn't a major concern because the BDS stays private
413 * and the file is generally not supposed to be used by a second process,
414 * so we just request permission according to the flags.
416 * The exceptions are xen_disk and blockdev_init(); in these cases, the
417 * caller of blk_new_open() doesn't make use of the permissions, but they
418 * shouldn't hurt either. We can still share everything here because the
419 * guest devices will add their own blockers if they can't share.
421 if ((flags
& BDRV_O_NO_IO
) == 0) {
422 perm
|= BLK_PERM_CONSISTENT_READ
;
423 if (flags
& BDRV_O_RDWR
) {
424 perm
|= BLK_PERM_WRITE
;
427 if (flags
& BDRV_O_RESIZE
) {
428 perm
|= BLK_PERM_RESIZE
;
430 if (flags
& BDRV_O_NO_SHARE
) {
431 shared
= BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
;
434 blk
= blk_new(qemu_get_aio_context(), perm
, shared
);
435 bs
= bdrv_open(filename
, reference
, options
, flags
, errp
);
441 blk
->root
= bdrv_root_attach_child(bs
, "root", &child_root
,
442 BDRV_CHILD_FILTERED
| BDRV_CHILD_PRIMARY
,
443 perm
, shared
, blk
, errp
);
452 static void blk_delete(BlockBackend
*blk
)
454 assert(!blk
->refcnt
);
457 if (blk
->public.throttle_group_member
.throttle_state
) {
458 blk_io_limits_disable(blk
);
464 qemu_del_vm_change_state_handler(blk
->vmsh
);
467 assert(QLIST_EMPTY(&blk
->remove_bs_notifiers
.notifiers
));
468 assert(QLIST_EMPTY(&blk
->insert_bs_notifiers
.notifiers
));
469 assert(QLIST_EMPTY(&blk
->aio_notifiers
));
470 QTAILQ_REMOVE(&block_backends
, blk
, link
);
471 drive_info_del(blk
->legacy_dinfo
);
472 block_acct_cleanup(&blk
->stats
);
476 static void drive_info_del(DriveInfo
*dinfo
)
481 qemu_opts_del(dinfo
->opts
);
485 int blk_get_refcnt(BlockBackend
*blk
)
487 return blk
? blk
->refcnt
: 0;
491 * Increment @blk's reference count.
492 * @blk must not be null.
494 void blk_ref(BlockBackend
*blk
)
496 assert(blk
->refcnt
> 0);
501 * Decrement @blk's reference count.
502 * If this drops it to zero, destroy @blk.
503 * For convenience, do nothing if @blk is null.
505 void blk_unref(BlockBackend
*blk
)
508 assert(blk
->refcnt
> 0);
509 if (blk
->refcnt
> 1) {
513 /* blk_drain() cannot resurrect blk, nobody held a reference */
514 assert(blk
->refcnt
== 1);
522 * Behaves similarly to blk_next() but iterates over all BlockBackends, even the
523 * ones which are hidden (i.e. are not referenced by the monitor).
525 BlockBackend
*blk_all_next(BlockBackend
*blk
)
527 return blk
? QTAILQ_NEXT(blk
, link
)
528 : QTAILQ_FIRST(&block_backends
);
531 void blk_remove_all_bs(void)
533 BlockBackend
*blk
= NULL
;
535 while ((blk
= blk_all_next(blk
)) != NULL
) {
536 AioContext
*ctx
= blk_get_aio_context(blk
);
538 aio_context_acquire(ctx
);
542 aio_context_release(ctx
);
547 * Return the monitor-owned BlockBackend after @blk.
548 * If @blk is null, return the first one.
549 * Else, return @blk's next sibling, which may be null.
551 * To iterate over all BlockBackends, do
552 * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
556 BlockBackend
*blk_next(BlockBackend
*blk
)
558 return blk
? QTAILQ_NEXT(blk
, monitor_link
)
559 : QTAILQ_FIRST(&monitor_block_backends
);
562 /* Iterates over all top-level BlockDriverStates, i.e. BDSs that are owned by
563 * the monitor or attached to a BlockBackend */
564 BlockDriverState
*bdrv_next(BdrvNextIterator
*it
)
566 BlockDriverState
*bs
, *old_bs
;
568 /* Must be called from the main loop */
569 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
571 /* First, return all root nodes of BlockBackends. In order to avoid
572 * returning a BDS twice when multiple BBs refer to it, we only return it
573 * if the BB is the first one in the parent list of the BDS. */
574 if (it
->phase
== BDRV_NEXT_BACKEND_ROOTS
) {
575 BlockBackend
*old_blk
= it
->blk
;
577 old_bs
= old_blk
? blk_bs(old_blk
) : NULL
;
580 it
->blk
= blk_all_next(it
->blk
);
581 bs
= it
->blk
? blk_bs(it
->blk
) : NULL
;
582 } while (it
->blk
&& (bs
== NULL
|| bdrv_first_blk(bs
) != it
->blk
));
594 it
->phase
= BDRV_NEXT_MONITOR_OWNED
;
599 /* Then return the monitor-owned BDSes without a BB attached. Ignore all
600 * BDSes that are attached to a BlockBackend here; they have been handled
601 * by the above block already */
603 it
->bs
= bdrv_next_monitor_owned(it
->bs
);
605 } while (bs
&& bdrv_has_blk(bs
));
615 static void bdrv_next_reset(BdrvNextIterator
*it
)
617 *it
= (BdrvNextIterator
) {
618 .phase
= BDRV_NEXT_BACKEND_ROOTS
,
622 BlockDriverState
*bdrv_first(BdrvNextIterator
*it
)
625 return bdrv_next(it
);
628 /* Must be called when aborting a bdrv_next() iteration before
629 * bdrv_next() returns NULL */
630 void bdrv_next_cleanup(BdrvNextIterator
*it
)
632 /* Must be called from the main loop */
633 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
635 if (it
->phase
== BDRV_NEXT_BACKEND_ROOTS
) {
637 bdrv_unref(blk_bs(it
->blk
));
648 * Add a BlockBackend into the list of backends referenced by the monitor, with
649 * the given @name acting as the handle for the monitor.
650 * Strictly for use by blockdev.c.
652 * @name must not be null or empty.
654 * Returns true on success and false on failure. In the latter case, an Error
655 * object is returned through @errp.
657 bool monitor_add_blk(BlockBackend
*blk
, const char *name
, Error
**errp
)
660 assert(name
&& name
[0]);
662 if (!id_wellformed(name
)) {
663 error_setg(errp
, "Invalid device name");
666 if (blk_by_name(name
)) {
667 error_setg(errp
, "Device with id '%s' already exists", name
);
670 if (bdrv_find_node(name
)) {
672 "Device name '%s' conflicts with an existing node name",
677 blk
->name
= g_strdup(name
);
678 QTAILQ_INSERT_TAIL(&monitor_block_backends
, blk
, monitor_link
);
683 * Remove a BlockBackend from the list of backends referenced by the monitor.
684 * Strictly for use by blockdev.c.
686 void monitor_remove_blk(BlockBackend
*blk
)
692 QTAILQ_REMOVE(&monitor_block_backends
, blk
, monitor_link
);
698 * Return @blk's name, a non-null string.
699 * Returns an empty string iff @blk is not referenced by the monitor.
701 const char *blk_name(const BlockBackend
*blk
)
703 return blk
->name
?: "";
707 * Return the BlockBackend with name @name if it exists, else null.
708 * @name must not be null.
710 BlockBackend
*blk_by_name(const char *name
)
712 BlockBackend
*blk
= NULL
;
715 while ((blk
= blk_next(blk
)) != NULL
) {
716 if (!strcmp(name
, blk
->name
)) {
724 * Return the BlockDriverState attached to @blk if any, else null.
726 BlockDriverState
*blk_bs(BlockBackend
*blk
)
728 return blk
->root
? blk
->root
->bs
: NULL
;
731 static BlockBackend
*bdrv_first_blk(BlockDriverState
*bs
)
734 QLIST_FOREACH(child
, &bs
->parents
, next_parent
) {
735 if (child
->klass
== &child_root
) {
736 return child
->opaque
;
744 * Returns true if @bs has an associated BlockBackend.
746 bool bdrv_has_blk(BlockDriverState
*bs
)
748 return bdrv_first_blk(bs
) != NULL
;
752 * Returns true if @bs has only BlockBackends as parents.
754 bool bdrv_is_root_node(BlockDriverState
*bs
)
758 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
759 if (c
->klass
!= &child_root
) {
768 * Return @blk's DriveInfo if any, else null.
770 DriveInfo
*blk_legacy_dinfo(BlockBackend
*blk
)
772 return blk
->legacy_dinfo
;
776 * Set @blk's DriveInfo to @dinfo, and return it.
777 * @blk must not have a DriveInfo set already.
778 * No other BlockBackend may have the same DriveInfo set.
780 DriveInfo
*blk_set_legacy_dinfo(BlockBackend
*blk
, DriveInfo
*dinfo
)
782 assert(!blk
->legacy_dinfo
);
783 return blk
->legacy_dinfo
= dinfo
;
787 * Return the BlockBackend with DriveInfo @dinfo.
790 BlockBackend
*blk_by_legacy_dinfo(DriveInfo
*dinfo
)
792 BlockBackend
*blk
= NULL
;
794 while ((blk
= blk_next(blk
)) != NULL
) {
795 if (blk
->legacy_dinfo
== dinfo
) {
803 * Returns a pointer to the publicly accessible fields of @blk.
805 BlockBackendPublic
*blk_get_public(BlockBackend
*blk
)
811 * Returns a BlockBackend given the associated @public fields.
813 BlockBackend
*blk_by_public(BlockBackendPublic
*public)
815 return container_of(public, BlockBackend
, public);
819 * Disassociates the currently associated BlockDriverState from @blk.
821 void blk_remove_bs(BlockBackend
*blk
)
823 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
824 BlockDriverState
*bs
;
827 notifier_list_notify(&blk
->remove_bs_notifiers
, blk
);
828 if (tgm
->throttle_state
) {
830 bdrv_drained_begin(bs
);
831 throttle_group_detach_aio_context(tgm
);
832 throttle_group_attach_aio_context(tgm
, qemu_get_aio_context());
833 bdrv_drained_end(bs
);
836 blk_update_root_state(blk
);
838 /* bdrv_root_unref_child() will cause blk->root to become stale and may
839 * switch to a completion coroutine later on. Let's drain all I/O here
840 * to avoid that and a potential QEMU crash.
845 bdrv_root_unref_child(root
);
849 * Associates a new BlockDriverState with @blk.
851 int blk_insert_bs(BlockBackend
*blk
, BlockDriverState
*bs
, Error
**errp
)
853 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
855 blk
->root
= bdrv_root_attach_child(bs
, "root", &child_root
,
856 BDRV_CHILD_FILTERED
| BDRV_CHILD_PRIMARY
,
857 blk
->perm
, blk
->shared_perm
,
859 if (blk
->root
== NULL
) {
863 notifier_list_notify(&blk
->insert_bs_notifiers
, blk
);
864 if (tgm
->throttle_state
) {
865 throttle_group_detach_aio_context(tgm
);
866 throttle_group_attach_aio_context(tgm
, bdrv_get_aio_context(bs
));
873 * Sets the permission bitmasks that the user of the BlockBackend needs.
875 int blk_set_perm(BlockBackend
*blk
, uint64_t perm
, uint64_t shared_perm
,
880 if (blk
->root
&& !blk
->disable_perm
) {
881 ret
= bdrv_child_try_set_perm(blk
->root
, perm
, shared_perm
, errp
);
888 blk
->shared_perm
= shared_perm
;
893 void blk_get_perm(BlockBackend
*blk
, uint64_t *perm
, uint64_t *shared_perm
)
896 *shared_perm
= blk
->shared_perm
;
900 * Attach device model @dev to @blk.
901 * Return 0 on success, -EBUSY when a device model is attached already.
903 int blk_attach_dev(BlockBackend
*blk
, DeviceState
*dev
)
909 /* While migration is still incoming, we don't need to apply the
910 * permissions of guest device BlockBackends. We might still have a block
911 * job or NBD server writing to the image for storage migration. */
912 if (runstate_check(RUN_STATE_INMIGRATE
)) {
913 blk
->disable_perm
= true;
918 blk_iostatus_reset(blk
);
924 * Detach device model @dev from @blk.
925 * @dev must be currently attached to @blk.
927 void blk_detach_dev(BlockBackend
*blk
, DeviceState
*dev
)
929 assert(blk
->dev
== dev
);
932 blk
->dev_opaque
= NULL
;
933 blk
->guest_block_size
= 512;
934 blk_set_perm(blk
, 0, BLK_PERM_ALL
, &error_abort
);
939 * Return the device model attached to @blk if any, else null.
941 DeviceState
*blk_get_attached_dev(BlockBackend
*blk
)
946 /* Return the qdev ID, or if no ID is assigned the QOM path, of the block
947 * device attached to the BlockBackend. */
948 char *blk_get_attached_dev_id(BlockBackend
*blk
)
950 DeviceState
*dev
= blk
->dev
;
954 } else if (dev
->id
) {
955 return g_strdup(dev
->id
);
958 return object_get_canonical_path(OBJECT(dev
)) ?: g_strdup("");
962 * Return the BlockBackend which has the device model @dev attached if it
965 * @dev must not be null.
967 BlockBackend
*blk_by_dev(void *dev
)
969 BlockBackend
*blk
= NULL
;
972 while ((blk
= blk_all_next(blk
)) != NULL
) {
973 if (blk
->dev
== dev
) {
981 * Set @blk's device model callbacks to @ops.
982 * @opaque is the opaque argument to pass to the callbacks.
983 * This is for use by device models.
985 void blk_set_dev_ops(BlockBackend
*blk
, const BlockDevOps
*ops
,
989 blk
->dev_opaque
= opaque
;
991 /* Are we currently quiesced? Should we enforce this right now? */
992 if (blk
->quiesce_counter
&& ops
->drained_begin
) {
993 ops
->drained_begin(opaque
);
998 * Notify @blk's attached device model of media change.
1000 * If @load is true, notify of media load. This action can fail, meaning that
1001 * the medium cannot be loaded. @errp is set then.
1003 * If @load is false, notify of media eject. This can never fail.
1005 * Also send DEVICE_TRAY_MOVED events as appropriate.
1007 void blk_dev_change_media_cb(BlockBackend
*blk
, bool load
, Error
**errp
)
1009 if (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
) {
1010 bool tray_was_open
, tray_is_open
;
1011 Error
*local_err
= NULL
;
1013 tray_was_open
= blk_dev_is_tray_open(blk
);
1014 blk
->dev_ops
->change_media_cb(blk
->dev_opaque
, load
, &local_err
);
1016 assert(load
== true);
1017 error_propagate(errp
, local_err
);
1020 tray_is_open
= blk_dev_is_tray_open(blk
);
1022 if (tray_was_open
!= tray_is_open
) {
1023 char *id
= blk_get_attached_dev_id(blk
);
1024 qapi_event_send_device_tray_moved(blk_name(blk
), id
, tray_is_open
);
1030 static void blk_root_change_media(BdrvChild
*child
, bool load
)
1032 blk_dev_change_media_cb(child
->opaque
, load
, NULL
);
1036 * Does @blk's attached device model have removable media?
1037 * %true if no device model is attached.
1039 bool blk_dev_has_removable_media(BlockBackend
*blk
)
1041 return !blk
->dev
|| (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
);
1045 * Does @blk's attached device model have a tray?
1047 bool blk_dev_has_tray(BlockBackend
*blk
)
1049 return blk
->dev_ops
&& blk
->dev_ops
->is_tray_open
;
1053 * Notify @blk's attached device model of a media eject request.
1054 * If @force is true, the medium is about to be yanked out forcefully.
1056 void blk_dev_eject_request(BlockBackend
*blk
, bool force
)
1058 if (blk
->dev_ops
&& blk
->dev_ops
->eject_request_cb
) {
1059 blk
->dev_ops
->eject_request_cb(blk
->dev_opaque
, force
);
1064 * Does @blk's attached device model have a tray, and is it open?
1066 bool blk_dev_is_tray_open(BlockBackend
*blk
)
1068 if (blk_dev_has_tray(blk
)) {
1069 return blk
->dev_ops
->is_tray_open(blk
->dev_opaque
);
1075 * Does @blk's attached device model have the medium locked?
1076 * %false if the device model has no such lock.
1078 bool blk_dev_is_medium_locked(BlockBackend
*blk
)
1080 if (blk
->dev_ops
&& blk
->dev_ops
->is_medium_locked
) {
1081 return blk
->dev_ops
->is_medium_locked(blk
->dev_opaque
);
1087 * Notify @blk's attached device model of a backend size change.
1089 static void blk_root_resize(BdrvChild
*child
)
1091 BlockBackend
*blk
= child
->opaque
;
1093 if (blk
->dev_ops
&& blk
->dev_ops
->resize_cb
) {
1094 blk
->dev_ops
->resize_cb(blk
->dev_opaque
);
1098 void blk_iostatus_enable(BlockBackend
*blk
)
1100 blk
->iostatus_enabled
= true;
1101 blk
->iostatus
= BLOCK_DEVICE_IO_STATUS_OK
;
1104 /* The I/O status is only enabled if the drive explicitly
1105 * enables it _and_ the VM is configured to stop on errors */
1106 bool blk_iostatus_is_enabled(const BlockBackend
*blk
)
1108 return (blk
->iostatus_enabled
&&
1109 (blk
->on_write_error
== BLOCKDEV_ON_ERROR_ENOSPC
||
1110 blk
->on_write_error
== BLOCKDEV_ON_ERROR_STOP
||
1111 blk
->on_read_error
== BLOCKDEV_ON_ERROR_STOP
));
1114 BlockDeviceIoStatus
blk_iostatus(const BlockBackend
*blk
)
1116 return blk
->iostatus
;
1119 void blk_iostatus_disable(BlockBackend
*blk
)
1121 blk
->iostatus_enabled
= false;
1124 void blk_iostatus_reset(BlockBackend
*blk
)
1126 if (blk_iostatus_is_enabled(blk
)) {
1127 blk
->iostatus
= BLOCK_DEVICE_IO_STATUS_OK
;
1131 void blk_iostatus_set_err(BlockBackend
*blk
, int error
)
1133 assert(blk_iostatus_is_enabled(blk
));
1134 if (blk
->iostatus
== BLOCK_DEVICE_IO_STATUS_OK
) {
1135 blk
->iostatus
= error
== ENOSPC
? BLOCK_DEVICE_IO_STATUS_NOSPACE
:
1136 BLOCK_DEVICE_IO_STATUS_FAILED
;
1140 void blk_set_allow_write_beyond_eof(BlockBackend
*blk
, bool allow
)
1142 blk
->allow_write_beyond_eof
= allow
;
1145 void blk_set_allow_aio_context_change(BlockBackend
*blk
, bool allow
)
1147 blk
->allow_aio_context_change
= allow
;
1150 void blk_set_disable_request_queuing(BlockBackend
*blk
, bool disable
)
1152 blk
->disable_request_queuing
= disable
;
1155 static int blk_check_byte_request(BlockBackend
*blk
, int64_t offset
,
1160 if (size
> INT_MAX
) {
1164 if (!blk_is_available(blk
)) {
1172 if (!blk
->allow_write_beyond_eof
) {
1173 len
= blk_getlength(blk
);
1178 if (offset
> len
|| len
- offset
< size
) {
1186 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1187 static void coroutine_fn
blk_wait_while_drained(BlockBackend
*blk
)
1189 assert(blk
->in_flight
> 0);
1191 if (blk
->quiesce_counter
&& !blk
->disable_request_queuing
) {
1192 blk_dec_in_flight(blk
);
1193 qemu_co_queue_wait(&blk
->queued_requests
, NULL
);
1194 blk_inc_in_flight(blk
);
1198 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1199 static int coroutine_fn
1200 blk_do_preadv(BlockBackend
*blk
, int64_t offset
, unsigned int bytes
,
1201 QEMUIOVector
*qiov
, BdrvRequestFlags flags
)
1204 BlockDriverState
*bs
;
1206 blk_wait_while_drained(blk
);
1208 /* Call blk_bs() only after waiting, the graph may have changed */
1210 trace_blk_co_preadv(blk
, bs
, offset
, bytes
, flags
);
1212 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1217 bdrv_inc_in_flight(bs
);
1219 /* throttling disk I/O */
1220 if (blk
->public.throttle_group_member
.throttle_state
) {
1221 throttle_group_co_io_limits_intercept(&blk
->public.throttle_group_member
,
1225 ret
= bdrv_co_preadv(blk
->root
, offset
, bytes
, qiov
, flags
);
1226 bdrv_dec_in_flight(bs
);
1230 int coroutine_fn
blk_co_preadv(BlockBackend
*blk
, int64_t offset
,
1231 unsigned int bytes
, QEMUIOVector
*qiov
,
1232 BdrvRequestFlags flags
)
1236 blk_inc_in_flight(blk
);
1237 ret
= blk_do_preadv(blk
, offset
, bytes
, qiov
, flags
);
1238 blk_dec_in_flight(blk
);
1243 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1244 static int coroutine_fn
1245 blk_do_pwritev_part(BlockBackend
*blk
, int64_t offset
, unsigned int bytes
,
1246 QEMUIOVector
*qiov
, size_t qiov_offset
,
1247 BdrvRequestFlags flags
)
1250 BlockDriverState
*bs
;
1252 blk_wait_while_drained(blk
);
1254 /* Call blk_bs() only after waiting, the graph may have changed */
1256 trace_blk_co_pwritev(blk
, bs
, offset
, bytes
, flags
);
1258 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1263 bdrv_inc_in_flight(bs
);
1264 /* throttling disk I/O */
1265 if (blk
->public.throttle_group_member
.throttle_state
) {
1266 throttle_group_co_io_limits_intercept(&blk
->public.throttle_group_member
,
1270 if (!blk
->enable_write_cache
) {
1271 flags
|= BDRV_REQ_FUA
;
1274 ret
= bdrv_co_pwritev_part(blk
->root
, offset
, bytes
, qiov
, qiov_offset
,
1276 bdrv_dec_in_flight(bs
);
1280 int coroutine_fn
blk_co_pwritev_part(BlockBackend
*blk
, int64_t offset
,
1282 QEMUIOVector
*qiov
, size_t qiov_offset
,
1283 BdrvRequestFlags flags
)
1287 blk_inc_in_flight(blk
);
1288 ret
= blk_do_pwritev_part(blk
, offset
, bytes
, qiov
, qiov_offset
, flags
);
1289 blk_dec_in_flight(blk
);
1294 int coroutine_fn
blk_co_pwritev(BlockBackend
*blk
, int64_t offset
,
1295 unsigned int bytes
, QEMUIOVector
*qiov
,
1296 BdrvRequestFlags flags
)
1298 return blk_co_pwritev_part(blk
, offset
, bytes
, qiov
, 0, flags
);
1301 typedef struct BlkRwCo
{
1306 BdrvRequestFlags flags
;
1309 static void blk_read_entry(void *opaque
)
1311 BlkRwCo
*rwco
= opaque
;
1312 QEMUIOVector
*qiov
= rwco
->iobuf
;
1314 rwco
->ret
= blk_do_preadv(rwco
->blk
, rwco
->offset
, qiov
->size
,
1319 static void blk_write_entry(void *opaque
)
1321 BlkRwCo
*rwco
= opaque
;
1322 QEMUIOVector
*qiov
= rwco
->iobuf
;
1324 rwco
->ret
= blk_do_pwritev_part(rwco
->blk
, rwco
->offset
, qiov
->size
,
1325 qiov
, 0, rwco
->flags
);
1329 static int blk_prw(BlockBackend
*blk
, int64_t offset
, uint8_t *buf
,
1330 int64_t bytes
, CoroutineEntry co_entry
,
1331 BdrvRequestFlags flags
)
1333 QEMUIOVector qiov
= QEMU_IOVEC_INIT_BUF(qiov
, buf
, bytes
);
1342 blk_inc_in_flight(blk
);
1343 if (qemu_in_coroutine()) {
1344 /* Fast-path if already in coroutine context */
1347 Coroutine
*co
= qemu_coroutine_create(co_entry
, &rwco
);
1348 bdrv_coroutine_enter(blk_bs(blk
), co
);
1349 BDRV_POLL_WHILE(blk_bs(blk
), rwco
.ret
== NOT_DONE
);
1351 blk_dec_in_flight(blk
);
1356 int blk_pwrite_zeroes(BlockBackend
*blk
, int64_t offset
,
1357 int bytes
, BdrvRequestFlags flags
)
1359 return blk_prw(blk
, offset
, NULL
, bytes
, blk_write_entry
,
1360 flags
| BDRV_REQ_ZERO_WRITE
);
1363 int blk_make_zero(BlockBackend
*blk
, BdrvRequestFlags flags
)
1365 return bdrv_make_zero(blk
->root
, flags
);
1368 void blk_inc_in_flight(BlockBackend
*blk
)
1370 qatomic_inc(&blk
->in_flight
);
1373 void blk_dec_in_flight(BlockBackend
*blk
)
1375 qatomic_dec(&blk
->in_flight
);
1379 static void error_callback_bh(void *opaque
)
1381 struct BlockBackendAIOCB
*acb
= opaque
;
1383 blk_dec_in_flight(acb
->blk
);
1384 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
1385 qemu_aio_unref(acb
);
1388 BlockAIOCB
*blk_abort_aio_request(BlockBackend
*blk
,
1389 BlockCompletionFunc
*cb
,
1390 void *opaque
, int ret
)
1392 struct BlockBackendAIOCB
*acb
;
1394 blk_inc_in_flight(blk
);
1395 acb
= blk_aio_get(&block_backend_aiocb_info
, blk
, cb
, opaque
);
1399 replay_bh_schedule_oneshot_event(blk_get_aio_context(blk
),
1400 error_callback_bh
, acb
);
1401 return &acb
->common
;
1404 typedef struct BlkAioEmAIOCB
{
1411 static AioContext
*blk_aio_em_aiocb_get_aio_context(BlockAIOCB
*acb_
)
1413 BlkAioEmAIOCB
*acb
= container_of(acb_
, BlkAioEmAIOCB
, common
);
1415 return blk_get_aio_context(acb
->rwco
.blk
);
1418 static const AIOCBInfo blk_aio_em_aiocb_info
= {
1419 .aiocb_size
= sizeof(BlkAioEmAIOCB
),
1420 .get_aio_context
= blk_aio_em_aiocb_get_aio_context
,
1423 static void blk_aio_complete(BlkAioEmAIOCB
*acb
)
1425 if (acb
->has_returned
) {
1426 acb
->common
.cb(acb
->common
.opaque
, acb
->rwco
.ret
);
1427 blk_dec_in_flight(acb
->rwco
.blk
);
1428 qemu_aio_unref(acb
);
1432 static void blk_aio_complete_bh(void *opaque
)
1434 BlkAioEmAIOCB
*acb
= opaque
;
1435 assert(acb
->has_returned
);
1436 blk_aio_complete(acb
);
1439 static BlockAIOCB
*blk_aio_prwv(BlockBackend
*blk
, int64_t offset
, int bytes
,
1440 void *iobuf
, CoroutineEntry co_entry
,
1441 BdrvRequestFlags flags
,
1442 BlockCompletionFunc
*cb
, void *opaque
)
1447 blk_inc_in_flight(blk
);
1448 acb
= blk_aio_get(&blk_aio_em_aiocb_info
, blk
, cb
, opaque
);
1449 acb
->rwco
= (BlkRwCo
) {
1457 acb
->has_returned
= false;
1459 co
= qemu_coroutine_create(co_entry
, acb
);
1460 bdrv_coroutine_enter(blk_bs(blk
), co
);
1462 acb
->has_returned
= true;
1463 if (acb
->rwco
.ret
!= NOT_DONE
) {
1464 replay_bh_schedule_oneshot_event(blk_get_aio_context(blk
),
1465 blk_aio_complete_bh
, acb
);
1468 return &acb
->common
;
1471 static void blk_aio_read_entry(void *opaque
)
1473 BlkAioEmAIOCB
*acb
= opaque
;
1474 BlkRwCo
*rwco
= &acb
->rwco
;
1475 QEMUIOVector
*qiov
= rwco
->iobuf
;
1477 assert(qiov
->size
== acb
->bytes
);
1478 rwco
->ret
= blk_do_preadv(rwco
->blk
, rwco
->offset
, acb
->bytes
,
1480 blk_aio_complete(acb
);
1483 static void blk_aio_write_entry(void *opaque
)
1485 BlkAioEmAIOCB
*acb
= opaque
;
1486 BlkRwCo
*rwco
= &acb
->rwco
;
1487 QEMUIOVector
*qiov
= rwco
->iobuf
;
1489 assert(!qiov
|| qiov
->size
== acb
->bytes
);
1490 rwco
->ret
= blk_do_pwritev_part(rwco
->blk
, rwco
->offset
, acb
->bytes
,
1491 qiov
, 0, rwco
->flags
);
1492 blk_aio_complete(acb
);
1495 BlockAIOCB
*blk_aio_pwrite_zeroes(BlockBackend
*blk
, int64_t offset
,
1496 int count
, BdrvRequestFlags flags
,
1497 BlockCompletionFunc
*cb
, void *opaque
)
1499 return blk_aio_prwv(blk
, offset
, count
, NULL
, blk_aio_write_entry
,
1500 flags
| BDRV_REQ_ZERO_WRITE
, cb
, opaque
);
1503 int blk_pread(BlockBackend
*blk
, int64_t offset
, void *buf
, int count
)
1505 int ret
= blk_prw(blk
, offset
, buf
, count
, blk_read_entry
, 0);
1512 int blk_pwrite(BlockBackend
*blk
, int64_t offset
, const void *buf
, int count
,
1513 BdrvRequestFlags flags
)
1515 int ret
= blk_prw(blk
, offset
, (void *) buf
, count
, blk_write_entry
,
1523 int64_t blk_getlength(BlockBackend
*blk
)
1525 if (!blk_is_available(blk
)) {
1529 return bdrv_getlength(blk_bs(blk
));
1532 void blk_get_geometry(BlockBackend
*blk
, uint64_t *nb_sectors_ptr
)
1535 *nb_sectors_ptr
= 0;
1537 bdrv_get_geometry(blk_bs(blk
), nb_sectors_ptr
);
1541 int64_t blk_nb_sectors(BlockBackend
*blk
)
1543 if (!blk_is_available(blk
)) {
1547 return bdrv_nb_sectors(blk_bs(blk
));
1550 BlockAIOCB
*blk_aio_preadv(BlockBackend
*blk
, int64_t offset
,
1551 QEMUIOVector
*qiov
, BdrvRequestFlags flags
,
1552 BlockCompletionFunc
*cb
, void *opaque
)
1554 return blk_aio_prwv(blk
, offset
, qiov
->size
, qiov
,
1555 blk_aio_read_entry
, flags
, cb
, opaque
);
1558 BlockAIOCB
*blk_aio_pwritev(BlockBackend
*blk
, int64_t offset
,
1559 QEMUIOVector
*qiov
, BdrvRequestFlags flags
,
1560 BlockCompletionFunc
*cb
, void *opaque
)
1562 return blk_aio_prwv(blk
, offset
, qiov
->size
, qiov
,
1563 blk_aio_write_entry
, flags
, cb
, opaque
);
1566 void blk_aio_cancel(BlockAIOCB
*acb
)
1568 bdrv_aio_cancel(acb
);
1571 void blk_aio_cancel_async(BlockAIOCB
*acb
)
1573 bdrv_aio_cancel_async(acb
);
1576 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1577 static int coroutine_fn
1578 blk_do_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
)
1580 blk_wait_while_drained(blk
);
1582 if (!blk_is_available(blk
)) {
1586 return bdrv_co_ioctl(blk_bs(blk
), req
, buf
);
1589 static void blk_ioctl_entry(void *opaque
)
1591 BlkRwCo
*rwco
= opaque
;
1592 QEMUIOVector
*qiov
= rwco
->iobuf
;
1594 rwco
->ret
= blk_do_ioctl(rwco
->blk
, rwco
->offset
, qiov
->iov
[0].iov_base
);
1598 int blk_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
)
1600 return blk_prw(blk
, req
, buf
, 0, blk_ioctl_entry
, 0);
1603 static void blk_aio_ioctl_entry(void *opaque
)
1605 BlkAioEmAIOCB
*acb
= opaque
;
1606 BlkRwCo
*rwco
= &acb
->rwco
;
1608 rwco
->ret
= blk_do_ioctl(rwco
->blk
, rwco
->offset
, rwco
->iobuf
);
1610 blk_aio_complete(acb
);
1613 BlockAIOCB
*blk_aio_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
,
1614 BlockCompletionFunc
*cb
, void *opaque
)
1616 return blk_aio_prwv(blk
, req
, 0, buf
, blk_aio_ioctl_entry
, 0, cb
, opaque
);
1619 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1620 static int coroutine_fn
1621 blk_do_pdiscard(BlockBackend
*blk
, int64_t offset
, int bytes
)
1625 blk_wait_while_drained(blk
);
1627 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1632 return bdrv_co_pdiscard(blk
->root
, offset
, bytes
);
1635 static void blk_aio_pdiscard_entry(void *opaque
)
1637 BlkAioEmAIOCB
*acb
= opaque
;
1638 BlkRwCo
*rwco
= &acb
->rwco
;
1640 rwco
->ret
= blk_do_pdiscard(rwco
->blk
, rwco
->offset
, acb
->bytes
);
1641 blk_aio_complete(acb
);
1644 BlockAIOCB
*blk_aio_pdiscard(BlockBackend
*blk
,
1645 int64_t offset
, int bytes
,
1646 BlockCompletionFunc
*cb
, void *opaque
)
1648 return blk_aio_prwv(blk
, offset
, bytes
, NULL
, blk_aio_pdiscard_entry
, 0,
1652 int coroutine_fn
blk_co_pdiscard(BlockBackend
*blk
, int64_t offset
, int bytes
)
1656 blk_inc_in_flight(blk
);
1657 ret
= blk_do_pdiscard(blk
, offset
, bytes
);
1658 blk_dec_in_flight(blk
);
1663 static void blk_pdiscard_entry(void *opaque
)
1665 BlkRwCo
*rwco
= opaque
;
1666 QEMUIOVector
*qiov
= rwco
->iobuf
;
1668 rwco
->ret
= blk_do_pdiscard(rwco
->blk
, rwco
->offset
, qiov
->size
);
1672 int blk_pdiscard(BlockBackend
*blk
, int64_t offset
, int bytes
)
1674 return blk_prw(blk
, offset
, NULL
, bytes
, blk_pdiscard_entry
, 0);
1677 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1678 static int coroutine_fn
blk_do_flush(BlockBackend
*blk
)
1680 blk_wait_while_drained(blk
);
1682 if (!blk_is_available(blk
)) {
1686 return bdrv_co_flush(blk_bs(blk
));
1689 static void blk_aio_flush_entry(void *opaque
)
1691 BlkAioEmAIOCB
*acb
= opaque
;
1692 BlkRwCo
*rwco
= &acb
->rwco
;
1694 rwco
->ret
= blk_do_flush(rwco
->blk
);
1695 blk_aio_complete(acb
);
1698 BlockAIOCB
*blk_aio_flush(BlockBackend
*blk
,
1699 BlockCompletionFunc
*cb
, void *opaque
)
1701 return blk_aio_prwv(blk
, 0, 0, NULL
, blk_aio_flush_entry
, 0, cb
, opaque
);
1704 int coroutine_fn
blk_co_flush(BlockBackend
*blk
)
1708 blk_inc_in_flight(blk
);
1709 ret
= blk_do_flush(blk
);
1710 blk_dec_in_flight(blk
);
1715 static void blk_flush_entry(void *opaque
)
1717 BlkRwCo
*rwco
= opaque
;
1718 rwco
->ret
= blk_do_flush(rwco
->blk
);
1722 int blk_flush(BlockBackend
*blk
)
1724 return blk_prw(blk
, 0, NULL
, 0, blk_flush_entry
, 0);
1727 void blk_drain(BlockBackend
*blk
)
1729 BlockDriverState
*bs
= blk_bs(blk
);
1732 bdrv_drained_begin(bs
);
1735 /* We may have -ENOMEDIUM completions in flight */
1736 AIO_WAIT_WHILE(blk_get_aio_context(blk
),
1737 qatomic_mb_read(&blk
->in_flight
) > 0);
1740 bdrv_drained_end(bs
);
1744 void blk_drain_all(void)
1746 BlockBackend
*blk
= NULL
;
1748 bdrv_drain_all_begin();
1750 while ((blk
= blk_all_next(blk
)) != NULL
) {
1751 AioContext
*ctx
= blk_get_aio_context(blk
);
1753 aio_context_acquire(ctx
);
1755 /* We may have -ENOMEDIUM completions in flight */
1756 AIO_WAIT_WHILE(ctx
, qatomic_mb_read(&blk
->in_flight
) > 0);
1758 aio_context_release(ctx
);
1761 bdrv_drain_all_end();
1764 void blk_set_on_error(BlockBackend
*blk
, BlockdevOnError on_read_error
,
1765 BlockdevOnError on_write_error
)
1767 blk
->on_read_error
= on_read_error
;
1768 blk
->on_write_error
= on_write_error
;
1771 BlockdevOnError
blk_get_on_error(BlockBackend
*blk
, bool is_read
)
1773 return is_read
? blk
->on_read_error
: blk
->on_write_error
;
1776 BlockErrorAction
blk_get_error_action(BlockBackend
*blk
, bool is_read
,
1779 BlockdevOnError on_err
= blk_get_on_error(blk
, is_read
);
1782 case BLOCKDEV_ON_ERROR_ENOSPC
:
1783 return (error
== ENOSPC
) ?
1784 BLOCK_ERROR_ACTION_STOP
: BLOCK_ERROR_ACTION_REPORT
;
1785 case BLOCKDEV_ON_ERROR_STOP
:
1786 return BLOCK_ERROR_ACTION_STOP
;
1787 case BLOCKDEV_ON_ERROR_REPORT
:
1788 return BLOCK_ERROR_ACTION_REPORT
;
1789 case BLOCKDEV_ON_ERROR_IGNORE
:
1790 return BLOCK_ERROR_ACTION_IGNORE
;
1791 case BLOCKDEV_ON_ERROR_AUTO
:
1797 static void send_qmp_error_event(BlockBackend
*blk
,
1798 BlockErrorAction action
,
1799 bool is_read
, int error
)
1801 IoOperationType optype
;
1802 BlockDriverState
*bs
= blk_bs(blk
);
1804 optype
= is_read
? IO_OPERATION_TYPE_READ
: IO_OPERATION_TYPE_WRITE
;
1805 qapi_event_send_block_io_error(blk_name(blk
), !!bs
,
1806 bs
? bdrv_get_node_name(bs
) : NULL
, optype
,
1807 action
, blk_iostatus_is_enabled(blk
),
1808 error
== ENOSPC
, strerror(error
));
1811 /* This is done by device models because, while the block layer knows
1812 * about the error, it does not know whether an operation comes from
1813 * the device or the block layer (from a job, for example).
1815 void blk_error_action(BlockBackend
*blk
, BlockErrorAction action
,
1816 bool is_read
, int error
)
1820 if (action
== BLOCK_ERROR_ACTION_STOP
) {
1821 /* First set the iostatus, so that "info block" returns an iostatus
1822 * that matches the events raised so far (an additional error iostatus
1823 * is fine, but not a lost one).
1825 blk_iostatus_set_err(blk
, error
);
1827 /* Then raise the request to stop the VM and the event.
1828 * qemu_system_vmstop_request_prepare has two effects. First,
1829 * it ensures that the STOP event always comes after the
1830 * BLOCK_IO_ERROR event. Second, it ensures that even if management
1831 * can observe the STOP event and do a "cont" before the STOP
1832 * event is issued, the VM will not stop. In this case, vm_start()
1833 * also ensures that the STOP/RESUME pair of events is emitted.
1835 qemu_system_vmstop_request_prepare();
1836 send_qmp_error_event(blk
, action
, is_read
, error
);
1837 qemu_system_vmstop_request(RUN_STATE_IO_ERROR
);
1839 send_qmp_error_event(blk
, action
, is_read
, error
);
1844 * Returns true if the BlockBackend can support taking write permissions
1845 * (because its root node is not read-only).
1847 bool blk_supports_write_perm(BlockBackend
*blk
)
1849 BlockDriverState
*bs
= blk_bs(blk
);
1852 return !bdrv_is_read_only(bs
);
1854 return blk
->root_state
.open_flags
& BDRV_O_RDWR
;
1859 * Returns true if the BlockBackend can be written to in its current
1860 * configuration (i.e. if write permission have been requested)
1862 bool blk_is_writable(BlockBackend
*blk
)
1864 return blk
->perm
& BLK_PERM_WRITE
;
1867 bool blk_is_sg(BlockBackend
*blk
)
1869 BlockDriverState
*bs
= blk_bs(blk
);
1875 return bdrv_is_sg(bs
);
1878 bool blk_enable_write_cache(BlockBackend
*blk
)
1880 return blk
->enable_write_cache
;
1883 void blk_set_enable_write_cache(BlockBackend
*blk
, bool wce
)
1885 blk
->enable_write_cache
= wce
;
1888 void blk_invalidate_cache(BlockBackend
*blk
, Error
**errp
)
1890 BlockDriverState
*bs
= blk_bs(blk
);
1893 error_setg(errp
, "Device '%s' has no medium", blk
->name
);
1897 bdrv_invalidate_cache(bs
, errp
);
1900 bool blk_is_inserted(BlockBackend
*blk
)
1902 BlockDriverState
*bs
= blk_bs(blk
);
1904 return bs
&& bdrv_is_inserted(bs
);
1907 bool blk_is_available(BlockBackend
*blk
)
1909 return blk_is_inserted(blk
) && !blk_dev_is_tray_open(blk
);
1912 void blk_lock_medium(BlockBackend
*blk
, bool locked
)
1914 BlockDriverState
*bs
= blk_bs(blk
);
1917 bdrv_lock_medium(bs
, locked
);
1921 void blk_eject(BlockBackend
*blk
, bool eject_flag
)
1923 BlockDriverState
*bs
= blk_bs(blk
);
1927 bdrv_eject(bs
, eject_flag
);
1930 /* Whether or not we ejected on the backend,
1931 * the frontend experienced a tray event. */
1932 id
= blk_get_attached_dev_id(blk
);
1933 qapi_event_send_device_tray_moved(blk_name(blk
), id
,
1938 int blk_get_flags(BlockBackend
*blk
)
1940 BlockDriverState
*bs
= blk_bs(blk
);
1943 return bdrv_get_flags(bs
);
1945 return blk
->root_state
.open_flags
;
1949 /* Returns the minimum request alignment, in bytes; guaranteed nonzero */
1950 uint32_t blk_get_request_alignment(BlockBackend
*blk
)
1952 BlockDriverState
*bs
= blk_bs(blk
);
1953 return bs
? bs
->bl
.request_alignment
: BDRV_SECTOR_SIZE
;
1956 /* Returns the maximum transfer length, in bytes; guaranteed nonzero */
1957 uint32_t blk_get_max_transfer(BlockBackend
*blk
)
1959 BlockDriverState
*bs
= blk_bs(blk
);
1963 max
= bs
->bl
.max_transfer
;
1965 return MIN_NON_ZERO(max
, INT_MAX
);
1968 int blk_get_max_iov(BlockBackend
*blk
)
1970 return blk
->root
->bs
->bl
.max_iov
;
1973 void blk_set_guest_block_size(BlockBackend
*blk
, int align
)
1975 blk
->guest_block_size
= align
;
1978 void *blk_try_blockalign(BlockBackend
*blk
, size_t size
)
1980 return qemu_try_blockalign(blk
? blk_bs(blk
) : NULL
, size
);
1983 void *blk_blockalign(BlockBackend
*blk
, size_t size
)
1985 return qemu_blockalign(blk
? blk_bs(blk
) : NULL
, size
);
1988 bool blk_op_is_blocked(BlockBackend
*blk
, BlockOpType op
, Error
**errp
)
1990 BlockDriverState
*bs
= blk_bs(blk
);
1996 return bdrv_op_is_blocked(bs
, op
, errp
);
1999 void blk_op_unblock(BlockBackend
*blk
, BlockOpType op
, Error
*reason
)
2001 BlockDriverState
*bs
= blk_bs(blk
);
2004 bdrv_op_unblock(bs
, op
, reason
);
2008 void blk_op_block_all(BlockBackend
*blk
, Error
*reason
)
2010 BlockDriverState
*bs
= blk_bs(blk
);
2013 bdrv_op_block_all(bs
, reason
);
2017 void blk_op_unblock_all(BlockBackend
*blk
, Error
*reason
)
2019 BlockDriverState
*bs
= blk_bs(blk
);
2022 bdrv_op_unblock_all(bs
, reason
);
2026 AioContext
*blk_get_aio_context(BlockBackend
*blk
)
2028 BlockDriverState
*bs
= blk_bs(blk
);
2031 AioContext
*ctx
= bdrv_get_aio_context(blk_bs(blk
));
2032 assert(ctx
== blk
->ctx
);
2038 static AioContext
*blk_aiocb_get_aio_context(BlockAIOCB
*acb
)
2040 BlockBackendAIOCB
*blk_acb
= DO_UPCAST(BlockBackendAIOCB
, common
, acb
);
2041 return blk_get_aio_context(blk_acb
->blk
);
2044 static int blk_do_set_aio_context(BlockBackend
*blk
, AioContext
*new_context
,
2045 bool update_root_node
, Error
**errp
)
2047 BlockDriverState
*bs
= blk_bs(blk
);
2048 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
2052 if (update_root_node
) {
2053 ret
= bdrv_child_try_set_aio_context(bs
, new_context
, blk
->root
,
2059 if (tgm
->throttle_state
) {
2060 bdrv_drained_begin(bs
);
2061 throttle_group_detach_aio_context(tgm
);
2062 throttle_group_attach_aio_context(tgm
, new_context
);
2063 bdrv_drained_end(bs
);
2067 blk
->ctx
= new_context
;
2071 int blk_set_aio_context(BlockBackend
*blk
, AioContext
*new_context
,
2074 return blk_do_set_aio_context(blk
, new_context
, true, errp
);
2077 static bool blk_root_can_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
2078 GSList
**ignore
, Error
**errp
)
2080 BlockBackend
*blk
= child
->opaque
;
2082 if (blk
->allow_aio_context_change
) {
2086 /* Only manually created BlockBackends that are not attached to anything
2087 * can change their AioContext without updating their user. */
2088 if (!blk
->name
|| blk
->dev
) {
2089 /* TODO Add BB name/QOM path */
2090 error_setg(errp
, "Cannot change iothread of active block backend");
2097 static void blk_root_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
2100 BlockBackend
*blk
= child
->opaque
;
2101 blk_do_set_aio_context(blk
, ctx
, false, &error_abort
);
2104 void blk_add_aio_context_notifier(BlockBackend
*blk
,
2105 void (*attached_aio_context
)(AioContext
*new_context
, void *opaque
),
2106 void (*detach_aio_context
)(void *opaque
), void *opaque
)
2108 BlockBackendAioNotifier
*notifier
;
2109 BlockDriverState
*bs
= blk_bs(blk
);
2111 notifier
= g_new(BlockBackendAioNotifier
, 1);
2112 notifier
->attached_aio_context
= attached_aio_context
;
2113 notifier
->detach_aio_context
= detach_aio_context
;
2114 notifier
->opaque
= opaque
;
2115 QLIST_INSERT_HEAD(&blk
->aio_notifiers
, notifier
, list
);
2118 bdrv_add_aio_context_notifier(bs
, attached_aio_context
,
2119 detach_aio_context
, opaque
);
2123 void blk_remove_aio_context_notifier(BlockBackend
*blk
,
2124 void (*attached_aio_context
)(AioContext
*,
2126 void (*detach_aio_context
)(void *),
2129 BlockBackendAioNotifier
*notifier
;
2130 BlockDriverState
*bs
= blk_bs(blk
);
2133 bdrv_remove_aio_context_notifier(bs
, attached_aio_context
,
2134 detach_aio_context
, opaque
);
2137 QLIST_FOREACH(notifier
, &blk
->aio_notifiers
, list
) {
2138 if (notifier
->attached_aio_context
== attached_aio_context
&&
2139 notifier
->detach_aio_context
== detach_aio_context
&&
2140 notifier
->opaque
== opaque
) {
2141 QLIST_REMOVE(notifier
, list
);
2150 void blk_add_remove_bs_notifier(BlockBackend
*blk
, Notifier
*notify
)
2152 notifier_list_add(&blk
->remove_bs_notifiers
, notify
);
2155 void blk_add_insert_bs_notifier(BlockBackend
*blk
, Notifier
*notify
)
2157 notifier_list_add(&blk
->insert_bs_notifiers
, notify
);
2160 void blk_io_plug(BlockBackend
*blk
)
2162 BlockDriverState
*bs
= blk_bs(blk
);
2169 void blk_io_unplug(BlockBackend
*blk
)
2171 BlockDriverState
*bs
= blk_bs(blk
);
2178 BlockAcctStats
*blk_get_stats(BlockBackend
*blk
)
2183 void *blk_aio_get(const AIOCBInfo
*aiocb_info
, BlockBackend
*blk
,
2184 BlockCompletionFunc
*cb
, void *opaque
)
2186 return qemu_aio_get(aiocb_info
, blk_bs(blk
), cb
, opaque
);
2189 int coroutine_fn
blk_co_pwrite_zeroes(BlockBackend
*blk
, int64_t offset
,
2190 int bytes
, BdrvRequestFlags flags
)
2192 return blk_co_pwritev(blk
, offset
, bytes
, NULL
,
2193 flags
| BDRV_REQ_ZERO_WRITE
);
2196 int blk_pwrite_compressed(BlockBackend
*blk
, int64_t offset
, const void *buf
,
2199 return blk_prw(blk
, offset
, (void *) buf
, count
, blk_write_entry
,
2200 BDRV_REQ_WRITE_COMPRESSED
);
2203 int blk_truncate(BlockBackend
*blk
, int64_t offset
, bool exact
,
2204 PreallocMode prealloc
, BdrvRequestFlags flags
, Error
**errp
)
2206 if (!blk_is_available(blk
)) {
2207 error_setg(errp
, "No medium inserted");
2211 return bdrv_truncate(blk
->root
, offset
, exact
, prealloc
, flags
, errp
);
2214 int blk_save_vmstate(BlockBackend
*blk
, const uint8_t *buf
,
2215 int64_t pos
, int size
)
2219 if (!blk_is_available(blk
)) {
2223 ret
= bdrv_save_vmstate(blk_bs(blk
), buf
, pos
, size
);
2228 if (ret
== size
&& !blk
->enable_write_cache
) {
2229 ret
= bdrv_flush(blk_bs(blk
));
2232 return ret
< 0 ? ret
: size
;
2235 int blk_load_vmstate(BlockBackend
*blk
, uint8_t *buf
, int64_t pos
, int size
)
2237 if (!blk_is_available(blk
)) {
2241 return bdrv_load_vmstate(blk_bs(blk
), buf
, pos
, size
);
2244 int blk_probe_blocksizes(BlockBackend
*blk
, BlockSizes
*bsz
)
2246 if (!blk_is_available(blk
)) {
2250 return bdrv_probe_blocksizes(blk_bs(blk
), bsz
);
2253 int blk_probe_geometry(BlockBackend
*blk
, HDGeometry
*geo
)
2255 if (!blk_is_available(blk
)) {
2259 return bdrv_probe_geometry(blk_bs(blk
), geo
);
2263 * Updates the BlockBackendRootState object with data from the currently
2264 * attached BlockDriverState.
2266 void blk_update_root_state(BlockBackend
*blk
)
2270 blk
->root_state
.open_flags
= blk
->root
->bs
->open_flags
;
2271 blk
->root_state
.detect_zeroes
= blk
->root
->bs
->detect_zeroes
;
2275 * Returns the detect-zeroes setting to be used for bdrv_open() of a
2276 * BlockDriverState which is supposed to inherit the root state.
2278 bool blk_get_detect_zeroes_from_root_state(BlockBackend
*blk
)
2280 return blk
->root_state
.detect_zeroes
;
2284 * Returns the flags to be used for bdrv_open() of a BlockDriverState which is
2285 * supposed to inherit the root state.
2287 int blk_get_open_flags_from_root_state(BlockBackend
*blk
)
2289 return blk
->root_state
.open_flags
;
2292 BlockBackendRootState
*blk_get_root_state(BlockBackend
*blk
)
2294 return &blk
->root_state
;
2297 int blk_commit_all(void)
2299 BlockBackend
*blk
= NULL
;
2301 while ((blk
= blk_all_next(blk
)) != NULL
) {
2302 AioContext
*aio_context
= blk_get_aio_context(blk
);
2303 BlockDriverState
*unfiltered_bs
= bdrv_skip_filters(blk_bs(blk
));
2305 aio_context_acquire(aio_context
);
2306 if (blk_is_inserted(blk
) && bdrv_cow_child(unfiltered_bs
)) {
2309 ret
= bdrv_commit(unfiltered_bs
);
2311 aio_context_release(aio_context
);
2315 aio_context_release(aio_context
);
2321 /* throttling disk I/O limits */
2322 void blk_set_io_limits(BlockBackend
*blk
, ThrottleConfig
*cfg
)
2324 throttle_group_config(&blk
->public.throttle_group_member
, cfg
);
2327 void blk_io_limits_disable(BlockBackend
*blk
)
2329 BlockDriverState
*bs
= blk_bs(blk
);
2330 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
2331 assert(tgm
->throttle_state
);
2333 bdrv_drained_begin(bs
);
2335 throttle_group_unregister_tgm(tgm
);
2337 bdrv_drained_end(bs
);
2341 /* should be called before blk_set_io_limits if a limit is set */
2342 void blk_io_limits_enable(BlockBackend
*blk
, const char *group
)
2344 assert(!blk
->public.throttle_group_member
.throttle_state
);
2345 throttle_group_register_tgm(&blk
->public.throttle_group_member
,
2346 group
, blk_get_aio_context(blk
));
2349 void blk_io_limits_update_group(BlockBackend
*blk
, const char *group
)
2351 /* this BB is not part of any group */
2352 if (!blk
->public.throttle_group_member
.throttle_state
) {
2356 /* this BB is a part of the same group than the one we want */
2357 if (!g_strcmp0(throttle_group_get_name(&blk
->public.throttle_group_member
),
2362 /* need to change the group this bs belong to */
2363 blk_io_limits_disable(blk
);
2364 blk_io_limits_enable(blk
, group
);
2367 static void blk_root_drained_begin(BdrvChild
*child
)
2369 BlockBackend
*blk
= child
->opaque
;
2370 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
2372 if (++blk
->quiesce_counter
== 1) {
2373 if (blk
->dev_ops
&& blk
->dev_ops
->drained_begin
) {
2374 blk
->dev_ops
->drained_begin(blk
->dev_opaque
);
2378 /* Note that blk->root may not be accessible here yet if we are just
2379 * attaching to a BlockDriverState that is drained. Use child instead. */
2381 if (qatomic_fetch_inc(&tgm
->io_limits_disabled
) == 0) {
2382 throttle_group_restart_tgm(tgm
);
2386 static bool blk_root_drained_poll(BdrvChild
*child
)
2388 BlockBackend
*blk
= child
->opaque
;
2390 assert(blk
->quiesce_counter
);
2392 if (blk
->dev_ops
&& blk
->dev_ops
->drained_poll
) {
2393 busy
= blk
->dev_ops
->drained_poll(blk
->dev_opaque
);
2395 return busy
|| !!blk
->in_flight
;
2398 static void blk_root_drained_end(BdrvChild
*child
, int *drained_end_counter
)
2400 BlockBackend
*blk
= child
->opaque
;
2401 assert(blk
->quiesce_counter
);
2403 assert(blk
->public.throttle_group_member
.io_limits_disabled
);
2404 qatomic_dec(&blk
->public.throttle_group_member
.io_limits_disabled
);
2406 if (--blk
->quiesce_counter
== 0) {
2407 if (blk
->dev_ops
&& blk
->dev_ops
->drained_end
) {
2408 blk
->dev_ops
->drained_end(blk
->dev_opaque
);
2410 while (qemu_co_enter_next(&blk
->queued_requests
, NULL
)) {
2411 /* Resume all queued requests */
2416 void blk_register_buf(BlockBackend
*blk
, void *host
, size_t size
)
2418 bdrv_register_buf(blk_bs(blk
), host
, size
);
2421 void blk_unregister_buf(BlockBackend
*blk
, void *host
)
2423 bdrv_unregister_buf(blk_bs(blk
), host
);
2426 int coroutine_fn
blk_co_copy_range(BlockBackend
*blk_in
, int64_t off_in
,
2427 BlockBackend
*blk_out
, int64_t off_out
,
2428 int bytes
, BdrvRequestFlags read_flags
,
2429 BdrvRequestFlags write_flags
)
2432 r
= blk_check_byte_request(blk_in
, off_in
, bytes
);
2436 r
= blk_check_byte_request(blk_out
, off_out
, bytes
);
2440 return bdrv_co_copy_range(blk_in
->root
, off_in
,
2441 blk_out
->root
, off_out
,
2442 bytes
, read_flags
, write_flags
);
2445 const BdrvChild
*blk_root(BlockBackend
*blk
)
2450 int blk_make_empty(BlockBackend
*blk
, Error
**errp
)
2452 if (!blk_is_available(blk
)) {
2453 error_setg(errp
, "No medium inserted");
2457 return bdrv_make_empty(blk
->root
, errp
);