2 * QEMU System Emulator block driver
4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2020 Virtuozzo International GmbH.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu/osdep.h"
27 #include "block/trace.h"
28 #include "block/block_int.h"
29 #include "block/blockjob.h"
30 #include "block/dirty-bitmap.h"
31 #include "block/fuse.h"
32 #include "block/nbd.h"
33 #include "block/qdict.h"
34 #include "qemu/error-report.h"
35 #include "block/module_block.h"
36 #include "qemu/main-loop.h"
37 #include "qemu/module.h"
38 #include "qapi/error.h"
39 #include "qapi/qmp/qdict.h"
40 #include "qapi/qmp/qjson.h"
41 #include "qapi/qmp/qnull.h"
42 #include "qapi/qmp/qstring.h"
43 #include "qapi/qobject-output-visitor.h"
44 #include "qapi/qapi-visit-block-core.h"
45 #include "sysemu/block-backend.h"
46 #include "qemu/notify.h"
47 #include "qemu/option.h"
48 #include "qemu/coroutine.h"
49 #include "block/qapi.h"
50 #include "qemu/timer.h"
51 #include "qemu/cutils.h"
53 #include "qemu/range.h"
55 #include "block/coroutines.h"
58 #include <sys/ioctl.h>
59 #include <sys/queue.h>
60 #if defined(HAVE_SYS_DISK_H)
69 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
71 /* Protected by BQL */
72 static QTAILQ_HEAD(, BlockDriverState
) graph_bdrv_states
=
73 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states
);
75 /* Protected by BQL */
76 static QTAILQ_HEAD(, BlockDriverState
) all_bdrv_states
=
77 QTAILQ_HEAD_INITIALIZER(all_bdrv_states
);
79 /* Protected by BQL */
80 static QLIST_HEAD(, BlockDriver
) bdrv_drivers
=
81 QLIST_HEAD_INITIALIZER(bdrv_drivers
);
83 static BlockDriverState
*bdrv_open_inherit(const char *filename
,
84 const char *reference
,
85 QDict
*options
, int flags
,
86 BlockDriverState
*parent
,
87 const BdrvChildClass
*child_class
,
88 BdrvChildRole child_role
,
92 static bool bdrv_recurse_has_child(BlockDriverState
*bs
,
93 BlockDriverState
*child
);
95 static void GRAPH_WRLOCK
96 bdrv_replace_child_noperm(BdrvChild
*child
, BlockDriverState
*new_bs
);
98 static void GRAPH_WRLOCK
99 bdrv_remove_child(BdrvChild
*child
, Transaction
*tran
);
101 static int bdrv_reopen_prepare(BDRVReopenState
*reopen_state
,
102 BlockReopenQueue
*queue
,
103 Transaction
*change_child_tran
, Error
**errp
);
104 static void bdrv_reopen_commit(BDRVReopenState
*reopen_state
);
105 static void bdrv_reopen_abort(BDRVReopenState
*reopen_state
);
107 static bool bdrv_backing_overridden(BlockDriverState
*bs
);
109 static bool bdrv_change_aio_context(BlockDriverState
*bs
, AioContext
*ctx
,
110 GHashTable
*visited
, Transaction
*tran
,
113 /* If non-zero, use only whitelisted block drivers */
114 static int use_bdrv_whitelist
;
117 static int is_windows_drive_prefix(const char *filename
)
119 return (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
120 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
124 int is_windows_drive(const char *filename
)
126 if (is_windows_drive_prefix(filename
) &&
129 if (strstart(filename
, "\\\\.\\", NULL
) ||
130 strstart(filename
, "//./", NULL
))
136 size_t bdrv_opt_mem_align(BlockDriverState
*bs
)
138 if (!bs
|| !bs
->drv
) {
139 /* page size or 4k (hdd sector size) should be on the safe side */
140 return MAX(4096, qemu_real_host_page_size());
144 return bs
->bl
.opt_mem_alignment
;
147 size_t bdrv_min_mem_align(BlockDriverState
*bs
)
149 if (!bs
|| !bs
->drv
) {
150 /* page size or 4k (hdd sector size) should be on the safe side */
151 return MAX(4096, qemu_real_host_page_size());
155 return bs
->bl
.min_mem_alignment
;
158 /* check if the path starts with "<protocol>:" */
159 int path_has_protocol(const char *path
)
164 if (is_windows_drive(path
) ||
165 is_windows_drive_prefix(path
)) {
168 p
= path
+ strcspn(path
, ":/\\");
170 p
= path
+ strcspn(path
, ":/");
176 int path_is_absolute(const char *path
)
179 /* specific case for names like: "\\.\d:" */
180 if (is_windows_drive(path
) || is_windows_drive_prefix(path
)) {
183 return (*path
== '/' || *path
== '\\');
185 return (*path
== '/');
189 /* if filename is absolute, just return its duplicate. Otherwise, build a
190 path to it by considering it is relative to base_path. URL are
192 char *path_combine(const char *base_path
, const char *filename
)
194 const char *protocol_stripped
= NULL
;
199 if (path_is_absolute(filename
)) {
200 return g_strdup(filename
);
203 if (path_has_protocol(base_path
)) {
204 protocol_stripped
= strchr(base_path
, ':');
205 if (protocol_stripped
) {
209 p
= protocol_stripped
?: base_path
;
211 p1
= strrchr(base_path
, '/');
215 p2
= strrchr(base_path
, '\\');
216 if (!p1
|| p2
> p1
) {
231 result
= g_malloc(len
+ strlen(filename
) + 1);
232 memcpy(result
, base_path
, len
);
233 strcpy(result
+ len
, filename
);
239 * Helper function for bdrv_parse_filename() implementations to remove optional
240 * protocol prefixes (especially "file:") from a filename and for putting the
241 * stripped filename into the options QDict if there is such a prefix.
243 void bdrv_parse_filename_strip_prefix(const char *filename
, const char *prefix
,
246 if (strstart(filename
, prefix
, &filename
)) {
247 /* Stripping the explicit protocol prefix may result in a protocol
248 * prefix being (wrongly) detected (if the filename contains a colon) */
249 if (path_has_protocol(filename
)) {
250 GString
*fat_filename
;
252 /* This means there is some colon before the first slash; therefore,
253 * this cannot be an absolute path */
254 assert(!path_is_absolute(filename
));
256 /* And we can thus fix the protocol detection issue by prefixing it
258 fat_filename
= g_string_new("./");
259 g_string_append(fat_filename
, filename
);
261 assert(!path_has_protocol(fat_filename
->str
));
263 qdict_put(options
, "filename",
264 qstring_from_gstring(fat_filename
));
266 /* If no protocol prefix was detected, we can use the shortened
268 qdict_put_str(options
, "filename", filename
);
274 /* Returns whether the image file is opened as read-only. Note that this can
275 * return false and writing to the image file is still not possible because the
276 * image is inactivated. */
277 bool bdrv_is_read_only(BlockDriverState
*bs
)
280 return !(bs
->open_flags
& BDRV_O_RDWR
);
283 static int GRAPH_RDLOCK
284 bdrv_can_set_read_only(BlockDriverState
*bs
, bool read_only
,
285 bool ignore_allow_rdw
, Error
**errp
)
289 /* Do not set read_only if copy_on_read is enabled */
290 if (bs
->copy_on_read
&& read_only
) {
291 error_setg(errp
, "Can't set node '%s' to r/o with copy-on-read enabled",
292 bdrv_get_device_or_node_name(bs
));
296 /* Do not clear read_only if it is prohibited */
297 if (!read_only
&& !(bs
->open_flags
& BDRV_O_ALLOW_RDWR
) &&
300 error_setg(errp
, "Node '%s' is read only",
301 bdrv_get_device_or_node_name(bs
));
309 * Called by a driver that can only provide a read-only image.
311 * Returns 0 if the node is already read-only or it could switch the node to
312 * read-only because BDRV_O_AUTO_RDONLY is set.
314 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
315 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
316 * is not NULL, it is used as the error message for the Error object.
318 int bdrv_apply_auto_read_only(BlockDriverState
*bs
, const char *errmsg
,
324 if (!(bs
->open_flags
& BDRV_O_RDWR
)) {
327 if (!(bs
->open_flags
& BDRV_O_AUTO_RDONLY
)) {
331 ret
= bdrv_can_set_read_only(bs
, true, false, NULL
);
336 bs
->open_flags
&= ~BDRV_O_RDWR
;
341 error_setg(errp
, "%s", errmsg
?: "Image is read-only");
346 * If @backing is empty, this function returns NULL without setting
347 * @errp. In all other cases, NULL will only be returned with @errp
350 * Therefore, a return value of NULL without @errp set means that
351 * there is no backing file; if @errp is set, there is one but its
352 * absolute filename cannot be generated.
354 char *bdrv_get_full_backing_filename_from_filename(const char *backed
,
358 if (backing
[0] == '\0') {
360 } else if (path_has_protocol(backing
) || path_is_absolute(backing
)) {
361 return g_strdup(backing
);
362 } else if (backed
[0] == '\0' || strstart(backed
, "json:", NULL
)) {
363 error_setg(errp
, "Cannot use relative backing file names for '%s'",
367 return path_combine(backed
, backing
);
372 * If @filename is empty or NULL, this function returns NULL without
373 * setting @errp. In all other cases, NULL will only be returned with
376 static char * GRAPH_RDLOCK
377 bdrv_make_absolute_filename(BlockDriverState
*relative_to
,
378 const char *filename
, Error
**errp
)
380 char *dir
, *full_name
;
382 if (!filename
|| filename
[0] == '\0') {
384 } else if (path_has_protocol(filename
) || path_is_absolute(filename
)) {
385 return g_strdup(filename
);
388 dir
= bdrv_dirname(relative_to
, errp
);
393 full_name
= g_strconcat(dir
, filename
, NULL
);
398 char *bdrv_get_full_backing_filename(BlockDriverState
*bs
, Error
**errp
)
401 return bdrv_make_absolute_filename(bs
, bs
->backing_file
, errp
);
404 void bdrv_register(BlockDriver
*bdrv
)
406 assert(bdrv
->format_name
);
408 QLIST_INSERT_HEAD(&bdrv_drivers
, bdrv
, list
);
411 BlockDriverState
*bdrv_new(void)
413 BlockDriverState
*bs
;
418 bs
= g_new0(BlockDriverState
, 1);
419 QLIST_INIT(&bs
->dirty_bitmaps
);
420 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
421 QLIST_INIT(&bs
->op_blockers
[i
]);
423 qemu_mutex_init(&bs
->reqs_lock
);
424 qemu_mutex_init(&bs
->dirty_bitmap_mutex
);
426 bs
->aio_context
= qemu_get_aio_context();
428 qemu_co_queue_init(&bs
->flush_queue
);
430 qemu_co_mutex_init(&bs
->bsc_modify_lock
);
431 bs
->block_status_cache
= g_new0(BdrvBlockStatusCache
, 1);
433 for (i
= 0; i
< bdrv_drain_all_count
; i
++) {
434 bdrv_drained_begin(bs
);
437 QTAILQ_INSERT_TAIL(&all_bdrv_states
, bs
, bs_list
);
442 static BlockDriver
*bdrv_do_find_format(const char *format_name
)
447 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
448 if (!strcmp(drv1
->format_name
, format_name
)) {
456 BlockDriver
*bdrv_find_format(const char *format_name
)
463 drv1
= bdrv_do_find_format(format_name
);
468 /* The driver isn't registered, maybe we need to load a module */
469 for (i
= 0; i
< (int)ARRAY_SIZE(block_driver_modules
); ++i
) {
470 if (!strcmp(block_driver_modules
[i
].format_name
, format_name
)) {
471 Error
*local_err
= NULL
;
472 int rv
= block_module_load(block_driver_modules
[i
].library_name
,
475 return bdrv_do_find_format(format_name
);
477 error_report_err(local_err
);
485 static int bdrv_format_is_whitelisted(const char *format_name
, bool read_only
)
487 static const char *whitelist_rw
[] = {
488 CONFIG_BDRV_RW_WHITELIST
491 static const char *whitelist_ro
[] = {
492 CONFIG_BDRV_RO_WHITELIST
497 if (!whitelist_rw
[0] && !whitelist_ro
[0]) {
498 return 1; /* no whitelist, anything goes */
501 for (p
= whitelist_rw
; *p
; p
++) {
502 if (!strcmp(format_name
, *p
)) {
507 for (p
= whitelist_ro
; *p
; p
++) {
508 if (!strcmp(format_name
, *p
)) {
516 int bdrv_is_whitelisted(BlockDriver
*drv
, bool read_only
)
519 return bdrv_format_is_whitelisted(drv
->format_name
, read_only
);
522 bool bdrv_uses_whitelist(void)
524 return use_bdrv_whitelist
;
527 typedef struct CreateCo
{
535 int coroutine_fn
bdrv_co_create(BlockDriver
*drv
, const char *filename
,
536 QemuOpts
*opts
, Error
**errp
)
542 if (!drv
->bdrv_co_create_opts
) {
543 error_setg(errp
, "Driver '%s' does not support image creation",
548 ret
= drv
->bdrv_co_create_opts(drv
, filename
, opts
, errp
);
549 if (ret
< 0 && !*errp
) {
550 error_setg_errno(errp
, -ret
, "Could not create image");
557 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
558 * least the given @minimum_size.
560 * On success, return @blk's actual length.
561 * Otherwise, return -errno.
563 static int64_t coroutine_fn GRAPH_UNLOCKED
564 create_file_fallback_truncate(BlockBackend
*blk
, int64_t minimum_size
,
567 Error
*local_err
= NULL
;
573 ret
= blk_co_truncate(blk
, minimum_size
, false, PREALLOC_MODE_OFF
, 0,
575 if (ret
< 0 && ret
!= -ENOTSUP
) {
576 error_propagate(errp
, local_err
);
580 size
= blk_co_getlength(blk
);
582 error_free(local_err
);
583 error_setg_errno(errp
, -size
,
584 "Failed to inquire the new image file's length");
588 if (size
< minimum_size
) {
589 /* Need to grow the image, but we failed to do that */
590 error_propagate(errp
, local_err
);
594 error_free(local_err
);
601 * Helper function for bdrv_create_file_fallback(): Zero the first
602 * sector to remove any potentially pre-existing image header.
604 static int coroutine_fn
605 create_file_fallback_zero_first_sector(BlockBackend
*blk
,
606 int64_t current_size
,
609 int64_t bytes_to_clear
;
614 bytes_to_clear
= MIN(current_size
, BDRV_SECTOR_SIZE
);
615 if (bytes_to_clear
) {
616 ret
= blk_co_pwrite_zeroes(blk
, 0, bytes_to_clear
, BDRV_REQ_MAY_UNMAP
);
618 error_setg_errno(errp
, -ret
,
619 "Failed to clear the new image's first sector");
628 * Simple implementation of bdrv_co_create_opts for protocol drivers
629 * which only support creation via opening a file
630 * (usually existing raw storage device)
632 int coroutine_fn
bdrv_co_create_opts_simple(BlockDriver
*drv
,
633 const char *filename
,
642 PreallocMode prealloc
;
643 Error
*local_err
= NULL
;
648 size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0);
649 buf
= qemu_opt_get_del(opts
, BLOCK_OPT_PREALLOC
);
650 prealloc
= qapi_enum_parse(&PreallocMode_lookup
, buf
,
651 PREALLOC_MODE_OFF
, &local_err
);
654 error_propagate(errp
, local_err
);
658 if (prealloc
!= PREALLOC_MODE_OFF
) {
659 error_setg(errp
, "Unsupported preallocation mode '%s'",
660 PreallocMode_str(prealloc
));
664 options
= qdict_new();
665 qdict_put_str(options
, "driver", drv
->format_name
);
667 blk
= blk_co_new_open(filename
, NULL
, options
,
668 BDRV_O_RDWR
| BDRV_O_RESIZE
, errp
);
670 error_prepend(errp
, "Protocol driver '%s' does not support creating "
671 "new images, so an existing image must be selected as "
672 "the target; however, opening the given target as an "
673 "existing image failed: ",
678 size
= create_file_fallback_truncate(blk
, size
, errp
);
684 ret
= create_file_fallback_zero_first_sector(blk
, size
, errp
);
695 int coroutine_fn
bdrv_co_create_file(const char *filename
, QemuOpts
*opts
,
698 QemuOpts
*protocol_opts
;
705 drv
= bdrv_find_protocol(filename
, true, errp
);
710 if (!drv
->create_opts
) {
711 error_setg(errp
, "Driver '%s' does not support image creation",
717 * 'opts' contains a QemuOptsList with a combination of format and protocol
720 * The format properly removes its options, but the default values remain
721 * in 'opts->list'. So if the protocol has options with the same name
722 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
723 * of the format, since for overlapping options, the format wins.
725 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
726 * only the set options, and then convert it back to QemuOpts, using the
727 * create_opts of the protocol. So the new QemuOpts, will contain only the
730 qdict
= qemu_opts_to_qdict(opts
, NULL
);
731 protocol_opts
= qemu_opts_from_qdict(drv
->create_opts
, qdict
, errp
);
732 if (protocol_opts
== NULL
) {
737 ret
= bdrv_co_create(drv
, filename
, protocol_opts
, errp
);
739 qemu_opts_del(protocol_opts
);
740 qobject_unref(qdict
);
744 int coroutine_fn
bdrv_co_delete_file(BlockDriverState
*bs
, Error
**errp
)
746 Error
*local_err
= NULL
;
751 assert_bdrv_graph_readable();
754 error_setg(errp
, "Block node '%s' is not opened", bs
->filename
);
758 if (!bs
->drv
->bdrv_co_delete_file
) {
759 error_setg(errp
, "Driver '%s' does not support image deletion",
760 bs
->drv
->format_name
);
764 ret
= bs
->drv
->bdrv_co_delete_file(bs
, &local_err
);
766 error_propagate(errp
, local_err
);
772 void coroutine_fn
bdrv_co_delete_file_noerr(BlockDriverState
*bs
)
774 Error
*local_err
= NULL
;
782 ret
= bdrv_co_delete_file(bs
, &local_err
);
784 * ENOTSUP will happen if the block driver doesn't support
785 * the 'bdrv_co_delete_file' interface. This is a predictable
786 * scenario and shouldn't be reported back to the user.
788 if (ret
== -ENOTSUP
) {
789 error_free(local_err
);
790 } else if (ret
< 0) {
791 error_report_err(local_err
);
796 * Try to get @bs's logical and physical block size.
797 * On success, store them in @bsz struct and return 0.
798 * On failure return -errno.
799 * @bs must not be empty.
801 int bdrv_probe_blocksizes(BlockDriverState
*bs
, BlockSizes
*bsz
)
803 BlockDriver
*drv
= bs
->drv
;
804 BlockDriverState
*filtered
= bdrv_filter_bs(bs
);
807 if (drv
&& drv
->bdrv_probe_blocksizes
) {
808 return drv
->bdrv_probe_blocksizes(bs
, bsz
);
809 } else if (filtered
) {
810 return bdrv_probe_blocksizes(filtered
, bsz
);
817 * Try to get @bs's geometry (cyls, heads, sectors).
818 * On success, store them in @geo struct and return 0.
819 * On failure return -errno.
820 * @bs must not be empty.
822 int bdrv_probe_geometry(BlockDriverState
*bs
, HDGeometry
*geo
)
824 BlockDriver
*drv
= bs
->drv
;
825 BlockDriverState
*filtered
;
828 GRAPH_RDLOCK_GUARD_MAINLOOP();
830 if (drv
&& drv
->bdrv_probe_geometry
) {
831 return drv
->bdrv_probe_geometry(bs
, geo
);
834 filtered
= bdrv_filter_bs(bs
);
836 return bdrv_probe_geometry(filtered
, geo
);
843 * Create a uniquely-named empty temporary file.
844 * Return the actual file name used upon success, otherwise NULL.
845 * This string should be freed with g_free() when not needed any longer.
847 * Note: creating a temporary file for the caller to (re)open is
848 * inherently racy. Use g_file_open_tmp() instead whenever practical.
850 char *create_tmp_file(Error
**errp
)
854 g_autofree
char *filename
= NULL
;
856 tmpdir
= g_get_tmp_dir();
859 * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot")
861 * This function is used to create temporary disk images (like -snapshot),
862 * so the files can become very large. /tmp is often a tmpfs where as
863 * /var/tmp is usually on a disk, so more appropriate for disk images.
865 if (!g_strcmp0(tmpdir
, "/tmp")) {
870 filename
= g_strdup_printf("%s/vl.XXXXXX", tmpdir
);
871 fd
= g_mkstemp(filename
);
873 error_setg_errno(errp
, errno
, "Could not open temporary file '%s'",
879 return g_steal_pointer(&filename
);
883 * Detect host devices. By convention, /dev/cdrom[N] is always
884 * recognized as a host CDROM.
886 static BlockDriver
*find_hdev_driver(const char *filename
)
888 int score_max
= 0, score
;
889 BlockDriver
*drv
= NULL
, *d
;
892 QLIST_FOREACH(d
, &bdrv_drivers
, list
) {
893 if (d
->bdrv_probe_device
) {
894 score
= d
->bdrv_probe_device(filename
);
895 if (score
> score_max
) {
905 static BlockDriver
*bdrv_do_find_protocol(const char *protocol
)
910 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
911 if (drv1
->protocol_name
&& !strcmp(drv1
->protocol_name
, protocol
)) {
919 BlockDriver
*bdrv_find_protocol(const char *filename
,
920 bool allow_protocol_prefix
,
932 * XXX(hch): we really should not let host device detection
933 * override an explicit protocol specification, but moving this
934 * later breaks access to device names with colons in them.
935 * Thanks to the brain-dead persistent naming schemes on udev-
936 * based Linux systems those actually are quite common.
938 drv1
= find_hdev_driver(filename
);
943 if (!path_has_protocol(filename
) || !allow_protocol_prefix
) {
947 p
= strchr(filename
, ':');
950 if (len
> sizeof(protocol
) - 1)
951 len
= sizeof(protocol
) - 1;
952 memcpy(protocol
, filename
, len
);
953 protocol
[len
] = '\0';
955 drv1
= bdrv_do_find_protocol(protocol
);
960 for (i
= 0; i
< (int)ARRAY_SIZE(block_driver_modules
); ++i
) {
961 if (block_driver_modules
[i
].protocol_name
&&
962 !strcmp(block_driver_modules
[i
].protocol_name
, protocol
)) {
963 int rv
= block_module_load(block_driver_modules
[i
].library_name
, errp
);
965 drv1
= bdrv_do_find_protocol(protocol
);
974 error_setg(errp
, "Unknown protocol '%s'", protocol
);
980 * Guess image format by probing its contents.
981 * This is not a good idea when your image is raw (CVE-2008-2004), but
982 * we do it anyway for backward compatibility.
984 * @buf contains the image's first @buf_size bytes.
985 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
986 * but can be smaller if the image file is smaller)
987 * @filename is its filename.
989 * For all block drivers, call the bdrv_probe() method to get its
991 * Return the first block driver with the highest probing score.
993 BlockDriver
*bdrv_probe_all(const uint8_t *buf
, int buf_size
,
994 const char *filename
)
996 int score_max
= 0, score
;
997 BlockDriver
*drv
= NULL
, *d
;
1000 QLIST_FOREACH(d
, &bdrv_drivers
, list
) {
1001 if (d
->bdrv_probe
) {
1002 score
= d
->bdrv_probe(buf
, buf_size
, filename
);
1003 if (score
> score_max
) {
1013 static int find_image_format(BlockBackend
*file
, const char *filename
,
1014 BlockDriver
**pdrv
, Error
**errp
)
1017 uint8_t buf
[BLOCK_PROBE_BUF_SIZE
];
1020 GLOBAL_STATE_CODE();
1022 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
1023 if (blk_is_sg(file
) || !blk_is_inserted(file
) || blk_getlength(file
) == 0) {
1028 ret
= blk_pread(file
, 0, sizeof(buf
), buf
, 0);
1030 error_setg_errno(errp
, -ret
, "Could not read image for determining its "
1036 drv
= bdrv_probe_all(buf
, sizeof(buf
), filename
);
1038 error_setg(errp
, "Could not determine image format: No compatible "
1049 * Set the current 'total_sectors' value
1050 * Return 0 on success, -errno on error.
1052 int coroutine_fn
bdrv_co_refresh_total_sectors(BlockDriverState
*bs
,
1055 BlockDriver
*drv
= bs
->drv
;
1057 assert_bdrv_graph_readable();
1063 /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */
1067 /* query actual device if possible, otherwise just trust the hint */
1068 if (drv
->bdrv_co_getlength
) {
1069 int64_t length
= drv
->bdrv_co_getlength(bs
);
1073 hint
= DIV_ROUND_UP(length
, BDRV_SECTOR_SIZE
);
1076 bs
->total_sectors
= hint
;
1078 if (bs
->total_sectors
* BDRV_SECTOR_SIZE
> BDRV_MAX_LENGTH
) {
1086 * Combines a QDict of new block driver @options with any missing options taken
1087 * from @old_options, so that leaving out an option defaults to its old value.
1089 static void bdrv_join_options(BlockDriverState
*bs
, QDict
*options
,
1092 GLOBAL_STATE_CODE();
1093 if (bs
->drv
&& bs
->drv
->bdrv_join_options
) {
1094 bs
->drv
->bdrv_join_options(options
, old_options
);
1096 qdict_join(options
, old_options
, false);
1100 static BlockdevDetectZeroesOptions
bdrv_parse_detect_zeroes(QemuOpts
*opts
,
1104 Error
*local_err
= NULL
;
1105 char *value
= qemu_opt_get_del(opts
, "detect-zeroes");
1106 BlockdevDetectZeroesOptions detect_zeroes
=
1107 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup
, value
,
1108 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
, &local_err
);
1109 GLOBAL_STATE_CODE();
1112 error_propagate(errp
, local_err
);
1113 return detect_zeroes
;
1116 if (detect_zeroes
== BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP
&&
1117 !(open_flags
& BDRV_O_UNMAP
))
1119 error_setg(errp
, "setting detect-zeroes to unmap is not allowed "
1120 "without setting discard operation to unmap");
1123 return detect_zeroes
;
1127 * Set open flags for aio engine
1129 * Return 0 on success, -1 if the engine specified is invalid
1131 int bdrv_parse_aio(const char *mode
, int *flags
)
1133 if (!strcmp(mode
, "threads")) {
1134 /* do nothing, default */
1135 } else if (!strcmp(mode
, "native")) {
1136 *flags
|= BDRV_O_NATIVE_AIO
;
1137 #ifdef CONFIG_LINUX_IO_URING
1138 } else if (!strcmp(mode
, "io_uring")) {
1139 *flags
|= BDRV_O_IO_URING
;
1149 * Set open flags for a given discard mode
1151 * Return 0 on success, -1 if the discard mode was invalid.
1153 int bdrv_parse_discard_flags(const char *mode
, int *flags
)
1155 *flags
&= ~BDRV_O_UNMAP
;
1157 if (!strcmp(mode
, "off") || !strcmp(mode
, "ignore")) {
1159 } else if (!strcmp(mode
, "on") || !strcmp(mode
, "unmap")) {
1160 *flags
|= BDRV_O_UNMAP
;
1169 * Set open flags for a given cache mode
1171 * Return 0 on success, -1 if the cache mode was invalid.
1173 int bdrv_parse_cache_mode(const char *mode
, int *flags
, bool *writethrough
)
1175 *flags
&= ~BDRV_O_CACHE_MASK
;
1177 if (!strcmp(mode
, "off") || !strcmp(mode
, "none")) {
1178 *writethrough
= false;
1179 *flags
|= BDRV_O_NOCACHE
;
1180 } else if (!strcmp(mode
, "directsync")) {
1181 *writethrough
= true;
1182 *flags
|= BDRV_O_NOCACHE
;
1183 } else if (!strcmp(mode
, "writeback")) {
1184 *writethrough
= false;
1185 } else if (!strcmp(mode
, "unsafe")) {
1186 *writethrough
= false;
1187 *flags
|= BDRV_O_NO_FLUSH
;
1188 } else if (!strcmp(mode
, "writethrough")) {
1189 *writethrough
= true;
1197 static char *bdrv_child_get_parent_desc(BdrvChild
*c
)
1199 BlockDriverState
*parent
= c
->opaque
;
1200 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent
));
1203 static void GRAPH_RDLOCK
bdrv_child_cb_drained_begin(BdrvChild
*child
)
1205 BlockDriverState
*bs
= child
->opaque
;
1206 bdrv_do_drained_begin_quiesce(bs
, NULL
);
1209 static bool GRAPH_RDLOCK
bdrv_child_cb_drained_poll(BdrvChild
*child
)
1211 BlockDriverState
*bs
= child
->opaque
;
1212 return bdrv_drain_poll(bs
, NULL
, false);
1215 static void GRAPH_RDLOCK
bdrv_child_cb_drained_end(BdrvChild
*child
)
1217 BlockDriverState
*bs
= child
->opaque
;
1218 bdrv_drained_end(bs
);
1221 static int bdrv_child_cb_inactivate(BdrvChild
*child
)
1223 BlockDriverState
*bs
= child
->opaque
;
1224 GLOBAL_STATE_CODE();
1225 assert(bs
->open_flags
& BDRV_O_INACTIVE
);
1229 static bool bdrv_child_cb_change_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
1230 GHashTable
*visited
, Transaction
*tran
,
1233 BlockDriverState
*bs
= child
->opaque
;
1234 return bdrv_change_aio_context(bs
, ctx
, visited
, tran
, errp
);
1238 * Returns the options and flags that a temporary snapshot should get, based on
1239 * the originally requested flags (the originally requested image will have
1240 * flags like a backing file)
1242 static void bdrv_temp_snapshot_options(int *child_flags
, QDict
*child_options
,
1243 int parent_flags
, QDict
*parent_options
)
1245 GLOBAL_STATE_CODE();
1246 *child_flags
= (parent_flags
& ~BDRV_O_SNAPSHOT
) | BDRV_O_TEMPORARY
;
1248 /* For temporary files, unconditional cache=unsafe is fine */
1249 qdict_set_default_str(child_options
, BDRV_OPT_CACHE_DIRECT
, "off");
1250 qdict_set_default_str(child_options
, BDRV_OPT_CACHE_NO_FLUSH
, "on");
1252 /* Copy the read-only and discard options from the parent */
1253 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_READ_ONLY
);
1254 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_DISCARD
);
1256 /* aio=native doesn't work for cache.direct=off, so disable it for the
1257 * temporary snapshot */
1258 *child_flags
&= ~BDRV_O_NATIVE_AIO
;
1261 static void GRAPH_WRLOCK
bdrv_backing_attach(BdrvChild
*c
)
1263 BlockDriverState
*parent
= c
->opaque
;
1264 BlockDriverState
*backing_hd
= c
->bs
;
1266 GLOBAL_STATE_CODE();
1267 assert(!parent
->backing_blocker
);
1268 error_setg(&parent
->backing_blocker
,
1269 "node is used as backing hd of '%s'",
1270 bdrv_get_device_or_node_name(parent
));
1272 bdrv_refresh_filename(backing_hd
);
1274 parent
->open_flags
&= ~BDRV_O_NO_BACKING
;
1276 bdrv_op_block_all(backing_hd
, parent
->backing_blocker
);
1277 /* Otherwise we won't be able to commit or stream */
1278 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_COMMIT_TARGET
,
1279 parent
->backing_blocker
);
1280 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_STREAM
,
1281 parent
->backing_blocker
);
1283 * We do backup in 3 ways:
1285 * The target bs is new opened, and the source is top BDS
1286 * 2. blockdev backup
1287 * Both the source and the target are top BDSes.
1288 * 3. internal backup(used for block replication)
1289 * Both the source and the target are backing file
1291 * In case 1 and 2, neither the source nor the target is the backing file.
1292 * In case 3, we will block the top BDS, so there is only one block job
1293 * for the top BDS and its backing chain.
1295 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_BACKUP_SOURCE
,
1296 parent
->backing_blocker
);
1297 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_BACKUP_TARGET
,
1298 parent
->backing_blocker
);
1301 static void bdrv_backing_detach(BdrvChild
*c
)
1303 BlockDriverState
*parent
= c
->opaque
;
1305 GLOBAL_STATE_CODE();
1306 assert(parent
->backing_blocker
);
1307 bdrv_op_unblock_all(c
->bs
, parent
->backing_blocker
);
1308 error_free(parent
->backing_blocker
);
1309 parent
->backing_blocker
= NULL
;
1312 static int bdrv_backing_update_filename(BdrvChild
*c
, BlockDriverState
*base
,
1313 const char *filename
,
1314 bool backing_mask_protocol
,
1317 BlockDriverState
*parent
= c
->opaque
;
1318 bool read_only
= bdrv_is_read_only(parent
);
1320 const char *format_name
;
1321 GLOBAL_STATE_CODE();
1324 ret
= bdrv_reopen_set_read_only(parent
, false, errp
);
1332 * If the new base image doesn't have a format driver layer, which we
1333 * detect by the fact that @base is a protocol driver, we record
1334 * 'raw' as the format instead of putting the protocol name as the
1337 if (backing_mask_protocol
&& base
->drv
->protocol_name
) {
1338 format_name
= "raw";
1340 format_name
= base
->drv
->format_name
;
1346 ret
= bdrv_change_backing_file(parent
, filename
, format_name
, false);
1348 error_setg_errno(errp
, -ret
, "Could not update backing file link");
1352 bdrv_reopen_set_read_only(parent
, true, NULL
);
1359 * Returns the options and flags that a generic child of a BDS should
1360 * get, based on the given options and flags for the parent BDS.
1362 static void bdrv_inherited_options(BdrvChildRole role
, bool parent_is_format
,
1363 int *child_flags
, QDict
*child_options
,
1364 int parent_flags
, QDict
*parent_options
)
1366 int flags
= parent_flags
;
1367 GLOBAL_STATE_CODE();
1370 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1371 * Generally, the question to answer is: Should this child be
1372 * format-probed by default?
1376 * Pure and non-filtered data children of non-format nodes should
1377 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1378 * set). This only affects a very limited set of drivers (namely
1379 * quorum and blkverify when this comment was written).
1380 * Force-clear BDRV_O_PROTOCOL then.
1382 if (!parent_is_format
&&
1383 (role
& BDRV_CHILD_DATA
) &&
1384 !(role
& (BDRV_CHILD_METADATA
| BDRV_CHILD_FILTERED
)))
1386 flags
&= ~BDRV_O_PROTOCOL
;
1390 * All children of format nodes (except for COW children) and all
1391 * metadata children in general should never be format-probed.
1392 * Force-set BDRV_O_PROTOCOL then.
1394 if ((parent_is_format
&& !(role
& BDRV_CHILD_COW
)) ||
1395 (role
& BDRV_CHILD_METADATA
))
1397 flags
|= BDRV_O_PROTOCOL
;
1401 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1404 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_CACHE_DIRECT
);
1405 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_CACHE_NO_FLUSH
);
1406 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_FORCE_SHARE
);
1408 if (role
& BDRV_CHILD_COW
) {
1409 /* backing files are opened read-only by default */
1410 qdict_set_default_str(child_options
, BDRV_OPT_READ_ONLY
, "on");
1411 qdict_set_default_str(child_options
, BDRV_OPT_AUTO_READ_ONLY
, "off");
1413 /* Inherit the read-only option from the parent if it's not set */
1414 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_READ_ONLY
);
1415 qdict_copy_default(child_options
, parent_options
,
1416 BDRV_OPT_AUTO_READ_ONLY
);
1420 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1421 * can default to enable it on lower layers regardless of the
1424 qdict_set_default_str(child_options
, BDRV_OPT_DISCARD
, "unmap");
1426 /* Clear flags that only apply to the top layer */
1427 flags
&= ~(BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
| BDRV_O_COPY_ON_READ
);
1429 if (role
& BDRV_CHILD_METADATA
) {
1430 flags
&= ~BDRV_O_NO_IO
;
1432 if (role
& BDRV_CHILD_COW
) {
1433 flags
&= ~BDRV_O_TEMPORARY
;
1436 *child_flags
= flags
;
1439 static void GRAPH_WRLOCK
bdrv_child_cb_attach(BdrvChild
*child
)
1441 BlockDriverState
*bs
= child
->opaque
;
1443 assert_bdrv_graph_writable();
1444 QLIST_INSERT_HEAD(&bs
->children
, child
, next
);
1445 if (bs
->drv
->is_filter
|| (child
->role
& BDRV_CHILD_FILTERED
)) {
1447 * Here we handle filters and block/raw-format.c when it behave like
1448 * filter. They generally have a single PRIMARY child, which is also the
1449 * FILTERED child, and that they may have multiple more children, which
1450 * are neither PRIMARY nor FILTERED. And never we have a COW child here.
1451 * So bs->file will be the PRIMARY child, unless the PRIMARY child goes
1452 * into bs->backing on exceptional cases; and bs->backing will be
1455 assert(!(child
->role
& BDRV_CHILD_COW
));
1456 if (child
->role
& BDRV_CHILD_PRIMARY
) {
1457 assert(child
->role
& BDRV_CHILD_FILTERED
);
1458 assert(!bs
->backing
);
1461 if (bs
->drv
->filtered_child_is_backing
) {
1462 bs
->backing
= child
;
1467 assert(!(child
->role
& BDRV_CHILD_FILTERED
));
1469 } else if (child
->role
& BDRV_CHILD_COW
) {
1470 assert(bs
->drv
->supports_backing
);
1471 assert(!(child
->role
& BDRV_CHILD_PRIMARY
));
1472 assert(!bs
->backing
);
1473 bs
->backing
= child
;
1474 bdrv_backing_attach(child
);
1475 } else if (child
->role
& BDRV_CHILD_PRIMARY
) {
1481 static void GRAPH_WRLOCK
bdrv_child_cb_detach(BdrvChild
*child
)
1483 BlockDriverState
*bs
= child
->opaque
;
1485 if (child
->role
& BDRV_CHILD_COW
) {
1486 bdrv_backing_detach(child
);
1489 assert_bdrv_graph_writable();
1490 QLIST_REMOVE(child
, next
);
1491 if (child
== bs
->backing
) {
1492 assert(child
!= bs
->file
);
1494 } else if (child
== bs
->file
) {
1499 static int bdrv_child_cb_update_filename(BdrvChild
*c
, BlockDriverState
*base
,
1500 const char *filename
,
1501 bool backing_mask_protocol
,
1504 if (c
->role
& BDRV_CHILD_COW
) {
1505 return bdrv_backing_update_filename(c
, base
, filename
,
1506 backing_mask_protocol
,
1512 AioContext
*child_of_bds_get_parent_aio_context(BdrvChild
*c
)
1514 BlockDriverState
*bs
= c
->opaque
;
1517 return bdrv_get_aio_context(bs
);
1520 const BdrvChildClass child_of_bds
= {
1521 .parent_is_bds
= true,
1522 .get_parent_desc
= bdrv_child_get_parent_desc
,
1523 .inherit_options
= bdrv_inherited_options
,
1524 .drained_begin
= bdrv_child_cb_drained_begin
,
1525 .drained_poll
= bdrv_child_cb_drained_poll
,
1526 .drained_end
= bdrv_child_cb_drained_end
,
1527 .attach
= bdrv_child_cb_attach
,
1528 .detach
= bdrv_child_cb_detach
,
1529 .inactivate
= bdrv_child_cb_inactivate
,
1530 .change_aio_ctx
= bdrv_child_cb_change_aio_ctx
,
1531 .update_filename
= bdrv_child_cb_update_filename
,
1532 .get_parent_aio_context
= child_of_bds_get_parent_aio_context
,
1535 AioContext
*bdrv_child_get_parent_aio_context(BdrvChild
*c
)
1538 return c
->klass
->get_parent_aio_context(c
);
1541 static int bdrv_open_flags(BlockDriverState
*bs
, int flags
)
1543 int open_flags
= flags
;
1544 GLOBAL_STATE_CODE();
1547 * Clear flags that are internal to the block layer before opening the
1550 open_flags
&= ~(BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
| BDRV_O_PROTOCOL
);
1555 static void update_flags_from_options(int *flags
, QemuOpts
*opts
)
1557 GLOBAL_STATE_CODE();
1559 *flags
&= ~(BDRV_O_CACHE_MASK
| BDRV_O_RDWR
| BDRV_O_AUTO_RDONLY
);
1561 if (qemu_opt_get_bool_del(opts
, BDRV_OPT_CACHE_NO_FLUSH
, false)) {
1562 *flags
|= BDRV_O_NO_FLUSH
;
1565 if (qemu_opt_get_bool_del(opts
, BDRV_OPT_CACHE_DIRECT
, false)) {
1566 *flags
|= BDRV_O_NOCACHE
;
1569 if (!qemu_opt_get_bool_del(opts
, BDRV_OPT_READ_ONLY
, false)) {
1570 *flags
|= BDRV_O_RDWR
;
1573 if (qemu_opt_get_bool_del(opts
, BDRV_OPT_AUTO_READ_ONLY
, false)) {
1574 *flags
|= BDRV_O_AUTO_RDONLY
;
1578 static void update_options_from_flags(QDict
*options
, int flags
)
1580 GLOBAL_STATE_CODE();
1581 if (!qdict_haskey(options
, BDRV_OPT_CACHE_DIRECT
)) {
1582 qdict_put_bool(options
, BDRV_OPT_CACHE_DIRECT
, flags
& BDRV_O_NOCACHE
);
1584 if (!qdict_haskey(options
, BDRV_OPT_CACHE_NO_FLUSH
)) {
1585 qdict_put_bool(options
, BDRV_OPT_CACHE_NO_FLUSH
,
1586 flags
& BDRV_O_NO_FLUSH
);
1588 if (!qdict_haskey(options
, BDRV_OPT_READ_ONLY
)) {
1589 qdict_put_bool(options
, BDRV_OPT_READ_ONLY
, !(flags
& BDRV_O_RDWR
));
1591 if (!qdict_haskey(options
, BDRV_OPT_AUTO_READ_ONLY
)) {
1592 qdict_put_bool(options
, BDRV_OPT_AUTO_READ_ONLY
,
1593 flags
& BDRV_O_AUTO_RDONLY
);
1597 static void bdrv_assign_node_name(BlockDriverState
*bs
,
1598 const char *node_name
,
1601 char *gen_node_name
= NULL
;
1602 GLOBAL_STATE_CODE();
1605 node_name
= gen_node_name
= id_generate(ID_BLOCK
);
1606 } else if (!id_wellformed(node_name
)) {
1608 * Check for empty string or invalid characters, but not if it is
1609 * generated (generated names use characters not available to the user)
1611 error_setg(errp
, "Invalid node-name: '%s'", node_name
);
1615 /* takes care of avoiding namespaces collisions */
1616 if (blk_by_name(node_name
)) {
1617 error_setg(errp
, "node-name=%s is conflicting with a device id",
1622 /* takes care of avoiding duplicates node names */
1623 if (bdrv_find_node(node_name
)) {
1624 error_setg(errp
, "Duplicate nodes with node-name='%s'", node_name
);
1628 /* Make sure that the node name isn't truncated */
1629 if (strlen(node_name
) >= sizeof(bs
->node_name
)) {
1630 error_setg(errp
, "Node name too long");
1634 /* copy node name into the bs and insert it into the graph list */
1635 pstrcpy(bs
->node_name
, sizeof(bs
->node_name
), node_name
);
1636 QTAILQ_INSERT_TAIL(&graph_bdrv_states
, bs
, node_list
);
1638 g_free(gen_node_name
);
1641 static int no_coroutine_fn GRAPH_UNLOCKED
1642 bdrv_open_driver(BlockDriverState
*bs
, BlockDriver
*drv
, const char *node_name
,
1643 QDict
*options
, int open_flags
, Error
**errp
)
1645 Error
*local_err
= NULL
;
1647 GLOBAL_STATE_CODE();
1649 bdrv_assign_node_name(bs
, node_name
, &local_err
);
1651 error_propagate(errp
, local_err
);
1656 bs
->opaque
= g_malloc0(drv
->instance_size
);
1658 assert(!drv
->bdrv_needs_filename
|| bs
->filename
[0]);
1659 if (drv
->bdrv_open
) {
1660 ret
= drv
->bdrv_open(bs
, options
, open_flags
, &local_err
);
1667 error_propagate(errp
, local_err
);
1668 } else if (bs
->filename
[0]) {
1669 error_setg_errno(errp
, -ret
, "Could not open '%s'", bs
->filename
);
1671 error_setg_errno(errp
, -ret
, "Could not open image");
1676 assert(!(bs
->supported_read_flags
& ~BDRV_REQ_MASK
));
1677 assert(!(bs
->supported_write_flags
& ~BDRV_REQ_MASK
));
1680 * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves
1681 * drivers that pass read/write requests through to a child the trouble of
1682 * declaring support explicitly.
1684 * Drivers must not propagate this flag accidentally when they initiate I/O
1685 * to a bounce buffer. That case should be rare though.
1687 bs
->supported_read_flags
|= BDRV_REQ_REGISTERED_BUF
;
1688 bs
->supported_write_flags
|= BDRV_REQ_REGISTERED_BUF
;
1690 ret
= bdrv_refresh_total_sectors(bs
, bs
->total_sectors
);
1692 error_setg_errno(errp
, -ret
, "Could not refresh total sector count");
1696 bdrv_graph_rdlock_main_loop();
1697 bdrv_refresh_limits(bs
, NULL
, &local_err
);
1698 bdrv_graph_rdunlock_main_loop();
1701 error_propagate(errp
, local_err
);
1705 assert(bdrv_opt_mem_align(bs
) != 0);
1706 assert(bdrv_min_mem_align(bs
) != 0);
1707 assert(is_power_of_2(bs
->bl
.request_alignment
));
1709 for (i
= 0; i
< bs
->quiesce_counter
; i
++) {
1710 if (drv
->bdrv_drain_begin
) {
1711 drv
->bdrv_drain_begin(bs
);
1719 bdrv_graph_wrlock();
1720 if (bs
->file
!= NULL
) {
1721 bdrv_unref_child(bs
, bs
->file
);
1724 bdrv_graph_wrunlock();
1732 * Create and open a block node.
1734 * @options is a QDict of options to pass to the block drivers, or NULL for an
1735 * empty set of options. The reference to the QDict belongs to the block layer
1736 * after the call (even on failure), so if the caller intends to reuse the
1737 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1739 BlockDriverState
*bdrv_new_open_driver_opts(BlockDriver
*drv
,
1740 const char *node_name
,
1741 QDict
*options
, int flags
,
1744 BlockDriverState
*bs
;
1747 GLOBAL_STATE_CODE();
1750 bs
->open_flags
= flags
;
1751 bs
->options
= options
?: qdict_new();
1752 bs
->explicit_options
= qdict_clone_shallow(bs
->options
);
1755 update_options_from_flags(bs
->options
, flags
);
1757 ret
= bdrv_open_driver(bs
, drv
, node_name
, bs
->options
, flags
, errp
);
1759 qobject_unref(bs
->explicit_options
);
1760 bs
->explicit_options
= NULL
;
1761 qobject_unref(bs
->options
);
1770 /* Create and open a block node. */
1771 BlockDriverState
*bdrv_new_open_driver(BlockDriver
*drv
, const char *node_name
,
1772 int flags
, Error
**errp
)
1774 GLOBAL_STATE_CODE();
1775 return bdrv_new_open_driver_opts(drv
, node_name
, NULL
, flags
, errp
);
1778 QemuOptsList bdrv_runtime_opts
= {
1779 .name
= "bdrv_common",
1780 .head
= QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts
.head
),
1783 .name
= "node-name",
1784 .type
= QEMU_OPT_STRING
,
1785 .help
= "Node name of the block device node",
1789 .type
= QEMU_OPT_STRING
,
1790 .help
= "Block driver to use for the node",
1793 .name
= BDRV_OPT_CACHE_DIRECT
,
1794 .type
= QEMU_OPT_BOOL
,
1795 .help
= "Bypass software writeback cache on the host",
1798 .name
= BDRV_OPT_CACHE_NO_FLUSH
,
1799 .type
= QEMU_OPT_BOOL
,
1800 .help
= "Ignore flush requests",
1803 .name
= BDRV_OPT_READ_ONLY
,
1804 .type
= QEMU_OPT_BOOL
,
1805 .help
= "Node is opened in read-only mode",
1808 .name
= BDRV_OPT_AUTO_READ_ONLY
,
1809 .type
= QEMU_OPT_BOOL
,
1810 .help
= "Node can become read-only if opening read-write fails",
1813 .name
= "detect-zeroes",
1814 .type
= QEMU_OPT_STRING
,
1815 .help
= "try to optimize zero writes (off, on, unmap)",
1818 .name
= BDRV_OPT_DISCARD
,
1819 .type
= QEMU_OPT_STRING
,
1820 .help
= "discard operation (ignore/off, unmap/on)",
1823 .name
= BDRV_OPT_FORCE_SHARE
,
1824 .type
= QEMU_OPT_BOOL
,
1825 .help
= "always accept other writers (default: off)",
1827 { /* end of list */ }
1831 QemuOptsList bdrv_create_opts_simple
= {
1832 .name
= "simple-create-opts",
1833 .head
= QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple
.head
),
1836 .name
= BLOCK_OPT_SIZE
,
1837 .type
= QEMU_OPT_SIZE
,
1838 .help
= "Virtual disk size"
1841 .name
= BLOCK_OPT_PREALLOC
,
1842 .type
= QEMU_OPT_STRING
,
1843 .help
= "Preallocation mode (allowed values: off)"
1845 { /* end of list */ }
1850 * Common part for opening disk images and files
1852 * Removes all processed options from *options.
1854 static int bdrv_open_common(BlockDriverState
*bs
, BlockBackend
*file
,
1855 QDict
*options
, Error
**errp
)
1857 int ret
, open_flags
;
1858 const char *filename
;
1859 const char *driver_name
= NULL
;
1860 const char *node_name
= NULL
;
1861 const char *discard
;
1864 Error
*local_err
= NULL
;
1867 GLOBAL_STATE_CODE();
1869 bdrv_graph_rdlock_main_loop();
1870 assert(bs
->file
== NULL
);
1871 assert(options
!= NULL
&& bs
->options
!= options
);
1872 bdrv_graph_rdunlock_main_loop();
1874 opts
= qemu_opts_create(&bdrv_runtime_opts
, NULL
, 0, &error_abort
);
1875 if (!qemu_opts_absorb_qdict(opts
, options
, errp
)) {
1880 update_flags_from_options(&bs
->open_flags
, opts
);
1882 driver_name
= qemu_opt_get(opts
, "driver");
1883 drv
= bdrv_find_format(driver_name
);
1884 assert(drv
!= NULL
);
1886 bs
->force_share
= qemu_opt_get_bool(opts
, BDRV_OPT_FORCE_SHARE
, false);
1888 if (bs
->force_share
&& (bs
->open_flags
& BDRV_O_RDWR
)) {
1890 BDRV_OPT_FORCE_SHARE
1891 "=on can only be used with read-only images");
1897 bdrv_graph_rdlock_main_loop();
1898 bdrv_refresh_filename(blk_bs(file
));
1899 bdrv_graph_rdunlock_main_loop();
1901 filename
= blk_bs(file
)->filename
;
1904 * Caution: while qdict_get_try_str() is fine, getting
1905 * non-string types would require more care. When @options
1906 * come from -blockdev or blockdev_add, its members are typed
1907 * according to the QAPI schema, but when they come from
1908 * -drive, they're all QString.
1910 filename
= qdict_get_try_str(options
, "filename");
1913 if (drv
->bdrv_needs_filename
&& (!filename
|| !filename
[0])) {
1914 error_setg(errp
, "The '%s' block driver requires a file name",
1920 trace_bdrv_open_common(bs
, filename
?: "", bs
->open_flags
,
1923 ro
= bdrv_is_read_only(bs
);
1925 if (use_bdrv_whitelist
&& !bdrv_is_whitelisted(drv
, ro
)) {
1926 if (!ro
&& bdrv_is_whitelisted(drv
, true)) {
1927 bdrv_graph_rdlock_main_loop();
1928 ret
= bdrv_apply_auto_read_only(bs
, NULL
, NULL
);
1929 bdrv_graph_rdunlock_main_loop();
1935 !ro
&& bdrv_is_whitelisted(drv
, true)
1936 ? "Driver '%s' can only be used for read-only devices"
1937 : "Driver '%s' is not whitelisted",
1943 /* bdrv_new() and bdrv_close() make it so */
1944 assert(qatomic_read(&bs
->copy_on_read
) == 0);
1946 if (bs
->open_flags
& BDRV_O_COPY_ON_READ
) {
1948 bdrv_enable_copy_on_read(bs
);
1950 error_setg(errp
, "Can't use copy-on-read on read-only device");
1956 discard
= qemu_opt_get(opts
, BDRV_OPT_DISCARD
);
1957 if (discard
!= NULL
) {
1958 if (bdrv_parse_discard_flags(discard
, &bs
->open_flags
) != 0) {
1959 error_setg(errp
, "Invalid discard option");
1966 bdrv_parse_detect_zeroes(opts
, bs
->open_flags
, &local_err
);
1968 error_propagate(errp
, local_err
);
1973 if (filename
!= NULL
) {
1974 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
1976 bs
->filename
[0] = '\0';
1978 pstrcpy(bs
->exact_filename
, sizeof(bs
->exact_filename
), bs
->filename
);
1980 /* Open the image, either directly or using a protocol */
1981 open_flags
= bdrv_open_flags(bs
, bs
->open_flags
);
1982 node_name
= qemu_opt_get(opts
, "node-name");
1984 assert(!drv
->protocol_name
|| file
== NULL
);
1985 ret
= bdrv_open_driver(bs
, drv
, node_name
, options
, open_flags
, errp
);
1990 qemu_opts_del(opts
);
1994 qemu_opts_del(opts
);
1998 static QDict
*parse_json_filename(const char *filename
, Error
**errp
)
2001 QObject
*options_obj
;
2004 GLOBAL_STATE_CODE();
2006 ret
= strstart(filename
, "json:", &filename
);
2009 options_obj
= qobject_from_json(filename
, errp
);
2011 error_prepend(errp
, "Could not parse the JSON options: ");
2015 options
= qobject_to(QDict
, options_obj
);
2017 qobject_unref(options_obj
);
2018 error_setg(errp
, "Invalid JSON object given");
2022 qdict_flatten(options
);
2027 static void parse_json_protocol(QDict
*options
, const char **pfilename
,
2030 QDict
*json_options
;
2031 Error
*local_err
= NULL
;
2032 GLOBAL_STATE_CODE();
2034 /* Parse json: pseudo-protocol */
2035 if (!*pfilename
|| !g_str_has_prefix(*pfilename
, "json:")) {
2039 json_options
= parse_json_filename(*pfilename
, &local_err
);
2041 error_propagate(errp
, local_err
);
2045 /* Options given in the filename have lower priority than options
2046 * specified directly */
2047 qdict_join(options
, json_options
, false);
2048 qobject_unref(json_options
);
2053 * Fills in default options for opening images and converts the legacy
2054 * filename/flags pair to option QDict entries.
2055 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
2056 * block driver has been specified explicitly.
2058 static int bdrv_fill_options(QDict
**options
, const char *filename
,
2059 int *flags
, bool allow_parse_filename
,
2062 const char *drvname
;
2063 bool protocol
= *flags
& BDRV_O_PROTOCOL
;
2064 bool parse_filename
= false;
2065 BlockDriver
*drv
= NULL
;
2066 Error
*local_err
= NULL
;
2068 GLOBAL_STATE_CODE();
2071 * Caution: while qdict_get_try_str() is fine, getting non-string
2072 * types would require more care. When @options come from
2073 * -blockdev or blockdev_add, its members are typed according to
2074 * the QAPI schema, but when they come from -drive, they're all
2077 drvname
= qdict_get_try_str(*options
, "driver");
2079 drv
= bdrv_find_format(drvname
);
2081 error_setg(errp
, "Unknown driver '%s'", drvname
);
2084 /* If the user has explicitly specified the driver, this choice should
2085 * override the BDRV_O_PROTOCOL flag */
2086 protocol
= drv
->protocol_name
;
2090 *flags
|= BDRV_O_PROTOCOL
;
2092 *flags
&= ~BDRV_O_PROTOCOL
;
2095 /* Translate cache options from flags into options */
2096 update_options_from_flags(*options
, *flags
);
2098 /* Fetch the file name from the options QDict if necessary */
2099 if (protocol
&& filename
) {
2100 if (!qdict_haskey(*options
, "filename")) {
2101 qdict_put_str(*options
, "filename", filename
);
2102 parse_filename
= allow_parse_filename
;
2104 error_setg(errp
, "Can't specify 'file' and 'filename' options at "
2110 /* Find the right block driver */
2111 /* See cautionary note on accessing @options above */
2112 filename
= qdict_get_try_str(*options
, "filename");
2114 if (!drvname
&& protocol
) {
2116 drv
= bdrv_find_protocol(filename
, parse_filename
, errp
);
2121 drvname
= drv
->format_name
;
2122 qdict_put_str(*options
, "driver", drvname
);
2124 error_setg(errp
, "Must specify either driver or file");
2129 assert(drv
|| !protocol
);
2131 /* Driver-specific filename parsing */
2132 if (drv
&& drv
->bdrv_parse_filename
&& parse_filename
) {
2133 drv
->bdrv_parse_filename(filename
, *options
, &local_err
);
2135 error_propagate(errp
, local_err
);
2139 if (!drv
->bdrv_needs_filename
) {
2140 qdict_del(*options
, "filename");
2147 typedef struct BlockReopenQueueEntry
{
2149 BDRVReopenState state
;
2150 QTAILQ_ENTRY(BlockReopenQueueEntry
) entry
;
2151 } BlockReopenQueueEntry
;
2154 * Return the flags that @bs will have after the reopens in @q have
2155 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2156 * return the current flags.
2158 static int bdrv_reopen_get_flags(BlockReopenQueue
*q
, BlockDriverState
*bs
)
2160 BlockReopenQueueEntry
*entry
;
2163 QTAILQ_FOREACH(entry
, q
, entry
) {
2164 if (entry
->state
.bs
== bs
) {
2165 return entry
->state
.flags
;
2170 return bs
->open_flags
;
2173 /* Returns whether the image file can be written to after the reopen queue @q
2174 * has been successfully applied, or right now if @q is NULL. */
2175 static bool bdrv_is_writable_after_reopen(BlockDriverState
*bs
,
2176 BlockReopenQueue
*q
)
2178 int flags
= bdrv_reopen_get_flags(q
, bs
);
2180 return (flags
& (BDRV_O_RDWR
| BDRV_O_INACTIVE
)) == BDRV_O_RDWR
;
2184 * Return whether the BDS can be written to. This is not necessarily
2185 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2186 * be written to but do not count as read-only images.
2188 bool bdrv_is_writable(BlockDriverState
*bs
)
2191 return bdrv_is_writable_after_reopen(bs
, NULL
);
2194 static char *bdrv_child_user_desc(BdrvChild
*c
)
2196 GLOBAL_STATE_CODE();
2197 return c
->klass
->get_parent_desc(c
);
2201 * Check that @a allows everything that @b needs. @a and @b must reference same
2204 static bool bdrv_a_allow_b(BdrvChild
*a
, BdrvChild
*b
, Error
**errp
)
2206 const char *child_bs_name
;
2207 g_autofree
char *a_user
= NULL
;
2208 g_autofree
char *b_user
= NULL
;
2209 g_autofree
char *perms
= NULL
;
2212 assert(a
->bs
== b
->bs
);
2213 GLOBAL_STATE_CODE();
2215 if ((b
->perm
& a
->shared_perm
) == b
->perm
) {
2219 child_bs_name
= bdrv_get_node_name(b
->bs
);
2220 a_user
= bdrv_child_user_desc(a
);
2221 b_user
= bdrv_child_user_desc(b
);
2222 perms
= bdrv_perm_names(b
->perm
& ~a
->shared_perm
);
2224 error_setg(errp
, "Permission conflict on node '%s': permissions '%s' are "
2225 "both required by %s (uses node '%s' as '%s' child) and "
2226 "unshared by %s (uses node '%s' as '%s' child).",
2227 child_bs_name
, perms
,
2228 b_user
, child_bs_name
, b
->name
,
2229 a_user
, child_bs_name
, a
->name
);
2234 static bool GRAPH_RDLOCK
2235 bdrv_parent_perms_conflict(BlockDriverState
*bs
, Error
**errp
)
2238 GLOBAL_STATE_CODE();
2241 * During the loop we'll look at each pair twice. That's correct because
2242 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2245 QLIST_FOREACH(a
, &bs
->parents
, next_parent
) {
2246 QLIST_FOREACH(b
, &bs
->parents
, next_parent
) {
2251 if (!bdrv_a_allow_b(a
, b
, errp
)) {
2260 static void GRAPH_RDLOCK
2261 bdrv_child_perm(BlockDriverState
*bs
, BlockDriverState
*child_bs
,
2262 BdrvChild
*c
, BdrvChildRole role
,
2263 BlockReopenQueue
*reopen_queue
,
2264 uint64_t parent_perm
, uint64_t parent_shared
,
2265 uint64_t *nperm
, uint64_t *nshared
)
2267 assert(bs
->drv
&& bs
->drv
->bdrv_child_perm
);
2268 GLOBAL_STATE_CODE();
2269 bs
->drv
->bdrv_child_perm(bs
, c
, role
, reopen_queue
,
2270 parent_perm
, parent_shared
,
2272 /* TODO Take force_share from reopen_queue */
2273 if (child_bs
&& child_bs
->force_share
) {
2274 *nshared
= BLK_PERM_ALL
;
2279 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2280 * nodes that are already in the @list, of course) so that final list is
2281 * topologically sorted. Return the result (GSList @list object is updated, so
2282 * don't use old reference after function call).
2284 * On function start @list must be already topologically sorted and for any node
2285 * in the @list the whole subtree of the node must be in the @list as well. The
2286 * simplest way to satisfy this criteria: use only result of
2287 * bdrv_topological_dfs() or NULL as @list parameter.
2289 static GSList
* GRAPH_RDLOCK
2290 bdrv_topological_dfs(GSList
*list
, GHashTable
*found
, BlockDriverState
*bs
)
2293 g_autoptr(GHashTable
) local_found
= NULL
;
2295 GLOBAL_STATE_CODE();
2299 found
= local_found
= g_hash_table_new(NULL
, NULL
);
2302 if (g_hash_table_contains(found
, bs
)) {
2305 g_hash_table_add(found
, bs
);
2307 QLIST_FOREACH(child
, &bs
->children
, next
) {
2308 list
= bdrv_topological_dfs(list
, found
, child
->bs
);
2311 return g_slist_prepend(list
, bs
);
2314 typedef struct BdrvChildSetPermState
{
2317 uint64_t old_shared_perm
;
2318 } BdrvChildSetPermState
;
2320 static void bdrv_child_set_perm_abort(void *opaque
)
2322 BdrvChildSetPermState
*s
= opaque
;
2324 GLOBAL_STATE_CODE();
2326 s
->child
->perm
= s
->old_perm
;
2327 s
->child
->shared_perm
= s
->old_shared_perm
;
2330 static TransactionActionDrv bdrv_child_set_pem_drv
= {
2331 .abort
= bdrv_child_set_perm_abort
,
2335 static void bdrv_child_set_perm(BdrvChild
*c
, uint64_t perm
,
2336 uint64_t shared
, Transaction
*tran
)
2338 BdrvChildSetPermState
*s
= g_new(BdrvChildSetPermState
, 1);
2339 GLOBAL_STATE_CODE();
2341 *s
= (BdrvChildSetPermState
) {
2343 .old_perm
= c
->perm
,
2344 .old_shared_perm
= c
->shared_perm
,
2348 c
->shared_perm
= shared
;
2350 tran_add(tran
, &bdrv_child_set_pem_drv
, s
);
2353 static void GRAPH_RDLOCK
bdrv_drv_set_perm_commit(void *opaque
)
2355 BlockDriverState
*bs
= opaque
;
2356 uint64_t cumulative_perms
, cumulative_shared_perms
;
2357 GLOBAL_STATE_CODE();
2359 if (bs
->drv
->bdrv_set_perm
) {
2360 bdrv_get_cumulative_perm(bs
, &cumulative_perms
,
2361 &cumulative_shared_perms
);
2362 bs
->drv
->bdrv_set_perm(bs
, cumulative_perms
, cumulative_shared_perms
);
2366 static void GRAPH_RDLOCK
bdrv_drv_set_perm_abort(void *opaque
)
2368 BlockDriverState
*bs
= opaque
;
2369 GLOBAL_STATE_CODE();
2371 if (bs
->drv
->bdrv_abort_perm_update
) {
2372 bs
->drv
->bdrv_abort_perm_update(bs
);
2376 TransactionActionDrv bdrv_drv_set_perm_drv
= {
2377 .abort
= bdrv_drv_set_perm_abort
,
2378 .commit
= bdrv_drv_set_perm_commit
,
2382 * After calling this function, the transaction @tran may only be completed
2383 * while holding a reader lock for the graph.
2385 static int GRAPH_RDLOCK
2386 bdrv_drv_set_perm(BlockDriverState
*bs
, uint64_t perm
, uint64_t shared_perm
,
2387 Transaction
*tran
, Error
**errp
)
2389 GLOBAL_STATE_CODE();
2394 if (bs
->drv
->bdrv_check_perm
) {
2395 int ret
= bs
->drv
->bdrv_check_perm(bs
, perm
, shared_perm
, errp
);
2402 tran_add(tran
, &bdrv_drv_set_perm_drv
, bs
);
2408 typedef struct BdrvReplaceChildState
{
2410 BlockDriverState
*old_bs
;
2411 } BdrvReplaceChildState
;
2413 static void GRAPH_WRLOCK
bdrv_replace_child_commit(void *opaque
)
2415 BdrvReplaceChildState
*s
= opaque
;
2416 GLOBAL_STATE_CODE();
2418 bdrv_schedule_unref(s
->old_bs
);
2421 static void GRAPH_WRLOCK
bdrv_replace_child_abort(void *opaque
)
2423 BdrvReplaceChildState
*s
= opaque
;
2424 BlockDriverState
*new_bs
= s
->child
->bs
;
2426 GLOBAL_STATE_CODE();
2427 assert_bdrv_graph_writable();
2429 /* old_bs reference is transparently moved from @s to @s->child */
2430 if (!s
->child
->bs
) {
2432 * The parents were undrained when removing old_bs from the child. New
2433 * requests can't have been made, though, because the child was empty.
2435 * TODO Make bdrv_replace_child_noperm() transactionable to avoid
2436 * undraining the parent in the first place. Once this is done, having
2437 * new_bs drained when calling bdrv_replace_child_tran() is not a
2438 * requirement any more.
2440 bdrv_parent_drained_begin_single(s
->child
);
2441 assert(!bdrv_parent_drained_poll_single(s
->child
));
2443 assert(s
->child
->quiesced_parent
);
2444 bdrv_replace_child_noperm(s
->child
, s
->old_bs
);
2449 static TransactionActionDrv bdrv_replace_child_drv
= {
2450 .commit
= bdrv_replace_child_commit
,
2451 .abort
= bdrv_replace_child_abort
,
2456 * bdrv_replace_child_tran
2458 * Note: real unref of old_bs is done only on commit.
2460 * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be
2461 * kept drained until the transaction is completed.
2463 * After calling this function, the transaction @tran may only be completed
2464 * while holding a writer lock for the graph.
2466 * The function doesn't update permissions, caller is responsible for this.
2468 static void GRAPH_WRLOCK
2469 bdrv_replace_child_tran(BdrvChild
*child
, BlockDriverState
*new_bs
,
2472 BdrvReplaceChildState
*s
= g_new(BdrvReplaceChildState
, 1);
2474 assert(child
->quiesced_parent
);
2475 assert(!new_bs
|| new_bs
->quiesce_counter
);
2477 *s
= (BdrvReplaceChildState
) {
2479 .old_bs
= child
->bs
,
2481 tran_add(tran
, &bdrv_replace_child_drv
, s
);
2487 bdrv_replace_child_noperm(child
, new_bs
);
2488 /* old_bs reference is transparently moved from @child to @s */
2492 * Refresh permissions in @bs subtree. The function is intended to be called
2493 * after some graph modification that was done without permission update.
2495 * After calling this function, the transaction @tran may only be completed
2496 * while holding a reader lock for the graph.
2498 static int GRAPH_RDLOCK
2499 bdrv_node_refresh_perm(BlockDriverState
*bs
, BlockReopenQueue
*q
,
2500 Transaction
*tran
, Error
**errp
)
2502 BlockDriver
*drv
= bs
->drv
;
2505 uint64_t cumulative_perms
, cumulative_shared_perms
;
2506 GLOBAL_STATE_CODE();
2508 bdrv_get_cumulative_perm(bs
, &cumulative_perms
, &cumulative_shared_perms
);
2510 /* Write permissions never work with read-only images */
2511 if ((cumulative_perms
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
)) &&
2512 !bdrv_is_writable_after_reopen(bs
, q
))
2514 if (!bdrv_is_writable_after_reopen(bs
, NULL
)) {
2515 error_setg(errp
, "Block node is read-only");
2517 error_setg(errp
, "Read-only block node '%s' cannot support "
2518 "read-write users", bdrv_get_node_name(bs
));
2525 * Unaligned requests will automatically be aligned to bl.request_alignment
2526 * and without RESIZE we can't extend requests to write to space beyond the
2527 * end of the image, so it's required that the image size is aligned.
2529 if ((cumulative_perms
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
)) &&
2530 !(cumulative_perms
& BLK_PERM_RESIZE
))
2532 if ((bs
->total_sectors
* BDRV_SECTOR_SIZE
) % bs
->bl
.request_alignment
) {
2533 error_setg(errp
, "Cannot get 'write' permission without 'resize': "
2534 "Image size is not a multiple of request "
2540 /* Check this node */
2545 ret
= bdrv_drv_set_perm(bs
, cumulative_perms
, cumulative_shared_perms
, tran
,
2551 /* Drivers that never have children can omit .bdrv_child_perm() */
2552 if (!drv
->bdrv_child_perm
) {
2553 assert(QLIST_EMPTY(&bs
->children
));
2557 /* Check all children */
2558 QLIST_FOREACH(c
, &bs
->children
, next
) {
2559 uint64_t cur_perm
, cur_shared
;
2561 bdrv_child_perm(bs
, c
->bs
, c
, c
->role
, q
,
2562 cumulative_perms
, cumulative_shared_perms
,
2563 &cur_perm
, &cur_shared
);
2564 bdrv_child_set_perm(c
, cur_perm
, cur_shared
, tran
);
2571 * @list is a product of bdrv_topological_dfs() (may be called several times) -
2572 * a topologically sorted subgraph.
2574 * After calling this function, the transaction @tran may only be completed
2575 * while holding a reader lock for the graph.
2577 static int GRAPH_RDLOCK
2578 bdrv_do_refresh_perms(GSList
*list
, BlockReopenQueue
*q
, Transaction
*tran
,
2582 BlockDriverState
*bs
;
2583 GLOBAL_STATE_CODE();
2585 for ( ; list
; list
= list
->next
) {
2588 if (bdrv_parent_perms_conflict(bs
, errp
)) {
2592 ret
= bdrv_node_refresh_perm(bs
, q
, tran
, errp
);
2602 * @list is any list of nodes. List is completed by all subtrees and
2603 * topologically sorted. It's not a problem if some node occurs in the @list
2606 * After calling this function, the transaction @tran may only be completed
2607 * while holding a reader lock for the graph.
2609 static int GRAPH_RDLOCK
2610 bdrv_list_refresh_perms(GSList
*list
, BlockReopenQueue
*q
, Transaction
*tran
,
2613 g_autoptr(GHashTable
) found
= g_hash_table_new(NULL
, NULL
);
2614 g_autoptr(GSList
) refresh_list
= NULL
;
2616 for ( ; list
; list
= list
->next
) {
2617 refresh_list
= bdrv_topological_dfs(refresh_list
, found
, list
->data
);
2620 return bdrv_do_refresh_perms(refresh_list
, q
, tran
, errp
);
2623 void bdrv_get_cumulative_perm(BlockDriverState
*bs
, uint64_t *perm
,
2624 uint64_t *shared_perm
)
2627 uint64_t cumulative_perms
= 0;
2628 uint64_t cumulative_shared_perms
= BLK_PERM_ALL
;
2630 GLOBAL_STATE_CODE();
2632 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
2633 cumulative_perms
|= c
->perm
;
2634 cumulative_shared_perms
&= c
->shared_perm
;
2637 *perm
= cumulative_perms
;
2638 *shared_perm
= cumulative_shared_perms
;
2641 char *bdrv_perm_names(uint64_t perm
)
2647 { BLK_PERM_CONSISTENT_READ
, "consistent read" },
2648 { BLK_PERM_WRITE
, "write" },
2649 { BLK_PERM_WRITE_UNCHANGED
, "write unchanged" },
2650 { BLK_PERM_RESIZE
, "resize" },
2654 GString
*result
= g_string_sized_new(30);
2655 struct perm_name
*p
;
2657 for (p
= permissions
; p
->name
; p
++) {
2658 if (perm
& p
->perm
) {
2659 if (result
->len
> 0) {
2660 g_string_append(result
, ", ");
2662 g_string_append(result
, p
->name
);
2666 return g_string_free(result
, FALSE
);
2671 * @tran is allowed to be NULL. In this case no rollback is possible.
2673 * After calling this function, the transaction @tran may only be completed
2674 * while holding a reader lock for the graph.
2676 static int GRAPH_RDLOCK
2677 bdrv_refresh_perms(BlockDriverState
*bs
, Transaction
*tran
, Error
**errp
)
2680 Transaction
*local_tran
= NULL
;
2681 g_autoptr(GSList
) list
= bdrv_topological_dfs(NULL
, NULL
, bs
);
2682 GLOBAL_STATE_CODE();
2685 tran
= local_tran
= tran_new();
2688 ret
= bdrv_do_refresh_perms(list
, NULL
, tran
, errp
);
2691 tran_finalize(local_tran
, ret
);
2697 int bdrv_child_try_set_perm(BdrvChild
*c
, uint64_t perm
, uint64_t shared
,
2700 Error
*local_err
= NULL
;
2701 Transaction
*tran
= tran_new();
2704 GLOBAL_STATE_CODE();
2706 bdrv_child_set_perm(c
, perm
, shared
, tran
);
2708 ret
= bdrv_refresh_perms(c
->bs
, tran
, &local_err
);
2710 tran_finalize(tran
, ret
);
2713 if ((perm
& ~c
->perm
) || (c
->shared_perm
& ~shared
)) {
2714 /* tighten permissions */
2715 error_propagate(errp
, local_err
);
2718 * Our caller may intend to only loosen restrictions and
2719 * does not expect this function to fail. Errors are not
2720 * fatal in such a case, so we can just hide them from our
2723 error_free(local_err
);
2731 int bdrv_child_refresh_perms(BlockDriverState
*bs
, BdrvChild
*c
, Error
**errp
)
2733 uint64_t parent_perms
, parent_shared
;
2734 uint64_t perms
, shared
;
2736 GLOBAL_STATE_CODE();
2738 bdrv_get_cumulative_perm(bs
, &parent_perms
, &parent_shared
);
2739 bdrv_child_perm(bs
, c
->bs
, c
, c
->role
, NULL
,
2740 parent_perms
, parent_shared
, &perms
, &shared
);
2742 return bdrv_child_try_set_perm(c
, perms
, shared
, errp
);
2746 * Default implementation for .bdrv_child_perm() for block filters:
2747 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2750 static void bdrv_filter_default_perms(BlockDriverState
*bs
, BdrvChild
*c
,
2752 BlockReopenQueue
*reopen_queue
,
2753 uint64_t perm
, uint64_t shared
,
2754 uint64_t *nperm
, uint64_t *nshared
)
2756 GLOBAL_STATE_CODE();
2757 *nperm
= perm
& DEFAULT_PERM_PASSTHROUGH
;
2758 *nshared
= (shared
& DEFAULT_PERM_PASSTHROUGH
) | DEFAULT_PERM_UNCHANGED
;
2761 static void bdrv_default_perms_for_cow(BlockDriverState
*bs
, BdrvChild
*c
,
2763 BlockReopenQueue
*reopen_queue
,
2764 uint64_t perm
, uint64_t shared
,
2765 uint64_t *nperm
, uint64_t *nshared
)
2767 assert(role
& BDRV_CHILD_COW
);
2768 GLOBAL_STATE_CODE();
2771 * We want consistent read from backing files if the parent needs it.
2772 * No other operations are performed on backing files.
2774 perm
&= BLK_PERM_CONSISTENT_READ
;
2777 * If the parent can deal with changing data, we're okay with a
2778 * writable and resizable backing file.
2779 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2781 if (shared
& BLK_PERM_WRITE
) {
2782 shared
= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2787 shared
|= BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
;
2789 if (bs
->open_flags
& BDRV_O_INACTIVE
) {
2790 shared
|= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2797 static void bdrv_default_perms_for_storage(BlockDriverState
*bs
, BdrvChild
*c
,
2799 BlockReopenQueue
*reopen_queue
,
2800 uint64_t perm
, uint64_t shared
,
2801 uint64_t *nperm
, uint64_t *nshared
)
2805 GLOBAL_STATE_CODE();
2806 assert(role
& (BDRV_CHILD_METADATA
| BDRV_CHILD_DATA
));
2808 flags
= bdrv_reopen_get_flags(reopen_queue
, bs
);
2811 * Apart from the modifications below, the same permissions are
2812 * forwarded and left alone as for filters
2814 bdrv_filter_default_perms(bs
, c
, role
, reopen_queue
,
2815 perm
, shared
, &perm
, &shared
);
2817 if (role
& BDRV_CHILD_METADATA
) {
2818 /* Format drivers may touch metadata even if the guest doesn't write */
2819 if (bdrv_is_writable_after_reopen(bs
, reopen_queue
)) {
2820 perm
|= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2824 * bs->file always needs to be consistent because of the
2825 * metadata. We can never allow other users to resize or write
2828 if (!(flags
& BDRV_O_NO_IO
)) {
2829 perm
|= BLK_PERM_CONSISTENT_READ
;
2831 shared
&= ~(BLK_PERM_WRITE
| BLK_PERM_RESIZE
);
2834 if (role
& BDRV_CHILD_DATA
) {
2836 * Technically, everything in this block is a subset of the
2837 * BDRV_CHILD_METADATA path taken above, and so this could
2838 * be an "else if" branch. However, that is not obvious, and
2839 * this function is not performance critical, therefore we let
2840 * this be an independent "if".
2844 * We cannot allow other users to resize the file because the
2845 * format driver might have some assumptions about the size
2846 * (e.g. because it is stored in metadata, or because the file
2847 * is split into fixed-size data files).
2849 shared
&= ~BLK_PERM_RESIZE
;
2852 * WRITE_UNCHANGED often cannot be performed as such on the
2853 * data file. For example, the qcow2 driver may still need to
2854 * write copied clusters on copy-on-read.
2856 if (perm
& BLK_PERM_WRITE_UNCHANGED
) {
2857 perm
|= BLK_PERM_WRITE
;
2861 * If the data file is written to, the format driver may
2862 * expect to be able to resize it by writing beyond the EOF.
2864 if (perm
& BLK_PERM_WRITE
) {
2865 perm
|= BLK_PERM_RESIZE
;
2869 if (bs
->open_flags
& BDRV_O_INACTIVE
) {
2870 shared
|= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2877 void bdrv_default_perms(BlockDriverState
*bs
, BdrvChild
*c
,
2878 BdrvChildRole role
, BlockReopenQueue
*reopen_queue
,
2879 uint64_t perm
, uint64_t shared
,
2880 uint64_t *nperm
, uint64_t *nshared
)
2882 GLOBAL_STATE_CODE();
2883 if (role
& BDRV_CHILD_FILTERED
) {
2884 assert(!(role
& (BDRV_CHILD_DATA
| BDRV_CHILD_METADATA
|
2886 bdrv_filter_default_perms(bs
, c
, role
, reopen_queue
,
2887 perm
, shared
, nperm
, nshared
);
2888 } else if (role
& BDRV_CHILD_COW
) {
2889 assert(!(role
& (BDRV_CHILD_DATA
| BDRV_CHILD_METADATA
)));
2890 bdrv_default_perms_for_cow(bs
, c
, role
, reopen_queue
,
2891 perm
, shared
, nperm
, nshared
);
2892 } else if (role
& (BDRV_CHILD_METADATA
| BDRV_CHILD_DATA
)) {
2893 bdrv_default_perms_for_storage(bs
, c
, role
, reopen_queue
,
2894 perm
, shared
, nperm
, nshared
);
2896 g_assert_not_reached();
2900 uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm
)
2902 static const uint64_t permissions
[] = {
2903 [BLOCK_PERMISSION_CONSISTENT_READ
] = BLK_PERM_CONSISTENT_READ
,
2904 [BLOCK_PERMISSION_WRITE
] = BLK_PERM_WRITE
,
2905 [BLOCK_PERMISSION_WRITE_UNCHANGED
] = BLK_PERM_WRITE_UNCHANGED
,
2906 [BLOCK_PERMISSION_RESIZE
] = BLK_PERM_RESIZE
,
2909 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions
) != BLOCK_PERMISSION__MAX
);
2910 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions
) != BLK_PERM_ALL
+ 1);
2912 assert(qapi_perm
< BLOCK_PERMISSION__MAX
);
2914 return permissions
[qapi_perm
];
2918 * Replaces the node that a BdrvChild points to without updating permissions.
2920 * If @new_bs is non-NULL, the parent of @child must already be drained through
2923 static void GRAPH_WRLOCK
2924 bdrv_replace_child_noperm(BdrvChild
*child
, BlockDriverState
*new_bs
)
2926 BlockDriverState
*old_bs
= child
->bs
;
2927 int new_bs_quiesce_counter
;
2929 assert(!child
->frozen
);
2932 * If we want to change the BdrvChild to point to a drained node as its new
2933 * child->bs, we need to make sure that its new parent is drained, too. In
2934 * other words, either child->quiesce_parent must already be true or we must
2935 * be able to set it and keep the parent's quiesce_counter consistent with
2936 * that, but without polling or starting new requests (this function
2937 * guarantees that it doesn't poll, and starting new requests would be
2938 * against the invariants of drain sections).
2940 * To keep things simple, we pick the first option (child->quiesce_parent
2941 * must already be true). We also generalise the rule a bit to make it
2942 * easier to verify in callers and more likely to be covered in test cases:
2943 * The parent must be quiesced through this child even if new_bs isn't
2944 * currently drained.
2946 * The only exception is for callers that always pass new_bs == NULL. In
2947 * this case, we obviously never need to consider the case of a drained
2948 * new_bs, so we can keep the callers simpler by allowing them not to drain
2951 assert(!new_bs
|| child
->quiesced_parent
);
2952 assert(old_bs
!= new_bs
);
2953 GLOBAL_STATE_CODE();
2955 if (old_bs
&& new_bs
) {
2956 assert(bdrv_get_aio_context(old_bs
) == bdrv_get_aio_context(new_bs
));
2960 if (child
->klass
->detach
) {
2961 child
->klass
->detach(child
);
2963 QLIST_REMOVE(child
, next_parent
);
2969 QLIST_INSERT_HEAD(&new_bs
->parents
, child
, next_parent
);
2970 if (child
->klass
->attach
) {
2971 child
->klass
->attach(child
);
2976 * If the parent was drained through this BdrvChild previously, but new_bs
2977 * is not drained, allow requests to come in only after the new node has
2980 new_bs_quiesce_counter
= (new_bs
? new_bs
->quiesce_counter
: 0);
2981 if (!new_bs_quiesce_counter
&& child
->quiesced_parent
) {
2982 bdrv_parent_drained_end_single(child
);
2987 * Free the given @child.
2989 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2990 * unused (i.e. not in a children list).
2992 static void bdrv_child_free(BdrvChild
*child
)
2995 GLOBAL_STATE_CODE();
2996 GRAPH_RDLOCK_GUARD_MAINLOOP();
2998 assert(!child
->next
.le_prev
); /* not in children list */
3000 g_free(child
->name
);
3004 typedef struct BdrvAttachChildCommonState
{
3006 AioContext
*old_parent_ctx
;
3007 AioContext
*old_child_ctx
;
3008 } BdrvAttachChildCommonState
;
3010 static void GRAPH_WRLOCK
bdrv_attach_child_common_abort(void *opaque
)
3012 BdrvAttachChildCommonState
*s
= opaque
;
3013 BlockDriverState
*bs
= s
->child
->bs
;
3015 GLOBAL_STATE_CODE();
3016 assert_bdrv_graph_writable();
3018 bdrv_replace_child_noperm(s
->child
, NULL
);
3020 if (bdrv_get_aio_context(bs
) != s
->old_child_ctx
) {
3021 bdrv_try_change_aio_context(bs
, s
->old_child_ctx
, NULL
, &error_abort
);
3024 if (bdrv_child_get_parent_aio_context(s
->child
) != s
->old_parent_ctx
) {
3026 GHashTable
*visited
;
3031 /* No need to visit `child`, because it has been detached already */
3032 visited
= g_hash_table_new(NULL
, NULL
);
3033 ret
= s
->child
->klass
->change_aio_ctx(s
->child
, s
->old_parent_ctx
,
3034 visited
, tran
, &error_abort
);
3035 g_hash_table_destroy(visited
);
3037 /* transaction is supposed to always succeed */
3038 assert(ret
== true);
3042 bdrv_schedule_unref(bs
);
3043 bdrv_child_free(s
->child
);
3046 static TransactionActionDrv bdrv_attach_child_common_drv
= {
3047 .abort
= bdrv_attach_child_common_abort
,
3052 * Common part of attaching bdrv child to bs or to blk or to job
3054 * Function doesn't update permissions, caller is responsible for this.
3056 * After calling this function, the transaction @tran may only be completed
3057 * while holding a writer lock for the graph.
3059 * Returns new created child.
3061 * Both @parent_bs and @child_bs can move to a different AioContext in this
3064 static BdrvChild
* GRAPH_WRLOCK
3065 bdrv_attach_child_common(BlockDriverState
*child_bs
,
3066 const char *child_name
,
3067 const BdrvChildClass
*child_class
,
3068 BdrvChildRole child_role
,
3069 uint64_t perm
, uint64_t shared_perm
,
3071 Transaction
*tran
, Error
**errp
)
3073 BdrvChild
*new_child
;
3074 AioContext
*parent_ctx
;
3075 AioContext
*child_ctx
= bdrv_get_aio_context(child_bs
);
3077 assert(child_class
->get_parent_desc
);
3078 GLOBAL_STATE_CODE();
3080 new_child
= g_new(BdrvChild
, 1);
3081 *new_child
= (BdrvChild
) {
3083 .name
= g_strdup(child_name
),
3084 .klass
= child_class
,
3087 .shared_perm
= shared_perm
,
3092 * If the AioContexts don't match, first try to move the subtree of
3093 * child_bs into the AioContext of the new parent. If this doesn't work,
3094 * try moving the parent into the AioContext of child_bs instead.
3096 parent_ctx
= bdrv_child_get_parent_aio_context(new_child
);
3097 if (child_ctx
!= parent_ctx
) {
3098 Error
*local_err
= NULL
;
3099 int ret
= bdrv_try_change_aio_context(child_bs
, parent_ctx
, NULL
,
3102 if (ret
< 0 && child_class
->change_aio_ctx
) {
3103 Transaction
*aio_ctx_tran
= tran_new();
3104 GHashTable
*visited
= g_hash_table_new(NULL
, NULL
);
3107 g_hash_table_add(visited
, new_child
);
3108 ret_child
= child_class
->change_aio_ctx(new_child
, child_ctx
,
3109 visited
, aio_ctx_tran
,
3111 if (ret_child
== true) {
3112 error_free(local_err
);
3115 tran_finalize(aio_ctx_tran
, ret_child
== true ? 0 : -1);
3116 g_hash_table_destroy(visited
);
3120 error_propagate(errp
, local_err
);
3121 bdrv_child_free(new_child
);
3128 * Let every new BdrvChild start with a drained parent. Inserting the child
3129 * in the graph with bdrv_replace_child_noperm() will undrain it if
3130 * @child_bs is not drained.
3132 * The child was only just created and is not yet visible in global state
3133 * until bdrv_replace_child_noperm() inserts it into the graph, so nobody
3134 * could have sent requests and polling is not necessary.
3136 * Note that this means that the parent isn't fully drained yet, we only
3137 * stop new requests from coming in. This is fine, we don't care about the
3138 * old requests here, they are not for this child. If another place enters a
3139 * drain section for the same parent, but wants it to be fully quiesced, it
3140 * will not run most of the the code in .drained_begin() again (which is not
3141 * a problem, we already did this), but it will still poll until the parent
3142 * is fully quiesced, so it will not be negatively affected either.
3144 bdrv_parent_drained_begin_single(new_child
);
3145 bdrv_replace_child_noperm(new_child
, child_bs
);
3147 BdrvAttachChildCommonState
*s
= g_new(BdrvAttachChildCommonState
, 1);
3148 *s
= (BdrvAttachChildCommonState
) {
3150 .old_parent_ctx
= parent_ctx
,
3151 .old_child_ctx
= child_ctx
,
3153 tran_add(tran
, &bdrv_attach_child_common_drv
, s
);
3159 * Function doesn't update permissions, caller is responsible for this.
3161 * Both @parent_bs and @child_bs can move to a different AioContext in this
3164 * After calling this function, the transaction @tran may only be completed
3165 * while holding a writer lock for the graph.
3167 static BdrvChild
* GRAPH_WRLOCK
3168 bdrv_attach_child_noperm(BlockDriverState
*parent_bs
,
3169 BlockDriverState
*child_bs
,
3170 const char *child_name
,
3171 const BdrvChildClass
*child_class
,
3172 BdrvChildRole child_role
,
3176 uint64_t perm
, shared_perm
;
3178 assert(parent_bs
->drv
);
3179 GLOBAL_STATE_CODE();
3181 if (bdrv_recurse_has_child(child_bs
, parent_bs
)) {
3182 error_setg(errp
, "Making '%s' a %s child of '%s' would create a cycle",
3183 child_bs
->node_name
, child_name
, parent_bs
->node_name
);
3187 bdrv_get_cumulative_perm(parent_bs
, &perm
, &shared_perm
);
3188 bdrv_child_perm(parent_bs
, child_bs
, NULL
, child_role
, NULL
,
3189 perm
, shared_perm
, &perm
, &shared_perm
);
3191 return bdrv_attach_child_common(child_bs
, child_name
, child_class
,
3192 child_role
, perm
, shared_perm
, parent_bs
,
3197 * This function steals the reference to child_bs from the caller.
3198 * That reference is later dropped by bdrv_root_unref_child().
3200 * On failure NULL is returned, errp is set and the reference to
3201 * child_bs is also dropped.
3203 BdrvChild
*bdrv_root_attach_child(BlockDriverState
*child_bs
,
3204 const char *child_name
,
3205 const BdrvChildClass
*child_class
,
3206 BdrvChildRole child_role
,
3207 uint64_t perm
, uint64_t shared_perm
,
3208 void *opaque
, Error
**errp
)
3212 Transaction
*tran
= tran_new();
3214 GLOBAL_STATE_CODE();
3216 child
= bdrv_attach_child_common(child_bs
, child_name
, child_class
,
3217 child_role
, perm
, shared_perm
, opaque
,
3224 ret
= bdrv_refresh_perms(child_bs
, tran
, errp
);
3227 tran_finalize(tran
, ret
);
3229 bdrv_schedule_unref(child_bs
);
3231 return ret
< 0 ? NULL
: child
;
3235 * This function transfers the reference to child_bs from the caller
3236 * to parent_bs. That reference is later dropped by parent_bs on
3237 * bdrv_close() or if someone calls bdrv_unref_child().
3239 * On failure NULL is returned, errp is set and the reference to
3240 * child_bs is also dropped.
3242 BdrvChild
*bdrv_attach_child(BlockDriverState
*parent_bs
,
3243 BlockDriverState
*child_bs
,
3244 const char *child_name
,
3245 const BdrvChildClass
*child_class
,
3246 BdrvChildRole child_role
,
3251 Transaction
*tran
= tran_new();
3253 GLOBAL_STATE_CODE();
3255 child
= bdrv_attach_child_noperm(parent_bs
, child_bs
, child_name
,
3256 child_class
, child_role
, tran
, errp
);
3262 ret
= bdrv_refresh_perms(parent_bs
, tran
, errp
);
3268 tran_finalize(tran
, ret
);
3270 bdrv_schedule_unref(child_bs
);
3272 return ret
< 0 ? NULL
: child
;
3275 /* Callers must ensure that child->frozen is false. */
3276 void bdrv_root_unref_child(BdrvChild
*child
)
3278 BlockDriverState
*child_bs
= child
->bs
;
3280 GLOBAL_STATE_CODE();
3281 bdrv_replace_child_noperm(child
, NULL
);
3282 bdrv_child_free(child
);
3286 * Update permissions for old node. We're just taking a parent away, so
3287 * we're loosening restrictions. Errors of permission update are not
3288 * fatal in this case, ignore them.
3290 bdrv_refresh_perms(child_bs
, NULL
, NULL
);
3293 * When the parent requiring a non-default AioContext is removed, the
3294 * node moves back to the main AioContext
3296 bdrv_try_change_aio_context(child_bs
, qemu_get_aio_context(), NULL
,
3300 bdrv_schedule_unref(child_bs
);
3303 typedef struct BdrvSetInheritsFrom
{
3304 BlockDriverState
*bs
;
3305 BlockDriverState
*old_inherits_from
;
3306 } BdrvSetInheritsFrom
;
3308 static void bdrv_set_inherits_from_abort(void *opaque
)
3310 BdrvSetInheritsFrom
*s
= opaque
;
3312 s
->bs
->inherits_from
= s
->old_inherits_from
;
3315 static TransactionActionDrv bdrv_set_inherits_from_drv
= {
3316 .abort
= bdrv_set_inherits_from_abort
,
3320 /* @tran is allowed to be NULL. In this case no rollback is possible */
3321 static void bdrv_set_inherits_from(BlockDriverState
*bs
,
3322 BlockDriverState
*new_inherits_from
,
3326 BdrvSetInheritsFrom
*s
= g_new(BdrvSetInheritsFrom
, 1);
3328 *s
= (BdrvSetInheritsFrom
) {
3330 .old_inherits_from
= bs
->inherits_from
,
3333 tran_add(tran
, &bdrv_set_inherits_from_drv
, s
);
3336 bs
->inherits_from
= new_inherits_from
;
3340 * Clear all inherits_from pointers from children and grandchildren of
3341 * @root that point to @root, where necessary.
3342 * @tran is allowed to be NULL. In this case no rollback is possible
3344 static void GRAPH_WRLOCK
3345 bdrv_unset_inherits_from(BlockDriverState
*root
, BdrvChild
*child
,
3350 if (child
->bs
->inherits_from
== root
) {
3352 * Remove inherits_from only when the last reference between root and
3353 * child->bs goes away.
3355 QLIST_FOREACH(c
, &root
->children
, next
) {
3356 if (c
!= child
&& c
->bs
== child
->bs
) {
3361 bdrv_set_inherits_from(child
->bs
, NULL
, tran
);
3365 QLIST_FOREACH(c
, &child
->bs
->children
, next
) {
3366 bdrv_unset_inherits_from(root
, c
, tran
);
3370 /* Callers must ensure that child->frozen is false. */
3371 void bdrv_unref_child(BlockDriverState
*parent
, BdrvChild
*child
)
3373 GLOBAL_STATE_CODE();
3374 if (child
== NULL
) {
3378 bdrv_unset_inherits_from(parent
, child
, NULL
);
3379 bdrv_root_unref_child(child
);
3383 static void GRAPH_RDLOCK
3384 bdrv_parent_cb_change_media(BlockDriverState
*bs
, bool load
)
3387 GLOBAL_STATE_CODE();
3388 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
3389 if (c
->klass
->change_media
) {
3390 c
->klass
->change_media(c
, load
);
3395 /* Return true if you can reach parent going through child->inherits_from
3396 * recursively. If parent or child are NULL, return false */
3397 static bool bdrv_inherits_from_recursive(BlockDriverState
*child
,
3398 BlockDriverState
*parent
)
3400 while (child
&& child
!= parent
) {
3401 child
= child
->inherits_from
;
3404 return child
!= NULL
;
3408 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3409 * mostly used for COW backing children (role = COW), but also for
3410 * filtered children (role = FILTERED | PRIMARY).
3412 static BdrvChildRole
bdrv_backing_role(BlockDriverState
*bs
)
3414 if (bs
->drv
&& bs
->drv
->is_filter
) {
3415 return BDRV_CHILD_FILTERED
| BDRV_CHILD_PRIMARY
;
3417 return BDRV_CHILD_COW
;
3422 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3423 * callers which don't need their own reference any more must call bdrv_unref().
3425 * If the respective child is already present (i.e. we're detaching a node),
3426 * that child node must be drained.
3428 * Function doesn't update permissions, caller is responsible for this.
3430 * Both @parent_bs and @child_bs can move to a different AioContext in this
3433 * After calling this function, the transaction @tran may only be completed
3434 * while holding a writer lock for the graph.
3436 static int GRAPH_WRLOCK
3437 bdrv_set_file_or_backing_noperm(BlockDriverState
*parent_bs
,
3438 BlockDriverState
*child_bs
,
3440 Transaction
*tran
, Error
**errp
)
3442 bool update_inherits_from
=
3443 bdrv_inherits_from_recursive(child_bs
, parent_bs
);
3444 BdrvChild
*child
= is_backing
? parent_bs
->backing
: parent_bs
->file
;
3447 GLOBAL_STATE_CODE();
3449 if (!parent_bs
->drv
) {
3451 * Node without drv is an object without a class :/. TODO: finally fix
3452 * qcow2 driver to never clear bs->drv and implement format corruption
3453 * handling in other way.
3455 error_setg(errp
, "Node corrupted");
3459 if (child
&& child
->frozen
) {
3460 error_setg(errp
, "Cannot change frozen '%s' link from '%s' to '%s'",
3461 child
->name
, parent_bs
->node_name
, child
->bs
->node_name
);
3465 if (is_backing
&& !parent_bs
->drv
->is_filter
&&
3466 !parent_bs
->drv
->supports_backing
)
3468 error_setg(errp
, "Driver '%s' of node '%s' does not support backing "
3469 "files", parent_bs
->drv
->format_name
, parent_bs
->node_name
);
3473 if (parent_bs
->drv
->is_filter
) {
3474 role
= BDRV_CHILD_FILTERED
| BDRV_CHILD_PRIMARY
;
3475 } else if (is_backing
) {
3476 role
= BDRV_CHILD_COW
;
3479 * We only can use same role as it is in existing child. We don't have
3480 * infrastructure to determine role of file child in generic way
3483 error_setg(errp
, "Cannot set file child to format node without "
3491 assert(child
->bs
->quiesce_counter
);
3492 bdrv_unset_inherits_from(parent_bs
, child
, tran
);
3493 bdrv_remove_child(child
, tran
);
3500 child
= bdrv_attach_child_noperm(parent_bs
, child_bs
,
3501 is_backing
? "backing" : "file",
3502 &child_of_bds
, role
,
3510 * If inherits_from pointed recursively to bs then let's update it to
3511 * point directly to bs (else it will become NULL).
3513 if (update_inherits_from
) {
3514 bdrv_set_inherits_from(child_bs
, parent_bs
, tran
);
3518 bdrv_refresh_limits(parent_bs
, tran
, NULL
);
3524 * Both @bs and @backing_hd can move to a different AioContext in this
3527 * If a backing child is already present (i.e. we're detaching a node), that
3528 * child node must be drained.
3530 int bdrv_set_backing_hd_drained(BlockDriverState
*bs
,
3531 BlockDriverState
*backing_hd
,
3535 Transaction
*tran
= tran_new();
3537 GLOBAL_STATE_CODE();
3538 assert(bs
->quiesce_counter
> 0);
3540 assert(bs
->backing
->bs
->quiesce_counter
> 0);
3543 ret
= bdrv_set_file_or_backing_noperm(bs
, backing_hd
, true, tran
, errp
);
3548 ret
= bdrv_refresh_perms(bs
, tran
, errp
);
3550 tran_finalize(tran
, ret
);
3554 int bdrv_set_backing_hd(BlockDriverState
*bs
, BlockDriverState
*backing_hd
,
3557 BlockDriverState
*drain_bs
;
3559 GLOBAL_STATE_CODE();
3561 bdrv_graph_rdlock_main_loop();
3562 drain_bs
= bs
->backing
? bs
->backing
->bs
: bs
;
3563 bdrv_graph_rdunlock_main_loop();
3566 bdrv_drained_begin(drain_bs
);
3567 bdrv_graph_wrlock();
3568 ret
= bdrv_set_backing_hd_drained(bs
, backing_hd
, errp
);
3569 bdrv_graph_wrunlock();
3570 bdrv_drained_end(drain_bs
);
3571 bdrv_unref(drain_bs
);
3577 * Opens the backing file for a BlockDriverState if not yet open
3579 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3580 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3581 * itself, all options starting with "${bdref_key}." are considered part of the
3584 * TODO Can this be unified with bdrv_open_image()?
3586 int bdrv_open_backing_file(BlockDriverState
*bs
, QDict
*parent_options
,
3587 const char *bdref_key
, Error
**errp
)
3590 char *backing_filename
= NULL
;
3591 char *bdref_key_dot
;
3592 const char *reference
= NULL
;
3594 bool implicit_backing
= false;
3595 BlockDriverState
*backing_hd
;
3597 QDict
*tmp_parent_options
= NULL
;
3598 Error
*local_err
= NULL
;
3600 GLOBAL_STATE_CODE();
3601 GRAPH_RDLOCK_GUARD_MAINLOOP();
3603 if (bs
->backing
!= NULL
) {
3607 /* NULL means an empty set of options */
3608 if (parent_options
== NULL
) {
3609 tmp_parent_options
= qdict_new();
3610 parent_options
= tmp_parent_options
;
3613 bs
->open_flags
&= ~BDRV_O_NO_BACKING
;
3615 bdref_key_dot
= g_strdup_printf("%s.", bdref_key
);
3616 qdict_extract_subqdict(parent_options
, &options
, bdref_key_dot
);
3617 g_free(bdref_key_dot
);
3620 * Caution: while qdict_get_try_str() is fine, getting non-string
3621 * types would require more care. When @parent_options come from
3622 * -blockdev or blockdev_add, its members are typed according to
3623 * the QAPI schema, but when they come from -drive, they're all
3626 reference
= qdict_get_try_str(parent_options
, bdref_key
);
3627 if (reference
|| qdict_haskey(options
, "file.filename")) {
3628 /* keep backing_filename NULL */
3629 } else if (bs
->backing_file
[0] == '\0' && qdict_size(options
) == 0) {
3630 qobject_unref(options
);
3633 if (qdict_size(options
) == 0) {
3634 /* If the user specifies options that do not modify the
3635 * backing file's behavior, we might still consider it the
3636 * implicit backing file. But it's easier this way, and
3637 * just specifying some of the backing BDS's options is
3638 * only possible with -drive anyway (otherwise the QAPI
3639 * schema forces the user to specify everything). */
3640 implicit_backing
= !strcmp(bs
->auto_backing_file
, bs
->backing_file
);
3643 backing_filename
= bdrv_get_full_backing_filename(bs
, &local_err
);
3646 error_propagate(errp
, local_err
);
3647 qobject_unref(options
);
3652 if (!bs
->drv
|| !bs
->drv
->supports_backing
) {
3654 error_setg(errp
, "Driver doesn't support backing files");
3655 qobject_unref(options
);
3660 bs
->backing_format
[0] != '\0' && !qdict_haskey(options
, "driver")) {
3661 qdict_put_str(options
, "driver", bs
->backing_format
);
3664 backing_hd
= bdrv_open_inherit(backing_filename
, reference
, options
, 0, bs
,
3665 &child_of_bds
, bdrv_backing_role(bs
), true,
3668 bs
->open_flags
|= BDRV_O_NO_BACKING
;
3669 error_prepend(errp
, "Could not open backing file: ");
3674 if (implicit_backing
) {
3675 bdrv_refresh_filename(backing_hd
);
3676 pstrcpy(bs
->auto_backing_file
, sizeof(bs
->auto_backing_file
),
3677 backing_hd
->filename
);
3680 /* Hook up the backing file link; drop our reference, bs owns the
3681 * backing_hd reference now */
3682 ret
= bdrv_set_backing_hd(bs
, backing_hd
, errp
);
3683 bdrv_unref(backing_hd
);
3689 qdict_del(parent_options
, bdref_key
);
3692 g_free(backing_filename
);
3693 qobject_unref(tmp_parent_options
);
3697 static BlockDriverState
*
3698 bdrv_open_child_bs(const char *filename
, QDict
*options
, const char *bdref_key
,
3699 BlockDriverState
*parent
, const BdrvChildClass
*child_class
,
3700 BdrvChildRole child_role
, bool allow_none
,
3701 bool parse_filename
, Error
**errp
)
3703 BlockDriverState
*bs
= NULL
;
3704 QDict
*image_options
;
3705 char *bdref_key_dot
;
3706 const char *reference
;
3708 assert(child_class
!= NULL
);
3710 bdref_key_dot
= g_strdup_printf("%s.", bdref_key
);
3711 qdict_extract_subqdict(options
, &image_options
, bdref_key_dot
);
3712 g_free(bdref_key_dot
);
3715 * Caution: while qdict_get_try_str() is fine, getting non-string
3716 * types would require more care. When @options come from
3717 * -blockdev or blockdev_add, its members are typed according to
3718 * the QAPI schema, but when they come from -drive, they're all
3721 reference
= qdict_get_try_str(options
, bdref_key
);
3722 if (!filename
&& !reference
&& !qdict_size(image_options
)) {
3724 error_setg(errp
, "A block device must be specified for \"%s\"",
3727 qobject_unref(image_options
);
3731 bs
= bdrv_open_inherit(filename
, reference
, image_options
, 0,
3732 parent
, child_class
, child_role
, parse_filename
,
3739 qdict_del(options
, bdref_key
);
3743 static BdrvChild
*bdrv_open_child_common(const char *filename
,
3744 QDict
*options
, const char *bdref_key
,
3745 BlockDriverState
*parent
,
3746 const BdrvChildClass
*child_class
,
3747 BdrvChildRole child_role
,
3748 bool allow_none
, bool parse_filename
,
3751 BlockDriverState
*bs
;
3754 GLOBAL_STATE_CODE();
3756 bs
= bdrv_open_child_bs(filename
, options
, bdref_key
, parent
, child_class
,
3757 child_role
, allow_none
, parse_filename
, errp
);
3762 bdrv_graph_wrlock();
3763 child
= bdrv_attach_child(parent
, bs
, bdref_key
, child_class
, child_role
,
3765 bdrv_graph_wrunlock();
3771 * Opens a disk image whose options are given as BlockdevRef in another block
3774 * If allow_none is true, no image will be opened if filename is false and no
3775 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3777 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3778 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3779 * itself, all options starting with "${bdref_key}." are considered part of the
3782 * The BlockdevRef will be removed from the options QDict.
3784 * @parent can move to a different AioContext in this function.
3786 BdrvChild
*bdrv_open_child(const char *filename
,
3787 QDict
*options
, const char *bdref_key
,
3788 BlockDriverState
*parent
,
3789 const BdrvChildClass
*child_class
,
3790 BdrvChildRole child_role
,
3791 bool allow_none
, Error
**errp
)
3793 return bdrv_open_child_common(filename
, options
, bdref_key
, parent
,
3794 child_class
, child_role
, allow_none
, false,
3799 * This does mostly the same as bdrv_open_child(), but for opening the primary
3800 * child of a node. A notable difference from bdrv_open_child() is that it
3801 * enables filename parsing for protocol names (including json:).
3803 * @parent can move to a different AioContext in this function.
3805 int bdrv_open_file_child(const char *filename
,
3806 QDict
*options
, const char *bdref_key
,
3807 BlockDriverState
*parent
, Error
**errp
)
3811 /* commit_top and mirror_top don't use this function */
3812 assert(!parent
->drv
->filtered_child_is_backing
);
3813 role
= parent
->drv
->is_filter
?
3814 (BDRV_CHILD_FILTERED
| BDRV_CHILD_PRIMARY
) : BDRV_CHILD_IMAGE
;
3816 if (!bdrv_open_child_common(filename
, options
, bdref_key
, parent
,
3817 &child_of_bds
, role
, false, true, errp
))
3826 * TODO Future callers may need to specify parent/child_class in order for
3827 * option inheritance to work. Existing callers use it for the root node.
3829 BlockDriverState
*bdrv_open_blockdev_ref(BlockdevRef
*ref
, Error
**errp
)
3831 BlockDriverState
*bs
= NULL
;
3832 QObject
*obj
= NULL
;
3833 QDict
*qdict
= NULL
;
3834 const char *reference
= NULL
;
3837 GLOBAL_STATE_CODE();
3839 if (ref
->type
== QTYPE_QSTRING
) {
3840 reference
= ref
->u
.reference
;
3842 BlockdevOptions
*options
= &ref
->u
.definition
;
3843 assert(ref
->type
== QTYPE_QDICT
);
3845 v
= qobject_output_visitor_new(&obj
);
3846 visit_type_BlockdevOptions(v
, NULL
, &options
, &error_abort
);
3847 visit_complete(v
, &obj
);
3849 qdict
= qobject_to(QDict
, obj
);
3850 qdict_flatten(qdict
);
3852 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3853 * compatibility with other callers) rather than what we want as the
3854 * real defaults. Apply the defaults here instead. */
3855 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_DIRECT
, "off");
3856 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_NO_FLUSH
, "off");
3857 qdict_set_default_str(qdict
, BDRV_OPT_READ_ONLY
, "off");
3858 qdict_set_default_str(qdict
, BDRV_OPT_AUTO_READ_ONLY
, "off");
3862 bs
= bdrv_open_inherit(NULL
, reference
, qdict
, 0, NULL
, NULL
, 0, false,
3870 static BlockDriverState
*bdrv_append_temp_snapshot(BlockDriverState
*bs
,
3872 QDict
*snapshot_options
,
3876 g_autofree
char *tmp_filename
= NULL
;
3878 QemuOpts
*opts
= NULL
;
3879 BlockDriverState
*bs_snapshot
= NULL
;
3882 GLOBAL_STATE_CODE();
3884 /* if snapshot, we create a temporary backing file and open it
3885 instead of opening 'filename' directly */
3887 /* Get the required size from the image */
3888 total_size
= bdrv_getlength(bs
);
3890 if (total_size
< 0) {
3891 error_setg_errno(errp
, -total_size
, "Could not get image size");
3895 /* Create the temporary image */
3896 tmp_filename
= create_tmp_file(errp
);
3897 if (!tmp_filename
) {
3901 opts
= qemu_opts_create(bdrv_qcow2
.create_opts
, NULL
, 0,
3903 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, total_size
, &error_abort
);
3904 ret
= bdrv_create(&bdrv_qcow2
, tmp_filename
, opts
, errp
);
3905 qemu_opts_del(opts
);
3907 error_prepend(errp
, "Could not create temporary overlay '%s': ",
3912 /* Prepare options QDict for the temporary file */
3913 qdict_put_str(snapshot_options
, "file.driver", "file");
3914 qdict_put_str(snapshot_options
, "file.filename", tmp_filename
);
3915 qdict_put_str(snapshot_options
, "driver", "qcow2");
3917 bs_snapshot
= bdrv_open(NULL
, NULL
, snapshot_options
, flags
, errp
);
3918 snapshot_options
= NULL
;
3923 ret
= bdrv_append(bs_snapshot
, bs
, errp
);
3930 qobject_unref(snapshot_options
);
3935 * Opens a disk image (raw, qcow2, vmdk, ...)
3937 * options is a QDict of options to pass to the block drivers, or NULL for an
3938 * empty set of options. The reference to the QDict belongs to the block layer
3939 * after the call (even on failure), so if the caller intends to reuse the
3940 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
3942 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3943 * If it is not NULL, the referenced BDS will be reused.
3945 * The reference parameter may be used to specify an existing block device which
3946 * should be opened. If specified, neither options nor a filename may be given,
3947 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
3949 static BlockDriverState
* no_coroutine_fn
3950 bdrv_open_inherit(const char *filename
, const char *reference
, QDict
*options
,
3951 int flags
, BlockDriverState
*parent
,
3952 const BdrvChildClass
*child_class
, BdrvChildRole child_role
,
3953 bool parse_filename
, Error
**errp
)
3956 BlockBackend
*file
= NULL
;
3957 BlockDriverState
*bs
;
3958 BlockDriver
*drv
= NULL
;
3960 const char *drvname
;
3961 const char *backing
;
3962 Error
*local_err
= NULL
;
3963 QDict
*snapshot_options
= NULL
;
3964 int snapshot_flags
= 0;
3966 assert(!child_class
|| !flags
);
3967 assert(!child_class
== !parent
);
3968 GLOBAL_STATE_CODE();
3969 assert(!qemu_in_coroutine());
3971 /* TODO We'll eventually have to take a writer lock in this function */
3972 GRAPH_RDLOCK_GUARD_MAINLOOP();
3975 bool options_non_empty
= options
? qdict_size(options
) : false;
3976 qobject_unref(options
);
3978 if (filename
|| options_non_empty
) {
3979 error_setg(errp
, "Cannot reference an existing block device with "
3980 "additional options or a new filename");
3984 bs
= bdrv_lookup_bs(reference
, reference
, errp
);
3995 /* NULL means an empty set of options */
3996 if (options
== NULL
) {
3997 options
= qdict_new();
4000 /* json: syntax counts as explicit options, as if in the QDict */
4001 if (parse_filename
) {
4002 parse_json_protocol(options
, &filename
, &local_err
);
4008 bs
->explicit_options
= qdict_clone_shallow(options
);
4011 bool parent_is_format
;
4014 parent_is_format
= parent
->drv
->is_format
;
4017 * parent->drv is not set yet because this node is opened for
4018 * (potential) format probing. That means that @parent is going
4019 * to be a format node.
4021 parent_is_format
= true;
4024 bs
->inherits_from
= parent
;
4025 child_class
->inherit_options(child_role
, parent_is_format
,
4027 parent
->open_flags
, parent
->options
);
4030 ret
= bdrv_fill_options(&options
, filename
, &flags
, parse_filename
,
4037 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
4038 * Caution: getting a boolean member of @options requires care.
4039 * When @options come from -blockdev or blockdev_add, members are
4040 * typed according to the QAPI schema, but when they come from
4041 * -drive, they're all QString.
4043 if (g_strcmp0(qdict_get_try_str(options
, BDRV_OPT_READ_ONLY
), "on") &&
4044 !qdict_get_try_bool(options
, BDRV_OPT_READ_ONLY
, false)) {
4045 flags
|= (BDRV_O_RDWR
| BDRV_O_ALLOW_RDWR
);
4047 flags
&= ~BDRV_O_RDWR
;
4050 if (flags
& BDRV_O_SNAPSHOT
) {
4051 snapshot_options
= qdict_new();
4052 bdrv_temp_snapshot_options(&snapshot_flags
, snapshot_options
,
4054 /* Let bdrv_backing_options() override "read-only" */
4055 qdict_del(options
, BDRV_OPT_READ_ONLY
);
4056 bdrv_inherited_options(BDRV_CHILD_COW
, true,
4057 &flags
, options
, flags
, options
);
4060 bs
->open_flags
= flags
;
4061 bs
->options
= options
;
4062 options
= qdict_clone_shallow(options
);
4064 /* Find the right image format driver */
4065 /* See cautionary note on accessing @options above */
4066 drvname
= qdict_get_try_str(options
, "driver");
4068 drv
= bdrv_find_format(drvname
);
4070 error_setg(errp
, "Unknown driver: '%s'", drvname
);
4075 assert(drvname
|| !(flags
& BDRV_O_PROTOCOL
));
4077 /* See cautionary note on accessing @options above */
4078 backing
= qdict_get_try_str(options
, "backing");
4079 if (qobject_to(QNull
, qdict_get(options
, "backing")) != NULL
||
4080 (backing
&& *backing
== '\0'))
4083 warn_report("Use of \"backing\": \"\" is deprecated; "
4084 "use \"backing\": null instead");
4086 flags
|= BDRV_O_NO_BACKING
;
4087 qdict_del(bs
->explicit_options
, "backing");
4088 qdict_del(bs
->options
, "backing");
4089 qdict_del(options
, "backing");
4092 /* Open image file without format layer. This BlockBackend is only used for
4093 * probing, the block drivers will do their own bdrv_open_child() for the
4094 * same BDS, which is why we put the node name back into options. */
4095 if ((flags
& BDRV_O_PROTOCOL
) == 0) {
4096 BlockDriverState
*file_bs
;
4098 file_bs
= bdrv_open_child_bs(filename
, options
, "file", bs
,
4099 &child_of_bds
, BDRV_CHILD_IMAGE
,
4100 true, true, &local_err
);
4104 if (file_bs
!= NULL
) {
4105 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
4106 * looking at the header to guess the image format. This works even
4107 * in cases where a guest would not see a consistent state. */
4108 AioContext
*ctx
= bdrv_get_aio_context(file_bs
);
4109 file
= blk_new(ctx
, 0, BLK_PERM_ALL
);
4110 blk_insert_bs(file
, file_bs
, &local_err
);
4111 bdrv_unref(file_bs
);
4117 qdict_put_str(options
, "file", bdrv_get_node_name(file_bs
));
4121 /* Image format probing */
4124 ret
= find_image_format(file
, filename
, &drv
, &local_err
);
4129 * This option update would logically belong in bdrv_fill_options(),
4130 * but we first need to open bs->file for the probing to work, while
4131 * opening bs->file already requires the (mostly) final set of options
4132 * so that cache mode etc. can be inherited.
4134 * Adding the driver later is somewhat ugly, but it's not an option
4135 * that would ever be inherited, so it's correct. We just need to make
4136 * sure to update both bs->options (which has the full effective
4137 * options for bs) and options (which has file.* already removed).
4139 qdict_put_str(bs
->options
, "driver", drv
->format_name
);
4140 qdict_put_str(options
, "driver", drv
->format_name
);
4142 error_setg(errp
, "Must specify either driver or file");
4146 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
4147 assert(!!(flags
& BDRV_O_PROTOCOL
) == !!drv
->protocol_name
);
4148 /* file must be NULL if a protocol BDS is about to be created
4149 * (the inverse results in an error message from bdrv_open_common()) */
4150 assert(!(flags
& BDRV_O_PROTOCOL
) || !file
);
4152 /* Open the image */
4153 ret
= bdrv_open_common(bs
, file
, options
, &local_err
);
4163 /* If there is a backing file, use it */
4164 if ((flags
& BDRV_O_NO_BACKING
) == 0) {
4165 ret
= bdrv_open_backing_file(bs
, options
, "backing", &local_err
);
4167 goto close_and_fail
;
4171 /* Remove all children options and references
4172 * from bs->options and bs->explicit_options */
4173 QLIST_FOREACH(child
, &bs
->children
, next
) {
4174 char *child_key_dot
;
4175 child_key_dot
= g_strdup_printf("%s.", child
->name
);
4176 qdict_extract_subqdict(bs
->explicit_options
, NULL
, child_key_dot
);
4177 qdict_extract_subqdict(bs
->options
, NULL
, child_key_dot
);
4178 qdict_del(bs
->explicit_options
, child
->name
);
4179 qdict_del(bs
->options
, child
->name
);
4180 g_free(child_key_dot
);
4183 /* Check if any unknown options were used */
4184 if (qdict_size(options
) != 0) {
4185 const QDictEntry
*entry
= qdict_first(options
);
4186 if (flags
& BDRV_O_PROTOCOL
) {
4187 error_setg(errp
, "Block protocol '%s' doesn't support the option "
4188 "'%s'", drv
->format_name
, entry
->key
);
4191 "Block format '%s' does not support the option '%s'",
4192 drv
->format_name
, entry
->key
);
4195 goto close_and_fail
;
4198 bdrv_parent_cb_change_media(bs
, true);
4200 qobject_unref(options
);
4203 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4204 * temporary snapshot afterwards. */
4205 if (snapshot_flags
) {
4206 BlockDriverState
*snapshot_bs
;
4207 snapshot_bs
= bdrv_append_temp_snapshot(bs
, snapshot_flags
,
4208 snapshot_options
, &local_err
);
4209 snapshot_options
= NULL
;
4211 goto close_and_fail
;
4213 /* We are not going to return bs but the overlay on top of it
4214 * (snapshot_bs); thus, we have to drop the strong reference to bs
4215 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4216 * though, because the overlay still has a reference to it. */
4225 qobject_unref(snapshot_options
);
4226 qobject_unref(bs
->explicit_options
);
4227 qobject_unref(bs
->options
);
4228 qobject_unref(options
);
4230 bs
->explicit_options
= NULL
;
4232 error_propagate(errp
, local_err
);
4237 qobject_unref(snapshot_options
);
4238 qobject_unref(options
);
4239 error_propagate(errp
, local_err
);
4243 BlockDriverState
*bdrv_open(const char *filename
, const char *reference
,
4244 QDict
*options
, int flags
, Error
**errp
)
4246 GLOBAL_STATE_CODE();
4248 return bdrv_open_inherit(filename
, reference
, options
, flags
, NULL
,
4249 NULL
, 0, true, errp
);
4252 /* Return true if the NULL-terminated @list contains @str */
4253 static bool is_str_in_list(const char *str
, const char *const *list
)
4257 for (i
= 0; list
[i
] != NULL
; i
++) {
4258 if (!strcmp(str
, list
[i
])) {
4267 * Check that every option set in @bs->options is also set in
4270 * Options listed in the common_options list and in
4271 * @bs->drv->mutable_opts are skipped.
4273 * Return 0 on success, otherwise return -EINVAL and set @errp.
4275 static int bdrv_reset_options_allowed(BlockDriverState
*bs
,
4276 const QDict
*new_opts
, Error
**errp
)
4278 const QDictEntry
*e
;
4279 /* These options are common to all block drivers and are handled
4280 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4281 const char *const common_options
[] = {
4282 "node-name", "discard", "cache.direct", "cache.no-flush",
4283 "read-only", "auto-read-only", "detect-zeroes", NULL
4286 for (e
= qdict_first(bs
->options
); e
; e
= qdict_next(bs
->options
, e
)) {
4287 if (!qdict_haskey(new_opts
, e
->key
) &&
4288 !is_str_in_list(e
->key
, common_options
) &&
4289 !is_str_in_list(e
->key
, bs
->drv
->mutable_opts
)) {
4290 error_setg(errp
, "Option '%s' cannot be reset "
4291 "to its default value", e
->key
);
4300 * Returns true if @child can be reached recursively from @bs
4302 static bool GRAPH_RDLOCK
4303 bdrv_recurse_has_child(BlockDriverState
*bs
, BlockDriverState
*child
)
4311 QLIST_FOREACH(c
, &bs
->children
, next
) {
4312 if (bdrv_recurse_has_child(c
->bs
, child
)) {
4321 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4322 * reopen of multiple devices.
4324 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
4325 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4326 * be created and initialized. This newly created BlockReopenQueue should be
4327 * passed back in for subsequent calls that are intended to be of the same
4330 * bs is the BlockDriverState to add to the reopen queue.
4332 * options contains the changed options for the associated bs
4333 * (the BlockReopenQueue takes ownership)
4335 * flags contains the open flags for the associated bs
4337 * returns a pointer to bs_queue, which is either the newly allocated
4338 * bs_queue, or the existing bs_queue being used.
4340 * bs is drained here and undrained by bdrv_reopen_queue_free().
4342 * To be called with bs->aio_context locked.
4344 static BlockReopenQueue
* GRAPH_RDLOCK
4345 bdrv_reopen_queue_child(BlockReopenQueue
*bs_queue
, BlockDriverState
*bs
,
4346 QDict
*options
, const BdrvChildClass
*klass
,
4347 BdrvChildRole role
, bool parent_is_format
,
4348 QDict
*parent_options
, int parent_flags
,
4353 BlockReopenQueueEntry
*bs_entry
;
4355 QDict
*old_options
, *explicit_options
, *options_copy
;
4359 GLOBAL_STATE_CODE();
4362 * Strictly speaking, draining is illegal under GRAPH_RDLOCK. We know that
4363 * we've been called with bdrv_graph_rdlock_main_loop(), though, so it's ok
4366 bdrv_drained_begin(bs
);
4368 if (bs_queue
== NULL
) {
4369 bs_queue
= g_new0(BlockReopenQueue
, 1);
4370 QTAILQ_INIT(bs_queue
);
4374 options
= qdict_new();
4377 /* Check if this BlockDriverState is already in the queue */
4378 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
4379 if (bs
== bs_entry
->state
.bs
) {
4385 * Precedence of options:
4386 * 1. Explicitly passed in options (highest)
4387 * 2. Retained from explicitly set options of bs
4388 * 3. Inherited from parent node
4389 * 4. Retained from effective options of bs
4392 /* Old explicitly set values (don't overwrite by inherited value) */
4393 if (bs_entry
|| keep_old_opts
) {
4394 old_options
= qdict_clone_shallow(bs_entry
?
4395 bs_entry
->state
.explicit_options
:
4396 bs
->explicit_options
);
4397 bdrv_join_options(bs
, options
, old_options
);
4398 qobject_unref(old_options
);
4401 explicit_options
= qdict_clone_shallow(options
);
4403 /* Inherit from parent node */
4404 if (parent_options
) {
4406 klass
->inherit_options(role
, parent_is_format
, &flags
, options
,
4407 parent_flags
, parent_options
);
4409 flags
= bdrv_get_flags(bs
);
4412 if (keep_old_opts
) {
4413 /* Old values are used for options that aren't set yet */
4414 old_options
= qdict_clone_shallow(bs
->options
);
4415 bdrv_join_options(bs
, options
, old_options
);
4416 qobject_unref(old_options
);
4419 /* We have the final set of options so let's update the flags */
4420 options_copy
= qdict_clone_shallow(options
);
4421 opts
= qemu_opts_create(&bdrv_runtime_opts
, NULL
, 0, &error_abort
);
4422 qemu_opts_absorb_qdict(opts
, options_copy
, NULL
);
4423 update_flags_from_options(&flags
, opts
);
4424 qemu_opts_del(opts
);
4425 qobject_unref(options_copy
);
4427 /* bdrv_open_inherit() sets and clears some additional flags internally */
4428 flags
&= ~BDRV_O_PROTOCOL
;
4429 if (flags
& BDRV_O_RDWR
) {
4430 flags
|= BDRV_O_ALLOW_RDWR
;
4434 bs_entry
= g_new0(BlockReopenQueueEntry
, 1);
4435 QTAILQ_INSERT_TAIL(bs_queue
, bs_entry
, entry
);
4437 qobject_unref(bs_entry
->state
.options
);
4438 qobject_unref(bs_entry
->state
.explicit_options
);
4441 bs_entry
->state
.bs
= bs
;
4442 bs_entry
->state
.options
= options
;
4443 bs_entry
->state
.explicit_options
= explicit_options
;
4444 bs_entry
->state
.flags
= flags
;
4447 * If keep_old_opts is false then it means that unspecified
4448 * options must be reset to their original value. We don't allow
4449 * resetting 'backing' but we need to know if the option is
4450 * missing in order to decide if we have to return an error.
4452 if (!keep_old_opts
) {
4453 bs_entry
->state
.backing_missing
=
4454 !qdict_haskey(options
, "backing") &&
4455 !qdict_haskey(options
, "backing.driver");
4458 QLIST_FOREACH(child
, &bs
->children
, next
) {
4459 QDict
*new_child_options
= NULL
;
4460 bool child_keep_old
= keep_old_opts
;
4462 /* reopen can only change the options of block devices that were
4463 * implicitly created and inherited options. For other (referenced)
4464 * block devices, a syntax like "backing.foo" results in an error. */
4465 if (child
->bs
->inherits_from
!= bs
) {
4469 /* Check if the options contain a child reference */
4470 if (qdict_haskey(options
, child
->name
)) {
4471 const char *childref
= qdict_get_try_str(options
, child
->name
);
4473 * The current child must not be reopened if the child
4474 * reference is null or points to a different node.
4476 if (g_strcmp0(childref
, child
->bs
->node_name
)) {
4480 * If the child reference points to the current child then
4481 * reopen it with its existing set of options (note that
4482 * it can still inherit new options from the parent).
4484 child_keep_old
= true;
4486 /* Extract child options ("child-name.*") */
4487 char *child_key_dot
= g_strdup_printf("%s.", child
->name
);
4488 qdict_extract_subqdict(explicit_options
, NULL
, child_key_dot
);
4489 qdict_extract_subqdict(options
, &new_child_options
, child_key_dot
);
4490 g_free(child_key_dot
);
4493 bdrv_reopen_queue_child(bs_queue
, child
->bs
, new_child_options
,
4494 child
->klass
, child
->role
, bs
->drv
->is_format
,
4495 options
, flags
, child_keep_old
);
4501 /* To be called with bs->aio_context locked */
4502 BlockReopenQueue
*bdrv_reopen_queue(BlockReopenQueue
*bs_queue
,
4503 BlockDriverState
*bs
,
4504 QDict
*options
, bool keep_old_opts
)
4506 GLOBAL_STATE_CODE();
4507 GRAPH_RDLOCK_GUARD_MAINLOOP();
4509 return bdrv_reopen_queue_child(bs_queue
, bs
, options
, NULL
, 0, false,
4510 NULL
, 0, keep_old_opts
);
4513 void bdrv_reopen_queue_free(BlockReopenQueue
*bs_queue
)
4515 GLOBAL_STATE_CODE();
4517 BlockReopenQueueEntry
*bs_entry
, *next
;
4518 QTAILQ_FOREACH_SAFE(bs_entry
, bs_queue
, entry
, next
) {
4519 bdrv_drained_end(bs_entry
->state
.bs
);
4520 qobject_unref(bs_entry
->state
.explicit_options
);
4521 qobject_unref(bs_entry
->state
.options
);
4529 * Reopen multiple BlockDriverStates atomically & transactionally.
4531 * The queue passed in (bs_queue) must have been built up previous
4532 * via bdrv_reopen_queue().
4534 * Reopens all BDS specified in the queue, with the appropriate
4535 * flags. All devices are prepared for reopen, and failure of any
4536 * device will cause all device changes to be abandoned, and intermediate
4539 * If all devices prepare successfully, then the changes are committed
4542 * All affected nodes must be drained between bdrv_reopen_queue() and
4543 * bdrv_reopen_multiple().
4545 * To be called from the main thread, with all other AioContexts unlocked.
4547 int bdrv_reopen_multiple(BlockReopenQueue
*bs_queue
, Error
**errp
)
4550 BlockReopenQueueEntry
*bs_entry
, *next
;
4551 Transaction
*tran
= tran_new();
4552 g_autoptr(GSList
) refresh_list
= NULL
;
4554 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
4555 assert(bs_queue
!= NULL
);
4556 GLOBAL_STATE_CODE();
4558 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
4559 ret
= bdrv_flush(bs_entry
->state
.bs
);
4561 error_setg_errno(errp
, -ret
, "Error flushing drive");
4566 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
4567 assert(bs_entry
->state
.bs
->quiesce_counter
> 0);
4568 ret
= bdrv_reopen_prepare(&bs_entry
->state
, bs_queue
, tran
, errp
);
4572 bs_entry
->prepared
= true;
4575 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
4576 BDRVReopenState
*state
= &bs_entry
->state
;
4578 refresh_list
= g_slist_prepend(refresh_list
, state
->bs
);
4579 if (state
->old_backing_bs
) {
4580 refresh_list
= g_slist_prepend(refresh_list
, state
->old_backing_bs
);
4582 if (state
->old_file_bs
) {
4583 refresh_list
= g_slist_prepend(refresh_list
, state
->old_file_bs
);
4588 * Note that file-posix driver rely on permission update done during reopen
4589 * (even if no permission changed), because it wants "new" permissions for
4590 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4591 * in raw_reopen_prepare() which is called with "old" permissions.
4593 bdrv_graph_rdlock_main_loop();
4594 ret
= bdrv_list_refresh_perms(refresh_list
, bs_queue
, tran
, errp
);
4595 bdrv_graph_rdunlock_main_loop();
4602 * If we reach this point, we have success and just need to apply the
4605 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4606 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4607 * children are usually goes after parents in reopen-queue, so go from last
4610 QTAILQ_FOREACH_REVERSE(bs_entry
, bs_queue
, entry
) {
4611 bdrv_reopen_commit(&bs_entry
->state
);
4614 bdrv_graph_wrlock();
4616 bdrv_graph_wrunlock();
4618 QTAILQ_FOREACH_REVERSE(bs_entry
, bs_queue
, entry
) {
4619 BlockDriverState
*bs
= bs_entry
->state
.bs
;
4621 if (bs
->drv
->bdrv_reopen_commit_post
) {
4622 bs
->drv
->bdrv_reopen_commit_post(&bs_entry
->state
);
4630 bdrv_graph_wrlock();
4632 bdrv_graph_wrunlock();
4634 QTAILQ_FOREACH_SAFE(bs_entry
, bs_queue
, entry
, next
) {
4635 if (bs_entry
->prepared
) {
4636 bdrv_reopen_abort(&bs_entry
->state
);
4641 bdrv_reopen_queue_free(bs_queue
);
4646 int bdrv_reopen(BlockDriverState
*bs
, QDict
*opts
, bool keep_old_opts
,
4649 BlockReopenQueue
*queue
;
4651 GLOBAL_STATE_CODE();
4653 queue
= bdrv_reopen_queue(NULL
, bs
, opts
, keep_old_opts
);
4655 return bdrv_reopen_multiple(queue
, errp
);
4658 int bdrv_reopen_set_read_only(BlockDriverState
*bs
, bool read_only
,
4661 QDict
*opts
= qdict_new();
4663 GLOBAL_STATE_CODE();
4665 qdict_put_bool(opts
, BDRV_OPT_READ_ONLY
, read_only
);
4667 return bdrv_reopen(bs
, opts
, true, errp
);
4671 * Take a BDRVReopenState and check if the value of 'backing' in the
4672 * reopen_state->options QDict is valid or not.
4674 * If 'backing' is missing from the QDict then return 0.
4676 * If 'backing' contains the node name of the backing file of
4677 * reopen_state->bs then return 0.
4679 * If 'backing' contains a different node name (or is null) then check
4680 * whether the current backing file can be replaced with the new one.
4681 * If that's the case then reopen_state->replace_backing_bs is set to
4682 * true and reopen_state->new_backing_bs contains a pointer to the new
4683 * backing BlockDriverState (or NULL).
4685 * After calling this function, the transaction @tran may only be completed
4686 * while holding a writer lock for the graph.
4688 * Return 0 on success, otherwise return < 0 and set @errp.
4690 * @reopen_state->bs can move to a different AioContext in this function.
4692 static int GRAPH_UNLOCKED
4693 bdrv_reopen_parse_file_or_backing(BDRVReopenState
*reopen_state
,
4694 bool is_backing
, Transaction
*tran
,
4697 BlockDriverState
*bs
= reopen_state
->bs
;
4698 BlockDriverState
*new_child_bs
;
4699 BlockDriverState
*old_child_bs
;
4701 const char *child_name
= is_backing
? "backing" : "file";
4707 GLOBAL_STATE_CODE();
4709 value
= qdict_get(reopen_state
->options
, child_name
);
4710 if (value
== NULL
) {
4714 bdrv_graph_rdlock_main_loop();
4716 switch (qobject_type(value
)) {
4718 assert(is_backing
); /* The 'file' option does not allow a null value */
4719 new_child_bs
= NULL
;
4722 str
= qstring_get_str(qobject_to(QString
, value
));
4723 new_child_bs
= bdrv_lookup_bs(NULL
, str
, errp
);
4724 if (new_child_bs
== NULL
) {
4729 has_child
= bdrv_recurse_has_child(new_child_bs
, bs
);
4731 error_setg(errp
, "Making '%s' a %s child of '%s' would create a "
4732 "cycle", str
, child_name
, bs
->node_name
);
4739 * The options QDict has been flattened, so 'backing' and 'file'
4740 * do not allow any other data type here.
4742 g_assert_not_reached();
4745 old_child_bs
= is_backing
? child_bs(bs
->backing
) : child_bs(bs
->file
);
4746 if (old_child_bs
== new_child_bs
) {
4752 if (bdrv_skip_implicit_filters(old_child_bs
) == new_child_bs
) {
4757 if (old_child_bs
->implicit
) {
4758 error_setg(errp
, "Cannot replace implicit %s child of %s",
4759 child_name
, bs
->node_name
);
4765 if (bs
->drv
->is_filter
&& !old_child_bs
) {
4767 * Filters always have a file or a backing child, so we are trying to
4768 * change wrong child
4770 error_setg(errp
, "'%s' is a %s filter node that does not support a "
4771 "%s child", bs
->node_name
, bs
->drv
->format_name
, child_name
);
4777 reopen_state
->old_backing_bs
= old_child_bs
;
4779 reopen_state
->old_file_bs
= old_child_bs
;
4783 bdrv_ref(old_child_bs
);
4784 bdrv_drained_begin(old_child_bs
);
4787 bdrv_graph_rdunlock_main_loop();
4788 bdrv_graph_wrlock();
4790 ret
= bdrv_set_file_or_backing_noperm(bs
, new_child_bs
, is_backing
,
4793 bdrv_graph_wrunlock();
4796 bdrv_drained_end(old_child_bs
);
4797 bdrv_unref(old_child_bs
);
4803 bdrv_graph_rdunlock_main_loop();
4808 * Prepares a BlockDriverState for reopen. All changes are staged in the
4809 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4810 * the block driver layer .bdrv_reopen_prepare()
4812 * bs is the BlockDriverState to reopen
4813 * flags are the new open flags
4814 * queue is the reopen queue
4816 * Returns 0 on success, non-zero on error. On error errp will be set
4819 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4820 * It is the responsibility of the caller to then call the abort() or
4821 * commit() for any other BDS that have been left in a prepare() state
4823 * After calling this function, the transaction @change_child_tran may only be
4824 * completed while holding a writer lock for the graph.
4826 static int GRAPH_UNLOCKED
4827 bdrv_reopen_prepare(BDRVReopenState
*reopen_state
, BlockReopenQueue
*queue
,
4828 Transaction
*change_child_tran
, Error
**errp
)
4832 Error
*local_err
= NULL
;
4835 QDict
*orig_reopen_opts
;
4836 char *discard
= NULL
;
4838 bool drv_prepared
= false;
4840 assert(reopen_state
!= NULL
);
4841 assert(reopen_state
->bs
->drv
!= NULL
);
4842 GLOBAL_STATE_CODE();
4843 drv
= reopen_state
->bs
->drv
;
4845 /* This function and each driver's bdrv_reopen_prepare() remove
4846 * entries from reopen_state->options as they are processed, so
4847 * we need to make a copy of the original QDict. */
4848 orig_reopen_opts
= qdict_clone_shallow(reopen_state
->options
);
4850 /* Process generic block layer options */
4851 opts
= qemu_opts_create(&bdrv_runtime_opts
, NULL
, 0, &error_abort
);
4852 if (!qemu_opts_absorb_qdict(opts
, reopen_state
->options
, errp
)) {
4857 /* This was already called in bdrv_reopen_queue_child() so the flags
4858 * are up-to-date. This time we simply want to remove the options from
4859 * QemuOpts in order to indicate that they have been processed. */
4860 old_flags
= reopen_state
->flags
;
4861 update_flags_from_options(&reopen_state
->flags
, opts
);
4862 assert(old_flags
== reopen_state
->flags
);
4864 discard
= qemu_opt_get_del(opts
, BDRV_OPT_DISCARD
);
4865 if (discard
!= NULL
) {
4866 if (bdrv_parse_discard_flags(discard
, &reopen_state
->flags
) != 0) {
4867 error_setg(errp
, "Invalid discard option");
4873 reopen_state
->detect_zeroes
=
4874 bdrv_parse_detect_zeroes(opts
, reopen_state
->flags
, &local_err
);
4876 error_propagate(errp
, local_err
);
4881 /* All other options (including node-name and driver) must be unchanged.
4882 * Put them back into the QDict, so that they are checked at the end
4883 * of this function. */
4884 qemu_opts_to_qdict(opts
, reopen_state
->options
);
4886 /* If we are to stay read-only, do not allow permission change
4887 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4888 * not set, or if the BDS still has copy_on_read enabled */
4889 read_only
= !(reopen_state
->flags
& BDRV_O_RDWR
);
4891 bdrv_graph_rdlock_main_loop();
4892 ret
= bdrv_can_set_read_only(reopen_state
->bs
, read_only
, true, &local_err
);
4893 bdrv_graph_rdunlock_main_loop();
4895 error_propagate(errp
, local_err
);
4899 if (drv
->bdrv_reopen_prepare
) {
4901 * If a driver-specific option is missing, it means that we
4902 * should reset it to its default value.
4903 * But not all options allow that, so we need to check it first.
4905 ret
= bdrv_reset_options_allowed(reopen_state
->bs
,
4906 reopen_state
->options
, errp
);
4911 ret
= drv
->bdrv_reopen_prepare(reopen_state
, queue
, &local_err
);
4913 if (local_err
!= NULL
) {
4914 error_propagate(errp
, local_err
);
4916 bdrv_graph_rdlock_main_loop();
4917 bdrv_refresh_filename(reopen_state
->bs
);
4918 bdrv_graph_rdunlock_main_loop();
4919 error_setg(errp
, "failed while preparing to reopen image '%s'",
4920 reopen_state
->bs
->filename
);
4925 /* It is currently mandatory to have a bdrv_reopen_prepare()
4926 * handler for each supported drv. */
4927 bdrv_graph_rdlock_main_loop();
4928 error_setg(errp
, "Block format '%s' used by node '%s' "
4929 "does not support reopening files", drv
->format_name
,
4930 bdrv_get_device_or_node_name(reopen_state
->bs
));
4931 bdrv_graph_rdunlock_main_loop();
4936 drv_prepared
= true;
4939 * We must provide the 'backing' option if the BDS has a backing
4940 * file or if the image file has a backing file name as part of
4941 * its metadata. Otherwise the 'backing' option can be omitted.
4943 bdrv_graph_rdlock_main_loop();
4944 if (drv
->supports_backing
&& reopen_state
->backing_missing
&&
4945 (reopen_state
->bs
->backing
|| reopen_state
->bs
->backing_file
[0])) {
4946 error_setg(errp
, "backing is missing for '%s'",
4947 reopen_state
->bs
->node_name
);
4948 bdrv_graph_rdunlock_main_loop();
4952 bdrv_graph_rdunlock_main_loop();
4955 * Allow changing the 'backing' option. The new value can be
4956 * either a reference to an existing node (using its node name)
4957 * or NULL to simply detach the current backing file.
4959 ret
= bdrv_reopen_parse_file_or_backing(reopen_state
, true,
4960 change_child_tran
, errp
);
4964 qdict_del(reopen_state
->options
, "backing");
4966 /* Allow changing the 'file' option. In this case NULL is not allowed */
4967 ret
= bdrv_reopen_parse_file_or_backing(reopen_state
, false,
4968 change_child_tran
, errp
);
4972 qdict_del(reopen_state
->options
, "file");
4974 /* Options that are not handled are only okay if they are unchanged
4975 * compared to the old state. It is expected that some options are only
4976 * used for the initial open, but not reopen (e.g. filename) */
4977 if (qdict_size(reopen_state
->options
)) {
4978 const QDictEntry
*entry
= qdict_first(reopen_state
->options
);
4980 GRAPH_RDLOCK_GUARD_MAINLOOP();
4983 QObject
*new = entry
->value
;
4984 QObject
*old
= qdict_get(reopen_state
->bs
->options
, entry
->key
);
4986 /* Allow child references (child_name=node_name) as long as they
4987 * point to the current child (i.e. everything stays the same). */
4988 if (qobject_type(new) == QTYPE_QSTRING
) {
4990 QLIST_FOREACH(child
, &reopen_state
->bs
->children
, next
) {
4991 if (!strcmp(child
->name
, entry
->key
)) {
4997 if (!strcmp(child
->bs
->node_name
,
4998 qstring_get_str(qobject_to(QString
, new)))) {
4999 continue; /* Found child with this name, skip option */
5005 * TODO: When using -drive to specify blockdev options, all values
5006 * will be strings; however, when using -blockdev, blockdev-add or
5007 * filenames using the json:{} pseudo-protocol, they will be
5009 * In contrast, reopening options are (currently) always strings
5010 * (because you can only specify them through qemu-io; all other
5011 * callers do not specify any options).
5012 * Therefore, when using anything other than -drive to create a BDS,
5013 * this cannot detect non-string options as unchanged, because
5014 * qobject_is_equal() always returns false for objects of different
5015 * type. In the future, this should be remedied by correctly typing
5016 * all options. For now, this is not too big of an issue because
5017 * the user can simply omit options which cannot be changed anyway,
5018 * so they will stay unchanged.
5020 if (!qobject_is_equal(new, old
)) {
5021 error_setg(errp
, "Cannot change the option '%s'", entry
->key
);
5025 } while ((entry
= qdict_next(reopen_state
->options
, entry
)));
5030 /* Restore the original reopen_state->options QDict */
5031 qobject_unref(reopen_state
->options
);
5032 reopen_state
->options
= qobject_ref(orig_reopen_opts
);
5035 if (ret
< 0 && drv_prepared
) {
5036 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
5037 * call drv->bdrv_reopen_abort() before signaling an error
5038 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
5039 * when the respective bdrv_reopen_prepare() has failed) */
5040 if (drv
->bdrv_reopen_abort
) {
5041 drv
->bdrv_reopen_abort(reopen_state
);
5044 qemu_opts_del(opts
);
5045 qobject_unref(orig_reopen_opts
);
5051 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
5052 * makes them final by swapping the staging BlockDriverState contents into
5053 * the active BlockDriverState contents.
5055 static void GRAPH_UNLOCKED
bdrv_reopen_commit(BDRVReopenState
*reopen_state
)
5058 BlockDriverState
*bs
;
5061 assert(reopen_state
!= NULL
);
5062 bs
= reopen_state
->bs
;
5064 assert(drv
!= NULL
);
5065 GLOBAL_STATE_CODE();
5067 /* If there are any driver level actions to take */
5068 if (drv
->bdrv_reopen_commit
) {
5069 drv
->bdrv_reopen_commit(reopen_state
);
5072 GRAPH_RDLOCK_GUARD_MAINLOOP();
5074 /* set BDS specific flags now */
5075 qobject_unref(bs
->explicit_options
);
5076 qobject_unref(bs
->options
);
5077 qobject_ref(reopen_state
->explicit_options
);
5078 qobject_ref(reopen_state
->options
);
5080 bs
->explicit_options
= reopen_state
->explicit_options
;
5081 bs
->options
= reopen_state
->options
;
5082 bs
->open_flags
= reopen_state
->flags
;
5083 bs
->detect_zeroes
= reopen_state
->detect_zeroes
;
5085 /* Remove child references from bs->options and bs->explicit_options.
5086 * Child options were already removed in bdrv_reopen_queue_child() */
5087 QLIST_FOREACH(child
, &bs
->children
, next
) {
5088 qdict_del(bs
->explicit_options
, child
->name
);
5089 qdict_del(bs
->options
, child
->name
);
5091 /* backing is probably removed, so it's not handled by previous loop */
5092 qdict_del(bs
->explicit_options
, "backing");
5093 qdict_del(bs
->options
, "backing");
5095 bdrv_refresh_limits(bs
, NULL
, NULL
);
5096 bdrv_refresh_total_sectors(bs
, bs
->total_sectors
);
5100 * Abort the reopen, and delete and free the staged changes in
5103 static void GRAPH_UNLOCKED
bdrv_reopen_abort(BDRVReopenState
*reopen_state
)
5107 assert(reopen_state
!= NULL
);
5108 drv
= reopen_state
->bs
->drv
;
5109 assert(drv
!= NULL
);
5110 GLOBAL_STATE_CODE();
5112 if (drv
->bdrv_reopen_abort
) {
5113 drv
->bdrv_reopen_abort(reopen_state
);
5118 static void bdrv_close(BlockDriverState
*bs
)
5120 BdrvAioNotifier
*ban
, *ban_next
;
5121 BdrvChild
*child
, *next
;
5123 GLOBAL_STATE_CODE();
5124 assert(!bs
->refcnt
);
5126 bdrv_drained_begin(bs
); /* complete I/O */
5128 bdrv_drain(bs
); /* in case flush left pending I/O */
5131 if (bs
->drv
->bdrv_close
) {
5132 /* Must unfreeze all children, so bdrv_unref_child() works */
5133 bs
->drv
->bdrv_close(bs
);
5138 bdrv_graph_wrlock();
5139 QLIST_FOREACH_SAFE(child
, &bs
->children
, next
, next
) {
5140 bdrv_unref_child(bs
, child
);
5143 assert(!bs
->backing
);
5145 bdrv_graph_wrunlock();
5149 qatomic_set(&bs
->copy_on_read
, 0);
5150 bs
->backing_file
[0] = '\0';
5151 bs
->backing_format
[0] = '\0';
5152 bs
->total_sectors
= 0;
5153 bs
->encrypted
= false;
5155 qobject_unref(bs
->options
);
5156 qobject_unref(bs
->explicit_options
);
5158 bs
->explicit_options
= NULL
;
5159 qobject_unref(bs
->full_open_options
);
5160 bs
->full_open_options
= NULL
;
5161 g_free(bs
->block_status_cache
);
5162 bs
->block_status_cache
= NULL
;
5164 bdrv_release_named_dirty_bitmaps(bs
);
5165 assert(QLIST_EMPTY(&bs
->dirty_bitmaps
));
5167 QLIST_FOREACH_SAFE(ban
, &bs
->aio_notifiers
, list
, ban_next
) {
5170 QLIST_INIT(&bs
->aio_notifiers
);
5171 bdrv_drained_end(bs
);
5174 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
5175 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
5178 if (bs
->quiesce_counter
) {
5179 bdrv_drain_all_end_quiesce(bs
);
5183 void bdrv_close_all(void)
5185 GLOBAL_STATE_CODE();
5186 assert(job_next(NULL
) == NULL
);
5188 /* Drop references from requests still in flight, such as canceled block
5189 * jobs whose AIO context has not been polled yet */
5192 blk_remove_all_bs();
5193 blockdev_close_all_bdrv_states();
5195 assert(QTAILQ_EMPTY(&all_bdrv_states
));
5198 static bool GRAPH_RDLOCK
should_update_child(BdrvChild
*c
, BlockDriverState
*to
)
5204 if (c
->klass
->stay_at_node
) {
5208 /* If the child @c belongs to the BDS @to, replacing the current
5209 * c->bs by @to would mean to create a loop.
5211 * Such a case occurs when appending a BDS to a backing chain.
5212 * For instance, imagine the following chain:
5214 * guest device -> node A -> further backing chain...
5216 * Now we create a new BDS B which we want to put on top of this
5217 * chain, so we first attach A as its backing node:
5222 * guest device -> node A -> further backing chain...
5224 * Finally we want to replace A by B. When doing that, we want to
5225 * replace all pointers to A by pointers to B -- except for the
5226 * pointer from B because (1) that would create a loop, and (2)
5227 * that pointer should simply stay intact:
5229 * guest device -> node B
5232 * node A -> further backing chain...
5234 * In general, when replacing a node A (c->bs) by a node B (@to),
5235 * if A is a child of B, that means we cannot replace A by B there
5236 * because that would create a loop. Silently detaching A from B
5237 * is also not really an option. So overall just leaving A in
5238 * place there is the most sensible choice.
5240 * We would also create a loop in any cases where @c is only
5241 * indirectly referenced by @to. Prevent this by returning false
5242 * if @c is found (by breadth-first search) anywhere in the whole
5247 found
= g_hash_table_new(NULL
, NULL
);
5248 g_hash_table_add(found
, to
);
5249 queue
= g_queue_new();
5250 g_queue_push_tail(queue
, to
);
5252 while (!g_queue_is_empty(queue
)) {
5253 BlockDriverState
*v
= g_queue_pop_head(queue
);
5256 QLIST_FOREACH(c2
, &v
->children
, next
) {
5262 if (g_hash_table_contains(found
, c2
->bs
)) {
5266 g_queue_push_tail(queue
, c2
->bs
);
5267 g_hash_table_add(found
, c2
->bs
);
5271 g_queue_free(queue
);
5272 g_hash_table_destroy(found
);
5277 static void bdrv_remove_child_commit(void *opaque
)
5279 GLOBAL_STATE_CODE();
5280 bdrv_child_free(opaque
);
5283 static TransactionActionDrv bdrv_remove_child_drv
= {
5284 .commit
= bdrv_remove_child_commit
,
5288 * Function doesn't update permissions, caller is responsible for this.
5290 * @child->bs (if non-NULL) must be drained.
5292 * After calling this function, the transaction @tran may only be completed
5293 * while holding a writer lock for the graph.
5295 static void GRAPH_WRLOCK
bdrv_remove_child(BdrvChild
*child
, Transaction
*tran
)
5302 assert(child
->quiesced_parent
);
5303 bdrv_replace_child_tran(child
, NULL
, tran
);
5306 tran_add(tran
, &bdrv_remove_child_drv
, child
);
5310 * Both @from and @to (if non-NULL) must be drained. @to must be kept drained
5311 * until the transaction is completed.
5313 * After calling this function, the transaction @tran may only be completed
5314 * while holding a writer lock for the graph.
5316 static int GRAPH_WRLOCK
5317 bdrv_replace_node_noperm(BlockDriverState
*from
,
5318 BlockDriverState
*to
,
5319 bool auto_skip
, Transaction
*tran
,
5322 BdrvChild
*c
, *next
;
5324 GLOBAL_STATE_CODE();
5326 assert(from
->quiesce_counter
);
5327 assert(to
->quiesce_counter
);
5329 QLIST_FOREACH_SAFE(c
, &from
->parents
, next_parent
, next
) {
5330 assert(c
->bs
== from
);
5331 if (!should_update_child(c
, to
)) {
5335 error_setg(errp
, "Should not change '%s' link to '%s'",
5336 c
->name
, from
->node_name
);
5340 error_setg(errp
, "Cannot change '%s' link to '%s'",
5341 c
->name
, from
->node_name
);
5344 bdrv_replace_child_tran(c
, to
, tran
);
5351 * Switch all parents of @from to point to @to instead. @from and @to must be in
5352 * the same AioContext and both must be drained.
5354 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5355 * if it creates a parent-child relation loop or if parent is block-job.
5357 * With auto_skip=false the error is returned if from has a parent which should
5360 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5361 * case backing link of the cow-parent of @to is removed.
5363 static int GRAPH_WRLOCK
5364 bdrv_replace_node_common(BlockDriverState
*from
, BlockDriverState
*to
,
5365 bool auto_skip
, bool detach_subchain
, Error
**errp
)
5367 Transaction
*tran
= tran_new();
5368 g_autoptr(GSList
) refresh_list
= NULL
;
5369 BlockDriverState
*to_cow_parent
= NULL
;
5372 GLOBAL_STATE_CODE();
5374 assert(from
->quiesce_counter
);
5375 assert(to
->quiesce_counter
);
5376 assert(bdrv_get_aio_context(from
) == bdrv_get_aio_context(to
));
5378 if (detach_subchain
) {
5379 assert(bdrv_chain_contains(from
, to
));
5381 for (to_cow_parent
= from
;
5382 bdrv_filter_or_cow_bs(to_cow_parent
) != to
;
5383 to_cow_parent
= bdrv_filter_or_cow_bs(to_cow_parent
))
5390 * Do the replacement without permission update.
5391 * Replacement may influence the permissions, we should calculate new
5392 * permissions based on new graph. If we fail, we'll roll-back the
5395 ret
= bdrv_replace_node_noperm(from
, to
, auto_skip
, tran
, errp
);
5400 if (detach_subchain
) {
5401 /* to_cow_parent is already drained because from is drained */
5402 bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent
), tran
);
5405 refresh_list
= g_slist_prepend(refresh_list
, to
);
5406 refresh_list
= g_slist_prepend(refresh_list
, from
);
5408 ret
= bdrv_list_refresh_perms(refresh_list
, NULL
, tran
, errp
);
5416 tran_finalize(tran
, ret
);
5420 int bdrv_replace_node(BlockDriverState
*from
, BlockDriverState
*to
,
5423 return bdrv_replace_node_common(from
, to
, true, false, errp
);
5426 int bdrv_drop_filter(BlockDriverState
*bs
, Error
**errp
)
5428 BlockDriverState
*child_bs
;
5431 GLOBAL_STATE_CODE();
5433 bdrv_graph_rdlock_main_loop();
5434 child_bs
= bdrv_filter_or_cow_bs(bs
);
5435 bdrv_graph_rdunlock_main_loop();
5437 bdrv_drained_begin(child_bs
);
5438 bdrv_graph_wrlock();
5439 ret
= bdrv_replace_node_common(bs
, child_bs
, true, true, errp
);
5440 bdrv_graph_wrunlock();
5441 bdrv_drained_end(child_bs
);
5447 * Add new bs contents at the top of an image chain while the chain is
5448 * live, while keeping required fields on the top layer.
5450 * This will modify the BlockDriverState fields, and swap contents
5451 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5453 * bs_new must not be attached to a BlockBackend and must not have backing
5456 * This function does not create any image files.
5458 int bdrv_append(BlockDriverState
*bs_new
, BlockDriverState
*bs_top
,
5463 Transaction
*tran
= tran_new();
5465 GLOBAL_STATE_CODE();
5467 bdrv_graph_rdlock_main_loop();
5468 assert(!bs_new
->backing
);
5469 bdrv_graph_rdunlock_main_loop();
5471 bdrv_drained_begin(bs_top
);
5472 bdrv_drained_begin(bs_new
);
5474 bdrv_graph_wrlock();
5476 child
= bdrv_attach_child_noperm(bs_new
, bs_top
, "backing",
5477 &child_of_bds
, bdrv_backing_role(bs_new
),
5484 ret
= bdrv_replace_node_noperm(bs_top
, bs_new
, true, tran
, errp
);
5489 ret
= bdrv_refresh_perms(bs_new
, tran
, errp
);
5491 tran_finalize(tran
, ret
);
5493 bdrv_refresh_limits(bs_top
, NULL
, NULL
);
5494 bdrv_graph_wrunlock();
5496 bdrv_drained_end(bs_top
);
5497 bdrv_drained_end(bs_new
);
5502 /* Not for empty child */
5503 int bdrv_replace_child_bs(BdrvChild
*child
, BlockDriverState
*new_bs
,
5507 Transaction
*tran
= tran_new();
5508 g_autoptr(GSList
) refresh_list
= NULL
;
5509 BlockDriverState
*old_bs
= child
->bs
;
5511 GLOBAL_STATE_CODE();
5514 bdrv_drained_begin(old_bs
);
5515 bdrv_drained_begin(new_bs
);
5516 bdrv_graph_wrlock();
5518 bdrv_replace_child_tran(child
, new_bs
, tran
);
5520 refresh_list
= g_slist_prepend(refresh_list
, old_bs
);
5521 refresh_list
= g_slist_prepend(refresh_list
, new_bs
);
5523 ret
= bdrv_list_refresh_perms(refresh_list
, NULL
, tran
, errp
);
5525 tran_finalize(tran
, ret
);
5527 bdrv_graph_wrunlock();
5528 bdrv_drained_end(old_bs
);
5529 bdrv_drained_end(new_bs
);
5535 static void bdrv_delete(BlockDriverState
*bs
)
5537 assert(bdrv_op_blocker_is_empty(bs
));
5538 assert(!bs
->refcnt
);
5539 GLOBAL_STATE_CODE();
5541 /* remove from list, if necessary */
5542 if (bs
->node_name
[0] != '\0') {
5543 QTAILQ_REMOVE(&graph_bdrv_states
, bs
, node_list
);
5545 QTAILQ_REMOVE(&all_bdrv_states
, bs
, bs_list
);
5549 qemu_mutex_destroy(&bs
->reqs_lock
);
5556 * Replace @bs by newly created block node.
5558 * @options is a QDict of options to pass to the block drivers, or NULL for an
5559 * empty set of options. The reference to the QDict belongs to the block layer
5560 * after the call (even on failure), so if the caller intends to reuse the
5561 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
5563 * The caller must make sure that @bs stays in the same AioContext, i.e.
5564 * @options must not refer to nodes in a different AioContext.
5566 BlockDriverState
*bdrv_insert_node(BlockDriverState
*bs
, QDict
*options
,
5567 int flags
, Error
**errp
)
5571 AioContext
*ctx
= bdrv_get_aio_context(bs
);
5572 BlockDriverState
*new_node_bs
= NULL
;
5573 const char *drvname
, *node_name
;
5576 drvname
= qdict_get_try_str(options
, "driver");
5578 error_setg(errp
, "driver is not specified");
5582 drv
= bdrv_find_format(drvname
);
5584 error_setg(errp
, "Unknown driver: '%s'", drvname
);
5588 node_name
= qdict_get_try_str(options
, "node-name");
5590 GLOBAL_STATE_CODE();
5592 new_node_bs
= bdrv_new_open_driver_opts(drv
, node_name
, options
, flags
,
5594 assert(bdrv_get_aio_context(bs
) == ctx
);
5596 options
= NULL
; /* bdrv_new_open_driver() eats options */
5598 error_prepend(errp
, "Could not create node: ");
5603 * Make sure that @bs doesn't go away until we have successfully attached
5604 * all of its parents to @new_node_bs and undrained it again.
5607 bdrv_drained_begin(bs
);
5608 bdrv_drained_begin(new_node_bs
);
5609 bdrv_graph_wrlock();
5610 ret
= bdrv_replace_node(bs
, new_node_bs
, errp
);
5611 bdrv_graph_wrunlock();
5612 bdrv_drained_end(new_node_bs
);
5613 bdrv_drained_end(bs
);
5617 error_prepend(errp
, "Could not replace node: ");
5624 qobject_unref(options
);
5625 bdrv_unref(new_node_bs
);
5630 * Run consistency checks on an image
5632 * Returns 0 if the check could be completed (it doesn't mean that the image is
5633 * free of errors) or -errno when an internal error occurred. The results of the
5634 * check are stored in res.
5636 int coroutine_fn
bdrv_co_check(BlockDriverState
*bs
,
5637 BdrvCheckResult
*res
, BdrvCheckMode fix
)
5640 assert_bdrv_graph_readable();
5641 if (bs
->drv
== NULL
) {
5644 if (bs
->drv
->bdrv_co_check
== NULL
) {
5648 memset(res
, 0, sizeof(*res
));
5649 return bs
->drv
->bdrv_co_check(bs
, res
, fix
);
5655 * -EINVAL - backing format specified, but no file
5656 * -ENOSPC - can't update the backing file because no space is left in the
5658 * -ENOTSUP - format driver doesn't support changing the backing file
5661 bdrv_co_change_backing_file(BlockDriverState
*bs
, const char *backing_file
,
5662 const char *backing_fmt
, bool require
)
5664 BlockDriver
*drv
= bs
->drv
;
5673 /* Backing file format doesn't make sense without a backing file */
5674 if (backing_fmt
&& !backing_file
) {
5678 if (require
&& backing_file
&& !backing_fmt
) {
5682 if (drv
->bdrv_co_change_backing_file
!= NULL
) {
5683 ret
= drv
->bdrv_co_change_backing_file(bs
, backing_file
, backing_fmt
);
5689 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
), backing_file
?: "");
5690 pstrcpy(bs
->backing_format
, sizeof(bs
->backing_format
), backing_fmt
?: "");
5691 pstrcpy(bs
->auto_backing_file
, sizeof(bs
->auto_backing_file
),
5692 backing_file
?: "");
5698 * Finds the first non-filter node above bs in the chain between
5699 * active and bs. The returned node is either an immediate parent of
5700 * bs, or there are only filter nodes between the two.
5702 * Returns NULL if bs is not found in active's image chain,
5703 * or if active == bs.
5705 * Returns the bottommost base image if bs == NULL.
5707 BlockDriverState
*bdrv_find_overlay(BlockDriverState
*active
,
5708 BlockDriverState
*bs
)
5711 GLOBAL_STATE_CODE();
5713 bs
= bdrv_skip_filters(bs
);
5714 active
= bdrv_skip_filters(active
);
5717 BlockDriverState
*next
= bdrv_backing_chain_next(active
);
5727 /* Given a BDS, searches for the base layer. */
5728 BlockDriverState
*bdrv_find_base(BlockDriverState
*bs
)
5730 GLOBAL_STATE_CODE();
5732 return bdrv_find_overlay(bs
, NULL
);
5736 * Return true if at least one of the COW (backing) and filter links
5737 * between @bs and @base is frozen. @errp is set if that's the case.
5738 * @base must be reachable from @bs, or NULL.
5740 static bool GRAPH_RDLOCK
5741 bdrv_is_backing_chain_frozen(BlockDriverState
*bs
, BlockDriverState
*base
,
5744 BlockDriverState
*i
;
5747 GLOBAL_STATE_CODE();
5749 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5750 child
= bdrv_filter_or_cow_child(i
);
5752 if (child
&& child
->frozen
) {
5753 error_setg(errp
, "Cannot change '%s' link from '%s' to '%s'",
5754 child
->name
, i
->node_name
, child
->bs
->node_name
);
5763 * Freeze all COW (backing) and filter links between @bs and @base.
5764 * If any of the links is already frozen the operation is aborted and
5765 * none of the links are modified.
5766 * @base must be reachable from @bs, or NULL.
5767 * Returns 0 on success. On failure returns < 0 and sets @errp.
5769 int bdrv_freeze_backing_chain(BlockDriverState
*bs
, BlockDriverState
*base
,
5772 BlockDriverState
*i
;
5775 GLOBAL_STATE_CODE();
5777 if (bdrv_is_backing_chain_frozen(bs
, base
, errp
)) {
5781 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5782 child
= bdrv_filter_or_cow_child(i
);
5783 if (child
&& child
->bs
->never_freeze
) {
5784 error_setg(errp
, "Cannot freeze '%s' link to '%s'",
5785 child
->name
, child
->bs
->node_name
);
5790 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5791 child
= bdrv_filter_or_cow_child(i
);
5793 child
->frozen
= true;
5801 * Unfreeze all COW (backing) and filter links between @bs and @base.
5802 * The caller must ensure that all links are frozen before using this
5804 * @base must be reachable from @bs, or NULL.
5806 void bdrv_unfreeze_backing_chain(BlockDriverState
*bs
, BlockDriverState
*base
)
5808 BlockDriverState
*i
;
5811 GLOBAL_STATE_CODE();
5813 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5814 child
= bdrv_filter_or_cow_child(i
);
5816 assert(child
->frozen
);
5817 child
->frozen
= false;
5823 * Drops images above 'base' up to and including 'top', and sets the image
5824 * above 'top' to have base as its backing file.
5826 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5827 * information in 'bs' can be properly updated.
5829 * E.g., this will convert the following chain:
5830 * bottom <- base <- intermediate <- top <- active
5834 * bottom <- base <- active
5836 * It is allowed for bottom==base, in which case it converts:
5838 * base <- intermediate <- top <- active
5844 * If backing_file_str is non-NULL, it will be used when modifying top's
5845 * overlay image metadata.
5848 * if active == top, that is considered an error
5851 int bdrv_drop_intermediate(BlockDriverState
*top
, BlockDriverState
*base
,
5852 const char *backing_file_str
,
5853 bool backing_mask_protocol
)
5855 BlockDriverState
*explicit_top
= top
;
5856 bool update_inherits_from
;
5858 Error
*local_err
= NULL
;
5860 g_autoptr(GSList
) updated_children
= NULL
;
5863 GLOBAL_STATE_CODE();
5866 bdrv_drained_begin(base
);
5867 bdrv_graph_wrlock();
5869 if (!top
->drv
|| !base
->drv
) {
5873 /* Make sure that base is in the backing chain of top */
5874 if (!bdrv_chain_contains(top
, base
)) {
5878 /* If 'base' recursively inherits from 'top' then we should set
5879 * base->inherits_from to top->inherits_from after 'top' and all
5880 * other intermediate nodes have been dropped.
5881 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5882 * it because no one inherits from it. We use explicit_top for that. */
5883 explicit_top
= bdrv_skip_implicit_filters(explicit_top
);
5884 update_inherits_from
= bdrv_inherits_from_recursive(base
, explicit_top
);
5886 /* success - we can delete the intermediate states, and link top->base */
5887 if (!backing_file_str
) {
5888 bdrv_refresh_filename(base
);
5889 backing_file_str
= base
->filename
;
5892 QLIST_FOREACH(c
, &top
->parents
, next_parent
) {
5893 updated_children
= g_slist_prepend(updated_children
, c
);
5897 * It seems correct to pass detach_subchain=true here, but it triggers
5898 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5899 * another drained section, which modify the graph (for example, removing
5900 * the child, which we keep in updated_children list). So, it's a TODO.
5902 * Note, bug triggered if pass detach_subchain=true here and run
5903 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5906 bdrv_replace_node_common(top
, base
, false, false, &local_err
);
5907 bdrv_graph_wrunlock();
5910 error_report_err(local_err
);
5914 for (p
= updated_children
; p
; p
= p
->next
) {
5917 if (c
->klass
->update_filename
) {
5918 ret
= c
->klass
->update_filename(c
, base
, backing_file_str
,
5919 backing_mask_protocol
,
5923 * TODO: Actually, we want to rollback all previous iterations
5924 * of this loop, and (which is almost impossible) previous
5925 * bdrv_replace_node()...
5927 * Note, that c->klass->update_filename may lead to permission
5928 * update, so it's a bad idea to call it inside permission
5929 * update transaction of bdrv_replace_node.
5931 error_report_err(local_err
);
5937 if (update_inherits_from
) {
5938 base
->inherits_from
= explicit_top
->inherits_from
;
5945 bdrv_graph_wrunlock();
5947 bdrv_drained_end(base
);
5953 * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that
5954 * sums the size of all data-bearing children. (This excludes backing
5957 static int64_t coroutine_fn GRAPH_RDLOCK
5958 bdrv_sum_allocated_file_size(BlockDriverState
*bs
)
5961 int64_t child_size
, sum
= 0;
5963 QLIST_FOREACH(child
, &bs
->children
, next
) {
5964 if (child
->role
& (BDRV_CHILD_DATA
| BDRV_CHILD_METADATA
|
5965 BDRV_CHILD_FILTERED
))
5967 child_size
= bdrv_co_get_allocated_file_size(child
->bs
);
5968 if (child_size
< 0) {
5979 * Length of a allocated file in bytes. Sparse files are counted by actual
5980 * allocated space. Return < 0 if error or unknown.
5982 int64_t coroutine_fn
bdrv_co_get_allocated_file_size(BlockDriverState
*bs
)
5984 BlockDriver
*drv
= bs
->drv
;
5986 assert_bdrv_graph_readable();
5991 if (drv
->bdrv_co_get_allocated_file_size
) {
5992 return drv
->bdrv_co_get_allocated_file_size(bs
);
5995 if (drv
->protocol_name
) {
5997 * Protocol drivers default to -ENOTSUP (most of their data is
5998 * not stored in any of their children (if they even have any),
5999 * so there is no generic way to figure it out).
6002 } else if (drv
->is_filter
) {
6003 /* Filter drivers default to the size of their filtered child */
6004 return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs
));
6006 /* Other drivers default to summing their children's sizes */
6007 return bdrv_sum_allocated_file_size(bs
);
6013 * @drv: Format driver
6014 * @opts: Creation options for new image
6015 * @in_bs: Existing image containing data for new image (may be NULL)
6016 * @errp: Error object
6017 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
6020 * Calculate file size required to create a new image.
6022 * If @in_bs is given then space for allocated clusters and zero clusters
6023 * from that image are included in the calculation. If @opts contains a
6024 * backing file that is shared by @in_bs then backing clusters may be omitted
6025 * from the calculation.
6027 * If @in_bs is NULL then the calculation includes no allocated clusters
6028 * unless a preallocation option is given in @opts.
6030 * Note that @in_bs may use a different BlockDriver from @drv.
6032 * If an error occurs the @errp pointer is set.
6034 BlockMeasureInfo
*bdrv_measure(BlockDriver
*drv
, QemuOpts
*opts
,
6035 BlockDriverState
*in_bs
, Error
**errp
)
6038 if (!drv
->bdrv_measure
) {
6039 error_setg(errp
, "Block driver '%s' does not support size measurement",
6044 return drv
->bdrv_measure(opts
, in_bs
, errp
);
6048 * Return number of sectors on success, -errno on error.
6050 int64_t coroutine_fn
bdrv_co_nb_sectors(BlockDriverState
*bs
)
6052 BlockDriver
*drv
= bs
->drv
;
6054 assert_bdrv_graph_readable();
6059 if (bs
->bl
.has_variable_length
) {
6060 int ret
= bdrv_co_refresh_total_sectors(bs
, bs
->total_sectors
);
6065 return bs
->total_sectors
;
6069 * This wrapper is written by hand because this function is in the hot I/O path,
6070 * via blk_get_geometry.
6072 int64_t coroutine_mixed_fn
bdrv_nb_sectors(BlockDriverState
*bs
)
6074 BlockDriver
*drv
= bs
->drv
;
6080 if (bs
->bl
.has_variable_length
) {
6081 int ret
= bdrv_refresh_total_sectors(bs
, bs
->total_sectors
);
6087 return bs
->total_sectors
;
6091 * Return length in bytes on success, -errno on error.
6092 * The length is always a multiple of BDRV_SECTOR_SIZE.
6094 int64_t coroutine_fn
bdrv_co_getlength(BlockDriverState
*bs
)
6098 assert_bdrv_graph_readable();
6100 ret
= bdrv_co_nb_sectors(bs
);
6104 if (ret
> INT64_MAX
/ BDRV_SECTOR_SIZE
) {
6107 return ret
* BDRV_SECTOR_SIZE
;
6110 bool bdrv_is_sg(BlockDriverState
*bs
)
6117 * Return whether the given node supports compressed writes.
6119 bool bdrv_supports_compressed_writes(BlockDriverState
*bs
)
6121 BlockDriverState
*filtered
;
6124 if (!bs
->drv
|| !block_driver_can_compress(bs
->drv
)) {
6128 filtered
= bdrv_filter_bs(bs
);
6131 * Filters can only forward compressed writes, so we have to
6134 return bdrv_supports_compressed_writes(filtered
);
6140 const char *bdrv_get_format_name(BlockDriverState
*bs
)
6143 return bs
->drv
? bs
->drv
->format_name
: NULL
;
6146 static int qsort_strcmp(const void *a
, const void *b
)
6148 return strcmp(*(char *const *)a
, *(char *const *)b
);
6151 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
6152 void *opaque
, bool read_only
)
6157 const char **formats
= NULL
;
6159 GLOBAL_STATE_CODE();
6161 QLIST_FOREACH(drv
, &bdrv_drivers
, list
) {
6162 if (drv
->format_name
) {
6165 if (use_bdrv_whitelist
&& !bdrv_is_whitelisted(drv
, read_only
)) {
6170 while (formats
&& i
&& !found
) {
6171 found
= !strcmp(formats
[--i
], drv
->format_name
);
6175 formats
= g_renew(const char *, formats
, count
+ 1);
6176 formats
[count
++] = drv
->format_name
;
6181 for (i
= 0; i
< (int)ARRAY_SIZE(block_driver_modules
); i
++) {
6182 const char *format_name
= block_driver_modules
[i
].format_name
;
6188 if (use_bdrv_whitelist
&&
6189 !bdrv_format_is_whitelisted(format_name
, read_only
)) {
6193 while (formats
&& j
&& !found
) {
6194 found
= !strcmp(formats
[--j
], format_name
);
6198 formats
= g_renew(const char *, formats
, count
+ 1);
6199 formats
[count
++] = format_name
;
6204 qsort(formats
, count
, sizeof(formats
[0]), qsort_strcmp
);
6206 for (i
= 0; i
< count
; i
++) {
6207 it(opaque
, formats
[i
]);
6213 /* This function is to find a node in the bs graph */
6214 BlockDriverState
*bdrv_find_node(const char *node_name
)
6216 BlockDriverState
*bs
;
6219 GLOBAL_STATE_CODE();
6221 QTAILQ_FOREACH(bs
, &graph_bdrv_states
, node_list
) {
6222 if (!strcmp(node_name
, bs
->node_name
)) {
6229 /* Put this QMP function here so it can access the static graph_bdrv_states. */
6230 BlockDeviceInfoList
*bdrv_named_nodes_list(bool flat
,
6233 BlockDeviceInfoList
*list
;
6234 BlockDriverState
*bs
;
6236 GLOBAL_STATE_CODE();
6237 GRAPH_RDLOCK_GUARD_MAINLOOP();
6240 QTAILQ_FOREACH(bs
, &graph_bdrv_states
, node_list
) {
6241 BlockDeviceInfo
*info
= bdrv_block_device_info(NULL
, bs
, flat
, errp
);
6243 qapi_free_BlockDeviceInfoList(list
);
6246 QAPI_LIST_PREPEND(list
, info
);
6252 typedef struct XDbgBlockGraphConstructor
{
6253 XDbgBlockGraph
*graph
;
6254 GHashTable
*graph_nodes
;
6255 } XDbgBlockGraphConstructor
;
6257 static XDbgBlockGraphConstructor
*xdbg_graph_new(void)
6259 XDbgBlockGraphConstructor
*gr
= g_new(XDbgBlockGraphConstructor
, 1);
6261 gr
->graph
= g_new0(XDbgBlockGraph
, 1);
6262 gr
->graph_nodes
= g_hash_table_new(NULL
, NULL
);
6267 static XDbgBlockGraph
*xdbg_graph_finalize(XDbgBlockGraphConstructor
*gr
)
6269 XDbgBlockGraph
*graph
= gr
->graph
;
6271 g_hash_table_destroy(gr
->graph_nodes
);
6277 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor
*gr
, void *node
)
6279 uintptr_t ret
= (uintptr_t)g_hash_table_lookup(gr
->graph_nodes
, node
);
6286 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6287 * answer of g_hash_table_lookup.
6289 ret
= g_hash_table_size(gr
->graph_nodes
) + 1;
6290 g_hash_table_insert(gr
->graph_nodes
, node
, (void *)ret
);
6295 static void xdbg_graph_add_node(XDbgBlockGraphConstructor
*gr
, void *node
,
6296 XDbgBlockGraphNodeType type
, const char *name
)
6298 XDbgBlockGraphNode
*n
;
6300 n
= g_new0(XDbgBlockGraphNode
, 1);
6302 n
->id
= xdbg_graph_node_num(gr
, node
);
6304 n
->name
= g_strdup(name
);
6306 QAPI_LIST_PREPEND(gr
->graph
->nodes
, n
);
6309 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor
*gr
, void *parent
,
6310 const BdrvChild
*child
)
6312 BlockPermission qapi_perm
;
6313 XDbgBlockGraphEdge
*edge
;
6314 GLOBAL_STATE_CODE();
6316 edge
= g_new0(XDbgBlockGraphEdge
, 1);
6318 edge
->parent
= xdbg_graph_node_num(gr
, parent
);
6319 edge
->child
= xdbg_graph_node_num(gr
, child
->bs
);
6320 edge
->name
= g_strdup(child
->name
);
6322 for (qapi_perm
= 0; qapi_perm
< BLOCK_PERMISSION__MAX
; qapi_perm
++) {
6323 uint64_t flag
= bdrv_qapi_perm_to_blk_perm(qapi_perm
);
6325 if (flag
& child
->perm
) {
6326 QAPI_LIST_PREPEND(edge
->perm
, qapi_perm
);
6328 if (flag
& child
->shared_perm
) {
6329 QAPI_LIST_PREPEND(edge
->shared_perm
, qapi_perm
);
6333 QAPI_LIST_PREPEND(gr
->graph
->edges
, edge
);
6337 XDbgBlockGraph
*bdrv_get_xdbg_block_graph(Error
**errp
)
6341 BlockDriverState
*bs
;
6343 XDbgBlockGraphConstructor
*gr
= xdbg_graph_new();
6345 GLOBAL_STATE_CODE();
6347 for (blk
= blk_all_next(NULL
); blk
; blk
= blk_all_next(blk
)) {
6348 char *allocated_name
= NULL
;
6349 const char *name
= blk_name(blk
);
6352 name
= allocated_name
= blk_get_attached_dev_id(blk
);
6354 xdbg_graph_add_node(gr
, blk
, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND
,
6356 g_free(allocated_name
);
6357 if (blk_root(blk
)) {
6358 xdbg_graph_add_edge(gr
, blk
, blk_root(blk
));
6362 WITH_JOB_LOCK_GUARD() {
6363 for (job
= block_job_next_locked(NULL
); job
;
6364 job
= block_job_next_locked(job
)) {
6367 xdbg_graph_add_node(gr
, job
, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB
,
6369 for (el
= job
->nodes
; el
; el
= el
->next
) {
6370 xdbg_graph_add_edge(gr
, job
, (BdrvChild
*)el
->data
);
6375 QTAILQ_FOREACH(bs
, &graph_bdrv_states
, node_list
) {
6376 xdbg_graph_add_node(gr
, bs
, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER
,
6378 QLIST_FOREACH(child
, &bs
->children
, next
) {
6379 xdbg_graph_add_edge(gr
, bs
, child
);
6383 return xdbg_graph_finalize(gr
);
6386 BlockDriverState
*bdrv_lookup_bs(const char *device
,
6387 const char *node_name
,
6391 BlockDriverState
*bs
;
6393 GLOBAL_STATE_CODE();
6396 blk
= blk_by_name(device
);
6401 error_setg(errp
, "Device '%s' has no medium", device
);
6409 bs
= bdrv_find_node(node_name
);
6416 error_setg(errp
, "Cannot find device=\'%s\' nor node-name=\'%s\'",
6417 device
? device
: "",
6418 node_name
? node_name
: "");
6422 /* If 'base' is in the same chain as 'top', return true. Otherwise,
6423 * return false. If either argument is NULL, return false. */
6424 bool bdrv_chain_contains(BlockDriverState
*top
, BlockDriverState
*base
)
6427 GLOBAL_STATE_CODE();
6429 while (top
&& top
!= base
) {
6430 top
= bdrv_filter_or_cow_bs(top
);
6436 BlockDriverState
*bdrv_next_node(BlockDriverState
*bs
)
6438 GLOBAL_STATE_CODE();
6440 return QTAILQ_FIRST(&graph_bdrv_states
);
6442 return QTAILQ_NEXT(bs
, node_list
);
6445 BlockDriverState
*bdrv_next_all_states(BlockDriverState
*bs
)
6447 GLOBAL_STATE_CODE();
6449 return QTAILQ_FIRST(&all_bdrv_states
);
6451 return QTAILQ_NEXT(bs
, bs_list
);
6454 const char *bdrv_get_node_name(const BlockDriverState
*bs
)
6457 return bs
->node_name
;
6460 const char *bdrv_get_parent_name(const BlockDriverState
*bs
)
6466 /* If multiple parents have a name, just pick the first one. */
6467 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
6468 if (c
->klass
->get_name
) {
6469 name
= c
->klass
->get_name(c
);
6470 if (name
&& *name
) {
6479 /* TODO check what callers really want: bs->node_name or blk_name() */
6480 const char *bdrv_get_device_name(const BlockDriverState
*bs
)
6483 return bdrv_get_parent_name(bs
) ?: "";
6486 /* This can be used to identify nodes that might not have a device
6487 * name associated. Since node and device names live in the same
6488 * namespace, the result is unambiguous. The exception is if both are
6489 * absent, then this returns an empty (non-null) string. */
6490 const char *bdrv_get_device_or_node_name(const BlockDriverState
*bs
)
6493 return bdrv_get_parent_name(bs
) ?: bs
->node_name
;
6496 int bdrv_get_flags(BlockDriverState
*bs
)
6499 return bs
->open_flags
;
6502 int bdrv_has_zero_init_1(BlockDriverState
*bs
)
6504 GLOBAL_STATE_CODE();
6508 int coroutine_mixed_fn
bdrv_has_zero_init(BlockDriverState
*bs
)
6510 BlockDriverState
*filtered
;
6511 GLOBAL_STATE_CODE();
6517 /* If BS is a copy on write image, it is initialized to
6518 the contents of the base image, which may not be zeroes. */
6519 if (bdrv_cow_child(bs
)) {
6522 if (bs
->drv
->bdrv_has_zero_init
) {
6523 return bs
->drv
->bdrv_has_zero_init(bs
);
6526 filtered
= bdrv_filter_bs(bs
);
6528 return bdrv_has_zero_init(filtered
);
6535 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState
*bs
)
6538 if (!(bs
->open_flags
& BDRV_O_UNMAP
)) {
6542 return bs
->supported_zero_flags
& BDRV_REQ_MAY_UNMAP
;
6545 void bdrv_get_backing_filename(BlockDriverState
*bs
,
6546 char *filename
, int filename_size
)
6549 pstrcpy(filename
, filename_size
, bs
->backing_file
);
6552 int coroutine_fn
bdrv_co_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
6555 BlockDriver
*drv
= bs
->drv
;
6557 assert_bdrv_graph_readable();
6559 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6563 if (!drv
->bdrv_co_get_info
) {
6564 BlockDriverState
*filtered
= bdrv_filter_bs(bs
);
6566 return bdrv_co_get_info(filtered
, bdi
);
6570 memset(bdi
, 0, sizeof(*bdi
));
6571 ret
= drv
->bdrv_co_get_info(bs
, bdi
);
6572 if (bdi
->subcluster_size
== 0) {
6574 * If the driver left this unset, subclusters are not supported.
6575 * Then it is safe to treat each cluster as having only one subcluster.
6577 bdi
->subcluster_size
= bdi
->cluster_size
;
6583 if (bdi
->cluster_size
> BDRV_MAX_ALIGNMENT
) {
6590 ImageInfoSpecific
*bdrv_get_specific_info(BlockDriverState
*bs
,
6593 BlockDriver
*drv
= bs
->drv
;
6595 if (drv
&& drv
->bdrv_get_specific_info
) {
6596 return drv
->bdrv_get_specific_info(bs
, errp
);
6601 BlockStatsSpecific
*bdrv_get_specific_stats(BlockDriverState
*bs
)
6603 BlockDriver
*drv
= bs
->drv
;
6605 if (!drv
|| !drv
->bdrv_get_specific_stats
) {
6608 return drv
->bdrv_get_specific_stats(bs
);
6611 void coroutine_fn
bdrv_co_debug_event(BlockDriverState
*bs
, BlkdebugEvent event
)
6614 assert_bdrv_graph_readable();
6616 if (!bs
|| !bs
->drv
|| !bs
->drv
->bdrv_co_debug_event
) {
6620 bs
->drv
->bdrv_co_debug_event(bs
, event
);
6623 static BlockDriverState
* GRAPH_RDLOCK
6624 bdrv_find_debug_node(BlockDriverState
*bs
)
6626 GLOBAL_STATE_CODE();
6627 while (bs
&& bs
->drv
&& !bs
->drv
->bdrv_debug_breakpoint
) {
6628 bs
= bdrv_primary_bs(bs
);
6631 if (bs
&& bs
->drv
&& bs
->drv
->bdrv_debug_breakpoint
) {
6632 assert(bs
->drv
->bdrv_debug_remove_breakpoint
);
6639 int bdrv_debug_breakpoint(BlockDriverState
*bs
, const char *event
,
6642 GLOBAL_STATE_CODE();
6643 GRAPH_RDLOCK_GUARD_MAINLOOP();
6645 bs
= bdrv_find_debug_node(bs
);
6647 return bs
->drv
->bdrv_debug_breakpoint(bs
, event
, tag
);
6653 int bdrv_debug_remove_breakpoint(BlockDriverState
*bs
, const char *tag
)
6655 GLOBAL_STATE_CODE();
6656 GRAPH_RDLOCK_GUARD_MAINLOOP();
6658 bs
= bdrv_find_debug_node(bs
);
6660 return bs
->drv
->bdrv_debug_remove_breakpoint(bs
, tag
);
6666 int bdrv_debug_resume(BlockDriverState
*bs
, const char *tag
)
6668 GLOBAL_STATE_CODE();
6669 GRAPH_RDLOCK_GUARD_MAINLOOP();
6671 while (bs
&& (!bs
->drv
|| !bs
->drv
->bdrv_debug_resume
)) {
6672 bs
= bdrv_primary_bs(bs
);
6675 if (bs
&& bs
->drv
&& bs
->drv
->bdrv_debug_resume
) {
6676 return bs
->drv
->bdrv_debug_resume(bs
, tag
);
6682 bool bdrv_debug_is_suspended(BlockDriverState
*bs
, const char *tag
)
6684 GLOBAL_STATE_CODE();
6685 GRAPH_RDLOCK_GUARD_MAINLOOP();
6687 while (bs
&& bs
->drv
&& !bs
->drv
->bdrv_debug_is_suspended
) {
6688 bs
= bdrv_primary_bs(bs
);
6691 if (bs
&& bs
->drv
&& bs
->drv
->bdrv_debug_is_suspended
) {
6692 return bs
->drv
->bdrv_debug_is_suspended(bs
, tag
);
6698 /* backing_file can either be relative, or absolute, or a protocol. If it is
6699 * relative, it must be relative to the chain. So, passing in bs->filename
6700 * from a BDS as backing_file should not be done, as that may be relative to
6701 * the CWD rather than the chain. */
6702 BlockDriverState
*bdrv_find_backing_image(BlockDriverState
*bs
,
6703 const char *backing_file
)
6705 char *filename_full
= NULL
;
6706 char *backing_file_full
= NULL
;
6707 char *filename_tmp
= NULL
;
6708 int is_protocol
= 0;
6709 bool filenames_refreshed
= false;
6710 BlockDriverState
*curr_bs
= NULL
;
6711 BlockDriverState
*retval
= NULL
;
6712 BlockDriverState
*bs_below
;
6714 GLOBAL_STATE_CODE();
6715 GRAPH_RDLOCK_GUARD_MAINLOOP();
6717 if (!bs
|| !bs
->drv
|| !backing_file
) {
6721 filename_full
= g_malloc(PATH_MAX
);
6722 backing_file_full
= g_malloc(PATH_MAX
);
6724 is_protocol
= path_has_protocol(backing_file
);
6727 * Being largely a legacy function, skip any filters here
6728 * (because filters do not have normal filenames, so they cannot
6729 * match anyway; and allowing json:{} filenames is a bit out of
6732 for (curr_bs
= bdrv_skip_filters(bs
);
6733 bdrv_cow_child(curr_bs
) != NULL
;
6736 bs_below
= bdrv_backing_chain_next(curr_bs
);
6738 if (bdrv_backing_overridden(curr_bs
)) {
6740 * If the backing file was overridden, we can only compare
6741 * directly against the backing node's filename.
6744 if (!filenames_refreshed
) {
6746 * This will automatically refresh all of the
6747 * filenames in the rest of the backing chain, so we
6748 * only need to do this once.
6750 bdrv_refresh_filename(bs_below
);
6751 filenames_refreshed
= true;
6754 if (strcmp(backing_file
, bs_below
->filename
) == 0) {
6758 } else if (is_protocol
|| path_has_protocol(curr_bs
->backing_file
)) {
6760 * If either of the filename paths is actually a protocol, then
6761 * compare unmodified paths; otherwise make paths relative.
6763 char *backing_file_full_ret
;
6765 if (strcmp(backing_file
, curr_bs
->backing_file
) == 0) {
6769 /* Also check against the full backing filename for the image */
6770 backing_file_full_ret
= bdrv_get_full_backing_filename(curr_bs
,
6772 if (backing_file_full_ret
) {
6773 bool equal
= strcmp(backing_file
, backing_file_full_ret
) == 0;
6774 g_free(backing_file_full_ret
);
6781 /* If not an absolute filename path, make it relative to the current
6782 * image's filename path */
6783 filename_tmp
= bdrv_make_absolute_filename(curr_bs
, backing_file
,
6785 /* We are going to compare canonicalized absolute pathnames */
6786 if (!filename_tmp
|| !realpath(filename_tmp
, filename_full
)) {
6787 g_free(filename_tmp
);
6790 g_free(filename_tmp
);
6792 /* We need to make sure the backing filename we are comparing against
6793 * is relative to the current image filename (or absolute) */
6794 filename_tmp
= bdrv_get_full_backing_filename(curr_bs
, NULL
);
6795 if (!filename_tmp
|| !realpath(filename_tmp
, backing_file_full
)) {
6796 g_free(filename_tmp
);
6799 g_free(filename_tmp
);
6801 if (strcmp(backing_file_full
, filename_full
) == 0) {
6808 g_free(filename_full
);
6809 g_free(backing_file_full
);
6813 void bdrv_init(void)
6815 #ifdef CONFIG_BDRV_WHITELIST_TOOLS
6816 use_bdrv_whitelist
= 1;
6818 module_call_init(MODULE_INIT_BLOCK
);
6821 void bdrv_init_with_whitelist(void)
6823 use_bdrv_whitelist
= 1;
6827 int bdrv_activate(BlockDriverState
*bs
, Error
**errp
)
6829 BdrvChild
*child
, *parent
;
6830 Error
*local_err
= NULL
;
6832 BdrvDirtyBitmap
*bm
;
6834 GLOBAL_STATE_CODE();
6835 GRAPH_RDLOCK_GUARD_MAINLOOP();
6841 QLIST_FOREACH(child
, &bs
->children
, next
) {
6842 bdrv_activate(child
->bs
, &local_err
);
6844 error_propagate(errp
, local_err
);
6850 * Update permissions, they may differ for inactive nodes.
6852 * Note that the required permissions of inactive images are always a
6853 * subset of the permissions required after activating the image. This
6854 * allows us to just get the permissions upfront without restricting
6855 * bdrv_co_invalidate_cache().
6857 * It also means that in error cases, we don't have to try and revert to
6858 * the old permissions (which is an operation that could fail, too). We can
6859 * just keep the extended permissions for the next time that an activation
6860 * of the image is tried.
6862 if (bs
->open_flags
& BDRV_O_INACTIVE
) {
6863 bs
->open_flags
&= ~BDRV_O_INACTIVE
;
6864 ret
= bdrv_refresh_perms(bs
, NULL
, errp
);
6866 bs
->open_flags
|= BDRV_O_INACTIVE
;
6870 ret
= bdrv_invalidate_cache(bs
, errp
);
6872 bs
->open_flags
|= BDRV_O_INACTIVE
;
6876 FOR_EACH_DIRTY_BITMAP(bs
, bm
) {
6877 bdrv_dirty_bitmap_skip_store(bm
, false);
6880 ret
= bdrv_refresh_total_sectors(bs
, bs
->total_sectors
);
6882 bs
->open_flags
|= BDRV_O_INACTIVE
;
6883 error_setg_errno(errp
, -ret
, "Could not refresh total sector count");
6888 QLIST_FOREACH(parent
, &bs
->parents
, next_parent
) {
6889 if (parent
->klass
->activate
) {
6890 parent
->klass
->activate(parent
, &local_err
);
6892 bs
->open_flags
|= BDRV_O_INACTIVE
;
6893 error_propagate(errp
, local_err
);
6902 int coroutine_fn
bdrv_co_invalidate_cache(BlockDriverState
*bs
, Error
**errp
)
6904 Error
*local_err
= NULL
;
6907 assert(!(bs
->open_flags
& BDRV_O_INACTIVE
));
6908 assert_bdrv_graph_readable();
6910 if (bs
->drv
->bdrv_co_invalidate_cache
) {
6911 bs
->drv
->bdrv_co_invalidate_cache(bs
, &local_err
);
6913 error_propagate(errp
, local_err
);
6921 void bdrv_activate_all(Error
**errp
)
6923 BlockDriverState
*bs
;
6924 BdrvNextIterator it
;
6926 GLOBAL_STATE_CODE();
6927 GRAPH_RDLOCK_GUARD_MAINLOOP();
6929 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
6932 ret
= bdrv_activate(bs
, errp
);
6934 bdrv_next_cleanup(&it
);
6940 static bool GRAPH_RDLOCK
6941 bdrv_has_bds_parent(BlockDriverState
*bs
, bool only_active
)
6944 GLOBAL_STATE_CODE();
6946 QLIST_FOREACH(parent
, &bs
->parents
, next_parent
) {
6947 if (parent
->klass
->parent_is_bds
) {
6948 BlockDriverState
*parent_bs
= parent
->opaque
;
6949 if (!only_active
|| !(parent_bs
->open_flags
& BDRV_O_INACTIVE
)) {
6958 static int GRAPH_RDLOCK
bdrv_inactivate_recurse(BlockDriverState
*bs
)
6960 BdrvChild
*child
, *parent
;
6962 uint64_t cumulative_perms
, cumulative_shared_perms
;
6964 GLOBAL_STATE_CODE();
6970 /* Make sure that we don't inactivate a child before its parent.
6971 * It will be covered by recursion from the yet active parent. */
6972 if (bdrv_has_bds_parent(bs
, true)) {
6976 assert(!(bs
->open_flags
& BDRV_O_INACTIVE
));
6978 /* Inactivate this node */
6979 if (bs
->drv
->bdrv_inactivate
) {
6980 ret
= bs
->drv
->bdrv_inactivate(bs
);
6986 QLIST_FOREACH(parent
, &bs
->parents
, next_parent
) {
6987 if (parent
->klass
->inactivate
) {
6988 ret
= parent
->klass
->inactivate(parent
);
6995 bdrv_get_cumulative_perm(bs
, &cumulative_perms
,
6996 &cumulative_shared_perms
);
6997 if (cumulative_perms
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
)) {
6998 /* Our inactive parents still need write access. Inactivation failed. */
7002 bs
->open_flags
|= BDRV_O_INACTIVE
;
7005 * Update permissions, they may differ for inactive nodes.
7006 * We only tried to loosen restrictions, so errors are not fatal, ignore
7009 bdrv_refresh_perms(bs
, NULL
, NULL
);
7011 /* Recursively inactivate children */
7012 QLIST_FOREACH(child
, &bs
->children
, next
) {
7013 ret
= bdrv_inactivate_recurse(child
->bs
);
7022 int bdrv_inactivate_all(void)
7024 BlockDriverState
*bs
= NULL
;
7025 BdrvNextIterator it
;
7028 GLOBAL_STATE_CODE();
7029 GRAPH_RDLOCK_GUARD_MAINLOOP();
7031 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
7032 /* Nodes with BDS parents are covered by recursion from the last
7033 * parent that gets inactivated. Don't inactivate them a second
7034 * time if that has already happened. */
7035 if (bdrv_has_bds_parent(bs
, false)) {
7038 ret
= bdrv_inactivate_recurse(bs
);
7040 bdrv_next_cleanup(&it
);
7048 /**************************************************************/
7049 /* removable device support */
7052 * Return TRUE if the media is present
7054 bool coroutine_fn
bdrv_co_is_inserted(BlockDriverState
*bs
)
7056 BlockDriver
*drv
= bs
->drv
;
7059 assert_bdrv_graph_readable();
7064 if (drv
->bdrv_co_is_inserted
) {
7065 return drv
->bdrv_co_is_inserted(bs
);
7067 QLIST_FOREACH(child
, &bs
->children
, next
) {
7068 if (!bdrv_co_is_inserted(child
->bs
)) {
7076 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
7078 void coroutine_fn
bdrv_co_eject(BlockDriverState
*bs
, bool eject_flag
)
7080 BlockDriver
*drv
= bs
->drv
;
7082 assert_bdrv_graph_readable();
7084 if (drv
&& drv
->bdrv_co_eject
) {
7085 drv
->bdrv_co_eject(bs
, eject_flag
);
7090 * Lock or unlock the media (if it is locked, the user won't be able
7091 * to eject it manually).
7093 void coroutine_fn
bdrv_co_lock_medium(BlockDriverState
*bs
, bool locked
)
7095 BlockDriver
*drv
= bs
->drv
;
7097 assert_bdrv_graph_readable();
7098 trace_bdrv_lock_medium(bs
, locked
);
7100 if (drv
&& drv
->bdrv_co_lock_medium
) {
7101 drv
->bdrv_co_lock_medium(bs
, locked
);
7105 /* Get a reference to bs */
7106 void bdrv_ref(BlockDriverState
*bs
)
7108 GLOBAL_STATE_CODE();
7112 /* Release a previously grabbed reference to bs.
7113 * If after releasing, reference count is zero, the BlockDriverState is
7115 void bdrv_unref(BlockDriverState
*bs
)
7117 GLOBAL_STATE_CODE();
7121 assert(bs
->refcnt
> 0);
7122 if (--bs
->refcnt
== 0) {
7127 static void bdrv_schedule_unref_bh(void *opaque
)
7129 BlockDriverState
*bs
= opaque
;
7135 * Release a BlockDriverState reference while holding the graph write lock.
7137 * Calling bdrv_unref() directly is forbidden while holding the graph lock
7138 * because bdrv_close() both involves polling and taking the graph lock
7139 * internally. bdrv_schedule_unref() instead delays decreasing the refcount and
7140 * possibly closing @bs until the graph lock is released.
7142 void bdrv_schedule_unref(BlockDriverState
*bs
)
7147 aio_bh_schedule_oneshot(qemu_get_aio_context(), bdrv_schedule_unref_bh
, bs
);
7150 struct BdrvOpBlocker
{
7152 QLIST_ENTRY(BdrvOpBlocker
) list
;
7155 bool bdrv_op_is_blocked(BlockDriverState
*bs
, BlockOpType op
, Error
**errp
)
7157 BdrvOpBlocker
*blocker
;
7158 GLOBAL_STATE_CODE();
7160 assert((int) op
>= 0 && op
< BLOCK_OP_TYPE_MAX
);
7161 if (!QLIST_EMPTY(&bs
->op_blockers
[op
])) {
7162 blocker
= QLIST_FIRST(&bs
->op_blockers
[op
]);
7163 error_propagate_prepend(errp
, error_copy(blocker
->reason
),
7164 "Node '%s' is busy: ",
7165 bdrv_get_device_or_node_name(bs
));
7171 void bdrv_op_block(BlockDriverState
*bs
, BlockOpType op
, Error
*reason
)
7173 BdrvOpBlocker
*blocker
;
7174 GLOBAL_STATE_CODE();
7175 assert((int) op
>= 0 && op
< BLOCK_OP_TYPE_MAX
);
7177 blocker
= g_new0(BdrvOpBlocker
, 1);
7178 blocker
->reason
= reason
;
7179 QLIST_INSERT_HEAD(&bs
->op_blockers
[op
], blocker
, list
);
7182 void bdrv_op_unblock(BlockDriverState
*bs
, BlockOpType op
, Error
*reason
)
7184 BdrvOpBlocker
*blocker
, *next
;
7185 GLOBAL_STATE_CODE();
7186 assert((int) op
>= 0 && op
< BLOCK_OP_TYPE_MAX
);
7187 QLIST_FOREACH_SAFE(blocker
, &bs
->op_blockers
[op
], list
, next
) {
7188 if (blocker
->reason
== reason
) {
7189 QLIST_REMOVE(blocker
, list
);
7195 void bdrv_op_block_all(BlockDriverState
*bs
, Error
*reason
)
7198 GLOBAL_STATE_CODE();
7199 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
7200 bdrv_op_block(bs
, i
, reason
);
7204 void bdrv_op_unblock_all(BlockDriverState
*bs
, Error
*reason
)
7207 GLOBAL_STATE_CODE();
7208 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
7209 bdrv_op_unblock(bs
, i
, reason
);
7213 bool bdrv_op_blocker_is_empty(BlockDriverState
*bs
)
7216 GLOBAL_STATE_CODE();
7217 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
7218 if (!QLIST_EMPTY(&bs
->op_blockers
[i
])) {
7226 * Must not be called while holding the lock of an AioContext other than the
7229 void bdrv_img_create(const char *filename
, const char *fmt
,
7230 const char *base_filename
, const char *base_fmt
,
7231 char *options
, uint64_t img_size
, int flags
, bool quiet
,
7234 QemuOptsList
*create_opts
= NULL
;
7235 QemuOpts
*opts
= NULL
;
7236 const char *backing_fmt
, *backing_file
;
7238 BlockDriver
*drv
, *proto_drv
;
7239 Error
*local_err
= NULL
;
7242 GLOBAL_STATE_CODE();
7244 /* Find driver and parse its options */
7245 drv
= bdrv_find_format(fmt
);
7247 error_setg(errp
, "Unknown file format '%s'", fmt
);
7251 proto_drv
= bdrv_find_protocol(filename
, true, errp
);
7256 if (!drv
->create_opts
) {
7257 error_setg(errp
, "Format driver '%s' does not support image creation",
7262 if (!proto_drv
->create_opts
) {
7263 error_setg(errp
, "Protocol driver '%s' does not support image creation",
7264 proto_drv
->format_name
);
7268 /* Create parameter list */
7269 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
7270 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
7272 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
7274 /* Parse -o options */
7276 if (!qemu_opts_do_parse(opts
, options
, NULL
, errp
)) {
7281 if (!qemu_opt_get(opts
, BLOCK_OPT_SIZE
)) {
7282 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, img_size
, &error_abort
);
7283 } else if (img_size
!= UINT64_C(-1)) {
7284 error_setg(errp
, "The image size must be specified only once");
7288 if (base_filename
) {
7289 if (!qemu_opt_set(opts
, BLOCK_OPT_BACKING_FILE
, base_filename
,
7291 error_setg(errp
, "Backing file not supported for file format '%s'",
7298 if (!qemu_opt_set(opts
, BLOCK_OPT_BACKING_FMT
, base_fmt
, NULL
)) {
7299 error_setg(errp
, "Backing file format not supported for file "
7300 "format '%s'", fmt
);
7305 backing_file
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FILE
);
7307 if (!strcmp(filename
, backing_file
)) {
7308 error_setg(errp
, "Error: Trying to create an image with the "
7309 "same filename as the backing file");
7312 if (backing_file
[0] == '\0') {
7313 error_setg(errp
, "Expected backing file name, got empty string");
7318 backing_fmt
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FMT
);
7320 /* The size for the image must always be specified, unless we have a backing
7321 * file and we have not been forbidden from opening it. */
7322 size
= qemu_opt_get_size(opts
, BLOCK_OPT_SIZE
, img_size
);
7323 if (backing_file
&& !(flags
& BDRV_O_NO_BACKING
)) {
7324 BlockDriverState
*bs
;
7327 QDict
*backing_options
= NULL
;
7330 bdrv_get_full_backing_filename_from_filename(filename
, backing_file
,
7335 assert(full_backing
);
7338 * No need to do I/O here, which allows us to open encrypted
7339 * backing images without needing the secret
7342 back_flags
&= ~(BDRV_O_RDWR
| BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
);
7343 back_flags
|= BDRV_O_NO_IO
;
7345 backing_options
= qdict_new();
7347 qdict_put_str(backing_options
, "driver", backing_fmt
);
7349 qdict_put_bool(backing_options
, BDRV_OPT_FORCE_SHARE
, true);
7351 bs
= bdrv_open(full_backing
, NULL
, backing_options
, back_flags
,
7353 g_free(full_backing
);
7355 error_append_hint(&local_err
, "Could not open backing image.\n");
7359 error_setg(&local_err
,
7360 "Backing file specified without backing format");
7361 error_append_hint(&local_err
, "Detected format of %s.\n",
7362 bs
->drv
->format_name
);
7366 /* Opened BS, have no size */
7367 size
= bdrv_getlength(bs
);
7369 error_setg_errno(errp
, -size
, "Could not get size of '%s'",
7374 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, size
, &error_abort
);
7378 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7379 } else if (backing_file
&& !backing_fmt
) {
7380 error_setg(&local_err
,
7381 "Backing file specified without backing format");
7385 /* Parameter 'size' is not needed for detached LUKS header */
7387 !(!strcmp(fmt
, "luks") &&
7388 qemu_opt_get_bool(opts
, "detached-header", false))) {
7389 error_setg(errp
, "Image creation needs a size parameter");
7394 printf("Formatting '%s', fmt=%s ", filename
, fmt
);
7395 qemu_opts_print(opts
, " ");
7400 ret
= bdrv_create(drv
, filename
, opts
, &local_err
);
7402 if (ret
== -EFBIG
) {
7403 /* This is generally a better message than whatever the driver would
7404 * deliver (especially because of the cluster_size_hint), since that
7405 * is most probably not much different from "image too large". */
7406 const char *cluster_size_hint
= "";
7407 if (qemu_opt_get_size(opts
, BLOCK_OPT_CLUSTER_SIZE
, 0)) {
7408 cluster_size_hint
= " (try using a larger cluster size)";
7410 error_setg(errp
, "The image size is too large for file format '%s'"
7411 "%s", fmt
, cluster_size_hint
);
7412 error_free(local_err
);
7417 qemu_opts_del(opts
);
7418 qemu_opts_free(create_opts
);
7419 error_propagate(errp
, local_err
);
7422 AioContext
*bdrv_get_aio_context(BlockDriverState
*bs
)
7425 return bs
? bs
->aio_context
: qemu_get_aio_context();
7428 AioContext
*coroutine_fn
bdrv_co_enter(BlockDriverState
*bs
)
7430 Coroutine
*self
= qemu_coroutine_self();
7431 AioContext
*old_ctx
= qemu_coroutine_get_aio_context(self
);
7432 AioContext
*new_ctx
;
7436 * Increase bs->in_flight to ensure that this operation is completed before
7437 * moving the node to a different AioContext. Read new_ctx only afterwards.
7439 bdrv_inc_in_flight(bs
);
7441 new_ctx
= bdrv_get_aio_context(bs
);
7442 aio_co_reschedule_self(new_ctx
);
7446 void coroutine_fn
bdrv_co_leave(BlockDriverState
*bs
, AioContext
*old_ctx
)
7449 aio_co_reschedule_self(old_ctx
);
7450 bdrv_dec_in_flight(bs
);
7453 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier
*ban
)
7455 GLOBAL_STATE_CODE();
7456 QLIST_REMOVE(ban
, list
);
7460 static void bdrv_detach_aio_context(BlockDriverState
*bs
)
7462 BdrvAioNotifier
*baf
, *baf_tmp
;
7464 assert(!bs
->walking_aio_notifiers
);
7465 GLOBAL_STATE_CODE();
7466 bs
->walking_aio_notifiers
= true;
7467 QLIST_FOREACH_SAFE(baf
, &bs
->aio_notifiers
, list
, baf_tmp
) {
7469 bdrv_do_remove_aio_context_notifier(baf
);
7471 baf
->detach_aio_context(baf
->opaque
);
7474 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7475 * remove remaining aio notifiers if we aren't called again.
7477 bs
->walking_aio_notifiers
= false;
7479 if (bs
->drv
&& bs
->drv
->bdrv_detach_aio_context
) {
7480 bs
->drv
->bdrv_detach_aio_context(bs
);
7483 bs
->aio_context
= NULL
;
7486 static void bdrv_attach_aio_context(BlockDriverState
*bs
,
7487 AioContext
*new_context
)
7489 BdrvAioNotifier
*ban
, *ban_tmp
;
7490 GLOBAL_STATE_CODE();
7492 bs
->aio_context
= new_context
;
7494 if (bs
->drv
&& bs
->drv
->bdrv_attach_aio_context
) {
7495 bs
->drv
->bdrv_attach_aio_context(bs
, new_context
);
7498 assert(!bs
->walking_aio_notifiers
);
7499 bs
->walking_aio_notifiers
= true;
7500 QLIST_FOREACH_SAFE(ban
, &bs
->aio_notifiers
, list
, ban_tmp
) {
7502 bdrv_do_remove_aio_context_notifier(ban
);
7504 ban
->attached_aio_context(new_context
, ban
->opaque
);
7507 bs
->walking_aio_notifiers
= false;
7510 typedef struct BdrvStateSetAioContext
{
7511 AioContext
*new_ctx
;
7512 BlockDriverState
*bs
;
7513 } BdrvStateSetAioContext
;
7515 static bool bdrv_parent_change_aio_context(BdrvChild
*c
, AioContext
*ctx
,
7516 GHashTable
*visited
,
7520 GLOBAL_STATE_CODE();
7521 if (g_hash_table_contains(visited
, c
)) {
7524 g_hash_table_add(visited
, c
);
7527 * A BdrvChildClass that doesn't handle AioContext changes cannot
7528 * tolerate any AioContext changes
7530 if (!c
->klass
->change_aio_ctx
) {
7531 char *user
= bdrv_child_user_desc(c
);
7532 error_setg(errp
, "Changing iothreads is not supported by %s", user
);
7536 if (!c
->klass
->change_aio_ctx(c
, ctx
, visited
, tran
, errp
)) {
7537 assert(!errp
|| *errp
);
7543 bool bdrv_child_change_aio_context(BdrvChild
*c
, AioContext
*ctx
,
7544 GHashTable
*visited
, Transaction
*tran
,
7547 GLOBAL_STATE_CODE();
7548 if (g_hash_table_contains(visited
, c
)) {
7551 g_hash_table_add(visited
, c
);
7552 return bdrv_change_aio_context(c
->bs
, ctx
, visited
, tran
, errp
);
7555 static void bdrv_set_aio_context_clean(void *opaque
)
7557 BdrvStateSetAioContext
*state
= (BdrvStateSetAioContext
*) opaque
;
7558 BlockDriverState
*bs
= (BlockDriverState
*) state
->bs
;
7560 /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */
7561 bdrv_drained_end(bs
);
7566 static void bdrv_set_aio_context_commit(void *opaque
)
7568 BdrvStateSetAioContext
*state
= (BdrvStateSetAioContext
*) opaque
;
7569 BlockDriverState
*bs
= (BlockDriverState
*) state
->bs
;
7570 AioContext
*new_context
= state
->new_ctx
;
7572 bdrv_detach_aio_context(bs
);
7573 bdrv_attach_aio_context(bs
, new_context
);
7576 static TransactionActionDrv set_aio_context
= {
7577 .commit
= bdrv_set_aio_context_commit
,
7578 .clean
= bdrv_set_aio_context_clean
,
7582 * Changes the AioContext used for fd handlers, timers, and BHs by this
7583 * BlockDriverState and all its children and parents.
7585 * Must be called from the main AioContext.
7587 * @visited will accumulate all visited BdrvChild objects. The caller is
7588 * responsible for freeing the list afterwards.
7590 static bool bdrv_change_aio_context(BlockDriverState
*bs
, AioContext
*ctx
,
7591 GHashTable
*visited
, Transaction
*tran
,
7595 BdrvStateSetAioContext
*state
;
7597 GLOBAL_STATE_CODE();
7599 if (bdrv_get_aio_context(bs
) == ctx
) {
7603 bdrv_graph_rdlock_main_loop();
7604 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
7605 if (!bdrv_parent_change_aio_context(c
, ctx
, visited
, tran
, errp
)) {
7606 bdrv_graph_rdunlock_main_loop();
7611 QLIST_FOREACH(c
, &bs
->children
, next
) {
7612 if (!bdrv_child_change_aio_context(c
, ctx
, visited
, tran
, errp
)) {
7613 bdrv_graph_rdunlock_main_loop();
7617 bdrv_graph_rdunlock_main_loop();
7619 state
= g_new(BdrvStateSetAioContext
, 1);
7620 *state
= (BdrvStateSetAioContext
) {
7625 /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */
7626 bdrv_drained_begin(bs
);
7628 tran_add(tran
, &set_aio_context
, state
);
7634 * Change bs's and recursively all of its parents' and children's AioContext
7635 * to the given new context, returning an error if that isn't possible.
7637 * If ignore_child is not NULL, that child (and its subgraph) will not
7640 int bdrv_try_change_aio_context(BlockDriverState
*bs
, AioContext
*ctx
,
7641 BdrvChild
*ignore_child
, Error
**errp
)
7644 GHashTable
*visited
;
7646 GLOBAL_STATE_CODE();
7649 * Recursion phase: go through all nodes of the graph.
7650 * Take care of checking that all nodes support changing AioContext
7651 * and drain them, building a linear list of callbacks to run if everything
7652 * is successful (the transaction itself).
7655 visited
= g_hash_table_new(NULL
, NULL
);
7657 g_hash_table_add(visited
, ignore_child
);
7659 ret
= bdrv_change_aio_context(bs
, ctx
, visited
, tran
, errp
);
7660 g_hash_table_destroy(visited
);
7663 * Linear phase: go through all callbacks collected in the transaction.
7664 * Run all callbacks collected in the recursion to switch every node's
7665 * AioContext (transaction commit), or undo all changes done in the
7666 * recursion (transaction abort).
7670 /* Just run clean() callbacks. No AioContext changed. */
7679 void bdrv_add_aio_context_notifier(BlockDriverState
*bs
,
7680 void (*attached_aio_context
)(AioContext
*new_context
, void *opaque
),
7681 void (*detach_aio_context
)(void *opaque
), void *opaque
)
7683 BdrvAioNotifier
*ban
= g_new(BdrvAioNotifier
, 1);
7684 *ban
= (BdrvAioNotifier
){
7685 .attached_aio_context
= attached_aio_context
,
7686 .detach_aio_context
= detach_aio_context
,
7689 GLOBAL_STATE_CODE();
7691 QLIST_INSERT_HEAD(&bs
->aio_notifiers
, ban
, list
);
7694 void bdrv_remove_aio_context_notifier(BlockDriverState
*bs
,
7695 void (*attached_aio_context
)(AioContext
*,
7697 void (*detach_aio_context
)(void *),
7700 BdrvAioNotifier
*ban
, *ban_next
;
7701 GLOBAL_STATE_CODE();
7703 QLIST_FOREACH_SAFE(ban
, &bs
->aio_notifiers
, list
, ban_next
) {
7704 if (ban
->attached_aio_context
== attached_aio_context
&&
7705 ban
->detach_aio_context
== detach_aio_context
&&
7706 ban
->opaque
== opaque
&&
7707 ban
->deleted
== false)
7709 if (bs
->walking_aio_notifiers
) {
7710 ban
->deleted
= true;
7712 bdrv_do_remove_aio_context_notifier(ban
);
7721 int bdrv_amend_options(BlockDriverState
*bs
, QemuOpts
*opts
,
7722 BlockDriverAmendStatusCB
*status_cb
, void *cb_opaque
,
7726 GLOBAL_STATE_CODE();
7728 error_setg(errp
, "Node is ejected");
7731 if (!bs
->drv
->bdrv_amend_options
) {
7732 error_setg(errp
, "Block driver '%s' does not support option amendment",
7733 bs
->drv
->format_name
);
7736 return bs
->drv
->bdrv_amend_options(bs
, opts
, status_cb
,
7737 cb_opaque
, force
, errp
);
7741 * This function checks whether the given @to_replace is allowed to be
7742 * replaced by a node that always shows the same data as @bs. This is
7743 * used for example to verify whether the mirror job can replace
7744 * @to_replace by the target mirrored from @bs.
7745 * To be replaceable, @bs and @to_replace may either be guaranteed to
7746 * always show the same data (because they are only connected through
7747 * filters), or some driver may allow replacing one of its children
7748 * because it can guarantee that this child's data is not visible at
7749 * all (for example, for dissenting quorum children that have no other
7752 bool bdrv_recurse_can_replace(BlockDriverState
*bs
,
7753 BlockDriverState
*to_replace
)
7755 BlockDriverState
*filtered
;
7757 GLOBAL_STATE_CODE();
7759 if (!bs
|| !bs
->drv
) {
7763 if (bs
== to_replace
) {
7767 /* See what the driver can do */
7768 if (bs
->drv
->bdrv_recurse_can_replace
) {
7769 return bs
->drv
->bdrv_recurse_can_replace(bs
, to_replace
);
7772 /* For filters without an own implementation, we can recurse on our own */
7773 filtered
= bdrv_filter_bs(bs
);
7775 return bdrv_recurse_can_replace(filtered
, to_replace
);
7783 * Check whether the given @node_name can be replaced by a node that
7784 * has the same data as @parent_bs. If so, return @node_name's BDS;
7787 * @node_name must be a (recursive) *child of @parent_bs (or this
7788 * function will return NULL).
7790 * The result (whether the node can be replaced or not) is only valid
7791 * for as long as no graph or permission changes occur.
7793 BlockDriverState
*check_to_replace_node(BlockDriverState
*parent_bs
,
7794 const char *node_name
, Error
**errp
)
7796 BlockDriverState
*to_replace_bs
= bdrv_find_node(node_name
);
7798 GLOBAL_STATE_CODE();
7800 if (!to_replace_bs
) {
7801 error_setg(errp
, "Failed to find node with node-name='%s'", node_name
);
7805 if (bdrv_op_is_blocked(to_replace_bs
, BLOCK_OP_TYPE_REPLACE
, errp
)) {
7809 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7810 * most non filter in order to prevent data corruption.
7811 * Another benefit is that this tests exclude backing files which are
7812 * blocked by the backing blockers.
7814 if (!bdrv_recurse_can_replace(parent_bs
, to_replace_bs
)) {
7815 error_setg(errp
, "Cannot replace '%s' by a node mirrored from '%s', "
7816 "because it cannot be guaranteed that doing so would not "
7817 "lead to an abrupt change of visible data",
7818 node_name
, parent_bs
->node_name
);
7822 return to_replace_bs
;
7826 * Iterates through the list of runtime option keys that are said to
7827 * be "strong" for a BDS. An option is called "strong" if it changes
7828 * a BDS's data. For example, the null block driver's "size" and
7829 * "read-zeroes" options are strong, but its "latency-ns" option is
7832 * If a key returned by this function ends with a dot, all options
7833 * starting with that prefix are strong.
7835 static const char *const *strong_options(BlockDriverState
*bs
,
7836 const char *const *curopt
)
7838 static const char *const global_options
[] = {
7839 "driver", "filename", NULL
7843 return &global_options
[0];
7847 if (curopt
== &global_options
[ARRAY_SIZE(global_options
) - 1] && bs
->drv
) {
7848 curopt
= bs
->drv
->strong_runtime_opts
;
7851 return (curopt
&& *curopt
) ? curopt
: NULL
;
7855 * Copies all strong runtime options from bs->options to the given
7856 * QDict. The set of strong option keys is determined by invoking
7859 * Returns true iff any strong option was present in bs->options (and
7860 * thus copied to the target QDict) with the exception of "filename"
7861 * and "driver". The caller is expected to use this value to decide
7862 * whether the existence of strong options prevents the generation of
7865 static bool append_strong_runtime_options(QDict
*d
, BlockDriverState
*bs
)
7867 bool found_any
= false;
7868 const char *const *option_name
= NULL
;
7874 while ((option_name
= strong_options(bs
, option_name
))) {
7875 bool option_given
= false;
7877 assert(strlen(*option_name
) > 0);
7878 if ((*option_name
)[strlen(*option_name
) - 1] != '.') {
7879 QObject
*entry
= qdict_get(bs
->options
, *option_name
);
7884 qdict_put_obj(d
, *option_name
, qobject_ref(entry
));
7885 option_given
= true;
7887 const QDictEntry
*entry
;
7888 for (entry
= qdict_first(bs
->options
); entry
;
7889 entry
= qdict_next(bs
->options
, entry
))
7891 if (strstart(qdict_entry_key(entry
), *option_name
, NULL
)) {
7892 qdict_put_obj(d
, qdict_entry_key(entry
),
7893 qobject_ref(qdict_entry_value(entry
)));
7894 option_given
= true;
7899 /* While "driver" and "filename" need to be included in a JSON filename,
7900 * their existence does not prohibit generation of a plain filename. */
7901 if (!found_any
&& option_given
&&
7902 strcmp(*option_name
, "driver") && strcmp(*option_name
, "filename"))
7908 if (!qdict_haskey(d
, "driver")) {
7909 /* Drivers created with bdrv_new_open_driver() may not have a
7910 * @driver option. Add it here. */
7911 qdict_put_str(d
, "driver", bs
->drv
->format_name
);
7917 /* Note: This function may return false positives; it may return true
7918 * even if opening the backing file specified by bs's image header
7919 * would result in exactly bs->backing. */
7920 static bool GRAPH_RDLOCK
bdrv_backing_overridden(BlockDriverState
*bs
)
7922 GLOBAL_STATE_CODE();
7924 return strcmp(bs
->auto_backing_file
,
7925 bs
->backing
->bs
->filename
);
7927 /* No backing BDS, so if the image header reports any backing
7928 * file, it must have been suppressed */
7929 return bs
->auto_backing_file
[0] != '\0';
7933 /* Updates the following BDS fields:
7934 * - exact_filename: A filename which may be used for opening a block device
7935 * which (mostly) equals the given BDS (even without any
7936 * other options; so reading and writing must return the same
7937 * results, but caching etc. may be different)
7938 * - full_open_options: Options which, when given when opening a block device
7939 * (without a filename), result in a BDS (mostly)
7940 * equalling the given one
7941 * - filename: If exact_filename is set, it is copied here. Otherwise,
7942 * full_open_options is converted to a JSON object, prefixed with
7943 * "json:" (for use through the JSON pseudo protocol) and put here.
7945 void bdrv_refresh_filename(BlockDriverState
*bs
)
7947 BlockDriver
*drv
= bs
->drv
;
7949 BlockDriverState
*primary_child_bs
;
7951 bool backing_overridden
;
7952 bool generate_json_filename
; /* Whether our default implementation should
7953 fill exact_filename (false) or not (true) */
7955 GLOBAL_STATE_CODE();
7961 /* This BDS's file name may depend on any of its children's file names, so
7962 * refresh those first */
7963 QLIST_FOREACH(child
, &bs
->children
, next
) {
7964 bdrv_refresh_filename(child
->bs
);
7968 /* For implicit nodes, just copy everything from the single child */
7969 child
= QLIST_FIRST(&bs
->children
);
7970 assert(QLIST_NEXT(child
, next
) == NULL
);
7972 pstrcpy(bs
->exact_filename
, sizeof(bs
->exact_filename
),
7973 child
->bs
->exact_filename
);
7974 pstrcpy(bs
->filename
, sizeof(bs
->filename
), child
->bs
->filename
);
7976 qobject_unref(bs
->full_open_options
);
7977 bs
->full_open_options
= qobject_ref(child
->bs
->full_open_options
);
7982 backing_overridden
= bdrv_backing_overridden(bs
);
7984 if (bs
->open_flags
& BDRV_O_NO_IO
) {
7985 /* Without I/O, the backing file does not change anything.
7986 * Therefore, in such a case (primarily qemu-img), we can
7987 * pretend the backing file has not been overridden even if
7988 * it technically has been. */
7989 backing_overridden
= false;
7992 /* Gather the options QDict */
7994 generate_json_filename
= append_strong_runtime_options(opts
, bs
);
7995 generate_json_filename
|= backing_overridden
;
7997 if (drv
->bdrv_gather_child_options
) {
7998 /* Some block drivers may not want to present all of their children's
7999 * options, or name them differently from BdrvChild.name */
8000 drv
->bdrv_gather_child_options(bs
, opts
, backing_overridden
);
8002 QLIST_FOREACH(child
, &bs
->children
, next
) {
8003 if (child
== bs
->backing
&& !backing_overridden
) {
8004 /* We can skip the backing BDS if it has not been overridden */
8008 qdict_put(opts
, child
->name
,
8009 qobject_ref(child
->bs
->full_open_options
));
8012 if (backing_overridden
&& !bs
->backing
) {
8013 /* Force no backing file */
8014 qdict_put_null(opts
, "backing");
8018 qobject_unref(bs
->full_open_options
);
8019 bs
->full_open_options
= opts
;
8021 primary_child_bs
= bdrv_primary_bs(bs
);
8023 if (drv
->bdrv_refresh_filename
) {
8024 /* Obsolete information is of no use here, so drop the old file name
8025 * information before refreshing it */
8026 bs
->exact_filename
[0] = '\0';
8028 drv
->bdrv_refresh_filename(bs
);
8029 } else if (primary_child_bs
) {
8031 * Try to reconstruct valid information from the underlying
8032 * file -- this only works for format nodes (filter nodes
8033 * cannot be probed and as such must be selected by the user
8034 * either through an options dict, or through a special
8035 * filename which the filter driver must construct in its
8036 * .bdrv_refresh_filename() implementation).
8039 bs
->exact_filename
[0] = '\0';
8042 * We can use the underlying file's filename if:
8043 * - it has a filename,
8044 * - the current BDS is not a filter,
8045 * - the file is a protocol BDS, and
8046 * - opening that file (as this BDS's format) will automatically create
8047 * the BDS tree we have right now, that is:
8048 * - the user did not significantly change this BDS's behavior with
8049 * some explicit (strong) options
8050 * - no non-file child of this BDS has been overridden by the user
8051 * Both of these conditions are represented by generate_json_filename.
8053 if (primary_child_bs
->exact_filename
[0] &&
8054 primary_child_bs
->drv
->protocol_name
&&
8055 !drv
->is_filter
&& !generate_json_filename
)
8057 strcpy(bs
->exact_filename
, primary_child_bs
->exact_filename
);
8061 if (bs
->exact_filename
[0]) {
8062 pstrcpy(bs
->filename
, sizeof(bs
->filename
), bs
->exact_filename
);
8064 GString
*json
= qobject_to_json(QOBJECT(bs
->full_open_options
));
8065 if (snprintf(bs
->filename
, sizeof(bs
->filename
), "json:%s",
8066 json
->str
) >= sizeof(bs
->filename
)) {
8067 /* Give user a hint if we truncated things. */
8068 strcpy(bs
->filename
+ sizeof(bs
->filename
) - 4, "...");
8070 g_string_free(json
, true);
8074 char *bdrv_dirname(BlockDriverState
*bs
, Error
**errp
)
8076 BlockDriver
*drv
= bs
->drv
;
8077 BlockDriverState
*child_bs
;
8079 GLOBAL_STATE_CODE();
8082 error_setg(errp
, "Node '%s' is ejected", bs
->node_name
);
8086 if (drv
->bdrv_dirname
) {
8087 return drv
->bdrv_dirname(bs
, errp
);
8090 child_bs
= bdrv_primary_bs(bs
);
8092 return bdrv_dirname(child_bs
, errp
);
8095 bdrv_refresh_filename(bs
);
8096 if (bs
->exact_filename
[0] != '\0') {
8097 return path_combine(bs
->exact_filename
, "");
8100 error_setg(errp
, "Cannot generate a base directory for %s nodes",
8106 * Hot add/remove a BDS's child. So the user can take a child offline when
8107 * it is broken and take a new child online
8109 void bdrv_add_child(BlockDriverState
*parent_bs
, BlockDriverState
*child_bs
,
8112 GLOBAL_STATE_CODE();
8113 if (!parent_bs
->drv
|| !parent_bs
->drv
->bdrv_add_child
) {
8114 error_setg(errp
, "The node %s does not support adding a child",
8115 bdrv_get_device_or_node_name(parent_bs
));
8120 * Non-zoned block drivers do not follow zoned storage constraints
8121 * (i.e. sequential writes to zones). Refuse mixing zoned and non-zoned
8122 * drivers in a graph.
8124 if (!parent_bs
->drv
->supports_zoned_children
&&
8125 child_bs
->bl
.zoned
== BLK_Z_HM
) {
8127 * The host-aware model allows zoned storage constraints and random
8128 * write. Allow mixing host-aware and non-zoned drivers. Using
8129 * host-aware device as a regular device.
8131 error_setg(errp
, "Cannot add a %s child to a %s parent",
8132 child_bs
->bl
.zoned
== BLK_Z_HM
? "zoned" : "non-zoned",
8133 parent_bs
->drv
->supports_zoned_children
?
8134 "support zoned children" : "not support zoned children");
8138 if (!QLIST_EMPTY(&child_bs
->parents
)) {
8139 error_setg(errp
, "The node %s already has a parent",
8140 child_bs
->node_name
);
8144 parent_bs
->drv
->bdrv_add_child(parent_bs
, child_bs
, errp
);
8147 void bdrv_del_child(BlockDriverState
*parent_bs
, BdrvChild
*child
, Error
**errp
)
8151 GLOBAL_STATE_CODE();
8152 if (!parent_bs
->drv
|| !parent_bs
->drv
->bdrv_del_child
) {
8153 error_setg(errp
, "The node %s does not support removing a child",
8154 bdrv_get_device_or_node_name(parent_bs
));
8158 QLIST_FOREACH(tmp
, &parent_bs
->children
, next
) {
8165 error_setg(errp
, "The node %s does not have a child named %s",
8166 bdrv_get_device_or_node_name(parent_bs
),
8167 bdrv_get_device_or_node_name(child
->bs
));
8171 parent_bs
->drv
->bdrv_del_child(parent_bs
, child
, errp
);
8174 int bdrv_make_empty(BdrvChild
*c
, Error
**errp
)
8176 BlockDriver
*drv
= c
->bs
->drv
;
8179 GLOBAL_STATE_CODE();
8180 assert(c
->perm
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
));
8182 if (!drv
->bdrv_make_empty
) {
8183 error_setg(errp
, "%s does not support emptying nodes",
8188 ret
= drv
->bdrv_make_empty(c
->bs
);
8190 error_setg_errno(errp
, -ret
, "Failed to empty %s",
8199 * Return the child that @bs acts as an overlay for, and from which data may be
8200 * copied in COW or COR operations. Usually this is the backing file.
8202 BdrvChild
*bdrv_cow_child(BlockDriverState
*bs
)
8206 if (!bs
|| !bs
->drv
) {
8210 if (bs
->drv
->is_filter
) {
8218 assert(bs
->backing
->role
& BDRV_CHILD_COW
);
8223 * If @bs acts as a filter for exactly one of its children, return
8226 BdrvChild
*bdrv_filter_child(BlockDriverState
*bs
)
8231 if (!bs
|| !bs
->drv
) {
8235 if (!bs
->drv
->is_filter
) {
8239 /* Only one of @backing or @file may be used */
8240 assert(!(bs
->backing
&& bs
->file
));
8242 c
= bs
->backing
?: bs
->file
;
8247 assert(c
->role
& BDRV_CHILD_FILTERED
);
8252 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8253 * whichever is non-NULL.
8255 * Return NULL if both are NULL.
8257 BdrvChild
*bdrv_filter_or_cow_child(BlockDriverState
*bs
)
8259 BdrvChild
*cow_child
= bdrv_cow_child(bs
);
8260 BdrvChild
*filter_child
= bdrv_filter_child(bs
);
8263 /* Filter nodes cannot have COW backing files */
8264 assert(!(cow_child
&& filter_child
));
8266 return cow_child
?: filter_child
;
8270 * Return the primary child of this node: For filters, that is the
8271 * filtered child. For other nodes, that is usually the child storing
8273 * (A generally more helpful description is that this is (usually) the
8274 * child that has the same filename as @bs.)
8276 * Drivers do not necessarily have a primary child; for example quorum
8279 BdrvChild
*bdrv_primary_child(BlockDriverState
*bs
)
8281 BdrvChild
*c
, *found
= NULL
;
8284 QLIST_FOREACH(c
, &bs
->children
, next
) {
8285 if (c
->role
& BDRV_CHILD_PRIMARY
) {
8294 static BlockDriverState
* GRAPH_RDLOCK
8295 bdrv_do_skip_filters(BlockDriverState
*bs
, bool stop_on_explicit_filter
)
8303 while (!(stop_on_explicit_filter
&& !bs
->implicit
)) {
8304 c
= bdrv_filter_child(bs
);
8307 * A filter that is embedded in a working block graph must
8308 * have a child. Assert this here so this function does
8309 * not return a filter node that is not expected by the
8312 assert(!bs
->drv
|| !bs
->drv
->is_filter
);
8318 * Note that this treats nodes with bs->drv == NULL as not being
8319 * filters (bs->drv == NULL should be replaced by something else
8321 * The advantage of this behavior is that this function will thus
8322 * always return a non-NULL value (given a non-NULL @bs).
8329 * Return the first BDS that has not been added implicitly or that
8330 * does not have a filtered child down the chain starting from @bs
8331 * (including @bs itself).
8333 BlockDriverState
*bdrv_skip_implicit_filters(BlockDriverState
*bs
)
8335 GLOBAL_STATE_CODE();
8336 return bdrv_do_skip_filters(bs
, true);
8340 * Return the first BDS that does not have a filtered child down the
8341 * chain starting from @bs (including @bs itself).
8343 BlockDriverState
*bdrv_skip_filters(BlockDriverState
*bs
)
8346 return bdrv_do_skip_filters(bs
, false);
8350 * For a backing chain, return the first non-filter backing image of
8351 * the first non-filter image.
8353 BlockDriverState
*bdrv_backing_chain_next(BlockDriverState
*bs
)
8356 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs
)));
8360 * Check whether [offset, offset + bytes) overlaps with the cached
8361 * block-status data region.
8363 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8364 * which is what bdrv_bsc_is_data()'s interface needs.
8365 * Otherwise, *pnum is not touched.
8367 static bool bdrv_bsc_range_overlaps_locked(BlockDriverState
*bs
,
8368 int64_t offset
, int64_t bytes
,
8371 BdrvBlockStatusCache
*bsc
= qatomic_rcu_read(&bs
->block_status_cache
);
8375 qatomic_read(&bsc
->valid
) &&
8376 ranges_overlap(offset
, bytes
, bsc
->data_start
,
8377 bsc
->data_end
- bsc
->data_start
);
8379 if (overlaps
&& pnum
) {
8380 *pnum
= bsc
->data_end
- offset
;
8387 * See block_int.h for this function's documentation.
8389 bool bdrv_bsc_is_data(BlockDriverState
*bs
, int64_t offset
, int64_t *pnum
)
8392 RCU_READ_LOCK_GUARD();
8393 return bdrv_bsc_range_overlaps_locked(bs
, offset
, 1, pnum
);
8397 * See block_int.h for this function's documentation.
8399 void bdrv_bsc_invalidate_range(BlockDriverState
*bs
,
8400 int64_t offset
, int64_t bytes
)
8403 RCU_READ_LOCK_GUARD();
8405 if (bdrv_bsc_range_overlaps_locked(bs
, offset
, bytes
, NULL
)) {
8406 qatomic_set(&bs
->block_status_cache
->valid
, false);
8411 * See block_int.h for this function's documentation.
8413 void bdrv_bsc_fill(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
)
8415 BdrvBlockStatusCache
*new_bsc
= g_new(BdrvBlockStatusCache
, 1);
8416 BdrvBlockStatusCache
*old_bsc
;
8419 *new_bsc
= (BdrvBlockStatusCache
) {
8421 .data_start
= offset
,
8422 .data_end
= offset
+ bytes
,
8425 QEMU_LOCK_GUARD(&bs
->bsc_modify_lock
);
8427 old_bsc
= qatomic_rcu_read(&bs
->block_status_cache
);
8428 qatomic_rcu_set(&bs
->block_status_cache
, new_bsc
);
8430 g_free_rcu(old_bsc
, rcu
);