4 * Copyright (C) 2014-2016 Red Hat, Inc.
7 * Markus Armbruster <armbru@redhat.com>,
9 * This work is licensed under the terms of the GNU LGPL, version 2.1
10 * or later. See the COPYING.LIB file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "sysemu/block-backend.h"
15 #include "block/block_int.h"
16 #include "block/blockjob.h"
17 #include "block/coroutines.h"
18 #include "block/throttle-groups.h"
19 #include "hw/qdev-core.h"
20 #include "sysemu/blockdev.h"
21 #include "sysemu/runstate.h"
22 #include "sysemu/replay.h"
23 #include "qapi/error.h"
24 #include "qapi/qapi-events-block.h"
26 #include "qemu/main-loop.h"
27 #include "qemu/option.h"
29 #include "migration/misc.h"
31 /* Number of coroutines to reserve per attached device model */
32 #define COROUTINE_POOL_RESERVATION 64
34 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
36 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(BdrvChildRole role
, bool parent_is_format
,
124 int *child_flags
, QDict
*child_options
,
125 int parent_flags
, QDict
*parent_options
)
127 /* We're not supposed to call this function for root nodes */
130 static void blk_root_drained_begin(BdrvChild
*child
);
131 static bool blk_root_drained_poll(BdrvChild
*child
);
132 static void blk_root_drained_end(BdrvChild
*child
, int *drained_end_counter
);
134 static void blk_root_change_media(BdrvChild
*child
, bool load
);
135 static void blk_root_resize(BdrvChild
*child
);
137 static bool blk_root_can_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
138 GSList
**ignore
, Error
**errp
);
139 static void blk_root_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
142 static char *blk_root_get_parent_desc(BdrvChild
*child
)
144 BlockBackend
*blk
= child
->opaque
;
145 g_autofree
char *dev_id
= NULL
;
148 return g_strdup_printf("block device '%s'", blk
->name
);
151 dev_id
= blk_get_attached_dev_id(blk
);
153 return g_strdup_printf("block device '%s'", dev_id
);
155 /* TODO Callback into the BB owner for something more detailed */
156 return g_strdup("an unnamed 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
, bool 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 AioContext
*blk_root_get_parent_aio_context(BdrvChild
*c
)
302 BlockBackend
*blk
= c
->opaque
;
304 return blk_get_aio_context(blk
);
307 static const BdrvChildClass child_root
= {
308 .inherit_options
= blk_root_inherit_options
,
310 .change_media
= blk_root_change_media
,
311 .resize
= blk_root_resize
,
312 .get_name
= blk_root_get_name
,
313 .get_parent_desc
= blk_root_get_parent_desc
,
315 .drained_begin
= blk_root_drained_begin
,
316 .drained_poll
= blk_root_drained_poll
,
317 .drained_end
= blk_root_drained_end
,
319 .activate
= blk_root_activate
,
320 .inactivate
= blk_root_inactivate
,
322 .attach
= blk_root_attach
,
323 .detach
= blk_root_detach
,
325 .can_set_aio_ctx
= blk_root_can_set_aio_ctx
,
326 .set_aio_ctx
= blk_root_set_aio_ctx
,
328 .get_parent_aio_context
= blk_root_get_parent_aio_context
,
332 * Create a new BlockBackend with a reference count of one.
334 * @perm is a bitmasks of BLK_PERM_* constants which describes the permissions
335 * to request for a block driver node that is attached to this BlockBackend.
336 * @shared_perm is a bitmask which describes which permissions may be granted
337 * to other users of the attached node.
338 * Both sets of permissions can be changed later using blk_set_perm().
340 * Return the new BlockBackend on success, null on failure.
342 BlockBackend
*blk_new(AioContext
*ctx
, uint64_t perm
, uint64_t shared_perm
)
346 blk
= g_new0(BlockBackend
, 1);
350 blk
->shared_perm
= shared_perm
;
351 blk_set_enable_write_cache(blk
, true);
353 blk
->on_read_error
= BLOCKDEV_ON_ERROR_REPORT
;
354 blk
->on_write_error
= BLOCKDEV_ON_ERROR_ENOSPC
;
356 block_acct_init(&blk
->stats
);
358 qemu_co_queue_init(&blk
->queued_requests
);
359 notifier_list_init(&blk
->remove_bs_notifiers
);
360 notifier_list_init(&blk
->insert_bs_notifiers
);
361 QLIST_INIT(&blk
->aio_notifiers
);
363 QTAILQ_INSERT_TAIL(&block_backends
, blk
, link
);
368 * Create a new BlockBackend connected to an existing BlockDriverState.
370 * @perm is a bitmasks of BLK_PERM_* constants which describes the
371 * permissions to request for @bs that is attached to this
372 * BlockBackend. @shared_perm is a bitmask which describes which
373 * permissions may be granted to other users of the attached node.
374 * Both sets of permissions can be changed later using blk_set_perm().
376 * Return the new BlockBackend on success, null on failure.
378 BlockBackend
*blk_new_with_bs(BlockDriverState
*bs
, uint64_t perm
,
379 uint64_t shared_perm
, Error
**errp
)
381 BlockBackend
*blk
= blk_new(bdrv_get_aio_context(bs
), perm
, shared_perm
);
383 if (blk_insert_bs(blk
, bs
, errp
) < 0) {
391 * Creates a new BlockBackend, opens a new BlockDriverState, and connects both.
392 * The new BlockBackend is in the main AioContext.
394 * Just as with bdrv_open(), after having called this function the reference to
395 * @options belongs to the block layer (even on failure).
397 * TODO: Remove @filename and @flags; it should be possible to specify a whole
398 * BDS tree just by specifying the @options QDict (or @reference,
399 * alternatively). At the time of adding this function, this is not possible,
400 * though, so callers of this function have to be able to specify @filename and
403 BlockBackend
*blk_new_open(const char *filename
, const char *reference
,
404 QDict
*options
, int flags
, Error
**errp
)
407 BlockDriverState
*bs
;
409 uint64_t shared
= BLK_PERM_ALL
;
412 * blk_new_open() is mainly used in .bdrv_create implementations and the
413 * tools where sharing isn't a major concern because the BDS stays private
414 * and the file is generally not supposed to be used by a second process,
415 * so we just request permission according to the flags.
417 * The exceptions are xen_disk and blockdev_init(); in these cases, the
418 * caller of blk_new_open() doesn't make use of the permissions, but they
419 * shouldn't hurt either. We can still share everything here because the
420 * guest devices will add their own blockers if they can't share.
422 if ((flags
& BDRV_O_NO_IO
) == 0) {
423 perm
|= BLK_PERM_CONSISTENT_READ
;
424 if (flags
& BDRV_O_RDWR
) {
425 perm
|= BLK_PERM_WRITE
;
428 if (flags
& BDRV_O_RESIZE
) {
429 perm
|= BLK_PERM_RESIZE
;
431 if (flags
& BDRV_O_NO_SHARE
) {
432 shared
= BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
;
435 blk
= blk_new(qemu_get_aio_context(), perm
, shared
);
436 bs
= bdrv_open(filename
, reference
, options
, flags
, errp
);
442 blk
->root
= bdrv_root_attach_child(bs
, "root", &child_root
,
443 BDRV_CHILD_FILTERED
| BDRV_CHILD_PRIMARY
,
444 perm
, shared
, blk
, errp
);
453 static void blk_delete(BlockBackend
*blk
)
455 assert(!blk
->refcnt
);
458 if (blk
->public.throttle_group_member
.throttle_state
) {
459 blk_io_limits_disable(blk
);
465 qemu_del_vm_change_state_handler(blk
->vmsh
);
468 assert(QLIST_EMPTY(&blk
->remove_bs_notifiers
.notifiers
));
469 assert(QLIST_EMPTY(&blk
->insert_bs_notifiers
.notifiers
));
470 assert(QLIST_EMPTY(&blk
->aio_notifiers
));
471 QTAILQ_REMOVE(&block_backends
, blk
, link
);
472 drive_info_del(blk
->legacy_dinfo
);
473 block_acct_cleanup(&blk
->stats
);
477 static void drive_info_del(DriveInfo
*dinfo
)
482 qemu_opts_del(dinfo
->opts
);
486 int blk_get_refcnt(BlockBackend
*blk
)
488 return blk
? blk
->refcnt
: 0;
492 * Increment @blk's reference count.
493 * @blk must not be null.
495 void blk_ref(BlockBackend
*blk
)
497 assert(blk
->refcnt
> 0);
502 * Decrement @blk's reference count.
503 * If this drops it to zero, destroy @blk.
504 * For convenience, do nothing if @blk is null.
506 void blk_unref(BlockBackend
*blk
)
509 assert(blk
->refcnt
> 0);
510 if (blk
->refcnt
> 1) {
514 /* blk_drain() cannot resurrect blk, nobody held a reference */
515 assert(blk
->refcnt
== 1);
523 * Behaves similarly to blk_next() but iterates over all BlockBackends, even the
524 * ones which are hidden (i.e. are not referenced by the monitor).
526 BlockBackend
*blk_all_next(BlockBackend
*blk
)
528 return blk
? QTAILQ_NEXT(blk
, link
)
529 : QTAILQ_FIRST(&block_backends
);
532 void blk_remove_all_bs(void)
534 BlockBackend
*blk
= NULL
;
536 while ((blk
= blk_all_next(blk
)) != NULL
) {
537 AioContext
*ctx
= blk_get_aio_context(blk
);
539 aio_context_acquire(ctx
);
543 aio_context_release(ctx
);
548 * Return the monitor-owned BlockBackend after @blk.
549 * If @blk is null, return the first one.
550 * Else, return @blk's next sibling, which may be null.
552 * To iterate over all BlockBackends, do
553 * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
557 BlockBackend
*blk_next(BlockBackend
*blk
)
559 return blk
? QTAILQ_NEXT(blk
, monitor_link
)
560 : QTAILQ_FIRST(&monitor_block_backends
);
563 /* Iterates over all top-level BlockDriverStates, i.e. BDSs that are owned by
564 * the monitor or attached to a BlockBackend */
565 BlockDriverState
*bdrv_next(BdrvNextIterator
*it
)
567 BlockDriverState
*bs
, *old_bs
;
569 /* Must be called from the main loop */
570 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
572 /* First, return all root nodes of BlockBackends. In order to avoid
573 * returning a BDS twice when multiple BBs refer to it, we only return it
574 * if the BB is the first one in the parent list of the BDS. */
575 if (it
->phase
== BDRV_NEXT_BACKEND_ROOTS
) {
576 BlockBackend
*old_blk
= it
->blk
;
578 old_bs
= old_blk
? blk_bs(old_blk
) : NULL
;
581 it
->blk
= blk_all_next(it
->blk
);
582 bs
= it
->blk
? blk_bs(it
->blk
) : NULL
;
583 } while (it
->blk
&& (bs
== NULL
|| bdrv_first_blk(bs
) != it
->blk
));
595 it
->phase
= BDRV_NEXT_MONITOR_OWNED
;
600 /* Then return the monitor-owned BDSes without a BB attached. Ignore all
601 * BDSes that are attached to a BlockBackend here; they have been handled
602 * by the above block already */
604 it
->bs
= bdrv_next_monitor_owned(it
->bs
);
606 } while (bs
&& bdrv_has_blk(bs
));
616 static void bdrv_next_reset(BdrvNextIterator
*it
)
618 *it
= (BdrvNextIterator
) {
619 .phase
= BDRV_NEXT_BACKEND_ROOTS
,
623 BlockDriverState
*bdrv_first(BdrvNextIterator
*it
)
626 return bdrv_next(it
);
629 /* Must be called when aborting a bdrv_next() iteration before
630 * bdrv_next() returns NULL */
631 void bdrv_next_cleanup(BdrvNextIterator
*it
)
633 /* Must be called from the main loop */
634 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
636 if (it
->phase
== BDRV_NEXT_BACKEND_ROOTS
) {
638 bdrv_unref(blk_bs(it
->blk
));
649 * Add a BlockBackend into the list of backends referenced by the monitor, with
650 * the given @name acting as the handle for the monitor.
651 * Strictly for use by blockdev.c.
653 * @name must not be null or empty.
655 * Returns true on success and false on failure. In the latter case, an Error
656 * object is returned through @errp.
658 bool monitor_add_blk(BlockBackend
*blk
, const char *name
, Error
**errp
)
661 assert(name
&& name
[0]);
663 if (!id_wellformed(name
)) {
664 error_setg(errp
, "Invalid device name");
667 if (blk_by_name(name
)) {
668 error_setg(errp
, "Device with id '%s' already exists", name
);
671 if (bdrv_find_node(name
)) {
673 "Device name '%s' conflicts with an existing node name",
678 blk
->name
= g_strdup(name
);
679 QTAILQ_INSERT_TAIL(&monitor_block_backends
, blk
, monitor_link
);
684 * Remove a BlockBackend from the list of backends referenced by the monitor.
685 * Strictly for use by blockdev.c.
687 void monitor_remove_blk(BlockBackend
*blk
)
693 QTAILQ_REMOVE(&monitor_block_backends
, blk
, monitor_link
);
699 * Return @blk's name, a non-null string.
700 * Returns an empty string iff @blk is not referenced by the monitor.
702 const char *blk_name(const BlockBackend
*blk
)
704 return blk
->name
?: "";
708 * Return the BlockBackend with name @name if it exists, else null.
709 * @name must not be null.
711 BlockBackend
*blk_by_name(const char *name
)
713 BlockBackend
*blk
= NULL
;
716 while ((blk
= blk_next(blk
)) != NULL
) {
717 if (!strcmp(name
, blk
->name
)) {
725 * Return the BlockDriverState attached to @blk if any, else null.
727 BlockDriverState
*blk_bs(BlockBackend
*blk
)
729 return blk
->root
? blk
->root
->bs
: NULL
;
732 static BlockBackend
*bdrv_first_blk(BlockDriverState
*bs
)
735 QLIST_FOREACH(child
, &bs
->parents
, next_parent
) {
736 if (child
->klass
== &child_root
) {
737 return child
->opaque
;
745 * Returns true if @bs has an associated BlockBackend.
747 bool bdrv_has_blk(BlockDriverState
*bs
)
749 return bdrv_first_blk(bs
) != NULL
;
753 * Returns true if @bs has only BlockBackends as parents.
755 bool bdrv_is_root_node(BlockDriverState
*bs
)
759 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
760 if (c
->klass
!= &child_root
) {
769 * Return @blk's DriveInfo if any, else null.
771 DriveInfo
*blk_legacy_dinfo(BlockBackend
*blk
)
773 return blk
->legacy_dinfo
;
777 * Set @blk's DriveInfo to @dinfo, and return it.
778 * @blk must not have a DriveInfo set already.
779 * No other BlockBackend may have the same DriveInfo set.
781 DriveInfo
*blk_set_legacy_dinfo(BlockBackend
*blk
, DriveInfo
*dinfo
)
783 assert(!blk
->legacy_dinfo
);
784 return blk
->legacy_dinfo
= dinfo
;
788 * Return the BlockBackend with DriveInfo @dinfo.
791 BlockBackend
*blk_by_legacy_dinfo(DriveInfo
*dinfo
)
793 BlockBackend
*blk
= NULL
;
795 while ((blk
= blk_next(blk
)) != NULL
) {
796 if (blk
->legacy_dinfo
== dinfo
) {
804 * Returns a pointer to the publicly accessible fields of @blk.
806 BlockBackendPublic
*blk_get_public(BlockBackend
*blk
)
812 * Returns a BlockBackend given the associated @public fields.
814 BlockBackend
*blk_by_public(BlockBackendPublic
*public)
816 return container_of(public, BlockBackend
, public);
820 * Disassociates the currently associated BlockDriverState from @blk.
822 void blk_remove_bs(BlockBackend
*blk
)
824 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
827 notifier_list_notify(&blk
->remove_bs_notifiers
, blk
);
828 if (tgm
->throttle_state
) {
829 BlockDriverState
*bs
= blk_bs(blk
);
832 * Take a ref in case blk_bs() changes across bdrv_drained_begin(), for
833 * example, if a temporary filter node is removed by a blockjob.
836 bdrv_drained_begin(bs
);
837 throttle_group_detach_aio_context(tgm
);
838 throttle_group_attach_aio_context(tgm
, qemu_get_aio_context());
839 bdrv_drained_end(bs
);
843 blk_update_root_state(blk
);
845 /* bdrv_root_unref_child() will cause blk->root to become stale and may
846 * switch to a completion coroutine later on. Let's drain all I/O here
847 * to avoid that and a potential QEMU crash.
852 bdrv_root_unref_child(root
);
856 * Associates a new BlockDriverState with @blk.
858 int blk_insert_bs(BlockBackend
*blk
, BlockDriverState
*bs
, Error
**errp
)
860 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
862 blk
->root
= bdrv_root_attach_child(bs
, "root", &child_root
,
863 BDRV_CHILD_FILTERED
| BDRV_CHILD_PRIMARY
,
864 blk
->perm
, blk
->shared_perm
,
866 if (blk
->root
== NULL
) {
870 notifier_list_notify(&blk
->insert_bs_notifiers
, blk
);
871 if (tgm
->throttle_state
) {
872 throttle_group_detach_aio_context(tgm
);
873 throttle_group_attach_aio_context(tgm
, bdrv_get_aio_context(bs
));
880 * Change BlockDriverState associated with @blk.
882 int blk_replace_bs(BlockBackend
*blk
, BlockDriverState
*new_bs
, Error
**errp
)
884 return bdrv_replace_child_bs(blk
->root
, new_bs
, errp
);
888 * Sets the permission bitmasks that the user of the BlockBackend needs.
890 int blk_set_perm(BlockBackend
*blk
, uint64_t perm
, uint64_t shared_perm
,
895 if (blk
->root
&& !blk
->disable_perm
) {
896 ret
= bdrv_child_try_set_perm(blk
->root
, perm
, shared_perm
, errp
);
903 blk
->shared_perm
= shared_perm
;
908 void blk_get_perm(BlockBackend
*blk
, uint64_t *perm
, uint64_t *shared_perm
)
911 *shared_perm
= blk
->shared_perm
;
915 * Attach device model @dev to @blk.
916 * Return 0 on success, -EBUSY when a device model is attached already.
918 int blk_attach_dev(BlockBackend
*blk
, DeviceState
*dev
)
924 /* While migration is still incoming, we don't need to apply the
925 * permissions of guest device BlockBackends. We might still have a block
926 * job or NBD server writing to the image for storage migration. */
927 if (runstate_check(RUN_STATE_INMIGRATE
)) {
928 blk
->disable_perm
= true;
933 blk_iostatus_reset(blk
);
939 * Detach device model @dev from @blk.
940 * @dev must be currently attached to @blk.
942 void blk_detach_dev(BlockBackend
*blk
, DeviceState
*dev
)
944 assert(blk
->dev
== dev
);
947 blk
->dev_opaque
= NULL
;
948 blk
->guest_block_size
= 512;
949 blk_set_perm(blk
, 0, BLK_PERM_ALL
, &error_abort
);
954 * Return the device model attached to @blk if any, else null.
956 DeviceState
*blk_get_attached_dev(BlockBackend
*blk
)
961 /* Return the qdev ID, or if no ID is assigned the QOM path, of the block
962 * device attached to the BlockBackend. */
963 char *blk_get_attached_dev_id(BlockBackend
*blk
)
965 DeviceState
*dev
= blk
->dev
;
969 } else if (dev
->id
) {
970 return g_strdup(dev
->id
);
973 return object_get_canonical_path(OBJECT(dev
)) ?: g_strdup("");
977 * Return the BlockBackend which has the device model @dev attached if it
980 * @dev must not be null.
982 BlockBackend
*blk_by_dev(void *dev
)
984 BlockBackend
*blk
= NULL
;
987 while ((blk
= blk_all_next(blk
)) != NULL
) {
988 if (blk
->dev
== dev
) {
996 * Set @blk's device model callbacks to @ops.
997 * @opaque is the opaque argument to pass to the callbacks.
998 * This is for use by device models.
1000 void blk_set_dev_ops(BlockBackend
*blk
, const BlockDevOps
*ops
,
1004 blk
->dev_opaque
= opaque
;
1006 /* Are we currently quiesced? Should we enforce this right now? */
1007 if (blk
->quiesce_counter
&& ops
->drained_begin
) {
1008 ops
->drained_begin(opaque
);
1013 * Notify @blk's attached device model of media change.
1015 * If @load is true, notify of media load. This action can fail, meaning that
1016 * the medium cannot be loaded. @errp is set then.
1018 * If @load is false, notify of media eject. This can never fail.
1020 * Also send DEVICE_TRAY_MOVED events as appropriate.
1022 void blk_dev_change_media_cb(BlockBackend
*blk
, bool load
, Error
**errp
)
1024 if (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
) {
1025 bool tray_was_open
, tray_is_open
;
1026 Error
*local_err
= NULL
;
1028 tray_was_open
= blk_dev_is_tray_open(blk
);
1029 blk
->dev_ops
->change_media_cb(blk
->dev_opaque
, load
, &local_err
);
1031 assert(load
== true);
1032 error_propagate(errp
, local_err
);
1035 tray_is_open
= blk_dev_is_tray_open(blk
);
1037 if (tray_was_open
!= tray_is_open
) {
1038 char *id
= blk_get_attached_dev_id(blk
);
1039 qapi_event_send_device_tray_moved(blk_name(blk
), id
, tray_is_open
);
1045 static void blk_root_change_media(BdrvChild
*child
, bool load
)
1047 blk_dev_change_media_cb(child
->opaque
, load
, NULL
);
1051 * Does @blk's attached device model have removable media?
1052 * %true if no device model is attached.
1054 bool blk_dev_has_removable_media(BlockBackend
*blk
)
1056 return !blk
->dev
|| (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
);
1060 * Does @blk's attached device model have a tray?
1062 bool blk_dev_has_tray(BlockBackend
*blk
)
1064 return blk
->dev_ops
&& blk
->dev_ops
->is_tray_open
;
1068 * Notify @blk's attached device model of a media eject request.
1069 * If @force is true, the medium is about to be yanked out forcefully.
1071 void blk_dev_eject_request(BlockBackend
*blk
, bool force
)
1073 if (blk
->dev_ops
&& blk
->dev_ops
->eject_request_cb
) {
1074 blk
->dev_ops
->eject_request_cb(blk
->dev_opaque
, force
);
1079 * Does @blk's attached device model have a tray, and is it open?
1081 bool blk_dev_is_tray_open(BlockBackend
*blk
)
1083 if (blk_dev_has_tray(blk
)) {
1084 return blk
->dev_ops
->is_tray_open(blk
->dev_opaque
);
1090 * Does @blk's attached device model have the medium locked?
1091 * %false if the device model has no such lock.
1093 bool blk_dev_is_medium_locked(BlockBackend
*blk
)
1095 if (blk
->dev_ops
&& blk
->dev_ops
->is_medium_locked
) {
1096 return blk
->dev_ops
->is_medium_locked(blk
->dev_opaque
);
1102 * Notify @blk's attached device model of a backend size change.
1104 static void blk_root_resize(BdrvChild
*child
)
1106 BlockBackend
*blk
= child
->opaque
;
1108 if (blk
->dev_ops
&& blk
->dev_ops
->resize_cb
) {
1109 blk
->dev_ops
->resize_cb(blk
->dev_opaque
);
1113 void blk_iostatus_enable(BlockBackend
*blk
)
1115 blk
->iostatus_enabled
= true;
1116 blk
->iostatus
= BLOCK_DEVICE_IO_STATUS_OK
;
1119 /* The I/O status is only enabled if the drive explicitly
1120 * enables it _and_ the VM is configured to stop on errors */
1121 bool blk_iostatus_is_enabled(const BlockBackend
*blk
)
1123 return (blk
->iostatus_enabled
&&
1124 (blk
->on_write_error
== BLOCKDEV_ON_ERROR_ENOSPC
||
1125 blk
->on_write_error
== BLOCKDEV_ON_ERROR_STOP
||
1126 blk
->on_read_error
== BLOCKDEV_ON_ERROR_STOP
));
1129 BlockDeviceIoStatus
blk_iostatus(const BlockBackend
*blk
)
1131 return blk
->iostatus
;
1134 void blk_iostatus_disable(BlockBackend
*blk
)
1136 blk
->iostatus_enabled
= false;
1139 void blk_iostatus_reset(BlockBackend
*blk
)
1141 if (blk_iostatus_is_enabled(blk
)) {
1142 blk
->iostatus
= BLOCK_DEVICE_IO_STATUS_OK
;
1146 void blk_iostatus_set_err(BlockBackend
*blk
, int error
)
1148 assert(blk_iostatus_is_enabled(blk
));
1149 if (blk
->iostatus
== BLOCK_DEVICE_IO_STATUS_OK
) {
1150 blk
->iostatus
= error
== ENOSPC
? BLOCK_DEVICE_IO_STATUS_NOSPACE
:
1151 BLOCK_DEVICE_IO_STATUS_FAILED
;
1155 void blk_set_allow_write_beyond_eof(BlockBackend
*blk
, bool allow
)
1157 blk
->allow_write_beyond_eof
= allow
;
1160 void blk_set_allow_aio_context_change(BlockBackend
*blk
, bool allow
)
1162 blk
->allow_aio_context_change
= allow
;
1165 void blk_set_disable_request_queuing(BlockBackend
*blk
, bool disable
)
1167 blk
->disable_request_queuing
= disable
;
1170 static int blk_check_byte_request(BlockBackend
*blk
, int64_t offset
,
1179 if (!blk_is_available(blk
)) {
1187 if (!blk
->allow_write_beyond_eof
) {
1188 len
= blk_getlength(blk
);
1193 if (offset
> len
|| len
- offset
< bytes
) {
1201 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1202 static void coroutine_fn
blk_wait_while_drained(BlockBackend
*blk
)
1204 assert(blk
->in_flight
> 0);
1206 if (blk
->quiesce_counter
&& !blk
->disable_request_queuing
) {
1207 blk_dec_in_flight(blk
);
1208 qemu_co_queue_wait(&blk
->queued_requests
, NULL
);
1209 blk_inc_in_flight(blk
);
1213 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1215 blk_co_do_preadv(BlockBackend
*blk
, int64_t offset
, int64_t bytes
,
1216 QEMUIOVector
*qiov
, BdrvRequestFlags flags
)
1219 BlockDriverState
*bs
;
1221 blk_wait_while_drained(blk
);
1223 /* Call blk_bs() only after waiting, the graph may have changed */
1225 trace_blk_co_preadv(blk
, bs
, offset
, bytes
, flags
);
1227 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1232 bdrv_inc_in_flight(bs
);
1234 /* throttling disk I/O */
1235 if (blk
->public.throttle_group_member
.throttle_state
) {
1236 throttle_group_co_io_limits_intercept(&blk
->public.throttle_group_member
,
1240 ret
= bdrv_co_preadv(blk
->root
, offset
, bytes
, qiov
, flags
);
1241 bdrv_dec_in_flight(bs
);
1245 int coroutine_fn
blk_co_preadv(BlockBackend
*blk
, int64_t offset
,
1246 int64_t bytes
, QEMUIOVector
*qiov
,
1247 BdrvRequestFlags flags
)
1251 blk_inc_in_flight(blk
);
1252 ret
= blk_co_do_preadv(blk
, offset
, bytes
, qiov
, flags
);
1253 blk_dec_in_flight(blk
);
1258 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1260 blk_co_do_pwritev_part(BlockBackend
*blk
, int64_t offset
, int64_t bytes
,
1261 QEMUIOVector
*qiov
, size_t qiov_offset
,
1262 BdrvRequestFlags flags
)
1265 BlockDriverState
*bs
;
1267 blk_wait_while_drained(blk
);
1269 /* Call blk_bs() only after waiting, the graph may have changed */
1271 trace_blk_co_pwritev(blk
, bs
, offset
, bytes
, flags
);
1273 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1278 bdrv_inc_in_flight(bs
);
1279 /* throttling disk I/O */
1280 if (blk
->public.throttle_group_member
.throttle_state
) {
1281 throttle_group_co_io_limits_intercept(&blk
->public.throttle_group_member
,
1285 if (!blk
->enable_write_cache
) {
1286 flags
|= BDRV_REQ_FUA
;
1289 ret
= bdrv_co_pwritev_part(blk
->root
, offset
, bytes
, qiov
, qiov_offset
,
1291 bdrv_dec_in_flight(bs
);
1295 int coroutine_fn
blk_co_pwritev_part(BlockBackend
*blk
, int64_t offset
,
1297 QEMUIOVector
*qiov
, size_t qiov_offset
,
1298 BdrvRequestFlags flags
)
1302 blk_inc_in_flight(blk
);
1303 ret
= blk_co_do_pwritev_part(blk
, offset
, bytes
, qiov
, qiov_offset
, flags
);
1304 blk_dec_in_flight(blk
);
1309 int coroutine_fn
blk_co_pwritev(BlockBackend
*blk
, int64_t offset
,
1310 int64_t bytes
, QEMUIOVector
*qiov
,
1311 BdrvRequestFlags flags
)
1313 return blk_co_pwritev_part(blk
, offset
, bytes
, qiov
, 0, flags
);
1316 static int coroutine_fn
blk_pwritev_part(BlockBackend
*blk
, int64_t offset
,
1318 QEMUIOVector
*qiov
, size_t qiov_offset
,
1319 BdrvRequestFlags flags
)
1323 blk_inc_in_flight(blk
);
1324 ret
= blk_do_pwritev_part(blk
, offset
, bytes
, qiov
, qiov_offset
, flags
);
1325 blk_dec_in_flight(blk
);
1330 typedef struct BlkRwCo
{
1335 BdrvRequestFlags flags
;
1338 int blk_pwrite_zeroes(BlockBackend
*blk
, int64_t offset
,
1339 int64_t bytes
, BdrvRequestFlags flags
)
1341 return blk_pwritev_part(blk
, offset
, bytes
, NULL
, 0,
1342 flags
| BDRV_REQ_ZERO_WRITE
);
1345 int blk_make_zero(BlockBackend
*blk
, BdrvRequestFlags flags
)
1347 return bdrv_make_zero(blk
->root
, flags
);
1350 void blk_inc_in_flight(BlockBackend
*blk
)
1352 qatomic_inc(&blk
->in_flight
);
1355 void blk_dec_in_flight(BlockBackend
*blk
)
1357 qatomic_dec(&blk
->in_flight
);
1361 static void error_callback_bh(void *opaque
)
1363 struct BlockBackendAIOCB
*acb
= opaque
;
1365 blk_dec_in_flight(acb
->blk
);
1366 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
1367 qemu_aio_unref(acb
);
1370 BlockAIOCB
*blk_abort_aio_request(BlockBackend
*blk
,
1371 BlockCompletionFunc
*cb
,
1372 void *opaque
, int ret
)
1374 struct BlockBackendAIOCB
*acb
;
1376 blk_inc_in_flight(blk
);
1377 acb
= blk_aio_get(&block_backend_aiocb_info
, blk
, cb
, opaque
);
1381 replay_bh_schedule_oneshot_event(blk_get_aio_context(blk
),
1382 error_callback_bh
, acb
);
1383 return &acb
->common
;
1386 typedef struct BlkAioEmAIOCB
{
1393 static AioContext
*blk_aio_em_aiocb_get_aio_context(BlockAIOCB
*acb_
)
1395 BlkAioEmAIOCB
*acb
= container_of(acb_
, BlkAioEmAIOCB
, common
);
1397 return blk_get_aio_context(acb
->rwco
.blk
);
1400 static const AIOCBInfo blk_aio_em_aiocb_info
= {
1401 .aiocb_size
= sizeof(BlkAioEmAIOCB
),
1402 .get_aio_context
= blk_aio_em_aiocb_get_aio_context
,
1405 static void blk_aio_complete(BlkAioEmAIOCB
*acb
)
1407 if (acb
->has_returned
) {
1408 acb
->common
.cb(acb
->common
.opaque
, acb
->rwco
.ret
);
1409 blk_dec_in_flight(acb
->rwco
.blk
);
1410 qemu_aio_unref(acb
);
1414 static void blk_aio_complete_bh(void *opaque
)
1416 BlkAioEmAIOCB
*acb
= opaque
;
1417 assert(acb
->has_returned
);
1418 blk_aio_complete(acb
);
1421 static BlockAIOCB
*blk_aio_prwv(BlockBackend
*blk
, int64_t offset
,
1423 void *iobuf
, CoroutineEntry co_entry
,
1424 BdrvRequestFlags flags
,
1425 BlockCompletionFunc
*cb
, void *opaque
)
1430 blk_inc_in_flight(blk
);
1431 acb
= blk_aio_get(&blk_aio_em_aiocb_info
, blk
, cb
, opaque
);
1432 acb
->rwco
= (BlkRwCo
) {
1440 acb
->has_returned
= false;
1442 co
= qemu_coroutine_create(co_entry
, acb
);
1443 bdrv_coroutine_enter(blk_bs(blk
), co
);
1445 acb
->has_returned
= true;
1446 if (acb
->rwco
.ret
!= NOT_DONE
) {
1447 replay_bh_schedule_oneshot_event(blk_get_aio_context(blk
),
1448 blk_aio_complete_bh
, acb
);
1451 return &acb
->common
;
1454 static void blk_aio_read_entry(void *opaque
)
1456 BlkAioEmAIOCB
*acb
= opaque
;
1457 BlkRwCo
*rwco
= &acb
->rwco
;
1458 QEMUIOVector
*qiov
= rwco
->iobuf
;
1460 assert(qiov
->size
== acb
->bytes
);
1461 rwco
->ret
= blk_co_do_preadv(rwco
->blk
, rwco
->offset
, acb
->bytes
,
1463 blk_aio_complete(acb
);
1466 static void blk_aio_write_entry(void *opaque
)
1468 BlkAioEmAIOCB
*acb
= opaque
;
1469 BlkRwCo
*rwco
= &acb
->rwco
;
1470 QEMUIOVector
*qiov
= rwco
->iobuf
;
1472 assert(!qiov
|| qiov
->size
== acb
->bytes
);
1473 rwco
->ret
= blk_co_do_pwritev_part(rwco
->blk
, rwco
->offset
, acb
->bytes
,
1474 qiov
, 0, rwco
->flags
);
1475 blk_aio_complete(acb
);
1478 BlockAIOCB
*blk_aio_pwrite_zeroes(BlockBackend
*blk
, int64_t offset
,
1479 int64_t bytes
, BdrvRequestFlags flags
,
1480 BlockCompletionFunc
*cb
, void *opaque
)
1482 return blk_aio_prwv(blk
, offset
, bytes
, NULL
, blk_aio_write_entry
,
1483 flags
| BDRV_REQ_ZERO_WRITE
, cb
, opaque
);
1486 int blk_pread(BlockBackend
*blk
, int64_t offset
, void *buf
, int bytes
)
1489 QEMUIOVector qiov
= QEMU_IOVEC_INIT_BUF(qiov
, buf
, bytes
);
1491 blk_inc_in_flight(blk
);
1492 ret
= blk_do_preadv(blk
, offset
, bytes
, &qiov
, 0);
1493 blk_dec_in_flight(blk
);
1495 return ret
< 0 ? ret
: bytes
;
1498 int blk_pwrite(BlockBackend
*blk
, int64_t offset
, const void *buf
, int bytes
,
1499 BdrvRequestFlags flags
)
1502 QEMUIOVector qiov
= QEMU_IOVEC_INIT_BUF(qiov
, buf
, bytes
);
1504 ret
= blk_pwritev_part(blk
, offset
, bytes
, &qiov
, 0, flags
);
1506 return ret
< 0 ? ret
: bytes
;
1509 int64_t blk_getlength(BlockBackend
*blk
)
1511 if (!blk_is_available(blk
)) {
1515 return bdrv_getlength(blk_bs(blk
));
1518 void blk_get_geometry(BlockBackend
*blk
, uint64_t *nb_sectors_ptr
)
1521 *nb_sectors_ptr
= 0;
1523 bdrv_get_geometry(blk_bs(blk
), nb_sectors_ptr
);
1527 int64_t blk_nb_sectors(BlockBackend
*blk
)
1529 if (!blk_is_available(blk
)) {
1533 return bdrv_nb_sectors(blk_bs(blk
));
1536 BlockAIOCB
*blk_aio_preadv(BlockBackend
*blk
, int64_t offset
,
1537 QEMUIOVector
*qiov
, BdrvRequestFlags flags
,
1538 BlockCompletionFunc
*cb
, void *opaque
)
1540 assert((uint64_t)qiov
->size
<= INT64_MAX
);
1541 return blk_aio_prwv(blk
, offset
, qiov
->size
, qiov
,
1542 blk_aio_read_entry
, flags
, cb
, opaque
);
1545 BlockAIOCB
*blk_aio_pwritev(BlockBackend
*blk
, int64_t offset
,
1546 QEMUIOVector
*qiov
, BdrvRequestFlags flags
,
1547 BlockCompletionFunc
*cb
, void *opaque
)
1549 assert((uint64_t)qiov
->size
<= INT64_MAX
);
1550 return blk_aio_prwv(blk
, offset
, qiov
->size
, qiov
,
1551 blk_aio_write_entry
, flags
, cb
, opaque
);
1554 void blk_aio_cancel(BlockAIOCB
*acb
)
1556 bdrv_aio_cancel(acb
);
1559 void blk_aio_cancel_async(BlockAIOCB
*acb
)
1561 bdrv_aio_cancel_async(acb
);
1564 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1566 blk_co_do_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
)
1568 blk_wait_while_drained(blk
);
1570 if (!blk_is_available(blk
)) {
1574 return bdrv_co_ioctl(blk_bs(blk
), req
, buf
);
1577 int blk_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
)
1581 blk_inc_in_flight(blk
);
1582 ret
= blk_do_ioctl(blk
, req
, buf
);
1583 blk_dec_in_flight(blk
);
1588 static void blk_aio_ioctl_entry(void *opaque
)
1590 BlkAioEmAIOCB
*acb
= opaque
;
1591 BlkRwCo
*rwco
= &acb
->rwco
;
1593 rwco
->ret
= blk_co_do_ioctl(rwco
->blk
, rwco
->offset
, rwco
->iobuf
);
1595 blk_aio_complete(acb
);
1598 BlockAIOCB
*blk_aio_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
,
1599 BlockCompletionFunc
*cb
, void *opaque
)
1601 return blk_aio_prwv(blk
, req
, 0, buf
, blk_aio_ioctl_entry
, 0, cb
, opaque
);
1604 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1606 blk_co_do_pdiscard(BlockBackend
*blk
, int64_t offset
, int64_t bytes
)
1610 blk_wait_while_drained(blk
);
1612 ret
= blk_check_byte_request(blk
, offset
, bytes
);
1617 return bdrv_co_pdiscard(blk
->root
, offset
, bytes
);
1620 static void blk_aio_pdiscard_entry(void *opaque
)
1622 BlkAioEmAIOCB
*acb
= opaque
;
1623 BlkRwCo
*rwco
= &acb
->rwco
;
1625 rwco
->ret
= blk_co_do_pdiscard(rwco
->blk
, rwco
->offset
, acb
->bytes
);
1626 blk_aio_complete(acb
);
1629 BlockAIOCB
*blk_aio_pdiscard(BlockBackend
*blk
,
1630 int64_t offset
, int64_t bytes
,
1631 BlockCompletionFunc
*cb
, void *opaque
)
1633 return blk_aio_prwv(blk
, offset
, bytes
, NULL
, blk_aio_pdiscard_entry
, 0,
1637 int coroutine_fn
blk_co_pdiscard(BlockBackend
*blk
, int64_t offset
,
1642 blk_inc_in_flight(blk
);
1643 ret
= blk_co_do_pdiscard(blk
, offset
, bytes
);
1644 blk_dec_in_flight(blk
);
1649 int blk_pdiscard(BlockBackend
*blk
, int64_t offset
, int64_t bytes
)
1653 blk_inc_in_flight(blk
);
1654 ret
= blk_do_pdiscard(blk
, offset
, bytes
);
1655 blk_dec_in_flight(blk
);
1660 /* To be called between exactly one pair of blk_inc/dec_in_flight() */
1661 int coroutine_fn
blk_co_do_flush(BlockBackend
*blk
)
1663 blk_wait_while_drained(blk
);
1665 if (!blk_is_available(blk
)) {
1669 return bdrv_co_flush(blk_bs(blk
));
1672 static void blk_aio_flush_entry(void *opaque
)
1674 BlkAioEmAIOCB
*acb
= opaque
;
1675 BlkRwCo
*rwco
= &acb
->rwco
;
1677 rwco
->ret
= blk_co_do_flush(rwco
->blk
);
1678 blk_aio_complete(acb
);
1681 BlockAIOCB
*blk_aio_flush(BlockBackend
*blk
,
1682 BlockCompletionFunc
*cb
, void *opaque
)
1684 return blk_aio_prwv(blk
, 0, 0, NULL
, blk_aio_flush_entry
, 0, cb
, opaque
);
1687 int coroutine_fn
blk_co_flush(BlockBackend
*blk
)
1691 blk_inc_in_flight(blk
);
1692 ret
= blk_co_do_flush(blk
);
1693 blk_dec_in_flight(blk
);
1698 int blk_flush(BlockBackend
*blk
)
1702 blk_inc_in_flight(blk
);
1703 ret
= blk_do_flush(blk
);
1704 blk_dec_in_flight(blk
);
1709 void blk_drain(BlockBackend
*blk
)
1711 BlockDriverState
*bs
= blk_bs(blk
);
1715 bdrv_drained_begin(bs
);
1718 /* We may have -ENOMEDIUM completions in flight */
1719 AIO_WAIT_WHILE(blk_get_aio_context(blk
),
1720 qatomic_mb_read(&blk
->in_flight
) > 0);
1723 bdrv_drained_end(bs
);
1728 void blk_drain_all(void)
1730 BlockBackend
*blk
= NULL
;
1732 bdrv_drain_all_begin();
1734 while ((blk
= blk_all_next(blk
)) != NULL
) {
1735 AioContext
*ctx
= blk_get_aio_context(blk
);
1737 aio_context_acquire(ctx
);
1739 /* We may have -ENOMEDIUM completions in flight */
1740 AIO_WAIT_WHILE(ctx
, qatomic_mb_read(&blk
->in_flight
) > 0);
1742 aio_context_release(ctx
);
1745 bdrv_drain_all_end();
1748 void blk_set_on_error(BlockBackend
*blk
, BlockdevOnError on_read_error
,
1749 BlockdevOnError on_write_error
)
1751 blk
->on_read_error
= on_read_error
;
1752 blk
->on_write_error
= on_write_error
;
1755 BlockdevOnError
blk_get_on_error(BlockBackend
*blk
, bool is_read
)
1757 return is_read
? blk
->on_read_error
: blk
->on_write_error
;
1760 BlockErrorAction
blk_get_error_action(BlockBackend
*blk
, bool is_read
,
1763 BlockdevOnError on_err
= blk_get_on_error(blk
, is_read
);
1766 case BLOCKDEV_ON_ERROR_ENOSPC
:
1767 return (error
== ENOSPC
) ?
1768 BLOCK_ERROR_ACTION_STOP
: BLOCK_ERROR_ACTION_REPORT
;
1769 case BLOCKDEV_ON_ERROR_STOP
:
1770 return BLOCK_ERROR_ACTION_STOP
;
1771 case BLOCKDEV_ON_ERROR_REPORT
:
1772 return BLOCK_ERROR_ACTION_REPORT
;
1773 case BLOCKDEV_ON_ERROR_IGNORE
:
1774 return BLOCK_ERROR_ACTION_IGNORE
;
1775 case BLOCKDEV_ON_ERROR_AUTO
:
1781 static void send_qmp_error_event(BlockBackend
*blk
,
1782 BlockErrorAction action
,
1783 bool is_read
, int error
)
1785 IoOperationType optype
;
1786 BlockDriverState
*bs
= blk_bs(blk
);
1788 optype
= is_read
? IO_OPERATION_TYPE_READ
: IO_OPERATION_TYPE_WRITE
;
1789 qapi_event_send_block_io_error(blk_name(blk
), !!bs
,
1790 bs
? bdrv_get_node_name(bs
) : NULL
, optype
,
1791 action
, blk_iostatus_is_enabled(blk
),
1792 error
== ENOSPC
, strerror(error
));
1795 /* This is done by device models because, while the block layer knows
1796 * about the error, it does not know whether an operation comes from
1797 * the device or the block layer (from a job, for example).
1799 void blk_error_action(BlockBackend
*blk
, BlockErrorAction action
,
1800 bool is_read
, int error
)
1804 if (action
== BLOCK_ERROR_ACTION_STOP
) {
1805 /* First set the iostatus, so that "info block" returns an iostatus
1806 * that matches the events raised so far (an additional error iostatus
1807 * is fine, but not a lost one).
1809 blk_iostatus_set_err(blk
, error
);
1811 /* Then raise the request to stop the VM and the event.
1812 * qemu_system_vmstop_request_prepare has two effects. First,
1813 * it ensures that the STOP event always comes after the
1814 * BLOCK_IO_ERROR event. Second, it ensures that even if management
1815 * can observe the STOP event and do a "cont" before the STOP
1816 * event is issued, the VM will not stop. In this case, vm_start()
1817 * also ensures that the STOP/RESUME pair of events is emitted.
1819 qemu_system_vmstop_request_prepare();
1820 send_qmp_error_event(blk
, action
, is_read
, error
);
1821 qemu_system_vmstop_request(RUN_STATE_IO_ERROR
);
1823 send_qmp_error_event(blk
, action
, is_read
, error
);
1828 * Returns true if the BlockBackend can support taking write permissions
1829 * (because its root node is not read-only).
1831 bool blk_supports_write_perm(BlockBackend
*blk
)
1833 BlockDriverState
*bs
= blk_bs(blk
);
1836 return !bdrv_is_read_only(bs
);
1838 return blk
->root_state
.open_flags
& BDRV_O_RDWR
;
1843 * Returns true if the BlockBackend can be written to in its current
1844 * configuration (i.e. if write permission have been requested)
1846 bool blk_is_writable(BlockBackend
*blk
)
1848 return blk
->perm
& BLK_PERM_WRITE
;
1851 bool blk_is_sg(BlockBackend
*blk
)
1853 BlockDriverState
*bs
= blk_bs(blk
);
1859 return bdrv_is_sg(bs
);
1862 bool blk_enable_write_cache(BlockBackend
*blk
)
1864 return blk
->enable_write_cache
;
1867 void blk_set_enable_write_cache(BlockBackend
*blk
, bool wce
)
1869 blk
->enable_write_cache
= wce
;
1872 void blk_invalidate_cache(BlockBackend
*blk
, Error
**errp
)
1874 BlockDriverState
*bs
= blk_bs(blk
);
1877 error_setg(errp
, "Device '%s' has no medium", blk
->name
);
1881 bdrv_invalidate_cache(bs
, errp
);
1884 bool blk_is_inserted(BlockBackend
*blk
)
1886 BlockDriverState
*bs
= blk_bs(blk
);
1888 return bs
&& bdrv_is_inserted(bs
);
1891 bool blk_is_available(BlockBackend
*blk
)
1893 return blk_is_inserted(blk
) && !blk_dev_is_tray_open(blk
);
1896 void blk_lock_medium(BlockBackend
*blk
, bool locked
)
1898 BlockDriverState
*bs
= blk_bs(blk
);
1901 bdrv_lock_medium(bs
, locked
);
1905 void blk_eject(BlockBackend
*blk
, bool eject_flag
)
1907 BlockDriverState
*bs
= blk_bs(blk
);
1911 bdrv_eject(bs
, eject_flag
);
1914 /* Whether or not we ejected on the backend,
1915 * the frontend experienced a tray event. */
1916 id
= blk_get_attached_dev_id(blk
);
1917 qapi_event_send_device_tray_moved(blk_name(blk
), id
,
1922 int blk_get_flags(BlockBackend
*blk
)
1924 BlockDriverState
*bs
= blk_bs(blk
);
1927 return bdrv_get_flags(bs
);
1929 return blk
->root_state
.open_flags
;
1933 /* Returns the minimum request alignment, in bytes; guaranteed nonzero */
1934 uint32_t blk_get_request_alignment(BlockBackend
*blk
)
1936 BlockDriverState
*bs
= blk_bs(blk
);
1937 return bs
? bs
->bl
.request_alignment
: BDRV_SECTOR_SIZE
;
1940 /* Returns the maximum hardware transfer length, in bytes; guaranteed nonzero */
1941 uint64_t blk_get_max_hw_transfer(BlockBackend
*blk
)
1943 BlockDriverState
*bs
= blk_bs(blk
);
1944 uint64_t max
= INT_MAX
;
1947 max
= MIN_NON_ZERO(max
, bs
->bl
.max_hw_transfer
);
1948 max
= MIN_NON_ZERO(max
, bs
->bl
.max_transfer
);
1950 return ROUND_DOWN(max
, blk_get_request_alignment(blk
));
1953 /* Returns the maximum transfer length, in bytes; guaranteed nonzero */
1954 uint32_t blk_get_max_transfer(BlockBackend
*blk
)
1956 BlockDriverState
*bs
= blk_bs(blk
);
1957 uint32_t max
= INT_MAX
;
1960 max
= MIN_NON_ZERO(max
, bs
->bl
.max_transfer
);
1962 return ROUND_DOWN(max
, blk_get_request_alignment(blk
));
1965 int blk_get_max_hw_iov(BlockBackend
*blk
)
1967 return MIN_NON_ZERO(blk
->root
->bs
->bl
.max_hw_iov
,
1968 blk
->root
->bs
->bl
.max_iov
);
1971 int blk_get_max_iov(BlockBackend
*blk
)
1973 return blk
->root
->bs
->bl
.max_iov
;
1976 void blk_set_guest_block_size(BlockBackend
*blk
, int align
)
1978 blk
->guest_block_size
= align
;
1981 void *blk_try_blockalign(BlockBackend
*blk
, size_t size
)
1983 return qemu_try_blockalign(blk
? blk_bs(blk
) : NULL
, size
);
1986 void *blk_blockalign(BlockBackend
*blk
, size_t size
)
1988 return qemu_blockalign(blk
? blk_bs(blk
) : NULL
, size
);
1991 bool blk_op_is_blocked(BlockBackend
*blk
, BlockOpType op
, Error
**errp
)
1993 BlockDriverState
*bs
= blk_bs(blk
);
1999 return bdrv_op_is_blocked(bs
, op
, errp
);
2002 void blk_op_unblock(BlockBackend
*blk
, BlockOpType op
, Error
*reason
)
2004 BlockDriverState
*bs
= blk_bs(blk
);
2007 bdrv_op_unblock(bs
, op
, reason
);
2011 void blk_op_block_all(BlockBackend
*blk
, Error
*reason
)
2013 BlockDriverState
*bs
= blk_bs(blk
);
2016 bdrv_op_block_all(bs
, reason
);
2020 void blk_op_unblock_all(BlockBackend
*blk
, Error
*reason
)
2022 BlockDriverState
*bs
= blk_bs(blk
);
2025 bdrv_op_unblock_all(bs
, reason
);
2029 AioContext
*blk_get_aio_context(BlockBackend
*blk
)
2031 BlockDriverState
*bs
= blk_bs(blk
);
2034 AioContext
*ctx
= bdrv_get_aio_context(blk_bs(blk
));
2035 assert(ctx
== blk
->ctx
);
2041 static AioContext
*blk_aiocb_get_aio_context(BlockAIOCB
*acb
)
2043 BlockBackendAIOCB
*blk_acb
= DO_UPCAST(BlockBackendAIOCB
, common
, acb
);
2044 return blk_get_aio_context(blk_acb
->blk
);
2047 static int blk_do_set_aio_context(BlockBackend
*blk
, AioContext
*new_context
,
2048 bool update_root_node
, Error
**errp
)
2050 BlockDriverState
*bs
= blk_bs(blk
);
2051 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
2057 if (update_root_node
) {
2058 ret
= bdrv_child_try_set_aio_context(bs
, new_context
, blk
->root
,
2065 if (tgm
->throttle_state
) {
2066 bdrv_drained_begin(bs
);
2067 throttle_group_detach_aio_context(tgm
);
2068 throttle_group_attach_aio_context(tgm
, new_context
);
2069 bdrv_drained_end(bs
);
2075 blk
->ctx
= new_context
;
2079 int blk_set_aio_context(BlockBackend
*blk
, AioContext
*new_context
,
2082 return blk_do_set_aio_context(blk
, new_context
, true, errp
);
2085 static bool blk_root_can_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
2086 GSList
**ignore
, Error
**errp
)
2088 BlockBackend
*blk
= child
->opaque
;
2090 if (blk
->allow_aio_context_change
) {
2094 /* Only manually created BlockBackends that are not attached to anything
2095 * can change their AioContext without updating their user. */
2096 if (!blk
->name
|| blk
->dev
) {
2097 /* TODO Add BB name/QOM path */
2098 error_setg(errp
, "Cannot change iothread of active block backend");
2105 static void blk_root_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
2108 BlockBackend
*blk
= child
->opaque
;
2109 blk_do_set_aio_context(blk
, ctx
, false, &error_abort
);
2112 void blk_add_aio_context_notifier(BlockBackend
*blk
,
2113 void (*attached_aio_context
)(AioContext
*new_context
, void *opaque
),
2114 void (*detach_aio_context
)(void *opaque
), void *opaque
)
2116 BlockBackendAioNotifier
*notifier
;
2117 BlockDriverState
*bs
= blk_bs(blk
);
2119 notifier
= g_new(BlockBackendAioNotifier
, 1);
2120 notifier
->attached_aio_context
= attached_aio_context
;
2121 notifier
->detach_aio_context
= detach_aio_context
;
2122 notifier
->opaque
= opaque
;
2123 QLIST_INSERT_HEAD(&blk
->aio_notifiers
, notifier
, list
);
2126 bdrv_add_aio_context_notifier(bs
, attached_aio_context
,
2127 detach_aio_context
, opaque
);
2131 void blk_remove_aio_context_notifier(BlockBackend
*blk
,
2132 void (*attached_aio_context
)(AioContext
*,
2134 void (*detach_aio_context
)(void *),
2137 BlockBackendAioNotifier
*notifier
;
2138 BlockDriverState
*bs
= blk_bs(blk
);
2141 bdrv_remove_aio_context_notifier(bs
, attached_aio_context
,
2142 detach_aio_context
, opaque
);
2145 QLIST_FOREACH(notifier
, &blk
->aio_notifiers
, list
) {
2146 if (notifier
->attached_aio_context
== attached_aio_context
&&
2147 notifier
->detach_aio_context
== detach_aio_context
&&
2148 notifier
->opaque
== opaque
) {
2149 QLIST_REMOVE(notifier
, list
);
2158 void blk_add_remove_bs_notifier(BlockBackend
*blk
, Notifier
*notify
)
2160 notifier_list_add(&blk
->remove_bs_notifiers
, notify
);
2163 void blk_add_insert_bs_notifier(BlockBackend
*blk
, Notifier
*notify
)
2165 notifier_list_add(&blk
->insert_bs_notifiers
, notify
);
2168 void blk_io_plug(BlockBackend
*blk
)
2170 BlockDriverState
*bs
= blk_bs(blk
);
2177 void blk_io_unplug(BlockBackend
*blk
)
2179 BlockDriverState
*bs
= blk_bs(blk
);
2186 BlockAcctStats
*blk_get_stats(BlockBackend
*blk
)
2191 void *blk_aio_get(const AIOCBInfo
*aiocb_info
, BlockBackend
*blk
,
2192 BlockCompletionFunc
*cb
, void *opaque
)
2194 return qemu_aio_get(aiocb_info
, blk_bs(blk
), cb
, opaque
);
2197 int coroutine_fn
blk_co_pwrite_zeroes(BlockBackend
*blk
, int64_t offset
,
2198 int64_t bytes
, BdrvRequestFlags flags
)
2200 return blk_co_pwritev(blk
, offset
, bytes
, NULL
,
2201 flags
| BDRV_REQ_ZERO_WRITE
);
2204 int blk_pwrite_compressed(BlockBackend
*blk
, int64_t offset
, const void *buf
,
2207 QEMUIOVector qiov
= QEMU_IOVEC_INIT_BUF(qiov
, buf
, bytes
);
2208 return blk_pwritev_part(blk
, offset
, bytes
, &qiov
, 0,
2209 BDRV_REQ_WRITE_COMPRESSED
);
2212 int blk_truncate(BlockBackend
*blk
, int64_t offset
, bool exact
,
2213 PreallocMode prealloc
, BdrvRequestFlags flags
, Error
**errp
)
2215 if (!blk_is_available(blk
)) {
2216 error_setg(errp
, "No medium inserted");
2220 return bdrv_truncate(blk
->root
, offset
, exact
, prealloc
, flags
, errp
);
2223 int blk_save_vmstate(BlockBackend
*blk
, const uint8_t *buf
,
2224 int64_t pos
, int size
)
2228 if (!blk_is_available(blk
)) {
2232 ret
= bdrv_save_vmstate(blk_bs(blk
), buf
, pos
, size
);
2237 if (ret
== size
&& !blk
->enable_write_cache
) {
2238 ret
= bdrv_flush(blk_bs(blk
));
2241 return ret
< 0 ? ret
: size
;
2244 int blk_load_vmstate(BlockBackend
*blk
, uint8_t *buf
, int64_t pos
, int size
)
2246 if (!blk_is_available(blk
)) {
2250 return bdrv_load_vmstate(blk_bs(blk
), buf
, pos
, size
);
2253 int blk_probe_blocksizes(BlockBackend
*blk
, BlockSizes
*bsz
)
2255 if (!blk_is_available(blk
)) {
2259 return bdrv_probe_blocksizes(blk_bs(blk
), bsz
);
2262 int blk_probe_geometry(BlockBackend
*blk
, HDGeometry
*geo
)
2264 if (!blk_is_available(blk
)) {
2268 return bdrv_probe_geometry(blk_bs(blk
), geo
);
2272 * Updates the BlockBackendRootState object with data from the currently
2273 * attached BlockDriverState.
2275 void blk_update_root_state(BlockBackend
*blk
)
2279 blk
->root_state
.open_flags
= blk
->root
->bs
->open_flags
;
2280 blk
->root_state
.detect_zeroes
= blk
->root
->bs
->detect_zeroes
;
2284 * Returns the detect-zeroes setting to be used for bdrv_open() of a
2285 * BlockDriverState which is supposed to inherit the root state.
2287 bool blk_get_detect_zeroes_from_root_state(BlockBackend
*blk
)
2289 return blk
->root_state
.detect_zeroes
;
2293 * Returns the flags to be used for bdrv_open() of a BlockDriverState which is
2294 * supposed to inherit the root state.
2296 int blk_get_open_flags_from_root_state(BlockBackend
*blk
)
2298 return blk
->root_state
.open_flags
;
2301 BlockBackendRootState
*blk_get_root_state(BlockBackend
*blk
)
2303 return &blk
->root_state
;
2306 int blk_commit_all(void)
2308 BlockBackend
*blk
= NULL
;
2310 while ((blk
= blk_all_next(blk
)) != NULL
) {
2311 AioContext
*aio_context
= blk_get_aio_context(blk
);
2312 BlockDriverState
*unfiltered_bs
= bdrv_skip_filters(blk_bs(blk
));
2314 aio_context_acquire(aio_context
);
2315 if (blk_is_inserted(blk
) && bdrv_cow_child(unfiltered_bs
)) {
2318 ret
= bdrv_commit(unfiltered_bs
);
2320 aio_context_release(aio_context
);
2324 aio_context_release(aio_context
);
2330 /* throttling disk I/O limits */
2331 void blk_set_io_limits(BlockBackend
*blk
, ThrottleConfig
*cfg
)
2333 throttle_group_config(&blk
->public.throttle_group_member
, cfg
);
2336 void blk_io_limits_disable(BlockBackend
*blk
)
2338 BlockDriverState
*bs
= blk_bs(blk
);
2339 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
2340 assert(tgm
->throttle_state
);
2343 bdrv_drained_begin(bs
);
2345 throttle_group_unregister_tgm(tgm
);
2347 bdrv_drained_end(bs
);
2352 /* should be called before blk_set_io_limits if a limit is set */
2353 void blk_io_limits_enable(BlockBackend
*blk
, const char *group
)
2355 assert(!blk
->public.throttle_group_member
.throttle_state
);
2356 throttle_group_register_tgm(&blk
->public.throttle_group_member
,
2357 group
, blk_get_aio_context(blk
));
2360 void blk_io_limits_update_group(BlockBackend
*blk
, const char *group
)
2362 /* this BB is not part of any group */
2363 if (!blk
->public.throttle_group_member
.throttle_state
) {
2367 /* this BB is a part of the same group than the one we want */
2368 if (!g_strcmp0(throttle_group_get_name(&blk
->public.throttle_group_member
),
2373 /* need to change the group this bs belong to */
2374 blk_io_limits_disable(blk
);
2375 blk_io_limits_enable(blk
, group
);
2378 static void blk_root_drained_begin(BdrvChild
*child
)
2380 BlockBackend
*blk
= child
->opaque
;
2381 ThrottleGroupMember
*tgm
= &blk
->public.throttle_group_member
;
2383 if (++blk
->quiesce_counter
== 1) {
2384 if (blk
->dev_ops
&& blk
->dev_ops
->drained_begin
) {
2385 blk
->dev_ops
->drained_begin(blk
->dev_opaque
);
2389 /* Note that blk->root may not be accessible here yet if we are just
2390 * attaching to a BlockDriverState that is drained. Use child instead. */
2392 if (qatomic_fetch_inc(&tgm
->io_limits_disabled
) == 0) {
2393 throttle_group_restart_tgm(tgm
);
2397 static bool blk_root_drained_poll(BdrvChild
*child
)
2399 BlockBackend
*blk
= child
->opaque
;
2401 assert(blk
->quiesce_counter
);
2403 if (blk
->dev_ops
&& blk
->dev_ops
->drained_poll
) {
2404 busy
= blk
->dev_ops
->drained_poll(blk
->dev_opaque
);
2406 return busy
|| !!blk
->in_flight
;
2409 static void blk_root_drained_end(BdrvChild
*child
, int *drained_end_counter
)
2411 BlockBackend
*blk
= child
->opaque
;
2412 assert(blk
->quiesce_counter
);
2414 assert(blk
->public.throttle_group_member
.io_limits_disabled
);
2415 qatomic_dec(&blk
->public.throttle_group_member
.io_limits_disabled
);
2417 if (--blk
->quiesce_counter
== 0) {
2418 if (blk
->dev_ops
&& blk
->dev_ops
->drained_end
) {
2419 blk
->dev_ops
->drained_end(blk
->dev_opaque
);
2421 while (qemu_co_enter_next(&blk
->queued_requests
, NULL
)) {
2422 /* Resume all queued requests */
2427 void blk_register_buf(BlockBackend
*blk
, void *host
, size_t size
)
2429 bdrv_register_buf(blk_bs(blk
), host
, size
);
2432 void blk_unregister_buf(BlockBackend
*blk
, void *host
)
2434 bdrv_unregister_buf(blk_bs(blk
), host
);
2437 int coroutine_fn
blk_co_copy_range(BlockBackend
*blk_in
, int64_t off_in
,
2438 BlockBackend
*blk_out
, int64_t off_out
,
2439 int64_t bytes
, BdrvRequestFlags read_flags
,
2440 BdrvRequestFlags write_flags
)
2443 r
= blk_check_byte_request(blk_in
, off_in
, bytes
);
2447 r
= blk_check_byte_request(blk_out
, off_out
, bytes
);
2451 return bdrv_co_copy_range(blk_in
->root
, off_in
,
2452 blk_out
->root
, off_out
,
2453 bytes
, read_flags
, write_flags
);
2456 const BdrvChild
*blk_root(BlockBackend
*blk
)
2461 int blk_make_empty(BlockBackend
*blk
, Error
**errp
)
2463 if (!blk_is_available(blk
)) {
2464 error_setg(errp
, "No medium inserted");
2468 return bdrv_make_empty(blk
->root
, errp
);