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/fuse.h"
31 #include "block/nbd.h"
32 #include "block/qdict.h"
33 #include "qemu/error-report.h"
34 #include "block/module_block.h"
35 #include "qemu/main-loop.h"
36 #include "qemu/module.h"
37 #include "qapi/error.h"
38 #include "qapi/qmp/qdict.h"
39 #include "qapi/qmp/qjson.h"
40 #include "qapi/qmp/qnull.h"
41 #include "qapi/qmp/qstring.h"
42 #include "qapi/qobject-output-visitor.h"
43 #include "qapi/qapi-visit-block-core.h"
44 #include "sysemu/block-backend.h"
45 #include "qemu/notify.h"
46 #include "qemu/option.h"
47 #include "qemu/coroutine.h"
48 #include "block/qapi.h"
49 #include "qemu/timer.h"
50 #include "qemu/cutils.h"
52 #include "block/coroutines.h"
55 #include <sys/ioctl.h>
56 #include <sys/queue.h>
66 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
68 static QTAILQ_HEAD(, BlockDriverState
) graph_bdrv_states
=
69 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states
);
71 static QTAILQ_HEAD(, BlockDriverState
) all_bdrv_states
=
72 QTAILQ_HEAD_INITIALIZER(all_bdrv_states
);
74 static QLIST_HEAD(, BlockDriver
) bdrv_drivers
=
75 QLIST_HEAD_INITIALIZER(bdrv_drivers
);
77 static BlockDriverState
*bdrv_open_inherit(const char *filename
,
78 const char *reference
,
79 QDict
*options
, int flags
,
80 BlockDriverState
*parent
,
81 const BdrvChildClass
*child_class
,
82 BdrvChildRole child_role
,
85 static void bdrv_replace_child_noperm(BdrvChild
*child
,
86 BlockDriverState
*new_bs
);
87 static int bdrv_attach_child_noperm(BlockDriverState
*parent_bs
,
88 BlockDriverState
*child_bs
,
89 const char *child_name
,
90 const BdrvChildClass
*child_class
,
91 BdrvChildRole child_role
,
95 static void bdrv_remove_filter_or_cow_child(BlockDriverState
*bs
,
98 static int bdrv_reopen_prepare(BDRVReopenState
*reopen_state
,
99 BlockReopenQueue
*queue
,
100 Transaction
*set_backings_tran
, Error
**errp
);
101 static void bdrv_reopen_commit(BDRVReopenState
*reopen_state
);
102 static void bdrv_reopen_abort(BDRVReopenState
*reopen_state
);
104 /* If non-zero, use only whitelisted block drivers */
105 static int use_bdrv_whitelist
;
108 static int is_windows_drive_prefix(const char *filename
)
110 return (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
111 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
115 int is_windows_drive(const char *filename
)
117 if (is_windows_drive_prefix(filename
) &&
120 if (strstart(filename
, "\\\\.\\", NULL
) ||
121 strstart(filename
, "//./", NULL
))
127 size_t bdrv_opt_mem_align(BlockDriverState
*bs
)
129 if (!bs
|| !bs
->drv
) {
130 /* page size or 4k (hdd sector size) should be on the safe side */
131 return MAX(4096, qemu_real_host_page_size
);
134 return bs
->bl
.opt_mem_alignment
;
137 size_t bdrv_min_mem_align(BlockDriverState
*bs
)
139 if (!bs
|| !bs
->drv
) {
140 /* page size or 4k (hdd sector size) should be on the safe side */
141 return MAX(4096, qemu_real_host_page_size
);
144 return bs
->bl
.min_mem_alignment
;
147 /* check if the path starts with "<protocol>:" */
148 int path_has_protocol(const char *path
)
153 if (is_windows_drive(path
) ||
154 is_windows_drive_prefix(path
)) {
157 p
= path
+ strcspn(path
, ":/\\");
159 p
= path
+ strcspn(path
, ":/");
165 int path_is_absolute(const char *path
)
168 /* specific case for names like: "\\.\d:" */
169 if (is_windows_drive(path
) || is_windows_drive_prefix(path
)) {
172 return (*path
== '/' || *path
== '\\');
174 return (*path
== '/');
178 /* if filename is absolute, just return its duplicate. Otherwise, build a
179 path to it by considering it is relative to base_path. URL are
181 char *path_combine(const char *base_path
, const char *filename
)
183 const char *protocol_stripped
= NULL
;
188 if (path_is_absolute(filename
)) {
189 return g_strdup(filename
);
192 if (path_has_protocol(base_path
)) {
193 protocol_stripped
= strchr(base_path
, ':');
194 if (protocol_stripped
) {
198 p
= protocol_stripped
?: base_path
;
200 p1
= strrchr(base_path
, '/');
204 p2
= strrchr(base_path
, '\\');
205 if (!p1
|| p2
> p1
) {
220 result
= g_malloc(len
+ strlen(filename
) + 1);
221 memcpy(result
, base_path
, len
);
222 strcpy(result
+ len
, filename
);
228 * Helper function for bdrv_parse_filename() implementations to remove optional
229 * protocol prefixes (especially "file:") from a filename and for putting the
230 * stripped filename into the options QDict if there is such a prefix.
232 void bdrv_parse_filename_strip_prefix(const char *filename
, const char *prefix
,
235 if (strstart(filename
, prefix
, &filename
)) {
236 /* Stripping the explicit protocol prefix may result in a protocol
237 * prefix being (wrongly) detected (if the filename contains a colon) */
238 if (path_has_protocol(filename
)) {
239 GString
*fat_filename
;
241 /* This means there is some colon before the first slash; therefore,
242 * this cannot be an absolute path */
243 assert(!path_is_absolute(filename
));
245 /* And we can thus fix the protocol detection issue by prefixing it
247 fat_filename
= g_string_new("./");
248 g_string_append(fat_filename
, filename
);
250 assert(!path_has_protocol(fat_filename
->str
));
252 qdict_put(options
, "filename",
253 qstring_from_gstring(fat_filename
));
255 /* If no protocol prefix was detected, we can use the shortened
257 qdict_put_str(options
, "filename", filename
);
263 /* Returns whether the image file is opened as read-only. Note that this can
264 * return false and writing to the image file is still not possible because the
265 * image is inactivated. */
266 bool bdrv_is_read_only(BlockDriverState
*bs
)
268 return bs
->read_only
;
271 int bdrv_can_set_read_only(BlockDriverState
*bs
, bool read_only
,
272 bool ignore_allow_rdw
, Error
**errp
)
274 /* Do not set read_only if copy_on_read is enabled */
275 if (bs
->copy_on_read
&& read_only
) {
276 error_setg(errp
, "Can't set node '%s' to r/o with copy-on-read enabled",
277 bdrv_get_device_or_node_name(bs
));
281 /* Do not clear read_only if it is prohibited */
282 if (!read_only
&& !(bs
->open_flags
& BDRV_O_ALLOW_RDWR
) &&
285 error_setg(errp
, "Node '%s' is read only",
286 bdrv_get_device_or_node_name(bs
));
294 * Called by a driver that can only provide a read-only image.
296 * Returns 0 if the node is already read-only or it could switch the node to
297 * read-only because BDRV_O_AUTO_RDONLY is set.
299 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
300 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
301 * is not NULL, it is used as the error message for the Error object.
303 int bdrv_apply_auto_read_only(BlockDriverState
*bs
, const char *errmsg
,
308 if (!(bs
->open_flags
& BDRV_O_RDWR
)) {
311 if (!(bs
->open_flags
& BDRV_O_AUTO_RDONLY
)) {
315 ret
= bdrv_can_set_read_only(bs
, true, false, NULL
);
320 bs
->read_only
= true;
321 bs
->open_flags
&= ~BDRV_O_RDWR
;
326 error_setg(errp
, "%s", errmsg
?: "Image is read-only");
331 * If @backing is empty, this function returns NULL without setting
332 * @errp. In all other cases, NULL will only be returned with @errp
335 * Therefore, a return value of NULL without @errp set means that
336 * there is no backing file; if @errp is set, there is one but its
337 * absolute filename cannot be generated.
339 char *bdrv_get_full_backing_filename_from_filename(const char *backed
,
343 if (backing
[0] == '\0') {
345 } else if (path_has_protocol(backing
) || path_is_absolute(backing
)) {
346 return g_strdup(backing
);
347 } else if (backed
[0] == '\0' || strstart(backed
, "json:", NULL
)) {
348 error_setg(errp
, "Cannot use relative backing file names for '%s'",
352 return path_combine(backed
, backing
);
357 * If @filename is empty or NULL, this function returns NULL without
358 * setting @errp. In all other cases, NULL will only be returned with
361 static char *bdrv_make_absolute_filename(BlockDriverState
*relative_to
,
362 const char *filename
, Error
**errp
)
364 char *dir
, *full_name
;
366 if (!filename
|| filename
[0] == '\0') {
368 } else if (path_has_protocol(filename
) || path_is_absolute(filename
)) {
369 return g_strdup(filename
);
372 dir
= bdrv_dirname(relative_to
, errp
);
377 full_name
= g_strconcat(dir
, filename
, NULL
);
382 char *bdrv_get_full_backing_filename(BlockDriverState
*bs
, Error
**errp
)
384 return bdrv_make_absolute_filename(bs
, bs
->backing_file
, errp
);
387 void bdrv_register(BlockDriver
*bdrv
)
389 assert(bdrv
->format_name
);
390 QLIST_INSERT_HEAD(&bdrv_drivers
, bdrv
, list
);
393 BlockDriverState
*bdrv_new(void)
395 BlockDriverState
*bs
;
398 bs
= g_new0(BlockDriverState
, 1);
399 QLIST_INIT(&bs
->dirty_bitmaps
);
400 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
401 QLIST_INIT(&bs
->op_blockers
[i
]);
403 notifier_with_return_list_init(&bs
->before_write_notifiers
);
404 qemu_co_mutex_init(&bs
->reqs_lock
);
405 qemu_mutex_init(&bs
->dirty_bitmap_mutex
);
407 bs
->aio_context
= qemu_get_aio_context();
409 qemu_co_queue_init(&bs
->flush_queue
);
411 for (i
= 0; i
< bdrv_drain_all_count
; i
++) {
412 bdrv_drained_begin(bs
);
415 QTAILQ_INSERT_TAIL(&all_bdrv_states
, bs
, bs_list
);
420 static BlockDriver
*bdrv_do_find_format(const char *format_name
)
424 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
425 if (!strcmp(drv1
->format_name
, format_name
)) {
433 BlockDriver
*bdrv_find_format(const char *format_name
)
438 drv1
= bdrv_do_find_format(format_name
);
443 /* The driver isn't registered, maybe we need to load a module */
444 for (i
= 0; i
< (int)ARRAY_SIZE(block_driver_modules
); ++i
) {
445 if (!strcmp(block_driver_modules
[i
].format_name
, format_name
)) {
446 block_module_load_one(block_driver_modules
[i
].library_name
);
451 return bdrv_do_find_format(format_name
);
454 static int bdrv_format_is_whitelisted(const char *format_name
, bool read_only
)
456 static const char *whitelist_rw
[] = {
457 CONFIG_BDRV_RW_WHITELIST
460 static const char *whitelist_ro
[] = {
461 CONFIG_BDRV_RO_WHITELIST
466 if (!whitelist_rw
[0] && !whitelist_ro
[0]) {
467 return 1; /* no whitelist, anything goes */
470 for (p
= whitelist_rw
; *p
; p
++) {
471 if (!strcmp(format_name
, *p
)) {
476 for (p
= whitelist_ro
; *p
; p
++) {
477 if (!strcmp(format_name
, *p
)) {
485 int bdrv_is_whitelisted(BlockDriver
*drv
, bool read_only
)
487 return bdrv_format_is_whitelisted(drv
->format_name
, read_only
);
490 bool bdrv_uses_whitelist(void)
492 return use_bdrv_whitelist
;
495 typedef struct CreateCo
{
503 static void coroutine_fn
bdrv_create_co_entry(void *opaque
)
505 Error
*local_err
= NULL
;
508 CreateCo
*cco
= opaque
;
511 ret
= cco
->drv
->bdrv_co_create_opts(cco
->drv
,
512 cco
->filename
, cco
->opts
, &local_err
);
513 error_propagate(&cco
->err
, local_err
);
517 int bdrv_create(BlockDriver
*drv
, const char* filename
,
518 QemuOpts
*opts
, Error
**errp
)
525 .filename
= g_strdup(filename
),
531 if (!drv
->bdrv_co_create_opts
) {
532 error_setg(errp
, "Driver '%s' does not support image creation", drv
->format_name
);
537 if (qemu_in_coroutine()) {
538 /* Fast-path if already in coroutine context */
539 bdrv_create_co_entry(&cco
);
541 co
= qemu_coroutine_create(bdrv_create_co_entry
, &cco
);
542 qemu_coroutine_enter(co
);
543 while (cco
.ret
== NOT_DONE
) {
544 aio_poll(qemu_get_aio_context(), true);
551 error_propagate(errp
, cco
.err
);
553 error_setg_errno(errp
, -ret
, "Could not create image");
558 g_free(cco
.filename
);
563 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
564 * least the given @minimum_size.
566 * On success, return @blk's actual length.
567 * Otherwise, return -errno.
569 static int64_t create_file_fallback_truncate(BlockBackend
*blk
,
570 int64_t minimum_size
, Error
**errp
)
572 Error
*local_err
= NULL
;
576 ret
= blk_truncate(blk
, minimum_size
, false, PREALLOC_MODE_OFF
, 0,
578 if (ret
< 0 && ret
!= -ENOTSUP
) {
579 error_propagate(errp
, local_err
);
583 size
= blk_getlength(blk
);
585 error_free(local_err
);
586 error_setg_errno(errp
, -size
,
587 "Failed to inquire the new image file's length");
591 if (size
< minimum_size
) {
592 /* Need to grow the image, but we failed to do that */
593 error_propagate(errp
, local_err
);
597 error_free(local_err
);
604 * Helper function for bdrv_create_file_fallback(): Zero the first
605 * sector to remove any potentially pre-existing image header.
607 static int create_file_fallback_zero_first_sector(BlockBackend
*blk
,
608 int64_t current_size
,
611 int64_t bytes_to_clear
;
614 bytes_to_clear
= MIN(current_size
, BDRV_SECTOR_SIZE
);
615 if (bytes_to_clear
) {
616 ret
= blk_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
,
641 PreallocMode prealloc
;
642 Error
*local_err
= NULL
;
645 size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0);
646 buf
= qemu_opt_get_del(opts
, BLOCK_OPT_PREALLOC
);
647 prealloc
= qapi_enum_parse(&PreallocMode_lookup
, buf
,
648 PREALLOC_MODE_OFF
, &local_err
);
651 error_propagate(errp
, local_err
);
655 if (prealloc
!= PREALLOC_MODE_OFF
) {
656 error_setg(errp
, "Unsupported preallocation mode '%s'",
657 PreallocMode_str(prealloc
));
661 options
= qdict_new();
662 qdict_put_str(options
, "driver", drv
->format_name
);
664 blk
= blk_new_open(filename
, NULL
, options
,
665 BDRV_O_RDWR
| BDRV_O_RESIZE
, errp
);
667 error_prepend(errp
, "Protocol driver '%s' does not support image "
668 "creation, and opening the image failed: ",
673 size
= create_file_fallback_truncate(blk
, size
, errp
);
679 ret
= create_file_fallback_zero_first_sector(blk
, size
, errp
);
690 int bdrv_create_file(const char *filename
, QemuOpts
*opts
, Error
**errp
)
692 QemuOpts
*protocol_opts
;
697 drv
= bdrv_find_protocol(filename
, true, errp
);
702 if (!drv
->create_opts
) {
703 error_setg(errp
, "Driver '%s' does not support image creation",
709 * 'opts' contains a QemuOptsList with a combination of format and protocol
712 * The format properly removes its options, but the default values remain
713 * in 'opts->list'. So if the protocol has options with the same name
714 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
715 * of the format, since for overlapping options, the format wins.
717 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
718 * only the set options, and then convert it back to QemuOpts, using the
719 * create_opts of the protocol. So the new QemuOpts, will contain only the
722 qdict
= qemu_opts_to_qdict(opts
, NULL
);
723 protocol_opts
= qemu_opts_from_qdict(drv
->create_opts
, qdict
, errp
);
724 if (protocol_opts
== NULL
) {
729 ret
= bdrv_create(drv
, filename
, protocol_opts
, errp
);
731 qemu_opts_del(protocol_opts
);
732 qobject_unref(qdict
);
736 int coroutine_fn
bdrv_co_delete_file(BlockDriverState
*bs
, Error
**errp
)
738 Error
*local_err
= NULL
;
744 error_setg(errp
, "Block node '%s' is not opened", bs
->filename
);
748 if (!bs
->drv
->bdrv_co_delete_file
) {
749 error_setg(errp
, "Driver '%s' does not support image deletion",
750 bs
->drv
->format_name
);
754 ret
= bs
->drv
->bdrv_co_delete_file(bs
, &local_err
);
756 error_propagate(errp
, local_err
);
762 void coroutine_fn
bdrv_co_delete_file_noerr(BlockDriverState
*bs
)
764 Error
*local_err
= NULL
;
771 ret
= bdrv_co_delete_file(bs
, &local_err
);
773 * ENOTSUP will happen if the block driver doesn't support
774 * the 'bdrv_co_delete_file' interface. This is a predictable
775 * scenario and shouldn't be reported back to the user.
777 if (ret
== -ENOTSUP
) {
778 error_free(local_err
);
779 } else if (ret
< 0) {
780 error_report_err(local_err
);
785 * Try to get @bs's logical and physical block size.
786 * On success, store them in @bsz struct and return 0.
787 * On failure return -errno.
788 * @bs must not be empty.
790 int bdrv_probe_blocksizes(BlockDriverState
*bs
, BlockSizes
*bsz
)
792 BlockDriver
*drv
= bs
->drv
;
793 BlockDriverState
*filtered
= bdrv_filter_bs(bs
);
795 if (drv
&& drv
->bdrv_probe_blocksizes
) {
796 return drv
->bdrv_probe_blocksizes(bs
, bsz
);
797 } else if (filtered
) {
798 return bdrv_probe_blocksizes(filtered
, bsz
);
805 * Try to get @bs's geometry (cyls, heads, sectors).
806 * On success, store them in @geo struct and return 0.
807 * On failure return -errno.
808 * @bs must not be empty.
810 int bdrv_probe_geometry(BlockDriverState
*bs
, HDGeometry
*geo
)
812 BlockDriver
*drv
= bs
->drv
;
813 BlockDriverState
*filtered
= bdrv_filter_bs(bs
);
815 if (drv
&& drv
->bdrv_probe_geometry
) {
816 return drv
->bdrv_probe_geometry(bs
, geo
);
817 } else if (filtered
) {
818 return bdrv_probe_geometry(filtered
, geo
);
825 * Create a uniquely-named empty temporary file.
826 * Return 0 upon success, otherwise a negative errno value.
828 int get_tmp_filename(char *filename
, int size
)
831 char temp_dir
[MAX_PATH
];
832 /* GetTempFileName requires that its output buffer (4th param)
833 have length MAX_PATH or greater. */
834 assert(size
>= MAX_PATH
);
835 return (GetTempPath(MAX_PATH
, temp_dir
)
836 && GetTempFileName(temp_dir
, "qem", 0, filename
)
837 ? 0 : -GetLastError());
841 tmpdir
= getenv("TMPDIR");
845 if (snprintf(filename
, size
, "%s/vl.XXXXXX", tmpdir
) >= size
) {
848 fd
= mkstemp(filename
);
852 if (close(fd
) != 0) {
861 * Detect host devices. By convention, /dev/cdrom[N] is always
862 * recognized as a host CDROM.
864 static BlockDriver
*find_hdev_driver(const char *filename
)
866 int score_max
= 0, score
;
867 BlockDriver
*drv
= NULL
, *d
;
869 QLIST_FOREACH(d
, &bdrv_drivers
, list
) {
870 if (d
->bdrv_probe_device
) {
871 score
= d
->bdrv_probe_device(filename
);
872 if (score
> score_max
) {
882 static BlockDriver
*bdrv_do_find_protocol(const char *protocol
)
886 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
887 if (drv1
->protocol_name
&& !strcmp(drv1
->protocol_name
, protocol
)) {
895 BlockDriver
*bdrv_find_protocol(const char *filename
,
896 bool allow_protocol_prefix
,
905 /* TODO Drivers without bdrv_file_open must be specified explicitly */
908 * XXX(hch): we really should not let host device detection
909 * override an explicit protocol specification, but moving this
910 * later breaks access to device names with colons in them.
911 * Thanks to the brain-dead persistent naming schemes on udev-
912 * based Linux systems those actually are quite common.
914 drv1
= find_hdev_driver(filename
);
919 if (!path_has_protocol(filename
) || !allow_protocol_prefix
) {
923 p
= strchr(filename
, ':');
926 if (len
> sizeof(protocol
) - 1)
927 len
= sizeof(protocol
) - 1;
928 memcpy(protocol
, filename
, len
);
929 protocol
[len
] = '\0';
931 drv1
= bdrv_do_find_protocol(protocol
);
936 for (i
= 0; i
< (int)ARRAY_SIZE(block_driver_modules
); ++i
) {
937 if (block_driver_modules
[i
].protocol_name
&&
938 !strcmp(block_driver_modules
[i
].protocol_name
, protocol
)) {
939 block_module_load_one(block_driver_modules
[i
].library_name
);
944 drv1
= bdrv_do_find_protocol(protocol
);
946 error_setg(errp
, "Unknown protocol '%s'", protocol
);
952 * Guess image format by probing its contents.
953 * This is not a good idea when your image is raw (CVE-2008-2004), but
954 * we do it anyway for backward compatibility.
956 * @buf contains the image's first @buf_size bytes.
957 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
958 * but can be smaller if the image file is smaller)
959 * @filename is its filename.
961 * For all block drivers, call the bdrv_probe() method to get its
963 * Return the first block driver with the highest probing score.
965 BlockDriver
*bdrv_probe_all(const uint8_t *buf
, int buf_size
,
966 const char *filename
)
968 int score_max
= 0, score
;
969 BlockDriver
*drv
= NULL
, *d
;
971 QLIST_FOREACH(d
, &bdrv_drivers
, list
) {
973 score
= d
->bdrv_probe(buf
, buf_size
, filename
);
974 if (score
> score_max
) {
984 static int find_image_format(BlockBackend
*file
, const char *filename
,
985 BlockDriver
**pdrv
, Error
**errp
)
988 uint8_t buf
[BLOCK_PROBE_BUF_SIZE
];
991 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
992 if (blk_is_sg(file
) || !blk_is_inserted(file
) || blk_getlength(file
) == 0) {
997 ret
= blk_pread(file
, 0, buf
, sizeof(buf
));
999 error_setg_errno(errp
, -ret
, "Could not read image for determining its "
1005 drv
= bdrv_probe_all(buf
, ret
, filename
);
1007 error_setg(errp
, "Could not determine image format: No compatible "
1016 * Set the current 'total_sectors' value
1017 * Return 0 on success, -errno on error.
1019 int refresh_total_sectors(BlockDriverState
*bs
, int64_t hint
)
1021 BlockDriver
*drv
= bs
->drv
;
1027 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
1031 /* query actual device if possible, otherwise just trust the hint */
1032 if (drv
->bdrv_getlength
) {
1033 int64_t length
= drv
->bdrv_getlength(bs
);
1037 hint
= DIV_ROUND_UP(length
, BDRV_SECTOR_SIZE
);
1040 bs
->total_sectors
= hint
;
1042 if (bs
->total_sectors
* BDRV_SECTOR_SIZE
> BDRV_MAX_LENGTH
) {
1050 * Combines a QDict of new block driver @options with any missing options taken
1051 * from @old_options, so that leaving out an option defaults to its old value.
1053 static void bdrv_join_options(BlockDriverState
*bs
, QDict
*options
,
1056 if (bs
->drv
&& bs
->drv
->bdrv_join_options
) {
1057 bs
->drv
->bdrv_join_options(options
, old_options
);
1059 qdict_join(options
, old_options
, false);
1063 static BlockdevDetectZeroesOptions
bdrv_parse_detect_zeroes(QemuOpts
*opts
,
1067 Error
*local_err
= NULL
;
1068 char *value
= qemu_opt_get_del(opts
, "detect-zeroes");
1069 BlockdevDetectZeroesOptions detect_zeroes
=
1070 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup
, value
,
1071 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
, &local_err
);
1074 error_propagate(errp
, local_err
);
1075 return detect_zeroes
;
1078 if (detect_zeroes
== BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP
&&
1079 !(open_flags
& BDRV_O_UNMAP
))
1081 error_setg(errp
, "setting detect-zeroes to unmap is not allowed "
1082 "without setting discard operation to unmap");
1085 return detect_zeroes
;
1089 * Set open flags for aio engine
1091 * Return 0 on success, -1 if the engine specified is invalid
1093 int bdrv_parse_aio(const char *mode
, int *flags
)
1095 if (!strcmp(mode
, "threads")) {
1096 /* do nothing, default */
1097 } else if (!strcmp(mode
, "native")) {
1098 *flags
|= BDRV_O_NATIVE_AIO
;
1099 #ifdef CONFIG_LINUX_IO_URING
1100 } else if (!strcmp(mode
, "io_uring")) {
1101 *flags
|= BDRV_O_IO_URING
;
1111 * Set open flags for a given discard mode
1113 * Return 0 on success, -1 if the discard mode was invalid.
1115 int bdrv_parse_discard_flags(const char *mode
, int *flags
)
1117 *flags
&= ~BDRV_O_UNMAP
;
1119 if (!strcmp(mode
, "off") || !strcmp(mode
, "ignore")) {
1121 } else if (!strcmp(mode
, "on") || !strcmp(mode
, "unmap")) {
1122 *flags
|= BDRV_O_UNMAP
;
1131 * Set open flags for a given cache mode
1133 * Return 0 on success, -1 if the cache mode was invalid.
1135 int bdrv_parse_cache_mode(const char *mode
, int *flags
, bool *writethrough
)
1137 *flags
&= ~BDRV_O_CACHE_MASK
;
1139 if (!strcmp(mode
, "off") || !strcmp(mode
, "none")) {
1140 *writethrough
= false;
1141 *flags
|= BDRV_O_NOCACHE
;
1142 } else if (!strcmp(mode
, "directsync")) {
1143 *writethrough
= true;
1144 *flags
|= BDRV_O_NOCACHE
;
1145 } else if (!strcmp(mode
, "writeback")) {
1146 *writethrough
= false;
1147 } else if (!strcmp(mode
, "unsafe")) {
1148 *writethrough
= false;
1149 *flags
|= BDRV_O_NO_FLUSH
;
1150 } else if (!strcmp(mode
, "writethrough")) {
1151 *writethrough
= true;
1159 static char *bdrv_child_get_parent_desc(BdrvChild
*c
)
1161 BlockDriverState
*parent
= c
->opaque
;
1162 return g_strdup(bdrv_get_device_or_node_name(parent
));
1165 static void bdrv_child_cb_drained_begin(BdrvChild
*child
)
1167 BlockDriverState
*bs
= child
->opaque
;
1168 bdrv_do_drained_begin_quiesce(bs
, NULL
, false);
1171 static bool bdrv_child_cb_drained_poll(BdrvChild
*child
)
1173 BlockDriverState
*bs
= child
->opaque
;
1174 return bdrv_drain_poll(bs
, false, NULL
, false);
1177 static void bdrv_child_cb_drained_end(BdrvChild
*child
,
1178 int *drained_end_counter
)
1180 BlockDriverState
*bs
= child
->opaque
;
1181 bdrv_drained_end_no_poll(bs
, drained_end_counter
);
1184 static int bdrv_child_cb_inactivate(BdrvChild
*child
)
1186 BlockDriverState
*bs
= child
->opaque
;
1187 assert(bs
->open_flags
& BDRV_O_INACTIVE
);
1191 static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
1192 GSList
**ignore
, Error
**errp
)
1194 BlockDriverState
*bs
= child
->opaque
;
1195 return bdrv_can_set_aio_context(bs
, ctx
, ignore
, errp
);
1198 static void bdrv_child_cb_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
1201 BlockDriverState
*bs
= child
->opaque
;
1202 return bdrv_set_aio_context_ignore(bs
, ctx
, ignore
);
1206 * Returns the options and flags that a temporary snapshot should get, based on
1207 * the originally requested flags (the originally requested image will have
1208 * flags like a backing file)
1210 static void bdrv_temp_snapshot_options(int *child_flags
, QDict
*child_options
,
1211 int parent_flags
, QDict
*parent_options
)
1213 *child_flags
= (parent_flags
& ~BDRV_O_SNAPSHOT
) | BDRV_O_TEMPORARY
;
1215 /* For temporary files, unconditional cache=unsafe is fine */
1216 qdict_set_default_str(child_options
, BDRV_OPT_CACHE_DIRECT
, "off");
1217 qdict_set_default_str(child_options
, BDRV_OPT_CACHE_NO_FLUSH
, "on");
1219 /* Copy the read-only and discard options from the parent */
1220 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_READ_ONLY
);
1221 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_DISCARD
);
1223 /* aio=native doesn't work for cache.direct=off, so disable it for the
1224 * temporary snapshot */
1225 *child_flags
&= ~BDRV_O_NATIVE_AIO
;
1228 static void bdrv_backing_attach(BdrvChild
*c
)
1230 BlockDriverState
*parent
= c
->opaque
;
1231 BlockDriverState
*backing_hd
= c
->bs
;
1233 assert(!parent
->backing_blocker
);
1234 error_setg(&parent
->backing_blocker
,
1235 "node is used as backing hd of '%s'",
1236 bdrv_get_device_or_node_name(parent
));
1238 bdrv_refresh_filename(backing_hd
);
1240 parent
->open_flags
&= ~BDRV_O_NO_BACKING
;
1242 bdrv_op_block_all(backing_hd
, parent
->backing_blocker
);
1243 /* Otherwise we won't be able to commit or stream */
1244 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_COMMIT_TARGET
,
1245 parent
->backing_blocker
);
1246 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_STREAM
,
1247 parent
->backing_blocker
);
1249 * We do backup in 3 ways:
1251 * The target bs is new opened, and the source is top BDS
1252 * 2. blockdev backup
1253 * Both the source and the target are top BDSes.
1254 * 3. internal backup(used for block replication)
1255 * Both the source and the target are backing file
1257 * In case 1 and 2, neither the source nor the target is the backing file.
1258 * In case 3, we will block the top BDS, so there is only one block job
1259 * for the top BDS and its backing chain.
1261 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_BACKUP_SOURCE
,
1262 parent
->backing_blocker
);
1263 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_BACKUP_TARGET
,
1264 parent
->backing_blocker
);
1267 static void bdrv_backing_detach(BdrvChild
*c
)
1269 BlockDriverState
*parent
= c
->opaque
;
1271 assert(parent
->backing_blocker
);
1272 bdrv_op_unblock_all(c
->bs
, parent
->backing_blocker
);
1273 error_free(parent
->backing_blocker
);
1274 parent
->backing_blocker
= NULL
;
1277 static int bdrv_backing_update_filename(BdrvChild
*c
, BlockDriverState
*base
,
1278 const char *filename
, Error
**errp
)
1280 BlockDriverState
*parent
= c
->opaque
;
1281 bool read_only
= bdrv_is_read_only(parent
);
1285 ret
= bdrv_reopen_set_read_only(parent
, false, errp
);
1291 ret
= bdrv_change_backing_file(parent
, filename
,
1292 base
->drv
? base
->drv
->format_name
: "",
1295 error_setg_errno(errp
, -ret
, "Could not update backing file link");
1299 bdrv_reopen_set_read_only(parent
, true, NULL
);
1306 * Returns the options and flags that a generic child of a BDS should
1307 * get, based on the given options and flags for the parent BDS.
1309 static void bdrv_inherited_options(BdrvChildRole role
, bool parent_is_format
,
1310 int *child_flags
, QDict
*child_options
,
1311 int parent_flags
, QDict
*parent_options
)
1313 int flags
= parent_flags
;
1316 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1317 * Generally, the question to answer is: Should this child be
1318 * format-probed by default?
1322 * Pure and non-filtered data children of non-format nodes should
1323 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1324 * set). This only affects a very limited set of drivers (namely
1325 * quorum and blkverify when this comment was written).
1326 * Force-clear BDRV_O_PROTOCOL then.
1328 if (!parent_is_format
&&
1329 (role
& BDRV_CHILD_DATA
) &&
1330 !(role
& (BDRV_CHILD_METADATA
| BDRV_CHILD_FILTERED
)))
1332 flags
&= ~BDRV_O_PROTOCOL
;
1336 * All children of format nodes (except for COW children) and all
1337 * metadata children in general should never be format-probed.
1338 * Force-set BDRV_O_PROTOCOL then.
1340 if ((parent_is_format
&& !(role
& BDRV_CHILD_COW
)) ||
1341 (role
& BDRV_CHILD_METADATA
))
1343 flags
|= BDRV_O_PROTOCOL
;
1347 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1350 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_CACHE_DIRECT
);
1351 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_CACHE_NO_FLUSH
);
1352 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_FORCE_SHARE
);
1354 if (role
& BDRV_CHILD_COW
) {
1355 /* backing files are opened read-only by default */
1356 qdict_set_default_str(child_options
, BDRV_OPT_READ_ONLY
, "on");
1357 qdict_set_default_str(child_options
, BDRV_OPT_AUTO_READ_ONLY
, "off");
1359 /* Inherit the read-only option from the parent if it's not set */
1360 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_READ_ONLY
);
1361 qdict_copy_default(child_options
, parent_options
,
1362 BDRV_OPT_AUTO_READ_ONLY
);
1366 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1367 * can default to enable it on lower layers regardless of the
1370 qdict_set_default_str(child_options
, BDRV_OPT_DISCARD
, "unmap");
1372 /* Clear flags that only apply to the top layer */
1373 flags
&= ~(BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
| BDRV_O_COPY_ON_READ
);
1375 if (role
& BDRV_CHILD_METADATA
) {
1376 flags
&= ~BDRV_O_NO_IO
;
1378 if (role
& BDRV_CHILD_COW
) {
1379 flags
&= ~BDRV_O_TEMPORARY
;
1382 *child_flags
= flags
;
1385 static void bdrv_child_cb_attach(BdrvChild
*child
)
1387 BlockDriverState
*bs
= child
->opaque
;
1389 if (child
->role
& BDRV_CHILD_COW
) {
1390 bdrv_backing_attach(child
);
1393 bdrv_apply_subtree_drain(child
, bs
);
1396 static void bdrv_child_cb_detach(BdrvChild
*child
)
1398 BlockDriverState
*bs
= child
->opaque
;
1400 if (child
->role
& BDRV_CHILD_COW
) {
1401 bdrv_backing_detach(child
);
1404 bdrv_unapply_subtree_drain(child
, bs
);
1407 static int bdrv_child_cb_update_filename(BdrvChild
*c
, BlockDriverState
*base
,
1408 const char *filename
, Error
**errp
)
1410 if (c
->role
& BDRV_CHILD_COW
) {
1411 return bdrv_backing_update_filename(c
, base
, filename
, errp
);
1416 static AioContext
*bdrv_child_cb_get_parent_aio_context(BdrvChild
*c
)
1418 BlockDriverState
*bs
= c
->opaque
;
1420 return bdrv_get_aio_context(bs
);
1423 const BdrvChildClass child_of_bds
= {
1424 .parent_is_bds
= true,
1425 .get_parent_desc
= bdrv_child_get_parent_desc
,
1426 .inherit_options
= bdrv_inherited_options
,
1427 .drained_begin
= bdrv_child_cb_drained_begin
,
1428 .drained_poll
= bdrv_child_cb_drained_poll
,
1429 .drained_end
= bdrv_child_cb_drained_end
,
1430 .attach
= bdrv_child_cb_attach
,
1431 .detach
= bdrv_child_cb_detach
,
1432 .inactivate
= bdrv_child_cb_inactivate
,
1433 .can_set_aio_ctx
= bdrv_child_cb_can_set_aio_ctx
,
1434 .set_aio_ctx
= bdrv_child_cb_set_aio_ctx
,
1435 .update_filename
= bdrv_child_cb_update_filename
,
1436 .get_parent_aio_context
= bdrv_child_cb_get_parent_aio_context
,
1439 AioContext
*bdrv_child_get_parent_aio_context(BdrvChild
*c
)
1441 return c
->klass
->get_parent_aio_context(c
);
1444 static int bdrv_open_flags(BlockDriverState
*bs
, int flags
)
1446 int open_flags
= flags
;
1449 * Clear flags that are internal to the block layer before opening the
1452 open_flags
&= ~(BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
| BDRV_O_PROTOCOL
);
1457 static void update_flags_from_options(int *flags
, QemuOpts
*opts
)
1459 *flags
&= ~(BDRV_O_CACHE_MASK
| BDRV_O_RDWR
| BDRV_O_AUTO_RDONLY
);
1461 if (qemu_opt_get_bool_del(opts
, BDRV_OPT_CACHE_NO_FLUSH
, false)) {
1462 *flags
|= BDRV_O_NO_FLUSH
;
1465 if (qemu_opt_get_bool_del(opts
, BDRV_OPT_CACHE_DIRECT
, false)) {
1466 *flags
|= BDRV_O_NOCACHE
;
1469 if (!qemu_opt_get_bool_del(opts
, BDRV_OPT_READ_ONLY
, false)) {
1470 *flags
|= BDRV_O_RDWR
;
1473 if (qemu_opt_get_bool_del(opts
, BDRV_OPT_AUTO_READ_ONLY
, false)) {
1474 *flags
|= BDRV_O_AUTO_RDONLY
;
1478 static void update_options_from_flags(QDict
*options
, int flags
)
1480 if (!qdict_haskey(options
, BDRV_OPT_CACHE_DIRECT
)) {
1481 qdict_put_bool(options
, BDRV_OPT_CACHE_DIRECT
, flags
& BDRV_O_NOCACHE
);
1483 if (!qdict_haskey(options
, BDRV_OPT_CACHE_NO_FLUSH
)) {
1484 qdict_put_bool(options
, BDRV_OPT_CACHE_NO_FLUSH
,
1485 flags
& BDRV_O_NO_FLUSH
);
1487 if (!qdict_haskey(options
, BDRV_OPT_READ_ONLY
)) {
1488 qdict_put_bool(options
, BDRV_OPT_READ_ONLY
, !(flags
& BDRV_O_RDWR
));
1490 if (!qdict_haskey(options
, BDRV_OPT_AUTO_READ_ONLY
)) {
1491 qdict_put_bool(options
, BDRV_OPT_AUTO_READ_ONLY
,
1492 flags
& BDRV_O_AUTO_RDONLY
);
1496 static void bdrv_assign_node_name(BlockDriverState
*bs
,
1497 const char *node_name
,
1500 char *gen_node_name
= NULL
;
1503 node_name
= gen_node_name
= id_generate(ID_BLOCK
);
1504 } else if (!id_wellformed(node_name
)) {
1506 * Check for empty string or invalid characters, but not if it is
1507 * generated (generated names use characters not available to the user)
1509 error_setg(errp
, "Invalid node-name: '%s'", node_name
);
1513 /* takes care of avoiding namespaces collisions */
1514 if (blk_by_name(node_name
)) {
1515 error_setg(errp
, "node-name=%s is conflicting with a device id",
1520 /* takes care of avoiding duplicates node names */
1521 if (bdrv_find_node(node_name
)) {
1522 error_setg(errp
, "Duplicate nodes with node-name='%s'", node_name
);
1526 /* Make sure that the node name isn't truncated */
1527 if (strlen(node_name
) >= sizeof(bs
->node_name
)) {
1528 error_setg(errp
, "Node name too long");
1532 /* copy node name into the bs and insert it into the graph list */
1533 pstrcpy(bs
->node_name
, sizeof(bs
->node_name
), node_name
);
1534 QTAILQ_INSERT_TAIL(&graph_bdrv_states
, bs
, node_list
);
1536 g_free(gen_node_name
);
1539 static int bdrv_open_driver(BlockDriverState
*bs
, BlockDriver
*drv
,
1540 const char *node_name
, QDict
*options
,
1541 int open_flags
, Error
**errp
)
1543 Error
*local_err
= NULL
;
1546 bdrv_assign_node_name(bs
, node_name
, &local_err
);
1548 error_propagate(errp
, local_err
);
1553 bs
->read_only
= !(bs
->open_flags
& BDRV_O_RDWR
);
1554 bs
->opaque
= g_malloc0(drv
->instance_size
);
1556 if (drv
->bdrv_file_open
) {
1557 assert(!drv
->bdrv_needs_filename
|| bs
->filename
[0]);
1558 ret
= drv
->bdrv_file_open(bs
, options
, open_flags
, &local_err
);
1559 } else if (drv
->bdrv_open
) {
1560 ret
= drv
->bdrv_open(bs
, options
, open_flags
, &local_err
);
1567 error_propagate(errp
, local_err
);
1568 } else if (bs
->filename
[0]) {
1569 error_setg_errno(errp
, -ret
, "Could not open '%s'", bs
->filename
);
1571 error_setg_errno(errp
, -ret
, "Could not open image");
1576 ret
= refresh_total_sectors(bs
, bs
->total_sectors
);
1578 error_setg_errno(errp
, -ret
, "Could not refresh total sector count");
1582 bdrv_refresh_limits(bs
, NULL
, &local_err
);
1584 error_propagate(errp
, local_err
);
1588 assert(bdrv_opt_mem_align(bs
) != 0);
1589 assert(bdrv_min_mem_align(bs
) != 0);
1590 assert(is_power_of_2(bs
->bl
.request_alignment
));
1592 for (i
= 0; i
< bs
->quiesce_counter
; i
++) {
1593 if (drv
->bdrv_co_drain_begin
) {
1594 drv
->bdrv_co_drain_begin(bs
);
1601 if (bs
->file
!= NULL
) {
1602 bdrv_unref_child(bs
, bs
->file
);
1610 BlockDriverState
*bdrv_new_open_driver(BlockDriver
*drv
, const char *node_name
,
1611 int flags
, Error
**errp
)
1613 BlockDriverState
*bs
;
1617 bs
->open_flags
= flags
;
1618 bs
->explicit_options
= qdict_new();
1619 bs
->options
= qdict_new();
1622 update_options_from_flags(bs
->options
, flags
);
1624 ret
= bdrv_open_driver(bs
, drv
, node_name
, bs
->options
, flags
, errp
);
1626 qobject_unref(bs
->explicit_options
);
1627 bs
->explicit_options
= NULL
;
1628 qobject_unref(bs
->options
);
1637 QemuOptsList bdrv_runtime_opts
= {
1638 .name
= "bdrv_common",
1639 .head
= QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts
.head
),
1642 .name
= "node-name",
1643 .type
= QEMU_OPT_STRING
,
1644 .help
= "Node name of the block device node",
1648 .type
= QEMU_OPT_STRING
,
1649 .help
= "Block driver to use for the node",
1652 .name
= BDRV_OPT_CACHE_DIRECT
,
1653 .type
= QEMU_OPT_BOOL
,
1654 .help
= "Bypass software writeback cache on the host",
1657 .name
= BDRV_OPT_CACHE_NO_FLUSH
,
1658 .type
= QEMU_OPT_BOOL
,
1659 .help
= "Ignore flush requests",
1662 .name
= BDRV_OPT_READ_ONLY
,
1663 .type
= QEMU_OPT_BOOL
,
1664 .help
= "Node is opened in read-only mode",
1667 .name
= BDRV_OPT_AUTO_READ_ONLY
,
1668 .type
= QEMU_OPT_BOOL
,
1669 .help
= "Node can become read-only if opening read-write fails",
1672 .name
= "detect-zeroes",
1673 .type
= QEMU_OPT_STRING
,
1674 .help
= "try to optimize zero writes (off, on, unmap)",
1677 .name
= BDRV_OPT_DISCARD
,
1678 .type
= QEMU_OPT_STRING
,
1679 .help
= "discard operation (ignore/off, unmap/on)",
1682 .name
= BDRV_OPT_FORCE_SHARE
,
1683 .type
= QEMU_OPT_BOOL
,
1684 .help
= "always accept other writers (default: off)",
1686 { /* end of list */ }
1690 QemuOptsList bdrv_create_opts_simple
= {
1691 .name
= "simple-create-opts",
1692 .head
= QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple
.head
),
1695 .name
= BLOCK_OPT_SIZE
,
1696 .type
= QEMU_OPT_SIZE
,
1697 .help
= "Virtual disk size"
1700 .name
= BLOCK_OPT_PREALLOC
,
1701 .type
= QEMU_OPT_STRING
,
1702 .help
= "Preallocation mode (allowed values: off)"
1704 { /* end of list */ }
1709 * Common part for opening disk images and files
1711 * Removes all processed options from *options.
1713 static int bdrv_open_common(BlockDriverState
*bs
, BlockBackend
*file
,
1714 QDict
*options
, Error
**errp
)
1716 int ret
, open_flags
;
1717 const char *filename
;
1718 const char *driver_name
= NULL
;
1719 const char *node_name
= NULL
;
1720 const char *discard
;
1723 Error
*local_err
= NULL
;
1725 assert(bs
->file
== NULL
);
1726 assert(options
!= NULL
&& bs
->options
!= options
);
1728 opts
= qemu_opts_create(&bdrv_runtime_opts
, NULL
, 0, &error_abort
);
1729 if (!qemu_opts_absorb_qdict(opts
, options
, errp
)) {
1734 update_flags_from_options(&bs
->open_flags
, opts
);
1736 driver_name
= qemu_opt_get(opts
, "driver");
1737 drv
= bdrv_find_format(driver_name
);
1738 assert(drv
!= NULL
);
1740 bs
->force_share
= qemu_opt_get_bool(opts
, BDRV_OPT_FORCE_SHARE
, false);
1742 if (bs
->force_share
&& (bs
->open_flags
& BDRV_O_RDWR
)) {
1744 BDRV_OPT_FORCE_SHARE
1745 "=on can only be used with read-only images");
1751 bdrv_refresh_filename(blk_bs(file
));
1752 filename
= blk_bs(file
)->filename
;
1755 * Caution: while qdict_get_try_str() is fine, getting
1756 * non-string types would require more care. When @options
1757 * come from -blockdev or blockdev_add, its members are typed
1758 * according to the QAPI schema, but when they come from
1759 * -drive, they're all QString.
1761 filename
= qdict_get_try_str(options
, "filename");
1764 if (drv
->bdrv_needs_filename
&& (!filename
|| !filename
[0])) {
1765 error_setg(errp
, "The '%s' block driver requires a file name",
1771 trace_bdrv_open_common(bs
, filename
?: "", bs
->open_flags
,
1774 bs
->read_only
= !(bs
->open_flags
& BDRV_O_RDWR
);
1776 if (use_bdrv_whitelist
&& !bdrv_is_whitelisted(drv
, bs
->read_only
)) {
1777 if (!bs
->read_only
&& bdrv_is_whitelisted(drv
, true)) {
1778 ret
= bdrv_apply_auto_read_only(bs
, NULL
, NULL
);
1784 !bs
->read_only
&& bdrv_is_whitelisted(drv
, true)
1785 ? "Driver '%s' can only be used for read-only devices"
1786 : "Driver '%s' is not whitelisted",
1792 /* bdrv_new() and bdrv_close() make it so */
1793 assert(qatomic_read(&bs
->copy_on_read
) == 0);
1795 if (bs
->open_flags
& BDRV_O_COPY_ON_READ
) {
1796 if (!bs
->read_only
) {
1797 bdrv_enable_copy_on_read(bs
);
1799 error_setg(errp
, "Can't use copy-on-read on read-only device");
1805 discard
= qemu_opt_get(opts
, BDRV_OPT_DISCARD
);
1806 if (discard
!= NULL
) {
1807 if (bdrv_parse_discard_flags(discard
, &bs
->open_flags
) != 0) {
1808 error_setg(errp
, "Invalid discard option");
1815 bdrv_parse_detect_zeroes(opts
, bs
->open_flags
, &local_err
);
1817 error_propagate(errp
, local_err
);
1822 if (filename
!= NULL
) {
1823 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
1825 bs
->filename
[0] = '\0';
1827 pstrcpy(bs
->exact_filename
, sizeof(bs
->exact_filename
), bs
->filename
);
1829 /* Open the image, either directly or using a protocol */
1830 open_flags
= bdrv_open_flags(bs
, bs
->open_flags
);
1831 node_name
= qemu_opt_get(opts
, "node-name");
1833 assert(!drv
->bdrv_file_open
|| file
== NULL
);
1834 ret
= bdrv_open_driver(bs
, drv
, node_name
, options
, open_flags
, errp
);
1839 qemu_opts_del(opts
);
1843 qemu_opts_del(opts
);
1847 static QDict
*parse_json_filename(const char *filename
, Error
**errp
)
1849 QObject
*options_obj
;
1853 ret
= strstart(filename
, "json:", &filename
);
1856 options_obj
= qobject_from_json(filename
, errp
);
1858 error_prepend(errp
, "Could not parse the JSON options: ");
1862 options
= qobject_to(QDict
, options_obj
);
1864 qobject_unref(options_obj
);
1865 error_setg(errp
, "Invalid JSON object given");
1869 qdict_flatten(options
);
1874 static void parse_json_protocol(QDict
*options
, const char **pfilename
,
1877 QDict
*json_options
;
1878 Error
*local_err
= NULL
;
1880 /* Parse json: pseudo-protocol */
1881 if (!*pfilename
|| !g_str_has_prefix(*pfilename
, "json:")) {
1885 json_options
= parse_json_filename(*pfilename
, &local_err
);
1887 error_propagate(errp
, local_err
);
1891 /* Options given in the filename have lower priority than options
1892 * specified directly */
1893 qdict_join(options
, json_options
, false);
1894 qobject_unref(json_options
);
1899 * Fills in default options for opening images and converts the legacy
1900 * filename/flags pair to option QDict entries.
1901 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1902 * block driver has been specified explicitly.
1904 static int bdrv_fill_options(QDict
**options
, const char *filename
,
1905 int *flags
, Error
**errp
)
1907 const char *drvname
;
1908 bool protocol
= *flags
& BDRV_O_PROTOCOL
;
1909 bool parse_filename
= false;
1910 BlockDriver
*drv
= NULL
;
1911 Error
*local_err
= NULL
;
1914 * Caution: while qdict_get_try_str() is fine, getting non-string
1915 * types would require more care. When @options come from
1916 * -blockdev or blockdev_add, its members are typed according to
1917 * the QAPI schema, but when they come from -drive, they're all
1920 drvname
= qdict_get_try_str(*options
, "driver");
1922 drv
= bdrv_find_format(drvname
);
1924 error_setg(errp
, "Unknown driver '%s'", drvname
);
1927 /* If the user has explicitly specified the driver, this choice should
1928 * override the BDRV_O_PROTOCOL flag */
1929 protocol
= drv
->bdrv_file_open
;
1933 *flags
|= BDRV_O_PROTOCOL
;
1935 *flags
&= ~BDRV_O_PROTOCOL
;
1938 /* Translate cache options from flags into options */
1939 update_options_from_flags(*options
, *flags
);
1941 /* Fetch the file name from the options QDict if necessary */
1942 if (protocol
&& filename
) {
1943 if (!qdict_haskey(*options
, "filename")) {
1944 qdict_put_str(*options
, "filename", filename
);
1945 parse_filename
= true;
1947 error_setg(errp
, "Can't specify 'file' and 'filename' options at "
1953 /* Find the right block driver */
1954 /* See cautionary note on accessing @options above */
1955 filename
= qdict_get_try_str(*options
, "filename");
1957 if (!drvname
&& protocol
) {
1959 drv
= bdrv_find_protocol(filename
, parse_filename
, errp
);
1964 drvname
= drv
->format_name
;
1965 qdict_put_str(*options
, "driver", drvname
);
1967 error_setg(errp
, "Must specify either driver or file");
1972 assert(drv
|| !protocol
);
1974 /* Driver-specific filename parsing */
1975 if (drv
&& drv
->bdrv_parse_filename
&& parse_filename
) {
1976 drv
->bdrv_parse_filename(filename
, *options
, &local_err
);
1978 error_propagate(errp
, local_err
);
1982 if (!drv
->bdrv_needs_filename
) {
1983 qdict_del(*options
, "filename");
1990 typedef struct BlockReopenQueueEntry
{
1993 BDRVReopenState state
;
1994 QTAILQ_ENTRY(BlockReopenQueueEntry
) entry
;
1995 } BlockReopenQueueEntry
;
1998 * Return the flags that @bs will have after the reopens in @q have
1999 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2000 * return the current flags.
2002 static int bdrv_reopen_get_flags(BlockReopenQueue
*q
, BlockDriverState
*bs
)
2004 BlockReopenQueueEntry
*entry
;
2007 QTAILQ_FOREACH(entry
, q
, entry
) {
2008 if (entry
->state
.bs
== bs
) {
2009 return entry
->state
.flags
;
2014 return bs
->open_flags
;
2017 /* Returns whether the image file can be written to after the reopen queue @q
2018 * has been successfully applied, or right now if @q is NULL. */
2019 static bool bdrv_is_writable_after_reopen(BlockDriverState
*bs
,
2020 BlockReopenQueue
*q
)
2022 int flags
= bdrv_reopen_get_flags(q
, bs
);
2024 return (flags
& (BDRV_O_RDWR
| BDRV_O_INACTIVE
)) == BDRV_O_RDWR
;
2028 * Return whether the BDS can be written to. This is not necessarily
2029 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2030 * be written to but do not count as read-only images.
2032 bool bdrv_is_writable(BlockDriverState
*bs
)
2034 return bdrv_is_writable_after_reopen(bs
, NULL
);
2037 static char *bdrv_child_user_desc(BdrvChild
*c
)
2039 if (c
->klass
->get_parent_desc
) {
2040 return c
->klass
->get_parent_desc(c
);
2043 return g_strdup("another user");
2046 static bool bdrv_a_allow_b(BdrvChild
*a
, BdrvChild
*b
, Error
**errp
)
2048 g_autofree
char *user
= NULL
;
2049 g_autofree
char *perm_names
= NULL
;
2051 if ((b
->perm
& a
->shared_perm
) == b
->perm
) {
2055 perm_names
= bdrv_perm_names(b
->perm
& ~a
->shared_perm
);
2056 user
= bdrv_child_user_desc(a
);
2057 error_setg(errp
, "Conflicts with use by %s as '%s', which does not "
2059 user
, a
->name
, perm_names
, bdrv_get_node_name(b
->bs
));
2064 static bool bdrv_parent_perms_conflict(BlockDriverState
*bs
, Error
**errp
)
2069 * During the loop we'll look at each pair twice. That's correct because
2070 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2073 QLIST_FOREACH(a
, &bs
->parents
, next_parent
) {
2074 QLIST_FOREACH(b
, &bs
->parents
, next_parent
) {
2079 if (!bdrv_a_allow_b(a
, b
, errp
)) {
2088 static void bdrv_child_perm(BlockDriverState
*bs
, BlockDriverState
*child_bs
,
2089 BdrvChild
*c
, BdrvChildRole role
,
2090 BlockReopenQueue
*reopen_queue
,
2091 uint64_t parent_perm
, uint64_t parent_shared
,
2092 uint64_t *nperm
, uint64_t *nshared
)
2094 assert(bs
->drv
&& bs
->drv
->bdrv_child_perm
);
2095 bs
->drv
->bdrv_child_perm(bs
, c
, role
, reopen_queue
,
2096 parent_perm
, parent_shared
,
2098 /* TODO Take force_share from reopen_queue */
2099 if (child_bs
&& child_bs
->force_share
) {
2100 *nshared
= BLK_PERM_ALL
;
2105 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2106 * nodes that are already in the @list, of course) so that final list is
2107 * topologically sorted. Return the result (GSList @list object is updated, so
2108 * don't use old reference after function call).
2110 * On function start @list must be already topologically sorted and for any node
2111 * in the @list the whole subtree of the node must be in the @list as well. The
2112 * simplest way to satisfy this criteria: use only result of
2113 * bdrv_topological_dfs() or NULL as @list parameter.
2115 static GSList
*bdrv_topological_dfs(GSList
*list
, GHashTable
*found
,
2116 BlockDriverState
*bs
)
2119 g_autoptr(GHashTable
) local_found
= NULL
;
2123 found
= local_found
= g_hash_table_new(NULL
, NULL
);
2126 if (g_hash_table_contains(found
, bs
)) {
2129 g_hash_table_add(found
, bs
);
2131 QLIST_FOREACH(child
, &bs
->children
, next
) {
2132 list
= bdrv_topological_dfs(list
, found
, child
->bs
);
2135 return g_slist_prepend(list
, bs
);
2138 typedef struct BdrvChildSetPermState
{
2141 uint64_t old_shared_perm
;
2142 } BdrvChildSetPermState
;
2144 static void bdrv_child_set_perm_abort(void *opaque
)
2146 BdrvChildSetPermState
*s
= opaque
;
2148 s
->child
->perm
= s
->old_perm
;
2149 s
->child
->shared_perm
= s
->old_shared_perm
;
2152 static TransactionActionDrv bdrv_child_set_pem_drv
= {
2153 .abort
= bdrv_child_set_perm_abort
,
2157 static void bdrv_child_set_perm(BdrvChild
*c
, uint64_t perm
,
2158 uint64_t shared
, Transaction
*tran
)
2160 BdrvChildSetPermState
*s
= g_new(BdrvChildSetPermState
, 1);
2162 *s
= (BdrvChildSetPermState
) {
2164 .old_perm
= c
->perm
,
2165 .old_shared_perm
= c
->shared_perm
,
2169 c
->shared_perm
= shared
;
2171 tran_add(tran
, &bdrv_child_set_pem_drv
, s
);
2174 static void bdrv_drv_set_perm_commit(void *opaque
)
2176 BlockDriverState
*bs
= opaque
;
2177 uint64_t cumulative_perms
, cumulative_shared_perms
;
2179 if (bs
->drv
->bdrv_set_perm
) {
2180 bdrv_get_cumulative_perm(bs
, &cumulative_perms
,
2181 &cumulative_shared_perms
);
2182 bs
->drv
->bdrv_set_perm(bs
, cumulative_perms
, cumulative_shared_perms
);
2186 static void bdrv_drv_set_perm_abort(void *opaque
)
2188 BlockDriverState
*bs
= opaque
;
2190 if (bs
->drv
->bdrv_abort_perm_update
) {
2191 bs
->drv
->bdrv_abort_perm_update(bs
);
2195 TransactionActionDrv bdrv_drv_set_perm_drv
= {
2196 .abort
= bdrv_drv_set_perm_abort
,
2197 .commit
= bdrv_drv_set_perm_commit
,
2200 static int bdrv_drv_set_perm(BlockDriverState
*bs
, uint64_t perm
,
2201 uint64_t shared_perm
, Transaction
*tran
,
2208 if (bs
->drv
->bdrv_check_perm
) {
2209 int ret
= bs
->drv
->bdrv_check_perm(bs
, perm
, shared_perm
, errp
);
2216 tran_add(tran
, &bdrv_drv_set_perm_drv
, bs
);
2222 typedef struct BdrvReplaceChildState
{
2224 BlockDriverState
*old_bs
;
2225 } BdrvReplaceChildState
;
2227 static void bdrv_replace_child_commit(void *opaque
)
2229 BdrvReplaceChildState
*s
= opaque
;
2231 bdrv_unref(s
->old_bs
);
2234 static void bdrv_replace_child_abort(void *opaque
)
2236 BdrvReplaceChildState
*s
= opaque
;
2237 BlockDriverState
*new_bs
= s
->child
->bs
;
2239 /* old_bs reference is transparently moved from @s to @s->child */
2240 bdrv_replace_child_noperm(s
->child
, s
->old_bs
);
2244 static TransactionActionDrv bdrv_replace_child_drv
= {
2245 .commit
= bdrv_replace_child_commit
,
2246 .abort
= bdrv_replace_child_abort
,
2251 * bdrv_replace_child
2253 * Note: real unref of old_bs is done only on commit.
2255 static void bdrv_replace_child(BdrvChild
*child
, BlockDriverState
*new_bs
,
2258 BdrvReplaceChildState
*s
= g_new(BdrvReplaceChildState
, 1);
2259 *s
= (BdrvReplaceChildState
) {
2261 .old_bs
= child
->bs
,
2263 tran_add(tran
, &bdrv_replace_child_drv
, s
);
2268 bdrv_replace_child_noperm(child
, new_bs
);
2269 /* old_bs reference is transparently moved from @child to @s */
2273 * Refresh permissions in @bs subtree. The function is intended to be called
2274 * after some graph modification that was done without permission update.
2276 static int bdrv_node_refresh_perm(BlockDriverState
*bs
, BlockReopenQueue
*q
,
2277 Transaction
*tran
, Error
**errp
)
2279 BlockDriver
*drv
= bs
->drv
;
2282 uint64_t cumulative_perms
, cumulative_shared_perms
;
2284 bdrv_get_cumulative_perm(bs
, &cumulative_perms
, &cumulative_shared_perms
);
2286 /* Write permissions never work with read-only images */
2287 if ((cumulative_perms
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
)) &&
2288 !bdrv_is_writable_after_reopen(bs
, q
))
2290 if (!bdrv_is_writable_after_reopen(bs
, NULL
)) {
2291 error_setg(errp
, "Block node is read-only");
2293 error_setg(errp
, "Read-only block node '%s' cannot support "
2294 "read-write users", bdrv_get_node_name(bs
));
2301 * Unaligned requests will automatically be aligned to bl.request_alignment
2302 * and without RESIZE we can't extend requests to write to space beyond the
2303 * end of the image, so it's required that the image size is aligned.
2305 if ((cumulative_perms
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
)) &&
2306 !(cumulative_perms
& BLK_PERM_RESIZE
))
2308 if ((bs
->total_sectors
* BDRV_SECTOR_SIZE
) % bs
->bl
.request_alignment
) {
2309 error_setg(errp
, "Cannot get 'write' permission without 'resize': "
2310 "Image size is not a multiple of request "
2316 /* Check this node */
2321 ret
= bdrv_drv_set_perm(bs
, cumulative_perms
, cumulative_shared_perms
, tran
,
2327 /* Drivers that never have children can omit .bdrv_child_perm() */
2328 if (!drv
->bdrv_child_perm
) {
2329 assert(QLIST_EMPTY(&bs
->children
));
2333 /* Check all children */
2334 QLIST_FOREACH(c
, &bs
->children
, next
) {
2335 uint64_t cur_perm
, cur_shared
;
2337 bdrv_child_perm(bs
, c
->bs
, c
, c
->role
, q
,
2338 cumulative_perms
, cumulative_shared_perms
,
2339 &cur_perm
, &cur_shared
);
2340 bdrv_child_set_perm(c
, cur_perm
, cur_shared
, tran
);
2346 static int bdrv_list_refresh_perms(GSList
*list
, BlockReopenQueue
*q
,
2347 Transaction
*tran
, Error
**errp
)
2350 BlockDriverState
*bs
;
2352 for ( ; list
; list
= list
->next
) {
2355 if (bdrv_parent_perms_conflict(bs
, errp
)) {
2359 ret
= bdrv_node_refresh_perm(bs
, q
, tran
, errp
);
2368 void bdrv_get_cumulative_perm(BlockDriverState
*bs
, uint64_t *perm
,
2369 uint64_t *shared_perm
)
2372 uint64_t cumulative_perms
= 0;
2373 uint64_t cumulative_shared_perms
= BLK_PERM_ALL
;
2375 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
2376 cumulative_perms
|= c
->perm
;
2377 cumulative_shared_perms
&= c
->shared_perm
;
2380 *perm
= cumulative_perms
;
2381 *shared_perm
= cumulative_shared_perms
;
2384 char *bdrv_perm_names(uint64_t perm
)
2390 { BLK_PERM_CONSISTENT_READ
, "consistent read" },
2391 { BLK_PERM_WRITE
, "write" },
2392 { BLK_PERM_WRITE_UNCHANGED
, "write unchanged" },
2393 { BLK_PERM_RESIZE
, "resize" },
2394 { BLK_PERM_GRAPH_MOD
, "change children" },
2398 GString
*result
= g_string_sized_new(30);
2399 struct perm_name
*p
;
2401 for (p
= permissions
; p
->name
; p
++) {
2402 if (perm
& p
->perm
) {
2403 if (result
->len
> 0) {
2404 g_string_append(result
, ", ");
2406 g_string_append(result
, p
->name
);
2410 return g_string_free(result
, FALSE
);
2414 static int bdrv_refresh_perms(BlockDriverState
*bs
, Error
**errp
)
2417 Transaction
*tran
= tran_new();
2418 g_autoptr(GSList
) list
= bdrv_topological_dfs(NULL
, NULL
, bs
);
2420 ret
= bdrv_list_refresh_perms(list
, NULL
, tran
, errp
);
2421 tran_finalize(tran
, ret
);
2426 int bdrv_child_try_set_perm(BdrvChild
*c
, uint64_t perm
, uint64_t shared
,
2429 Error
*local_err
= NULL
;
2430 Transaction
*tran
= tran_new();
2433 bdrv_child_set_perm(c
, perm
, shared
, tran
);
2435 ret
= bdrv_refresh_perms(c
->bs
, &local_err
);
2437 tran_finalize(tran
, ret
);
2440 if ((perm
& ~c
->perm
) || (c
->shared_perm
& ~shared
)) {
2441 /* tighten permissions */
2442 error_propagate(errp
, local_err
);
2445 * Our caller may intend to only loosen restrictions and
2446 * does not expect this function to fail. Errors are not
2447 * fatal in such a case, so we can just hide them from our
2450 error_free(local_err
);
2458 int bdrv_child_refresh_perms(BlockDriverState
*bs
, BdrvChild
*c
, Error
**errp
)
2460 uint64_t parent_perms
, parent_shared
;
2461 uint64_t perms
, shared
;
2463 bdrv_get_cumulative_perm(bs
, &parent_perms
, &parent_shared
);
2464 bdrv_child_perm(bs
, c
->bs
, c
, c
->role
, NULL
,
2465 parent_perms
, parent_shared
, &perms
, &shared
);
2467 return bdrv_child_try_set_perm(c
, perms
, shared
, errp
);
2471 * Default implementation for .bdrv_child_perm() for block filters:
2472 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2475 static void bdrv_filter_default_perms(BlockDriverState
*bs
, BdrvChild
*c
,
2477 BlockReopenQueue
*reopen_queue
,
2478 uint64_t perm
, uint64_t shared
,
2479 uint64_t *nperm
, uint64_t *nshared
)
2481 *nperm
= perm
& DEFAULT_PERM_PASSTHROUGH
;
2482 *nshared
= (shared
& DEFAULT_PERM_PASSTHROUGH
) | DEFAULT_PERM_UNCHANGED
;
2485 static void bdrv_default_perms_for_cow(BlockDriverState
*bs
, BdrvChild
*c
,
2487 BlockReopenQueue
*reopen_queue
,
2488 uint64_t perm
, uint64_t shared
,
2489 uint64_t *nperm
, uint64_t *nshared
)
2491 assert(role
& BDRV_CHILD_COW
);
2494 * We want consistent read from backing files if the parent needs it.
2495 * No other operations are performed on backing files.
2497 perm
&= BLK_PERM_CONSISTENT_READ
;
2500 * If the parent can deal with changing data, we're okay with a
2501 * writable and resizable backing file.
2502 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2504 if (shared
& BLK_PERM_WRITE
) {
2505 shared
= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2510 shared
|= BLK_PERM_CONSISTENT_READ
| BLK_PERM_GRAPH_MOD
|
2511 BLK_PERM_WRITE_UNCHANGED
;
2513 if (bs
->open_flags
& BDRV_O_INACTIVE
) {
2514 shared
|= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2521 static void bdrv_default_perms_for_storage(BlockDriverState
*bs
, BdrvChild
*c
,
2523 BlockReopenQueue
*reopen_queue
,
2524 uint64_t perm
, uint64_t shared
,
2525 uint64_t *nperm
, uint64_t *nshared
)
2529 assert(role
& (BDRV_CHILD_METADATA
| BDRV_CHILD_DATA
));
2531 flags
= bdrv_reopen_get_flags(reopen_queue
, bs
);
2534 * Apart from the modifications below, the same permissions are
2535 * forwarded and left alone as for filters
2537 bdrv_filter_default_perms(bs
, c
, role
, reopen_queue
,
2538 perm
, shared
, &perm
, &shared
);
2540 if (role
& BDRV_CHILD_METADATA
) {
2541 /* Format drivers may touch metadata even if the guest doesn't write */
2542 if (bdrv_is_writable_after_reopen(bs
, reopen_queue
)) {
2543 perm
|= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2547 * bs->file always needs to be consistent because of the
2548 * metadata. We can never allow other users to resize or write
2551 if (!(flags
& BDRV_O_NO_IO
)) {
2552 perm
|= BLK_PERM_CONSISTENT_READ
;
2554 shared
&= ~(BLK_PERM_WRITE
| BLK_PERM_RESIZE
);
2557 if (role
& BDRV_CHILD_DATA
) {
2559 * Technically, everything in this block is a subset of the
2560 * BDRV_CHILD_METADATA path taken above, and so this could
2561 * be an "else if" branch. However, that is not obvious, and
2562 * this function is not performance critical, therefore we let
2563 * this be an independent "if".
2567 * We cannot allow other users to resize the file because the
2568 * format driver might have some assumptions about the size
2569 * (e.g. because it is stored in metadata, or because the file
2570 * is split into fixed-size data files).
2572 shared
&= ~BLK_PERM_RESIZE
;
2575 * WRITE_UNCHANGED often cannot be performed as such on the
2576 * data file. For example, the qcow2 driver may still need to
2577 * write copied clusters on copy-on-read.
2579 if (perm
& BLK_PERM_WRITE_UNCHANGED
) {
2580 perm
|= BLK_PERM_WRITE
;
2584 * If the data file is written to, the format driver may
2585 * expect to be able to resize it by writing beyond the EOF.
2587 if (perm
& BLK_PERM_WRITE
) {
2588 perm
|= BLK_PERM_RESIZE
;
2592 if (bs
->open_flags
& BDRV_O_INACTIVE
) {
2593 shared
|= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2600 void bdrv_default_perms(BlockDriverState
*bs
, BdrvChild
*c
,
2601 BdrvChildRole role
, BlockReopenQueue
*reopen_queue
,
2602 uint64_t perm
, uint64_t shared
,
2603 uint64_t *nperm
, uint64_t *nshared
)
2605 if (role
& BDRV_CHILD_FILTERED
) {
2606 assert(!(role
& (BDRV_CHILD_DATA
| BDRV_CHILD_METADATA
|
2608 bdrv_filter_default_perms(bs
, c
, role
, reopen_queue
,
2609 perm
, shared
, nperm
, nshared
);
2610 } else if (role
& BDRV_CHILD_COW
) {
2611 assert(!(role
& (BDRV_CHILD_DATA
| BDRV_CHILD_METADATA
)));
2612 bdrv_default_perms_for_cow(bs
, c
, role
, reopen_queue
,
2613 perm
, shared
, nperm
, nshared
);
2614 } else if (role
& (BDRV_CHILD_METADATA
| BDRV_CHILD_DATA
)) {
2615 bdrv_default_perms_for_storage(bs
, c
, role
, reopen_queue
,
2616 perm
, shared
, nperm
, nshared
);
2618 g_assert_not_reached();
2622 uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm
)
2624 static const uint64_t permissions
[] = {
2625 [BLOCK_PERMISSION_CONSISTENT_READ
] = BLK_PERM_CONSISTENT_READ
,
2626 [BLOCK_PERMISSION_WRITE
] = BLK_PERM_WRITE
,
2627 [BLOCK_PERMISSION_WRITE_UNCHANGED
] = BLK_PERM_WRITE_UNCHANGED
,
2628 [BLOCK_PERMISSION_RESIZE
] = BLK_PERM_RESIZE
,
2629 [BLOCK_PERMISSION_GRAPH_MOD
] = BLK_PERM_GRAPH_MOD
,
2632 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions
) != BLOCK_PERMISSION__MAX
);
2633 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions
) != BLK_PERM_ALL
+ 1);
2635 assert(qapi_perm
< BLOCK_PERMISSION__MAX
);
2637 return permissions
[qapi_perm
];
2640 static void bdrv_replace_child_noperm(BdrvChild
*child
,
2641 BlockDriverState
*new_bs
)
2643 BlockDriverState
*old_bs
= child
->bs
;
2644 int new_bs_quiesce_counter
;
2647 assert(!child
->frozen
);
2649 if (old_bs
&& new_bs
) {
2650 assert(bdrv_get_aio_context(old_bs
) == bdrv_get_aio_context(new_bs
));
2653 new_bs_quiesce_counter
= (new_bs
? new_bs
->quiesce_counter
: 0);
2654 drain_saldo
= new_bs_quiesce_counter
- child
->parent_quiesce_counter
;
2657 * If the new child node is drained but the old one was not, flush
2658 * all outstanding requests to the old child node.
2660 while (drain_saldo
> 0 && child
->klass
->drained_begin
) {
2661 bdrv_parent_drained_begin_single(child
, true);
2666 /* Detach first so that the recursive drain sections coming from @child
2667 * are already gone and we only end the drain sections that came from
2669 if (child
->klass
->detach
) {
2670 child
->klass
->detach(child
);
2672 QLIST_REMOVE(child
, next_parent
);
2678 QLIST_INSERT_HEAD(&new_bs
->parents
, child
, next_parent
);
2681 * Detaching the old node may have led to the new node's
2682 * quiesce_counter having been decreased. Not a problem, we
2683 * just need to recognize this here and then invoke
2684 * drained_end appropriately more often.
2686 assert(new_bs
->quiesce_counter
<= new_bs_quiesce_counter
);
2687 drain_saldo
+= new_bs
->quiesce_counter
- new_bs_quiesce_counter
;
2689 /* Attach only after starting new drained sections, so that recursive
2690 * drain sections coming from @child don't get an extra .drained_begin
2692 if (child
->klass
->attach
) {
2693 child
->klass
->attach(child
);
2698 * If the old child node was drained but the new one is not, allow
2699 * requests to come in only after the new node has been attached.
2701 while (drain_saldo
< 0 && child
->klass
->drained_end
) {
2702 bdrv_parent_drained_end_single(child
);
2707 static void bdrv_child_free(void *opaque
)
2709 BdrvChild
*c
= opaque
;
2715 static void bdrv_remove_empty_child(BdrvChild
*child
)
2718 QLIST_SAFE_REMOVE(child
, next
);
2719 bdrv_child_free(child
);
2722 typedef struct BdrvAttachChildCommonState
{
2724 AioContext
*old_parent_ctx
;
2725 AioContext
*old_child_ctx
;
2726 } BdrvAttachChildCommonState
;
2728 static void bdrv_attach_child_common_abort(void *opaque
)
2730 BdrvAttachChildCommonState
*s
= opaque
;
2731 BdrvChild
*child
= *s
->child
;
2732 BlockDriverState
*bs
= child
->bs
;
2734 bdrv_replace_child_noperm(child
, NULL
);
2736 if (bdrv_get_aio_context(bs
) != s
->old_child_ctx
) {
2737 bdrv_try_set_aio_context(bs
, s
->old_child_ctx
, &error_abort
);
2740 if (bdrv_child_get_parent_aio_context(child
) != s
->old_parent_ctx
) {
2741 GSList
*ignore
= g_slist_prepend(NULL
, child
);
2743 child
->klass
->can_set_aio_ctx(child
, s
->old_parent_ctx
, &ignore
,
2745 g_slist_free(ignore
);
2746 ignore
= g_slist_prepend(NULL
, child
);
2747 child
->klass
->set_aio_ctx(child
, s
->old_parent_ctx
, &ignore
);
2749 g_slist_free(ignore
);
2753 bdrv_remove_empty_child(child
);
2757 static TransactionActionDrv bdrv_attach_child_common_drv
= {
2758 .abort
= bdrv_attach_child_common_abort
,
2763 * Common part of attaching bdrv child to bs or to blk or to job
2765 static int bdrv_attach_child_common(BlockDriverState
*child_bs
,
2766 const char *child_name
,
2767 const BdrvChildClass
*child_class
,
2768 BdrvChildRole child_role
,
2769 uint64_t perm
, uint64_t shared_perm
,
2770 void *opaque
, BdrvChild
**child
,
2771 Transaction
*tran
, Error
**errp
)
2773 BdrvChild
*new_child
;
2774 AioContext
*parent_ctx
;
2775 AioContext
*child_ctx
= bdrv_get_aio_context(child_bs
);
2778 assert(*child
== NULL
);
2780 new_child
= g_new(BdrvChild
, 1);
2781 *new_child
= (BdrvChild
) {
2783 .name
= g_strdup(child_name
),
2784 .klass
= child_class
,
2787 .shared_perm
= shared_perm
,
2792 * If the AioContexts don't match, first try to move the subtree of
2793 * child_bs into the AioContext of the new parent. If this doesn't work,
2794 * try moving the parent into the AioContext of child_bs instead.
2796 parent_ctx
= bdrv_child_get_parent_aio_context(new_child
);
2797 if (child_ctx
!= parent_ctx
) {
2798 Error
*local_err
= NULL
;
2799 int ret
= bdrv_try_set_aio_context(child_bs
, parent_ctx
, &local_err
);
2801 if (ret
< 0 && child_class
->can_set_aio_ctx
) {
2802 GSList
*ignore
= g_slist_prepend(NULL
, new_child
);
2803 if (child_class
->can_set_aio_ctx(new_child
, child_ctx
, &ignore
,
2806 error_free(local_err
);
2808 g_slist_free(ignore
);
2809 ignore
= g_slist_prepend(NULL
, new_child
);
2810 child_class
->set_aio_ctx(new_child
, child_ctx
, &ignore
);
2812 g_slist_free(ignore
);
2816 error_propagate(errp
, local_err
);
2817 bdrv_remove_empty_child(new_child
);
2823 bdrv_replace_child_noperm(new_child
, child_bs
);
2827 BdrvAttachChildCommonState
*s
= g_new(BdrvAttachChildCommonState
, 1);
2828 *s
= (BdrvAttachChildCommonState
) {
2830 .old_parent_ctx
= parent_ctx
,
2831 .old_child_ctx
= child_ctx
,
2833 tran_add(tran
, &bdrv_attach_child_common_drv
, s
);
2838 static int bdrv_attach_child_noperm(BlockDriverState
*parent_bs
,
2839 BlockDriverState
*child_bs
,
2840 const char *child_name
,
2841 const BdrvChildClass
*child_class
,
2842 BdrvChildRole child_role
,
2848 uint64_t perm
, shared_perm
;
2850 assert(parent_bs
->drv
);
2852 bdrv_get_cumulative_perm(parent_bs
, &perm
, &shared_perm
);
2853 bdrv_child_perm(parent_bs
, child_bs
, NULL
, child_role
, NULL
,
2854 perm
, shared_perm
, &perm
, &shared_perm
);
2856 ret
= bdrv_attach_child_common(child_bs
, child_name
, child_class
,
2857 child_role
, perm
, shared_perm
, parent_bs
,
2863 QLIST_INSERT_HEAD(&parent_bs
->children
, *child
, next
);
2865 * child is removed in bdrv_attach_child_common_abort(), so don't care to
2866 * abort this change separately.
2872 static void bdrv_detach_child(BdrvChild
*child
)
2874 BlockDriverState
*old_bs
= child
->bs
;
2876 bdrv_replace_child_noperm(child
, NULL
);
2877 bdrv_remove_empty_child(child
);
2881 * Update permissions for old node. We're just taking a parent away, so
2882 * we're loosening restrictions. Errors of permission update are not
2883 * fatal in this case, ignore them.
2885 bdrv_refresh_perms(old_bs
, NULL
);
2888 * When the parent requiring a non-default AioContext is removed, the
2889 * node moves back to the main AioContext
2891 bdrv_try_set_aio_context(old_bs
, qemu_get_aio_context(), NULL
);
2896 * This function steals the reference to child_bs from the caller.
2897 * That reference is later dropped by bdrv_root_unref_child().
2899 * On failure NULL is returned, errp is set and the reference to
2900 * child_bs is also dropped.
2902 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
2903 * (unless @child_bs is already in @ctx).
2905 BdrvChild
*bdrv_root_attach_child(BlockDriverState
*child_bs
,
2906 const char *child_name
,
2907 const BdrvChildClass
*child_class
,
2908 BdrvChildRole child_role
,
2909 uint64_t perm
, uint64_t shared_perm
,
2910 void *opaque
, Error
**errp
)
2913 BdrvChild
*child
= NULL
;
2914 Transaction
*tran
= tran_new();
2916 ret
= bdrv_attach_child_common(child_bs
, child_name
, child_class
,
2917 child_role
, perm
, shared_perm
, opaque
,
2918 &child
, tran
, errp
);
2920 bdrv_unref(child_bs
);
2924 ret
= bdrv_refresh_perms(child_bs
, errp
);
2925 tran_finalize(tran
, ret
);
2927 bdrv_unref(child_bs
);
2932 * This function transfers the reference to child_bs from the caller
2933 * to parent_bs. That reference is later dropped by parent_bs on
2934 * bdrv_close() or if someone calls bdrv_unref_child().
2936 * On failure NULL is returned, errp is set and the reference to
2937 * child_bs is also dropped.
2939 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2940 * hold the AioContext lock for @child_bs, but not for @parent_bs.
2942 BdrvChild
*bdrv_attach_child(BlockDriverState
*parent_bs
,
2943 BlockDriverState
*child_bs
,
2944 const char *child_name
,
2945 const BdrvChildClass
*child_class
,
2946 BdrvChildRole child_role
,
2950 BdrvChild
*child
= NULL
;
2951 Transaction
*tran
= tran_new();
2953 ret
= bdrv_attach_child_noperm(parent_bs
, child_bs
, child_name
, child_class
,
2954 child_role
, &child
, tran
, errp
);
2959 ret
= bdrv_refresh_perms(parent_bs
, errp
);
2965 tran_finalize(tran
, ret
);
2967 bdrv_unref(child_bs
);
2972 /* Callers must ensure that child->frozen is false. */
2973 void bdrv_root_unref_child(BdrvChild
*child
)
2975 BlockDriverState
*child_bs
;
2977 child_bs
= child
->bs
;
2978 bdrv_detach_child(child
);
2979 bdrv_unref(child_bs
);
2982 typedef struct BdrvSetInheritsFrom
{
2983 BlockDriverState
*bs
;
2984 BlockDriverState
*old_inherits_from
;
2985 } BdrvSetInheritsFrom
;
2987 static void bdrv_set_inherits_from_abort(void *opaque
)
2989 BdrvSetInheritsFrom
*s
= opaque
;
2991 s
->bs
->inherits_from
= s
->old_inherits_from
;
2994 static TransactionActionDrv bdrv_set_inherits_from_drv
= {
2995 .abort
= bdrv_set_inherits_from_abort
,
2999 /* @tran is allowed to be NULL. In this case no rollback is possible */
3000 static void bdrv_set_inherits_from(BlockDriverState
*bs
,
3001 BlockDriverState
*new_inherits_from
,
3005 BdrvSetInheritsFrom
*s
= g_new(BdrvSetInheritsFrom
, 1);
3007 *s
= (BdrvSetInheritsFrom
) {
3009 .old_inherits_from
= bs
->inherits_from
,
3012 tran_add(tran
, &bdrv_set_inherits_from_drv
, s
);
3015 bs
->inherits_from
= new_inherits_from
;
3019 * Clear all inherits_from pointers from children and grandchildren of
3020 * @root that point to @root, where necessary.
3021 * @tran is allowed to be NULL. In this case no rollback is possible
3023 static void bdrv_unset_inherits_from(BlockDriverState
*root
, BdrvChild
*child
,
3028 if (child
->bs
->inherits_from
== root
) {
3030 * Remove inherits_from only when the last reference between root and
3031 * child->bs goes away.
3033 QLIST_FOREACH(c
, &root
->children
, next
) {
3034 if (c
!= child
&& c
->bs
== child
->bs
) {
3039 bdrv_set_inherits_from(child
->bs
, NULL
, tran
);
3043 QLIST_FOREACH(c
, &child
->bs
->children
, next
) {
3044 bdrv_unset_inherits_from(root
, c
, tran
);
3048 /* Callers must ensure that child->frozen is false. */
3049 void bdrv_unref_child(BlockDriverState
*parent
, BdrvChild
*child
)
3051 if (child
== NULL
) {
3055 bdrv_unset_inherits_from(parent
, child
, NULL
);
3056 bdrv_root_unref_child(child
);
3060 static void bdrv_parent_cb_change_media(BlockDriverState
*bs
, bool load
)
3063 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
3064 if (c
->klass
->change_media
) {
3065 c
->klass
->change_media(c
, load
);
3070 /* Return true if you can reach parent going through child->inherits_from
3071 * recursively. If parent or child are NULL, return false */
3072 static bool bdrv_inherits_from_recursive(BlockDriverState
*child
,
3073 BlockDriverState
*parent
)
3075 while (child
&& child
!= parent
) {
3076 child
= child
->inherits_from
;
3079 return child
!= NULL
;
3083 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3084 * mostly used for COW backing children (role = COW), but also for
3085 * filtered children (role = FILTERED | PRIMARY).
3087 static BdrvChildRole
bdrv_backing_role(BlockDriverState
*bs
)
3089 if (bs
->drv
&& bs
->drv
->is_filter
) {
3090 return BDRV_CHILD_FILTERED
| BDRV_CHILD_PRIMARY
;
3092 return BDRV_CHILD_COW
;
3097 * Sets the bs->backing link of a BDS. A new reference is created; callers
3098 * which don't need their own reference any more must call bdrv_unref().
3100 static int bdrv_set_backing_noperm(BlockDriverState
*bs
,
3101 BlockDriverState
*backing_hd
,
3102 Transaction
*tran
, Error
**errp
)
3105 bool update_inherits_from
= bdrv_chain_contains(bs
, backing_hd
) &&
3106 bdrv_inherits_from_recursive(backing_hd
, bs
);
3108 if (bdrv_is_backing_chain_frozen(bs
, child_bs(bs
->backing
), errp
)) {
3113 /* Cannot be frozen, we checked that above */
3114 bdrv_unset_inherits_from(bs
, bs
->backing
, tran
);
3115 bdrv_remove_filter_or_cow_child(bs
, tran
);
3122 ret
= bdrv_attach_child_noperm(bs
, backing_hd
, "backing",
3123 &child_of_bds
, bdrv_backing_role(bs
),
3124 &bs
->backing
, tran
, errp
);
3131 * If backing_hd was already part of bs's backing chain, and
3132 * inherits_from pointed recursively to bs then let's update it to
3133 * point directly to bs (else it will become NULL).
3135 if (update_inherits_from
) {
3136 bdrv_set_inherits_from(backing_hd
, bs
, tran
);
3140 bdrv_refresh_limits(bs
, tran
, NULL
);
3145 int bdrv_set_backing_hd(BlockDriverState
*bs
, BlockDriverState
*backing_hd
,
3149 Transaction
*tran
= tran_new();
3151 ret
= bdrv_set_backing_noperm(bs
, backing_hd
, tran
, errp
);
3156 ret
= bdrv_refresh_perms(bs
, errp
);
3158 tran_finalize(tran
, ret
);
3164 * Opens the backing file for a BlockDriverState if not yet open
3166 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3167 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3168 * itself, all options starting with "${bdref_key}." are considered part of the
3171 * TODO Can this be unified with bdrv_open_image()?
3173 int bdrv_open_backing_file(BlockDriverState
*bs
, QDict
*parent_options
,
3174 const char *bdref_key
, Error
**errp
)
3176 char *backing_filename
= NULL
;
3177 char *bdref_key_dot
;
3178 const char *reference
= NULL
;
3180 bool implicit_backing
= false;
3181 BlockDriverState
*backing_hd
;
3183 QDict
*tmp_parent_options
= NULL
;
3184 Error
*local_err
= NULL
;
3186 if (bs
->backing
!= NULL
) {
3190 /* NULL means an empty set of options */
3191 if (parent_options
== NULL
) {
3192 tmp_parent_options
= qdict_new();
3193 parent_options
= tmp_parent_options
;
3196 bs
->open_flags
&= ~BDRV_O_NO_BACKING
;
3198 bdref_key_dot
= g_strdup_printf("%s.", bdref_key
);
3199 qdict_extract_subqdict(parent_options
, &options
, bdref_key_dot
);
3200 g_free(bdref_key_dot
);
3203 * Caution: while qdict_get_try_str() is fine, getting non-string
3204 * types would require more care. When @parent_options come from
3205 * -blockdev or blockdev_add, its members are typed according to
3206 * the QAPI schema, but when they come from -drive, they're all
3209 reference
= qdict_get_try_str(parent_options
, bdref_key
);
3210 if (reference
|| qdict_haskey(options
, "file.filename")) {
3211 /* keep backing_filename NULL */
3212 } else if (bs
->backing_file
[0] == '\0' && qdict_size(options
) == 0) {
3213 qobject_unref(options
);
3216 if (qdict_size(options
) == 0) {
3217 /* If the user specifies options that do not modify the
3218 * backing file's behavior, we might still consider it the
3219 * implicit backing file. But it's easier this way, and
3220 * just specifying some of the backing BDS's options is
3221 * only possible with -drive anyway (otherwise the QAPI
3222 * schema forces the user to specify everything). */
3223 implicit_backing
= !strcmp(bs
->auto_backing_file
, bs
->backing_file
);
3226 backing_filename
= bdrv_get_full_backing_filename(bs
, &local_err
);
3229 error_propagate(errp
, local_err
);
3230 qobject_unref(options
);
3235 if (!bs
->drv
|| !bs
->drv
->supports_backing
) {
3237 error_setg(errp
, "Driver doesn't support backing files");
3238 qobject_unref(options
);
3243 bs
->backing_format
[0] != '\0' && !qdict_haskey(options
, "driver")) {
3244 qdict_put_str(options
, "driver", bs
->backing_format
);
3247 backing_hd
= bdrv_open_inherit(backing_filename
, reference
, options
, 0, bs
,
3248 &child_of_bds
, bdrv_backing_role(bs
), errp
);
3250 bs
->open_flags
|= BDRV_O_NO_BACKING
;
3251 error_prepend(errp
, "Could not open backing file: ");
3256 if (implicit_backing
) {
3257 bdrv_refresh_filename(backing_hd
);
3258 pstrcpy(bs
->auto_backing_file
, sizeof(bs
->auto_backing_file
),
3259 backing_hd
->filename
);
3262 /* Hook up the backing file link; drop our reference, bs owns the
3263 * backing_hd reference now */
3264 ret
= bdrv_set_backing_hd(bs
, backing_hd
, errp
);
3265 bdrv_unref(backing_hd
);
3270 qdict_del(parent_options
, bdref_key
);
3273 g_free(backing_filename
);
3274 qobject_unref(tmp_parent_options
);
3278 static BlockDriverState
*
3279 bdrv_open_child_bs(const char *filename
, QDict
*options
, const char *bdref_key
,
3280 BlockDriverState
*parent
, const BdrvChildClass
*child_class
,
3281 BdrvChildRole child_role
, bool allow_none
, Error
**errp
)
3283 BlockDriverState
*bs
= NULL
;
3284 QDict
*image_options
;
3285 char *bdref_key_dot
;
3286 const char *reference
;
3288 assert(child_class
!= NULL
);
3290 bdref_key_dot
= g_strdup_printf("%s.", bdref_key
);
3291 qdict_extract_subqdict(options
, &image_options
, bdref_key_dot
);
3292 g_free(bdref_key_dot
);
3295 * Caution: while qdict_get_try_str() is fine, getting non-string
3296 * types would require more care. When @options come from
3297 * -blockdev or blockdev_add, its members are typed according to
3298 * the QAPI schema, but when they come from -drive, they're all
3301 reference
= qdict_get_try_str(options
, bdref_key
);
3302 if (!filename
&& !reference
&& !qdict_size(image_options
)) {
3304 error_setg(errp
, "A block device must be specified for \"%s\"",
3307 qobject_unref(image_options
);
3311 bs
= bdrv_open_inherit(filename
, reference
, image_options
, 0,
3312 parent
, child_class
, child_role
, errp
);
3318 qdict_del(options
, bdref_key
);
3323 * Opens a disk image whose options are given as BlockdevRef in another block
3326 * If allow_none is true, no image will be opened if filename is false and no
3327 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3329 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3330 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3331 * itself, all options starting with "${bdref_key}." are considered part of the
3334 * The BlockdevRef will be removed from the options QDict.
3336 BdrvChild
*bdrv_open_child(const char *filename
,
3337 QDict
*options
, const char *bdref_key
,
3338 BlockDriverState
*parent
,
3339 const BdrvChildClass
*child_class
,
3340 BdrvChildRole child_role
,
3341 bool allow_none
, Error
**errp
)
3343 BlockDriverState
*bs
;
3345 bs
= bdrv_open_child_bs(filename
, options
, bdref_key
, parent
, child_class
,
3346 child_role
, allow_none
, errp
);
3351 return bdrv_attach_child(parent
, bs
, bdref_key
, child_class
, child_role
,
3356 * TODO Future callers may need to specify parent/child_class in order for
3357 * option inheritance to work. Existing callers use it for the root node.
3359 BlockDriverState
*bdrv_open_blockdev_ref(BlockdevRef
*ref
, Error
**errp
)
3361 BlockDriverState
*bs
= NULL
;
3362 QObject
*obj
= NULL
;
3363 QDict
*qdict
= NULL
;
3364 const char *reference
= NULL
;
3367 if (ref
->type
== QTYPE_QSTRING
) {
3368 reference
= ref
->u
.reference
;
3370 BlockdevOptions
*options
= &ref
->u
.definition
;
3371 assert(ref
->type
== QTYPE_QDICT
);
3373 v
= qobject_output_visitor_new(&obj
);
3374 visit_type_BlockdevOptions(v
, NULL
, &options
, &error_abort
);
3375 visit_complete(v
, &obj
);
3377 qdict
= qobject_to(QDict
, obj
);
3378 qdict_flatten(qdict
);
3380 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3381 * compatibility with other callers) rather than what we want as the
3382 * real defaults. Apply the defaults here instead. */
3383 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_DIRECT
, "off");
3384 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_NO_FLUSH
, "off");
3385 qdict_set_default_str(qdict
, BDRV_OPT_READ_ONLY
, "off");
3386 qdict_set_default_str(qdict
, BDRV_OPT_AUTO_READ_ONLY
, "off");
3390 bs
= bdrv_open_inherit(NULL
, reference
, qdict
, 0, NULL
, NULL
, 0, errp
);
3397 static BlockDriverState
*bdrv_append_temp_snapshot(BlockDriverState
*bs
,
3399 QDict
*snapshot_options
,
3402 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
3403 char *tmp_filename
= g_malloc0(PATH_MAX
+ 1);
3405 QemuOpts
*opts
= NULL
;
3406 BlockDriverState
*bs_snapshot
= NULL
;
3409 /* if snapshot, we create a temporary backing file and open it
3410 instead of opening 'filename' directly */
3412 /* Get the required size from the image */
3413 total_size
= bdrv_getlength(bs
);
3414 if (total_size
< 0) {
3415 error_setg_errno(errp
, -total_size
, "Could not get image size");
3419 /* Create the temporary image */
3420 ret
= get_tmp_filename(tmp_filename
, PATH_MAX
+ 1);
3422 error_setg_errno(errp
, -ret
, "Could not get temporary filename");
3426 opts
= qemu_opts_create(bdrv_qcow2
.create_opts
, NULL
, 0,
3428 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, total_size
, &error_abort
);
3429 ret
= bdrv_create(&bdrv_qcow2
, tmp_filename
, opts
, errp
);
3430 qemu_opts_del(opts
);
3432 error_prepend(errp
, "Could not create temporary overlay '%s': ",
3437 /* Prepare options QDict for the temporary file */
3438 qdict_put_str(snapshot_options
, "file.driver", "file");
3439 qdict_put_str(snapshot_options
, "file.filename", tmp_filename
);
3440 qdict_put_str(snapshot_options
, "driver", "qcow2");
3442 bs_snapshot
= bdrv_open(NULL
, NULL
, snapshot_options
, flags
, errp
);
3443 snapshot_options
= NULL
;
3448 ret
= bdrv_append(bs_snapshot
, bs
, errp
);
3455 qobject_unref(snapshot_options
);
3456 g_free(tmp_filename
);
3461 * Opens a disk image (raw, qcow2, vmdk, ...)
3463 * options is a QDict of options to pass to the block drivers, or NULL for an
3464 * empty set of options. The reference to the QDict belongs to the block layer
3465 * after the call (even on failure), so if the caller intends to reuse the
3466 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
3468 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3469 * If it is not NULL, the referenced BDS will be reused.
3471 * The reference parameter may be used to specify an existing block device which
3472 * should be opened. If specified, neither options nor a filename may be given,
3473 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
3475 static BlockDriverState
*bdrv_open_inherit(const char *filename
,
3476 const char *reference
,
3477 QDict
*options
, int flags
,
3478 BlockDriverState
*parent
,
3479 const BdrvChildClass
*child_class
,
3480 BdrvChildRole child_role
,
3484 BlockBackend
*file
= NULL
;
3485 BlockDriverState
*bs
;
3486 BlockDriver
*drv
= NULL
;
3488 const char *drvname
;
3489 const char *backing
;
3490 Error
*local_err
= NULL
;
3491 QDict
*snapshot_options
= NULL
;
3492 int snapshot_flags
= 0;
3494 assert(!child_class
|| !flags
);
3495 assert(!child_class
== !parent
);
3498 bool options_non_empty
= options
? qdict_size(options
) : false;
3499 qobject_unref(options
);
3501 if (filename
|| options_non_empty
) {
3502 error_setg(errp
, "Cannot reference an existing block device with "
3503 "additional options or a new filename");
3507 bs
= bdrv_lookup_bs(reference
, reference
, errp
);
3518 /* NULL means an empty set of options */
3519 if (options
== NULL
) {
3520 options
= qdict_new();
3523 /* json: syntax counts as explicit options, as if in the QDict */
3524 parse_json_protocol(options
, &filename
, &local_err
);
3529 bs
->explicit_options
= qdict_clone_shallow(options
);
3532 bool parent_is_format
;
3535 parent_is_format
= parent
->drv
->is_format
;
3538 * parent->drv is not set yet because this node is opened for
3539 * (potential) format probing. That means that @parent is going
3540 * to be a format node.
3542 parent_is_format
= true;
3545 bs
->inherits_from
= parent
;
3546 child_class
->inherit_options(child_role
, parent_is_format
,
3548 parent
->open_flags
, parent
->options
);
3551 ret
= bdrv_fill_options(&options
, filename
, &flags
, &local_err
);
3557 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3558 * Caution: getting a boolean member of @options requires care.
3559 * When @options come from -blockdev or blockdev_add, members are
3560 * typed according to the QAPI schema, but when they come from
3561 * -drive, they're all QString.
3563 if (g_strcmp0(qdict_get_try_str(options
, BDRV_OPT_READ_ONLY
), "on") &&
3564 !qdict_get_try_bool(options
, BDRV_OPT_READ_ONLY
, false)) {
3565 flags
|= (BDRV_O_RDWR
| BDRV_O_ALLOW_RDWR
);
3567 flags
&= ~BDRV_O_RDWR
;
3570 if (flags
& BDRV_O_SNAPSHOT
) {
3571 snapshot_options
= qdict_new();
3572 bdrv_temp_snapshot_options(&snapshot_flags
, snapshot_options
,
3574 /* Let bdrv_backing_options() override "read-only" */
3575 qdict_del(options
, BDRV_OPT_READ_ONLY
);
3576 bdrv_inherited_options(BDRV_CHILD_COW
, true,
3577 &flags
, options
, flags
, options
);
3580 bs
->open_flags
= flags
;
3581 bs
->options
= options
;
3582 options
= qdict_clone_shallow(options
);
3584 /* Find the right image format driver */
3585 /* See cautionary note on accessing @options above */
3586 drvname
= qdict_get_try_str(options
, "driver");
3588 drv
= bdrv_find_format(drvname
);
3590 error_setg(errp
, "Unknown driver: '%s'", drvname
);
3595 assert(drvname
|| !(flags
& BDRV_O_PROTOCOL
));
3597 /* See cautionary note on accessing @options above */
3598 backing
= qdict_get_try_str(options
, "backing");
3599 if (qobject_to(QNull
, qdict_get(options
, "backing")) != NULL
||
3600 (backing
&& *backing
== '\0'))
3603 warn_report("Use of \"backing\": \"\" is deprecated; "
3604 "use \"backing\": null instead");
3606 flags
|= BDRV_O_NO_BACKING
;
3607 qdict_del(bs
->explicit_options
, "backing");
3608 qdict_del(bs
->options
, "backing");
3609 qdict_del(options
, "backing");
3612 /* Open image file without format layer. This BlockBackend is only used for
3613 * probing, the block drivers will do their own bdrv_open_child() for the
3614 * same BDS, which is why we put the node name back into options. */
3615 if ((flags
& BDRV_O_PROTOCOL
) == 0) {
3616 BlockDriverState
*file_bs
;
3618 file_bs
= bdrv_open_child_bs(filename
, options
, "file", bs
,
3619 &child_of_bds
, BDRV_CHILD_IMAGE
,
3624 if (file_bs
!= NULL
) {
3625 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3626 * looking at the header to guess the image format. This works even
3627 * in cases where a guest would not see a consistent state. */
3628 file
= blk_new(bdrv_get_aio_context(file_bs
), 0, BLK_PERM_ALL
);
3629 blk_insert_bs(file
, file_bs
, &local_err
);
3630 bdrv_unref(file_bs
);
3635 qdict_put_str(options
, "file", bdrv_get_node_name(file_bs
));
3639 /* Image format probing */
3642 ret
= find_image_format(file
, filename
, &drv
, &local_err
);
3647 * This option update would logically belong in bdrv_fill_options(),
3648 * but we first need to open bs->file for the probing to work, while
3649 * opening bs->file already requires the (mostly) final set of options
3650 * so that cache mode etc. can be inherited.
3652 * Adding the driver later is somewhat ugly, but it's not an option
3653 * that would ever be inherited, so it's correct. We just need to make
3654 * sure to update both bs->options (which has the full effective
3655 * options for bs) and options (which has file.* already removed).
3657 qdict_put_str(bs
->options
, "driver", drv
->format_name
);
3658 qdict_put_str(options
, "driver", drv
->format_name
);
3660 error_setg(errp
, "Must specify either driver or file");
3664 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3665 assert(!!(flags
& BDRV_O_PROTOCOL
) == !!drv
->bdrv_file_open
);
3666 /* file must be NULL if a protocol BDS is about to be created
3667 * (the inverse results in an error message from bdrv_open_common()) */
3668 assert(!(flags
& BDRV_O_PROTOCOL
) || !file
);
3670 /* Open the image */
3671 ret
= bdrv_open_common(bs
, file
, options
, &local_err
);
3681 /* If there is a backing file, use it */
3682 if ((flags
& BDRV_O_NO_BACKING
) == 0) {
3683 ret
= bdrv_open_backing_file(bs
, options
, "backing", &local_err
);
3685 goto close_and_fail
;
3689 /* Remove all children options and references
3690 * from bs->options and bs->explicit_options */
3691 QLIST_FOREACH(child
, &bs
->children
, next
) {
3692 char *child_key_dot
;
3693 child_key_dot
= g_strdup_printf("%s.", child
->name
);
3694 qdict_extract_subqdict(bs
->explicit_options
, NULL
, child_key_dot
);
3695 qdict_extract_subqdict(bs
->options
, NULL
, child_key_dot
);
3696 qdict_del(bs
->explicit_options
, child
->name
);
3697 qdict_del(bs
->options
, child
->name
);
3698 g_free(child_key_dot
);
3701 /* Check if any unknown options were used */
3702 if (qdict_size(options
) != 0) {
3703 const QDictEntry
*entry
= qdict_first(options
);
3704 if (flags
& BDRV_O_PROTOCOL
) {
3705 error_setg(errp
, "Block protocol '%s' doesn't support the option "
3706 "'%s'", drv
->format_name
, entry
->key
);
3709 "Block format '%s' does not support the option '%s'",
3710 drv
->format_name
, entry
->key
);
3713 goto close_and_fail
;
3716 bdrv_parent_cb_change_media(bs
, true);
3718 qobject_unref(options
);
3721 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3722 * temporary snapshot afterwards. */
3723 if (snapshot_flags
) {
3724 BlockDriverState
*snapshot_bs
;
3725 snapshot_bs
= bdrv_append_temp_snapshot(bs
, snapshot_flags
,
3726 snapshot_options
, &local_err
);
3727 snapshot_options
= NULL
;
3729 goto close_and_fail
;
3731 /* We are not going to return bs but the overlay on top of it
3732 * (snapshot_bs); thus, we have to drop the strong reference to bs
3733 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3734 * though, because the overlay still has a reference to it. */
3743 qobject_unref(snapshot_options
);
3744 qobject_unref(bs
->explicit_options
);
3745 qobject_unref(bs
->options
);
3746 qobject_unref(options
);
3748 bs
->explicit_options
= NULL
;
3750 error_propagate(errp
, local_err
);
3755 qobject_unref(snapshot_options
);
3756 qobject_unref(options
);
3757 error_propagate(errp
, local_err
);
3761 BlockDriverState
*bdrv_open(const char *filename
, const char *reference
,
3762 QDict
*options
, int flags
, Error
**errp
)
3764 return bdrv_open_inherit(filename
, reference
, options
, flags
, NULL
,
3768 /* Return true if the NULL-terminated @list contains @str */
3769 static bool is_str_in_list(const char *str
, const char *const *list
)
3773 for (i
= 0; list
[i
] != NULL
; i
++) {
3774 if (!strcmp(str
, list
[i
])) {
3783 * Check that every option set in @bs->options is also set in
3786 * Options listed in the common_options list and in
3787 * @bs->drv->mutable_opts are skipped.
3789 * Return 0 on success, otherwise return -EINVAL and set @errp.
3791 static int bdrv_reset_options_allowed(BlockDriverState
*bs
,
3792 const QDict
*new_opts
, Error
**errp
)
3794 const QDictEntry
*e
;
3795 /* These options are common to all block drivers and are handled
3796 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3797 const char *const common_options
[] = {
3798 "node-name", "discard", "cache.direct", "cache.no-flush",
3799 "read-only", "auto-read-only", "detect-zeroes", NULL
3802 for (e
= qdict_first(bs
->options
); e
; e
= qdict_next(bs
->options
, e
)) {
3803 if (!qdict_haskey(new_opts
, e
->key
) &&
3804 !is_str_in_list(e
->key
, common_options
) &&
3805 !is_str_in_list(e
->key
, bs
->drv
->mutable_opts
)) {
3806 error_setg(errp
, "Option '%s' cannot be reset "
3807 "to its default value", e
->key
);
3816 * Returns true if @child can be reached recursively from @bs
3818 static bool bdrv_recurse_has_child(BlockDriverState
*bs
,
3819 BlockDriverState
*child
)
3827 QLIST_FOREACH(c
, &bs
->children
, next
) {
3828 if (bdrv_recurse_has_child(c
->bs
, child
)) {
3837 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3838 * reopen of multiple devices.
3840 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
3841 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3842 * be created and initialized. This newly created BlockReopenQueue should be
3843 * passed back in for subsequent calls that are intended to be of the same
3846 * bs is the BlockDriverState to add to the reopen queue.
3848 * options contains the changed options for the associated bs
3849 * (the BlockReopenQueue takes ownership)
3851 * flags contains the open flags for the associated bs
3853 * returns a pointer to bs_queue, which is either the newly allocated
3854 * bs_queue, or the existing bs_queue being used.
3856 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
3858 static BlockReopenQueue
*bdrv_reopen_queue_child(BlockReopenQueue
*bs_queue
,
3859 BlockDriverState
*bs
,
3861 const BdrvChildClass
*klass
,
3863 bool parent_is_format
,
3864 QDict
*parent_options
,
3870 BlockReopenQueueEntry
*bs_entry
;
3872 QDict
*old_options
, *explicit_options
, *options_copy
;
3876 /* Make sure that the caller remembered to use a drained section. This is
3877 * important to avoid graph changes between the recursive queuing here and
3878 * bdrv_reopen_multiple(). */
3879 assert(bs
->quiesce_counter
> 0);
3881 if (bs_queue
== NULL
) {
3882 bs_queue
= g_new0(BlockReopenQueue
, 1);
3883 QTAILQ_INIT(bs_queue
);
3887 options
= qdict_new();
3890 /* Check if this BlockDriverState is already in the queue */
3891 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
3892 if (bs
== bs_entry
->state
.bs
) {
3898 * Precedence of options:
3899 * 1. Explicitly passed in options (highest)
3900 * 2. Retained from explicitly set options of bs
3901 * 3. Inherited from parent node
3902 * 4. Retained from effective options of bs
3905 /* Old explicitly set values (don't overwrite by inherited value) */
3906 if (bs_entry
|| keep_old_opts
) {
3907 old_options
= qdict_clone_shallow(bs_entry
?
3908 bs_entry
->state
.explicit_options
:
3909 bs
->explicit_options
);
3910 bdrv_join_options(bs
, options
, old_options
);
3911 qobject_unref(old_options
);
3914 explicit_options
= qdict_clone_shallow(options
);
3916 /* Inherit from parent node */
3917 if (parent_options
) {
3919 klass
->inherit_options(role
, parent_is_format
, &flags
, options
,
3920 parent_flags
, parent_options
);
3922 flags
= bdrv_get_flags(bs
);
3925 if (keep_old_opts
) {
3926 /* Old values are used for options that aren't set yet */
3927 old_options
= qdict_clone_shallow(bs
->options
);
3928 bdrv_join_options(bs
, options
, old_options
);
3929 qobject_unref(old_options
);
3932 /* We have the final set of options so let's update the flags */
3933 options_copy
= qdict_clone_shallow(options
);
3934 opts
= qemu_opts_create(&bdrv_runtime_opts
, NULL
, 0, &error_abort
);
3935 qemu_opts_absorb_qdict(opts
, options_copy
, NULL
);
3936 update_flags_from_options(&flags
, opts
);
3937 qemu_opts_del(opts
);
3938 qobject_unref(options_copy
);
3940 /* bdrv_open_inherit() sets and clears some additional flags internally */
3941 flags
&= ~BDRV_O_PROTOCOL
;
3942 if (flags
& BDRV_O_RDWR
) {
3943 flags
|= BDRV_O_ALLOW_RDWR
;
3947 bs_entry
= g_new0(BlockReopenQueueEntry
, 1);
3948 QTAILQ_INSERT_TAIL(bs_queue
, bs_entry
, entry
);
3950 qobject_unref(bs_entry
->state
.options
);
3951 qobject_unref(bs_entry
->state
.explicit_options
);
3954 bs_entry
->state
.bs
= bs
;
3955 bs_entry
->state
.options
= options
;
3956 bs_entry
->state
.explicit_options
= explicit_options
;
3957 bs_entry
->state
.flags
= flags
;
3960 * If keep_old_opts is false then it means that unspecified
3961 * options must be reset to their original value. We don't allow
3962 * resetting 'backing' but we need to know if the option is
3963 * missing in order to decide if we have to return an error.
3965 if (!keep_old_opts
) {
3966 bs_entry
->state
.backing_missing
=
3967 !qdict_haskey(options
, "backing") &&
3968 !qdict_haskey(options
, "backing.driver");
3971 QLIST_FOREACH(child
, &bs
->children
, next
) {
3972 QDict
*new_child_options
= NULL
;
3973 bool child_keep_old
= keep_old_opts
;
3975 /* reopen can only change the options of block devices that were
3976 * implicitly created and inherited options. For other (referenced)
3977 * block devices, a syntax like "backing.foo" results in an error. */
3978 if (child
->bs
->inherits_from
!= bs
) {
3982 /* Check if the options contain a child reference */
3983 if (qdict_haskey(options
, child
->name
)) {
3984 const char *childref
= qdict_get_try_str(options
, child
->name
);
3986 * The current child must not be reopened if the child
3987 * reference is null or points to a different node.
3989 if (g_strcmp0(childref
, child
->bs
->node_name
)) {
3993 * If the child reference points to the current child then
3994 * reopen it with its existing set of options (note that
3995 * it can still inherit new options from the parent).
3997 child_keep_old
= true;
3999 /* Extract child options ("child-name.*") */
4000 char *child_key_dot
= g_strdup_printf("%s.", child
->name
);
4001 qdict_extract_subqdict(explicit_options
, NULL
, child_key_dot
);
4002 qdict_extract_subqdict(options
, &new_child_options
, child_key_dot
);
4003 g_free(child_key_dot
);
4006 bdrv_reopen_queue_child(bs_queue
, child
->bs
, new_child_options
,
4007 child
->klass
, child
->role
, bs
->drv
->is_format
,
4008 options
, flags
, child_keep_old
);
4014 BlockReopenQueue
*bdrv_reopen_queue(BlockReopenQueue
*bs_queue
,
4015 BlockDriverState
*bs
,
4016 QDict
*options
, bool keep_old_opts
)
4018 return bdrv_reopen_queue_child(bs_queue
, bs
, options
, NULL
, 0, false,
4019 NULL
, 0, keep_old_opts
);
4023 * Reopen multiple BlockDriverStates atomically & transactionally.
4025 * The queue passed in (bs_queue) must have been built up previous
4026 * via bdrv_reopen_queue().
4028 * Reopens all BDS specified in the queue, with the appropriate
4029 * flags. All devices are prepared for reopen, and failure of any
4030 * device will cause all device changes to be abandoned, and intermediate
4033 * If all devices prepare successfully, then the changes are committed
4036 * All affected nodes must be drained between bdrv_reopen_queue() and
4037 * bdrv_reopen_multiple().
4039 int bdrv_reopen_multiple(BlockReopenQueue
*bs_queue
, Error
**errp
)
4042 BlockReopenQueueEntry
*bs_entry
, *next
;
4043 Transaction
*tran
= tran_new();
4044 g_autoptr(GHashTable
) found
= NULL
;
4045 g_autoptr(GSList
) refresh_list
= NULL
;
4047 assert(bs_queue
!= NULL
);
4049 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
4050 ret
= bdrv_flush(bs_entry
->state
.bs
);
4052 error_setg_errno(errp
, -ret
, "Error flushing drive");
4057 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
4058 assert(bs_entry
->state
.bs
->quiesce_counter
> 0);
4059 ret
= bdrv_reopen_prepare(&bs_entry
->state
, bs_queue
, tran
, errp
);
4063 bs_entry
->prepared
= true;
4066 found
= g_hash_table_new(NULL
, NULL
);
4067 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
4068 BDRVReopenState
*state
= &bs_entry
->state
;
4070 refresh_list
= bdrv_topological_dfs(refresh_list
, found
, state
->bs
);
4071 if (state
->old_backing_bs
) {
4072 refresh_list
= bdrv_topological_dfs(refresh_list
, found
,
4073 state
->old_backing_bs
);
4078 * Note that file-posix driver rely on permission update done during reopen
4079 * (even if no permission changed), because it wants "new" permissions for
4080 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4081 * in raw_reopen_prepare() which is called with "old" permissions.
4083 ret
= bdrv_list_refresh_perms(refresh_list
, bs_queue
, tran
, errp
);
4089 * If we reach this point, we have success and just need to apply the
4092 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4093 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4094 * children are usually goes after parents in reopen-queue, so go from last
4097 QTAILQ_FOREACH_REVERSE(bs_entry
, bs_queue
, entry
) {
4098 bdrv_reopen_commit(&bs_entry
->state
);
4103 QTAILQ_FOREACH_REVERSE(bs_entry
, bs_queue
, entry
) {
4104 BlockDriverState
*bs
= bs_entry
->state
.bs
;
4106 if (bs
->drv
->bdrv_reopen_commit_post
) {
4107 bs
->drv
->bdrv_reopen_commit_post(&bs_entry
->state
);
4116 QTAILQ_FOREACH_SAFE(bs_entry
, bs_queue
, entry
, next
) {
4117 if (bs_entry
->prepared
) {
4118 bdrv_reopen_abort(&bs_entry
->state
);
4120 qobject_unref(bs_entry
->state
.explicit_options
);
4121 qobject_unref(bs_entry
->state
.options
);
4125 QTAILQ_FOREACH_SAFE(bs_entry
, bs_queue
, entry
, next
) {
4133 int bdrv_reopen_set_read_only(BlockDriverState
*bs
, bool read_only
,
4137 BlockReopenQueue
*queue
;
4138 QDict
*opts
= qdict_new();
4140 qdict_put_bool(opts
, BDRV_OPT_READ_ONLY
, read_only
);
4142 bdrv_subtree_drained_begin(bs
);
4143 queue
= bdrv_reopen_queue(NULL
, bs
, opts
, true);
4144 ret
= bdrv_reopen_multiple(queue
, errp
);
4145 bdrv_subtree_drained_end(bs
);
4150 static bool bdrv_reopen_can_attach(BlockDriverState
*parent
,
4152 BlockDriverState
*new_child
,
4155 AioContext
*parent_ctx
= bdrv_get_aio_context(parent
);
4156 AioContext
*child_ctx
= bdrv_get_aio_context(new_child
);
4160 ignore
= g_slist_prepend(NULL
, child
);
4161 ret
= bdrv_can_set_aio_context(new_child
, parent_ctx
, &ignore
, NULL
);
4162 g_slist_free(ignore
);
4167 ignore
= g_slist_prepend(NULL
, child
);
4168 ret
= bdrv_can_set_aio_context(parent
, child_ctx
, &ignore
, errp
);
4169 g_slist_free(ignore
);
4174 * Take a BDRVReopenState and check if the value of 'backing' in the
4175 * reopen_state->options QDict is valid or not.
4177 * If 'backing' is missing from the QDict then return 0.
4179 * If 'backing' contains the node name of the backing file of
4180 * reopen_state->bs then return 0.
4182 * If 'backing' contains a different node name (or is null) then check
4183 * whether the current backing file can be replaced with the new one.
4184 * If that's the case then reopen_state->replace_backing_bs is set to
4185 * true and reopen_state->new_backing_bs contains a pointer to the new
4186 * backing BlockDriverState (or NULL).
4188 * Return 0 on success, otherwise return < 0 and set @errp.
4190 static int bdrv_reopen_parse_backing(BDRVReopenState
*reopen_state
,
4191 Transaction
*set_backings_tran
,
4194 BlockDriverState
*bs
= reopen_state
->bs
;
4195 BlockDriverState
*overlay_bs
, *below_bs
, *new_backing_bs
;
4199 value
= qdict_get(reopen_state
->options
, "backing");
4200 if (value
== NULL
) {
4204 switch (qobject_type(value
)) {
4206 new_backing_bs
= NULL
;
4209 str
= qstring_get_str(qobject_to(QString
, value
));
4210 new_backing_bs
= bdrv_lookup_bs(NULL
, str
, errp
);
4211 if (new_backing_bs
== NULL
) {
4213 } else if (bdrv_recurse_has_child(new_backing_bs
, bs
)) {
4214 error_setg(errp
, "Making '%s' a backing file of '%s' "
4215 "would create a cycle", str
, bs
->node_name
);
4220 /* 'backing' does not allow any other data type */
4221 g_assert_not_reached();
4225 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
4226 * bdrv_reopen_commit() won't fail.
4228 if (new_backing_bs
) {
4229 if (!bdrv_reopen_can_attach(bs
, bs
->backing
, new_backing_bs
, errp
)) {
4235 * Ensure that @bs can really handle backing files, because we are
4236 * about to give it one (or swap the existing one)
4238 if (bs
->drv
->is_filter
) {
4239 /* Filters always have a file or a backing child */
4241 error_setg(errp
, "'%s' is a %s filter node that does not support a "
4242 "backing child", bs
->node_name
, bs
->drv
->format_name
);
4245 } else if (!bs
->drv
->supports_backing
) {
4246 error_setg(errp
, "Driver '%s' of node '%s' does not support backing "
4247 "files", bs
->drv
->format_name
, bs
->node_name
);
4252 * Find the "actual" backing file by skipping all links that point
4253 * to an implicit node, if any (e.g. a commit filter node).
4254 * We cannot use any of the bdrv_skip_*() functions here because
4255 * those return the first explicit node, while we are looking for
4259 for (below_bs
= bdrv_filter_or_cow_bs(overlay_bs
);
4260 below_bs
&& below_bs
->implicit
;
4261 below_bs
= bdrv_filter_or_cow_bs(overlay_bs
))
4263 overlay_bs
= below_bs
;
4266 /* If we want to replace the backing file we need some extra checks */
4267 if (new_backing_bs
!= bdrv_filter_or_cow_bs(overlay_bs
)) {
4270 /* Check for implicit nodes between bs and its backing file */
4271 if (bs
!= overlay_bs
) {
4272 error_setg(errp
, "Cannot change backing link if '%s' has "
4273 "an implicit backing file", bs
->node_name
);
4277 * Check if the backing link that we want to replace is frozen.
4279 * bdrv_filter_or_cow_child(overlay_bs) == overlay_bs->backing,
4280 * because we know that overlay_bs == bs, and that @bs
4281 * either is a filter that uses ->backing or a COW format BDS
4282 * with bs->drv->supports_backing == true.
4284 if (bdrv_is_backing_chain_frozen(overlay_bs
,
4285 child_bs(overlay_bs
->backing
), errp
))
4289 reopen_state
->replace_backing_bs
= true;
4290 reopen_state
->old_backing_bs
= bs
->backing
? bs
->backing
->bs
: NULL
;
4291 ret
= bdrv_set_backing_noperm(bs
, new_backing_bs
, set_backings_tran
,
4302 * Prepares a BlockDriverState for reopen. All changes are staged in the
4303 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4304 * the block driver layer .bdrv_reopen_prepare()
4306 * bs is the BlockDriverState to reopen
4307 * flags are the new open flags
4308 * queue is the reopen queue
4310 * Returns 0 on success, non-zero on error. On error errp will be set
4313 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4314 * It is the responsibility of the caller to then call the abort() or
4315 * commit() for any other BDS that have been left in a prepare() state
4318 static int bdrv_reopen_prepare(BDRVReopenState
*reopen_state
,
4319 BlockReopenQueue
*queue
,
4320 Transaction
*set_backings_tran
, Error
**errp
)
4324 Error
*local_err
= NULL
;
4327 QDict
*orig_reopen_opts
;
4328 char *discard
= NULL
;
4330 bool drv_prepared
= false;
4332 assert(reopen_state
!= NULL
);
4333 assert(reopen_state
->bs
->drv
!= NULL
);
4334 drv
= reopen_state
->bs
->drv
;
4336 /* This function and each driver's bdrv_reopen_prepare() remove
4337 * entries from reopen_state->options as they are processed, so
4338 * we need to make a copy of the original QDict. */
4339 orig_reopen_opts
= qdict_clone_shallow(reopen_state
->options
);
4341 /* Process generic block layer options */
4342 opts
= qemu_opts_create(&bdrv_runtime_opts
, NULL
, 0, &error_abort
);
4343 if (!qemu_opts_absorb_qdict(opts
, reopen_state
->options
, errp
)) {
4348 /* This was already called in bdrv_reopen_queue_child() so the flags
4349 * are up-to-date. This time we simply want to remove the options from
4350 * QemuOpts in order to indicate that they have been processed. */
4351 old_flags
= reopen_state
->flags
;
4352 update_flags_from_options(&reopen_state
->flags
, opts
);
4353 assert(old_flags
== reopen_state
->flags
);
4355 discard
= qemu_opt_get_del(opts
, BDRV_OPT_DISCARD
);
4356 if (discard
!= NULL
) {
4357 if (bdrv_parse_discard_flags(discard
, &reopen_state
->flags
) != 0) {
4358 error_setg(errp
, "Invalid discard option");
4364 reopen_state
->detect_zeroes
=
4365 bdrv_parse_detect_zeroes(opts
, reopen_state
->flags
, &local_err
);
4367 error_propagate(errp
, local_err
);
4372 /* All other options (including node-name and driver) must be unchanged.
4373 * Put them back into the QDict, so that they are checked at the end
4374 * of this function. */
4375 qemu_opts_to_qdict(opts
, reopen_state
->options
);
4377 /* If we are to stay read-only, do not allow permission change
4378 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4379 * not set, or if the BDS still has copy_on_read enabled */
4380 read_only
= !(reopen_state
->flags
& BDRV_O_RDWR
);
4381 ret
= bdrv_can_set_read_only(reopen_state
->bs
, read_only
, true, &local_err
);
4383 error_propagate(errp
, local_err
);
4387 if (drv
->bdrv_reopen_prepare
) {
4389 * If a driver-specific option is missing, it means that we
4390 * should reset it to its default value.
4391 * But not all options allow that, so we need to check it first.
4393 ret
= bdrv_reset_options_allowed(reopen_state
->bs
,
4394 reopen_state
->options
, errp
);
4399 ret
= drv
->bdrv_reopen_prepare(reopen_state
, queue
, &local_err
);
4401 if (local_err
!= NULL
) {
4402 error_propagate(errp
, local_err
);
4404 bdrv_refresh_filename(reopen_state
->bs
);
4405 error_setg(errp
, "failed while preparing to reopen image '%s'",
4406 reopen_state
->bs
->filename
);
4411 /* It is currently mandatory to have a bdrv_reopen_prepare()
4412 * handler for each supported drv. */
4413 error_setg(errp
, "Block format '%s' used by node '%s' "
4414 "does not support reopening files", drv
->format_name
,
4415 bdrv_get_device_or_node_name(reopen_state
->bs
));
4420 drv_prepared
= true;
4423 * We must provide the 'backing' option if the BDS has a backing
4424 * file or if the image file has a backing file name as part of
4425 * its metadata. Otherwise the 'backing' option can be omitted.
4427 if (drv
->supports_backing
&& reopen_state
->backing_missing
&&
4428 (reopen_state
->bs
->backing
|| reopen_state
->bs
->backing_file
[0])) {
4429 error_setg(errp
, "backing is missing for '%s'",
4430 reopen_state
->bs
->node_name
);
4436 * Allow changing the 'backing' option. The new value can be
4437 * either a reference to an existing node (using its node name)
4438 * or NULL to simply detach the current backing file.
4440 ret
= bdrv_reopen_parse_backing(reopen_state
, set_backings_tran
, errp
);
4444 qdict_del(reopen_state
->options
, "backing");
4446 /* Options that are not handled are only okay if they are unchanged
4447 * compared to the old state. It is expected that some options are only
4448 * used for the initial open, but not reopen (e.g. filename) */
4449 if (qdict_size(reopen_state
->options
)) {
4450 const QDictEntry
*entry
= qdict_first(reopen_state
->options
);
4453 QObject
*new = entry
->value
;
4454 QObject
*old
= qdict_get(reopen_state
->bs
->options
, entry
->key
);
4456 /* Allow child references (child_name=node_name) as long as they
4457 * point to the current child (i.e. everything stays the same). */
4458 if (qobject_type(new) == QTYPE_QSTRING
) {
4460 QLIST_FOREACH(child
, &reopen_state
->bs
->children
, next
) {
4461 if (!strcmp(child
->name
, entry
->key
)) {
4467 if (!strcmp(child
->bs
->node_name
,
4468 qstring_get_str(qobject_to(QString
, new)))) {
4469 continue; /* Found child with this name, skip option */
4475 * TODO: When using -drive to specify blockdev options, all values
4476 * will be strings; however, when using -blockdev, blockdev-add or
4477 * filenames using the json:{} pseudo-protocol, they will be
4479 * In contrast, reopening options are (currently) always strings
4480 * (because you can only specify them through qemu-io; all other
4481 * callers do not specify any options).
4482 * Therefore, when using anything other than -drive to create a BDS,
4483 * this cannot detect non-string options as unchanged, because
4484 * qobject_is_equal() always returns false for objects of different
4485 * type. In the future, this should be remedied by correctly typing
4486 * all options. For now, this is not too big of an issue because
4487 * the user can simply omit options which cannot be changed anyway,
4488 * so they will stay unchanged.
4490 if (!qobject_is_equal(new, old
)) {
4491 error_setg(errp
, "Cannot change the option '%s'", entry
->key
);
4495 } while ((entry
= qdict_next(reopen_state
->options
, entry
)));
4500 /* Restore the original reopen_state->options QDict */
4501 qobject_unref(reopen_state
->options
);
4502 reopen_state
->options
= qobject_ref(orig_reopen_opts
);
4505 if (ret
< 0 && drv_prepared
) {
4506 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4507 * call drv->bdrv_reopen_abort() before signaling an error
4508 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4509 * when the respective bdrv_reopen_prepare() has failed) */
4510 if (drv
->bdrv_reopen_abort
) {
4511 drv
->bdrv_reopen_abort(reopen_state
);
4514 qemu_opts_del(opts
);
4515 qobject_unref(orig_reopen_opts
);
4521 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4522 * makes them final by swapping the staging BlockDriverState contents into
4523 * the active BlockDriverState contents.
4525 static void bdrv_reopen_commit(BDRVReopenState
*reopen_state
)
4528 BlockDriverState
*bs
;
4531 assert(reopen_state
!= NULL
);
4532 bs
= reopen_state
->bs
;
4534 assert(drv
!= NULL
);
4536 /* If there are any driver level actions to take */
4537 if (drv
->bdrv_reopen_commit
) {
4538 drv
->bdrv_reopen_commit(reopen_state
);
4541 /* set BDS specific flags now */
4542 qobject_unref(bs
->explicit_options
);
4543 qobject_unref(bs
->options
);
4545 bs
->explicit_options
= reopen_state
->explicit_options
;
4546 bs
->options
= reopen_state
->options
;
4547 bs
->open_flags
= reopen_state
->flags
;
4548 bs
->read_only
= !(reopen_state
->flags
& BDRV_O_RDWR
);
4549 bs
->detect_zeroes
= reopen_state
->detect_zeroes
;
4551 if (reopen_state
->replace_backing_bs
) {
4552 qdict_del(bs
->explicit_options
, "backing");
4553 qdict_del(bs
->options
, "backing");
4556 /* Remove child references from bs->options and bs->explicit_options.
4557 * Child options were already removed in bdrv_reopen_queue_child() */
4558 QLIST_FOREACH(child
, &bs
->children
, next
) {
4559 qdict_del(bs
->explicit_options
, child
->name
);
4560 qdict_del(bs
->options
, child
->name
);
4562 bdrv_refresh_limits(bs
, NULL
, NULL
);
4566 * Abort the reopen, and delete and free the staged changes in
4569 static void bdrv_reopen_abort(BDRVReopenState
*reopen_state
)
4573 assert(reopen_state
!= NULL
);
4574 drv
= reopen_state
->bs
->drv
;
4575 assert(drv
!= NULL
);
4577 if (drv
->bdrv_reopen_abort
) {
4578 drv
->bdrv_reopen_abort(reopen_state
);
4583 static void bdrv_close(BlockDriverState
*bs
)
4585 BdrvAioNotifier
*ban
, *ban_next
;
4586 BdrvChild
*child
, *next
;
4588 assert(!bs
->refcnt
);
4590 bdrv_drained_begin(bs
); /* complete I/O */
4592 bdrv_drain(bs
); /* in case flush left pending I/O */
4595 if (bs
->drv
->bdrv_close
) {
4596 /* Must unfreeze all children, so bdrv_unref_child() works */
4597 bs
->drv
->bdrv_close(bs
);
4602 QLIST_FOREACH_SAFE(child
, &bs
->children
, next
, next
) {
4603 bdrv_unref_child(bs
, child
);
4610 qatomic_set(&bs
->copy_on_read
, 0);
4611 bs
->backing_file
[0] = '\0';
4612 bs
->backing_format
[0] = '\0';
4613 bs
->total_sectors
= 0;
4614 bs
->encrypted
= false;
4616 qobject_unref(bs
->options
);
4617 qobject_unref(bs
->explicit_options
);
4619 bs
->explicit_options
= NULL
;
4620 qobject_unref(bs
->full_open_options
);
4621 bs
->full_open_options
= NULL
;
4623 bdrv_release_named_dirty_bitmaps(bs
);
4624 assert(QLIST_EMPTY(&bs
->dirty_bitmaps
));
4626 QLIST_FOREACH_SAFE(ban
, &bs
->aio_notifiers
, list
, ban_next
) {
4629 QLIST_INIT(&bs
->aio_notifiers
);
4630 bdrv_drained_end(bs
);
4633 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4634 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4637 if (bs
->quiesce_counter
) {
4638 bdrv_drain_all_end_quiesce(bs
);
4642 void bdrv_close_all(void)
4644 assert(job_next(NULL
) == NULL
);
4646 /* Drop references from requests still in flight, such as canceled block
4647 * jobs whose AIO context has not been polled yet */
4650 blk_remove_all_bs();
4651 blockdev_close_all_bdrv_states();
4653 assert(QTAILQ_EMPTY(&all_bdrv_states
));
4656 static bool should_update_child(BdrvChild
*c
, BlockDriverState
*to
)
4662 if (c
->klass
->stay_at_node
) {
4666 /* If the child @c belongs to the BDS @to, replacing the current
4667 * c->bs by @to would mean to create a loop.
4669 * Such a case occurs when appending a BDS to a backing chain.
4670 * For instance, imagine the following chain:
4672 * guest device -> node A -> further backing chain...
4674 * Now we create a new BDS B which we want to put on top of this
4675 * chain, so we first attach A as its backing node:
4680 * guest device -> node A -> further backing chain...
4682 * Finally we want to replace A by B. When doing that, we want to
4683 * replace all pointers to A by pointers to B -- except for the
4684 * pointer from B because (1) that would create a loop, and (2)
4685 * that pointer should simply stay intact:
4687 * guest device -> node B
4690 * node A -> further backing chain...
4692 * In general, when replacing a node A (c->bs) by a node B (@to),
4693 * if A is a child of B, that means we cannot replace A by B there
4694 * because that would create a loop. Silently detaching A from B
4695 * is also not really an option. So overall just leaving A in
4696 * place there is the most sensible choice.
4698 * We would also create a loop in any cases where @c is only
4699 * indirectly referenced by @to. Prevent this by returning false
4700 * if @c is found (by breadth-first search) anywhere in the whole
4705 found
= g_hash_table_new(NULL
, NULL
);
4706 g_hash_table_add(found
, to
);
4707 queue
= g_queue_new();
4708 g_queue_push_tail(queue
, to
);
4710 while (!g_queue_is_empty(queue
)) {
4711 BlockDriverState
*v
= g_queue_pop_head(queue
);
4714 QLIST_FOREACH(c2
, &v
->children
, next
) {
4720 if (g_hash_table_contains(found
, c2
->bs
)) {
4724 g_queue_push_tail(queue
, c2
->bs
);
4725 g_hash_table_add(found
, c2
->bs
);
4729 g_queue_free(queue
);
4730 g_hash_table_destroy(found
);
4735 typedef struct BdrvRemoveFilterOrCowChild
{
4738 } BdrvRemoveFilterOrCowChild
;
4740 static void bdrv_remove_filter_or_cow_child_abort(void *opaque
)
4742 BdrvRemoveFilterOrCowChild
*s
= opaque
;
4743 BlockDriverState
*parent_bs
= s
->child
->opaque
;
4745 QLIST_INSERT_HEAD(&parent_bs
->children
, s
->child
, next
);
4746 if (s
->is_backing
) {
4747 parent_bs
->backing
= s
->child
;
4749 parent_bs
->file
= s
->child
;
4753 * We don't have to restore child->bs here to undo bdrv_replace_child()
4754 * because that function is transactionable and it registered own completion
4755 * entries in @tran, so .abort() for bdrv_replace_child_safe() will be
4756 * called automatically.
4760 static void bdrv_remove_filter_or_cow_child_commit(void *opaque
)
4762 BdrvRemoveFilterOrCowChild
*s
= opaque
;
4764 bdrv_child_free(s
->child
);
4767 static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv
= {
4768 .abort
= bdrv_remove_filter_or_cow_child_abort
,
4769 .commit
= bdrv_remove_filter_or_cow_child_commit
,
4774 * A function to remove backing-chain child of @bs if exists: cow child for
4775 * format nodes (always .backing) and filter child for filters (may be .file or
4778 static void bdrv_remove_filter_or_cow_child(BlockDriverState
*bs
,
4781 BdrvRemoveFilterOrCowChild
*s
;
4782 BdrvChild
*child
= bdrv_filter_or_cow_child(bs
);
4789 bdrv_replace_child(child
, NULL
, tran
);
4792 s
= g_new(BdrvRemoveFilterOrCowChild
, 1);
4793 *s
= (BdrvRemoveFilterOrCowChild
) {
4795 .is_backing
= (child
== bs
->backing
),
4797 tran_add(tran
, &bdrv_remove_filter_or_cow_child_drv
, s
);
4799 QLIST_SAFE_REMOVE(child
, next
);
4800 if (s
->is_backing
) {
4807 static int bdrv_replace_node_noperm(BlockDriverState
*from
,
4808 BlockDriverState
*to
,
4809 bool auto_skip
, Transaction
*tran
,
4812 BdrvChild
*c
, *next
;
4814 QLIST_FOREACH_SAFE(c
, &from
->parents
, next_parent
, next
) {
4815 assert(c
->bs
== from
);
4816 if (!should_update_child(c
, to
)) {
4820 error_setg(errp
, "Should not change '%s' link to '%s'",
4821 c
->name
, from
->node_name
);
4825 error_setg(errp
, "Cannot change '%s' link to '%s'",
4826 c
->name
, from
->node_name
);
4829 bdrv_replace_child(c
, to
, tran
);
4836 * With auto_skip=true bdrv_replace_node_common skips updating from parents
4837 * if it creates a parent-child relation loop or if parent is block-job.
4839 * With auto_skip=false the error is returned if from has a parent which should
4842 * With @detach_subchain=true @to must be in a backing chain of @from. In this
4843 * case backing link of the cow-parent of @to is removed.
4845 static int bdrv_replace_node_common(BlockDriverState
*from
,
4846 BlockDriverState
*to
,
4847 bool auto_skip
, bool detach_subchain
,
4850 Transaction
*tran
= tran_new();
4851 g_autoptr(GHashTable
) found
= NULL
;
4852 g_autoptr(GSList
) refresh_list
= NULL
;
4853 BlockDriverState
*to_cow_parent
;
4856 if (detach_subchain
) {
4857 assert(bdrv_chain_contains(from
, to
));
4859 for (to_cow_parent
= from
;
4860 bdrv_filter_or_cow_bs(to_cow_parent
) != to
;
4861 to_cow_parent
= bdrv_filter_or_cow_bs(to_cow_parent
))
4867 /* Make sure that @from doesn't go away until we have successfully attached
4868 * all of its parents to @to. */
4871 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
4872 assert(bdrv_get_aio_context(from
) == bdrv_get_aio_context(to
));
4873 bdrv_drained_begin(from
);
4876 * Do the replacement without permission update.
4877 * Replacement may influence the permissions, we should calculate new
4878 * permissions based on new graph. If we fail, we'll roll-back the
4881 ret
= bdrv_replace_node_noperm(from
, to
, auto_skip
, tran
, errp
);
4886 if (detach_subchain
) {
4887 bdrv_remove_filter_or_cow_child(to_cow_parent
, tran
);
4890 found
= g_hash_table_new(NULL
, NULL
);
4892 refresh_list
= bdrv_topological_dfs(refresh_list
, found
, to
);
4893 refresh_list
= bdrv_topological_dfs(refresh_list
, found
, from
);
4895 ret
= bdrv_list_refresh_perms(refresh_list
, NULL
, tran
, errp
);
4903 tran_finalize(tran
, ret
);
4905 bdrv_drained_end(from
);
4911 int bdrv_replace_node(BlockDriverState
*from
, BlockDriverState
*to
,
4914 return bdrv_replace_node_common(from
, to
, true, false, errp
);
4917 int bdrv_drop_filter(BlockDriverState
*bs
, Error
**errp
)
4919 return bdrv_replace_node_common(bs
, bdrv_filter_or_cow_bs(bs
), true, true,
4924 * Add new bs contents at the top of an image chain while the chain is
4925 * live, while keeping required fields on the top layer.
4927 * This will modify the BlockDriverState fields, and swap contents
4928 * between bs_new and bs_top. Both bs_new and bs_top are modified.
4930 * bs_new must not be attached to a BlockBackend and must not have backing
4933 * This function does not create any image files.
4935 int bdrv_append(BlockDriverState
*bs_new
, BlockDriverState
*bs_top
,
4939 Transaction
*tran
= tran_new();
4941 assert(!bs_new
->backing
);
4943 ret
= bdrv_attach_child_noperm(bs_new
, bs_top
, "backing",
4944 &child_of_bds
, bdrv_backing_role(bs_new
),
4945 &bs_new
->backing
, tran
, errp
);
4950 ret
= bdrv_replace_node_noperm(bs_top
, bs_new
, true, tran
, errp
);
4955 ret
= bdrv_refresh_perms(bs_new
, errp
);
4957 tran_finalize(tran
, ret
);
4959 bdrv_refresh_limits(bs_top
, NULL
, NULL
);
4964 static void bdrv_delete(BlockDriverState
*bs
)
4966 assert(bdrv_op_blocker_is_empty(bs
));
4967 assert(!bs
->refcnt
);
4969 /* remove from list, if necessary */
4970 if (bs
->node_name
[0] != '\0') {
4971 QTAILQ_REMOVE(&graph_bdrv_states
, bs
, node_list
);
4973 QTAILQ_REMOVE(&all_bdrv_states
, bs
, bs_list
);
4980 BlockDriverState
*bdrv_insert_node(BlockDriverState
*bs
, QDict
*node_options
,
4981 int flags
, Error
**errp
)
4983 BlockDriverState
*new_node_bs
;
4984 Error
*local_err
= NULL
;
4986 new_node_bs
= bdrv_open(NULL
, NULL
, node_options
, flags
, errp
);
4987 if (new_node_bs
== NULL
) {
4988 error_prepend(errp
, "Could not create node: ");
4992 bdrv_drained_begin(bs
);
4993 bdrv_replace_node(bs
, new_node_bs
, &local_err
);
4994 bdrv_drained_end(bs
);
4997 bdrv_unref(new_node_bs
);
4998 error_propagate(errp
, local_err
);
5006 * Run consistency checks on an image
5008 * Returns 0 if the check could be completed (it doesn't mean that the image is
5009 * free of errors) or -errno when an internal error occurred. The results of the
5010 * check are stored in res.
5012 int coroutine_fn
bdrv_co_check(BlockDriverState
*bs
,
5013 BdrvCheckResult
*res
, BdrvCheckMode fix
)
5015 if (bs
->drv
== NULL
) {
5018 if (bs
->drv
->bdrv_co_check
== NULL
) {
5022 memset(res
, 0, sizeof(*res
));
5023 return bs
->drv
->bdrv_co_check(bs
, res
, fix
);
5029 * -EINVAL - backing format specified, but no file
5030 * -ENOSPC - can't update the backing file because no space is left in the
5032 * -ENOTSUP - format driver doesn't support changing the backing file
5034 int bdrv_change_backing_file(BlockDriverState
*bs
, const char *backing_file
,
5035 const char *backing_fmt
, bool warn
)
5037 BlockDriver
*drv
= bs
->drv
;
5044 /* Backing file format doesn't make sense without a backing file */
5045 if (backing_fmt
&& !backing_file
) {
5049 if (warn
&& backing_file
&& !backing_fmt
) {
5050 warn_report("Deprecated use of backing file without explicit "
5051 "backing format, use of this image requires "
5052 "potentially unsafe format probing");
5055 if (drv
->bdrv_change_backing_file
!= NULL
) {
5056 ret
= drv
->bdrv_change_backing_file(bs
, backing_file
, backing_fmt
);
5062 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
), backing_file
?: "");
5063 pstrcpy(bs
->backing_format
, sizeof(bs
->backing_format
), backing_fmt
?: "");
5064 pstrcpy(bs
->auto_backing_file
, sizeof(bs
->auto_backing_file
),
5065 backing_file
?: "");
5071 * Finds the first non-filter node above bs in the chain between
5072 * active and bs. The returned node is either an immediate parent of
5073 * bs, or there are only filter nodes between the two.
5075 * Returns NULL if bs is not found in active's image chain,
5076 * or if active == bs.
5078 * Returns the bottommost base image if bs == NULL.
5080 BlockDriverState
*bdrv_find_overlay(BlockDriverState
*active
,
5081 BlockDriverState
*bs
)
5083 bs
= bdrv_skip_filters(bs
);
5084 active
= bdrv_skip_filters(active
);
5087 BlockDriverState
*next
= bdrv_backing_chain_next(active
);
5097 /* Given a BDS, searches for the base layer. */
5098 BlockDriverState
*bdrv_find_base(BlockDriverState
*bs
)
5100 return bdrv_find_overlay(bs
, NULL
);
5104 * Return true if at least one of the COW (backing) and filter links
5105 * between @bs and @base is frozen. @errp is set if that's the case.
5106 * @base must be reachable from @bs, or NULL.
5108 bool bdrv_is_backing_chain_frozen(BlockDriverState
*bs
, BlockDriverState
*base
,
5111 BlockDriverState
*i
;
5114 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5115 child
= bdrv_filter_or_cow_child(i
);
5117 if (child
&& child
->frozen
) {
5118 error_setg(errp
, "Cannot change '%s' link from '%s' to '%s'",
5119 child
->name
, i
->node_name
, child
->bs
->node_name
);
5128 * Freeze all COW (backing) and filter links between @bs and @base.
5129 * If any of the links is already frozen the operation is aborted and
5130 * none of the links are modified.
5131 * @base must be reachable from @bs, or NULL.
5132 * Returns 0 on success. On failure returns < 0 and sets @errp.
5134 int bdrv_freeze_backing_chain(BlockDriverState
*bs
, BlockDriverState
*base
,
5137 BlockDriverState
*i
;
5140 if (bdrv_is_backing_chain_frozen(bs
, base
, errp
)) {
5144 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5145 child
= bdrv_filter_or_cow_child(i
);
5146 if (child
&& child
->bs
->never_freeze
) {
5147 error_setg(errp
, "Cannot freeze '%s' link to '%s'",
5148 child
->name
, child
->bs
->node_name
);
5153 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5154 child
= bdrv_filter_or_cow_child(i
);
5156 child
->frozen
= true;
5164 * Unfreeze all COW (backing) and filter links between @bs and @base.
5165 * The caller must ensure that all links are frozen before using this
5167 * @base must be reachable from @bs, or NULL.
5169 void bdrv_unfreeze_backing_chain(BlockDriverState
*bs
, BlockDriverState
*base
)
5171 BlockDriverState
*i
;
5174 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5175 child
= bdrv_filter_or_cow_child(i
);
5177 assert(child
->frozen
);
5178 child
->frozen
= false;
5184 * Drops images above 'base' up to and including 'top', and sets the image
5185 * above 'top' to have base as its backing file.
5187 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5188 * information in 'bs' can be properly updated.
5190 * E.g., this will convert the following chain:
5191 * bottom <- base <- intermediate <- top <- active
5195 * bottom <- base <- active
5197 * It is allowed for bottom==base, in which case it converts:
5199 * base <- intermediate <- top <- active
5205 * If backing_file_str is non-NULL, it will be used when modifying top's
5206 * overlay image metadata.
5209 * if active == top, that is considered an error
5212 int bdrv_drop_intermediate(BlockDriverState
*top
, BlockDriverState
*base
,
5213 const char *backing_file_str
)
5215 BlockDriverState
*explicit_top
= top
;
5216 bool update_inherits_from
;
5218 Error
*local_err
= NULL
;
5220 g_autoptr(GSList
) updated_children
= NULL
;
5224 bdrv_subtree_drained_begin(top
);
5226 if (!top
->drv
|| !base
->drv
) {
5230 /* Make sure that base is in the backing chain of top */
5231 if (!bdrv_chain_contains(top
, base
)) {
5235 /* If 'base' recursively inherits from 'top' then we should set
5236 * base->inherits_from to top->inherits_from after 'top' and all
5237 * other intermediate nodes have been dropped.
5238 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5239 * it because no one inherits from it. We use explicit_top for that. */
5240 explicit_top
= bdrv_skip_implicit_filters(explicit_top
);
5241 update_inherits_from
= bdrv_inherits_from_recursive(base
, explicit_top
);
5243 /* success - we can delete the intermediate states, and link top->base */
5244 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
5245 * we've figured out how they should work. */
5246 if (!backing_file_str
) {
5247 bdrv_refresh_filename(base
);
5248 backing_file_str
= base
->filename
;
5251 QLIST_FOREACH(c
, &top
->parents
, next_parent
) {
5252 updated_children
= g_slist_prepend(updated_children
, c
);
5256 * It seems correct to pass detach_subchain=true here, but it triggers
5257 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5258 * another drained section, which modify the graph (for example, removing
5259 * the child, which we keep in updated_children list). So, it's a TODO.
5261 * Note, bug triggered if pass detach_subchain=true here and run
5262 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5265 bdrv_replace_node_common(top
, base
, false, false, &local_err
);
5267 error_report_err(local_err
);
5271 for (p
= updated_children
; p
; p
= p
->next
) {
5274 if (c
->klass
->update_filename
) {
5275 ret
= c
->klass
->update_filename(c
, base
, backing_file_str
,
5279 * TODO: Actually, we want to rollback all previous iterations
5280 * of this loop, and (which is almost impossible) previous
5281 * bdrv_replace_node()...
5283 * Note, that c->klass->update_filename may lead to permission
5284 * update, so it's a bad idea to call it inside permission
5285 * update transaction of bdrv_replace_node.
5287 error_report_err(local_err
);
5293 if (update_inherits_from
) {
5294 base
->inherits_from
= explicit_top
->inherits_from
;
5299 bdrv_subtree_drained_end(top
);
5305 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5306 * sums the size of all data-bearing children. (This excludes backing
5309 static int64_t bdrv_sum_allocated_file_size(BlockDriverState
*bs
)
5312 int64_t child_size
, sum
= 0;
5314 QLIST_FOREACH(child
, &bs
->children
, next
) {
5315 if (child
->role
& (BDRV_CHILD_DATA
| BDRV_CHILD_METADATA
|
5316 BDRV_CHILD_FILTERED
))
5318 child_size
= bdrv_get_allocated_file_size(child
->bs
);
5319 if (child_size
< 0) {
5330 * Length of a allocated file in bytes. Sparse files are counted by actual
5331 * allocated space. Return < 0 if error or unknown.
5333 int64_t bdrv_get_allocated_file_size(BlockDriverState
*bs
)
5335 BlockDriver
*drv
= bs
->drv
;
5339 if (drv
->bdrv_get_allocated_file_size
) {
5340 return drv
->bdrv_get_allocated_file_size(bs
);
5343 if (drv
->bdrv_file_open
) {
5345 * Protocol drivers default to -ENOTSUP (most of their data is
5346 * not stored in any of their children (if they even have any),
5347 * so there is no generic way to figure it out).
5350 } else if (drv
->is_filter
) {
5351 /* Filter drivers default to the size of their filtered child */
5352 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs
));
5354 /* Other drivers default to summing their children's sizes */
5355 return bdrv_sum_allocated_file_size(bs
);
5361 * @drv: Format driver
5362 * @opts: Creation options for new image
5363 * @in_bs: Existing image containing data for new image (may be NULL)
5364 * @errp: Error object
5365 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5368 * Calculate file size required to create a new image.
5370 * If @in_bs is given then space for allocated clusters and zero clusters
5371 * from that image are included in the calculation. If @opts contains a
5372 * backing file that is shared by @in_bs then backing clusters may be omitted
5373 * from the calculation.
5375 * If @in_bs is NULL then the calculation includes no allocated clusters
5376 * unless a preallocation option is given in @opts.
5378 * Note that @in_bs may use a different BlockDriver from @drv.
5380 * If an error occurs the @errp pointer is set.
5382 BlockMeasureInfo
*bdrv_measure(BlockDriver
*drv
, QemuOpts
*opts
,
5383 BlockDriverState
*in_bs
, Error
**errp
)
5385 if (!drv
->bdrv_measure
) {
5386 error_setg(errp
, "Block driver '%s' does not support size measurement",
5391 return drv
->bdrv_measure(opts
, in_bs
, errp
);
5395 * Return number of sectors on success, -errno on error.
5397 int64_t bdrv_nb_sectors(BlockDriverState
*bs
)
5399 BlockDriver
*drv
= bs
->drv
;
5404 if (drv
->has_variable_length
) {
5405 int ret
= refresh_total_sectors(bs
, bs
->total_sectors
);
5410 return bs
->total_sectors
;
5414 * Return length in bytes on success, -errno on error.
5415 * The length is always a multiple of BDRV_SECTOR_SIZE.
5417 int64_t bdrv_getlength(BlockDriverState
*bs
)
5419 int64_t ret
= bdrv_nb_sectors(bs
);
5424 if (ret
> INT64_MAX
/ BDRV_SECTOR_SIZE
) {
5427 return ret
* BDRV_SECTOR_SIZE
;
5430 /* return 0 as number of sectors if no device present or error */
5431 void bdrv_get_geometry(BlockDriverState
*bs
, uint64_t *nb_sectors_ptr
)
5433 int64_t nb_sectors
= bdrv_nb_sectors(bs
);
5435 *nb_sectors_ptr
= nb_sectors
< 0 ? 0 : nb_sectors
;
5438 bool bdrv_is_sg(BlockDriverState
*bs
)
5444 * Return whether the given node supports compressed writes.
5446 bool bdrv_supports_compressed_writes(BlockDriverState
*bs
)
5448 BlockDriverState
*filtered
;
5450 if (!bs
->drv
|| !block_driver_can_compress(bs
->drv
)) {
5454 filtered
= bdrv_filter_bs(bs
);
5457 * Filters can only forward compressed writes, so we have to
5460 return bdrv_supports_compressed_writes(filtered
);
5466 const char *bdrv_get_format_name(BlockDriverState
*bs
)
5468 return bs
->drv
? bs
->drv
->format_name
: NULL
;
5471 static int qsort_strcmp(const void *a
, const void *b
)
5473 return strcmp(*(char *const *)a
, *(char *const *)b
);
5476 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
5477 void *opaque
, bool read_only
)
5482 const char **formats
= NULL
;
5484 QLIST_FOREACH(drv
, &bdrv_drivers
, list
) {
5485 if (drv
->format_name
) {
5489 if (use_bdrv_whitelist
&& !bdrv_is_whitelisted(drv
, read_only
)) {
5493 while (formats
&& i
&& !found
) {
5494 found
= !strcmp(formats
[--i
], drv
->format_name
);
5498 formats
= g_renew(const char *, formats
, count
+ 1);
5499 formats
[count
++] = drv
->format_name
;
5504 for (i
= 0; i
< (int)ARRAY_SIZE(block_driver_modules
); i
++) {
5505 const char *format_name
= block_driver_modules
[i
].format_name
;
5511 if (use_bdrv_whitelist
&&
5512 !bdrv_format_is_whitelisted(format_name
, read_only
)) {
5516 while (formats
&& j
&& !found
) {
5517 found
= !strcmp(formats
[--j
], format_name
);
5521 formats
= g_renew(const char *, formats
, count
+ 1);
5522 formats
[count
++] = format_name
;
5527 qsort(formats
, count
, sizeof(formats
[0]), qsort_strcmp
);
5529 for (i
= 0; i
< count
; i
++) {
5530 it(opaque
, formats
[i
]);
5536 /* This function is to find a node in the bs graph */
5537 BlockDriverState
*bdrv_find_node(const char *node_name
)
5539 BlockDriverState
*bs
;
5543 QTAILQ_FOREACH(bs
, &graph_bdrv_states
, node_list
) {
5544 if (!strcmp(node_name
, bs
->node_name
)) {
5551 /* Put this QMP function here so it can access the static graph_bdrv_states. */
5552 BlockDeviceInfoList
*bdrv_named_nodes_list(bool flat
,
5555 BlockDeviceInfoList
*list
;
5556 BlockDriverState
*bs
;
5559 QTAILQ_FOREACH(bs
, &graph_bdrv_states
, node_list
) {
5560 BlockDeviceInfo
*info
= bdrv_block_device_info(NULL
, bs
, flat
, errp
);
5562 qapi_free_BlockDeviceInfoList(list
);
5565 QAPI_LIST_PREPEND(list
, info
);
5571 typedef struct XDbgBlockGraphConstructor
{
5572 XDbgBlockGraph
*graph
;
5573 GHashTable
*graph_nodes
;
5574 } XDbgBlockGraphConstructor
;
5576 static XDbgBlockGraphConstructor
*xdbg_graph_new(void)
5578 XDbgBlockGraphConstructor
*gr
= g_new(XDbgBlockGraphConstructor
, 1);
5580 gr
->graph
= g_new0(XDbgBlockGraph
, 1);
5581 gr
->graph_nodes
= g_hash_table_new(NULL
, NULL
);
5586 static XDbgBlockGraph
*xdbg_graph_finalize(XDbgBlockGraphConstructor
*gr
)
5588 XDbgBlockGraph
*graph
= gr
->graph
;
5590 g_hash_table_destroy(gr
->graph_nodes
);
5596 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor
*gr
, void *node
)
5598 uintptr_t ret
= (uintptr_t)g_hash_table_lookup(gr
->graph_nodes
, node
);
5605 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5606 * answer of g_hash_table_lookup.
5608 ret
= g_hash_table_size(gr
->graph_nodes
) + 1;
5609 g_hash_table_insert(gr
->graph_nodes
, node
, (void *)ret
);
5614 static void xdbg_graph_add_node(XDbgBlockGraphConstructor
*gr
, void *node
,
5615 XDbgBlockGraphNodeType type
, const char *name
)
5617 XDbgBlockGraphNode
*n
;
5619 n
= g_new0(XDbgBlockGraphNode
, 1);
5621 n
->id
= xdbg_graph_node_num(gr
, node
);
5623 n
->name
= g_strdup(name
);
5625 QAPI_LIST_PREPEND(gr
->graph
->nodes
, n
);
5628 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor
*gr
, void *parent
,
5629 const BdrvChild
*child
)
5631 BlockPermission qapi_perm
;
5632 XDbgBlockGraphEdge
*edge
;
5634 edge
= g_new0(XDbgBlockGraphEdge
, 1);
5636 edge
->parent
= xdbg_graph_node_num(gr
, parent
);
5637 edge
->child
= xdbg_graph_node_num(gr
, child
->bs
);
5638 edge
->name
= g_strdup(child
->name
);
5640 for (qapi_perm
= 0; qapi_perm
< BLOCK_PERMISSION__MAX
; qapi_perm
++) {
5641 uint64_t flag
= bdrv_qapi_perm_to_blk_perm(qapi_perm
);
5643 if (flag
& child
->perm
) {
5644 QAPI_LIST_PREPEND(edge
->perm
, qapi_perm
);
5646 if (flag
& child
->shared_perm
) {
5647 QAPI_LIST_PREPEND(edge
->shared_perm
, qapi_perm
);
5651 QAPI_LIST_PREPEND(gr
->graph
->edges
, edge
);
5655 XDbgBlockGraph
*bdrv_get_xdbg_block_graph(Error
**errp
)
5659 BlockDriverState
*bs
;
5661 XDbgBlockGraphConstructor
*gr
= xdbg_graph_new();
5663 for (blk
= blk_all_next(NULL
); blk
; blk
= blk_all_next(blk
)) {
5664 char *allocated_name
= NULL
;
5665 const char *name
= blk_name(blk
);
5668 name
= allocated_name
= blk_get_attached_dev_id(blk
);
5670 xdbg_graph_add_node(gr
, blk
, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND
,
5672 g_free(allocated_name
);
5673 if (blk_root(blk
)) {
5674 xdbg_graph_add_edge(gr
, blk
, blk_root(blk
));
5678 for (job
= block_job_next(NULL
); job
; job
= block_job_next(job
)) {
5681 xdbg_graph_add_node(gr
, job
, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB
,
5683 for (el
= job
->nodes
; el
; el
= el
->next
) {
5684 xdbg_graph_add_edge(gr
, job
, (BdrvChild
*)el
->data
);
5688 QTAILQ_FOREACH(bs
, &graph_bdrv_states
, node_list
) {
5689 xdbg_graph_add_node(gr
, bs
, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER
,
5691 QLIST_FOREACH(child
, &bs
->children
, next
) {
5692 xdbg_graph_add_edge(gr
, bs
, child
);
5696 return xdbg_graph_finalize(gr
);
5699 BlockDriverState
*bdrv_lookup_bs(const char *device
,
5700 const char *node_name
,
5704 BlockDriverState
*bs
;
5707 blk
= blk_by_name(device
);
5712 error_setg(errp
, "Device '%s' has no medium", device
);
5720 bs
= bdrv_find_node(node_name
);
5727 error_setg(errp
, "Cannot find device=\'%s\' nor node-name=\'%s\'",
5728 device
? device
: "",
5729 node_name
? node_name
: "");
5733 /* If 'base' is in the same chain as 'top', return true. Otherwise,
5734 * return false. If either argument is NULL, return false. */
5735 bool bdrv_chain_contains(BlockDriverState
*top
, BlockDriverState
*base
)
5737 while (top
&& top
!= base
) {
5738 top
= bdrv_filter_or_cow_bs(top
);
5744 BlockDriverState
*bdrv_next_node(BlockDriverState
*bs
)
5747 return QTAILQ_FIRST(&graph_bdrv_states
);
5749 return QTAILQ_NEXT(bs
, node_list
);
5752 BlockDriverState
*bdrv_next_all_states(BlockDriverState
*bs
)
5755 return QTAILQ_FIRST(&all_bdrv_states
);
5757 return QTAILQ_NEXT(bs
, bs_list
);
5760 const char *bdrv_get_node_name(const BlockDriverState
*bs
)
5762 return bs
->node_name
;
5765 const char *bdrv_get_parent_name(const BlockDriverState
*bs
)
5770 /* If multiple parents have a name, just pick the first one. */
5771 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
5772 if (c
->klass
->get_name
) {
5773 name
= c
->klass
->get_name(c
);
5774 if (name
&& *name
) {
5783 /* TODO check what callers really want: bs->node_name or blk_name() */
5784 const char *bdrv_get_device_name(const BlockDriverState
*bs
)
5786 return bdrv_get_parent_name(bs
) ?: "";
5789 /* This can be used to identify nodes that might not have a device
5790 * name associated. Since node and device names live in the same
5791 * namespace, the result is unambiguous. The exception is if both are
5792 * absent, then this returns an empty (non-null) string. */
5793 const char *bdrv_get_device_or_node_name(const BlockDriverState
*bs
)
5795 return bdrv_get_parent_name(bs
) ?: bs
->node_name
;
5798 int bdrv_get_flags(BlockDriverState
*bs
)
5800 return bs
->open_flags
;
5803 int bdrv_has_zero_init_1(BlockDriverState
*bs
)
5808 int bdrv_has_zero_init(BlockDriverState
*bs
)
5810 BlockDriverState
*filtered
;
5816 /* If BS is a copy on write image, it is initialized to
5817 the contents of the base image, which may not be zeroes. */
5818 if (bdrv_cow_child(bs
)) {
5821 if (bs
->drv
->bdrv_has_zero_init
) {
5822 return bs
->drv
->bdrv_has_zero_init(bs
);
5825 filtered
= bdrv_filter_bs(bs
);
5827 return bdrv_has_zero_init(filtered
);
5834 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState
*bs
)
5836 if (!(bs
->open_flags
& BDRV_O_UNMAP
)) {
5840 return bs
->supported_zero_flags
& BDRV_REQ_MAY_UNMAP
;
5843 void bdrv_get_backing_filename(BlockDriverState
*bs
,
5844 char *filename
, int filename_size
)
5846 pstrcpy(filename
, filename_size
, bs
->backing_file
);
5849 int bdrv_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
5852 BlockDriver
*drv
= bs
->drv
;
5853 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
5857 if (!drv
->bdrv_get_info
) {
5858 BlockDriverState
*filtered
= bdrv_filter_bs(bs
);
5860 return bdrv_get_info(filtered
, bdi
);
5864 memset(bdi
, 0, sizeof(*bdi
));
5865 ret
= drv
->bdrv_get_info(bs
, bdi
);
5870 if (bdi
->cluster_size
> BDRV_MAX_ALIGNMENT
) {
5877 ImageInfoSpecific
*bdrv_get_specific_info(BlockDriverState
*bs
,
5880 BlockDriver
*drv
= bs
->drv
;
5881 if (drv
&& drv
->bdrv_get_specific_info
) {
5882 return drv
->bdrv_get_specific_info(bs
, errp
);
5887 BlockStatsSpecific
*bdrv_get_specific_stats(BlockDriverState
*bs
)
5889 BlockDriver
*drv
= bs
->drv
;
5890 if (!drv
|| !drv
->bdrv_get_specific_stats
) {
5893 return drv
->bdrv_get_specific_stats(bs
);
5896 void bdrv_debug_event(BlockDriverState
*bs
, BlkdebugEvent event
)
5898 if (!bs
|| !bs
->drv
|| !bs
->drv
->bdrv_debug_event
) {
5902 bs
->drv
->bdrv_debug_event(bs
, event
);
5905 static BlockDriverState
*bdrv_find_debug_node(BlockDriverState
*bs
)
5907 while (bs
&& bs
->drv
&& !bs
->drv
->bdrv_debug_breakpoint
) {
5908 bs
= bdrv_primary_bs(bs
);
5911 if (bs
&& bs
->drv
&& bs
->drv
->bdrv_debug_breakpoint
) {
5912 assert(bs
->drv
->bdrv_debug_remove_breakpoint
);
5919 int bdrv_debug_breakpoint(BlockDriverState
*bs
, const char *event
,
5922 bs
= bdrv_find_debug_node(bs
);
5924 return bs
->drv
->bdrv_debug_breakpoint(bs
, event
, tag
);
5930 int bdrv_debug_remove_breakpoint(BlockDriverState
*bs
, const char *tag
)
5932 bs
= bdrv_find_debug_node(bs
);
5934 return bs
->drv
->bdrv_debug_remove_breakpoint(bs
, tag
);
5940 int bdrv_debug_resume(BlockDriverState
*bs
, const char *tag
)
5942 while (bs
&& (!bs
->drv
|| !bs
->drv
->bdrv_debug_resume
)) {
5943 bs
= bdrv_primary_bs(bs
);
5946 if (bs
&& bs
->drv
&& bs
->drv
->bdrv_debug_resume
) {
5947 return bs
->drv
->bdrv_debug_resume(bs
, tag
);
5953 bool bdrv_debug_is_suspended(BlockDriverState
*bs
, const char *tag
)
5955 while (bs
&& bs
->drv
&& !bs
->drv
->bdrv_debug_is_suspended
) {
5956 bs
= bdrv_primary_bs(bs
);
5959 if (bs
&& bs
->drv
&& bs
->drv
->bdrv_debug_is_suspended
) {
5960 return bs
->drv
->bdrv_debug_is_suspended(bs
, tag
);
5966 /* backing_file can either be relative, or absolute, or a protocol. If it is
5967 * relative, it must be relative to the chain. So, passing in bs->filename
5968 * from a BDS as backing_file should not be done, as that may be relative to
5969 * the CWD rather than the chain. */
5970 BlockDriverState
*bdrv_find_backing_image(BlockDriverState
*bs
,
5971 const char *backing_file
)
5973 char *filename_full
= NULL
;
5974 char *backing_file_full
= NULL
;
5975 char *filename_tmp
= NULL
;
5976 int is_protocol
= 0;
5977 bool filenames_refreshed
= false;
5978 BlockDriverState
*curr_bs
= NULL
;
5979 BlockDriverState
*retval
= NULL
;
5980 BlockDriverState
*bs_below
;
5982 if (!bs
|| !bs
->drv
|| !backing_file
) {
5986 filename_full
= g_malloc(PATH_MAX
);
5987 backing_file_full
= g_malloc(PATH_MAX
);
5989 is_protocol
= path_has_protocol(backing_file
);
5992 * Being largely a legacy function, skip any filters here
5993 * (because filters do not have normal filenames, so they cannot
5994 * match anyway; and allowing json:{} filenames is a bit out of
5997 for (curr_bs
= bdrv_skip_filters(bs
);
5998 bdrv_cow_child(curr_bs
) != NULL
;
6001 bs_below
= bdrv_backing_chain_next(curr_bs
);
6003 if (bdrv_backing_overridden(curr_bs
)) {
6005 * If the backing file was overridden, we can only compare
6006 * directly against the backing node's filename.
6009 if (!filenames_refreshed
) {
6011 * This will automatically refresh all of the
6012 * filenames in the rest of the backing chain, so we
6013 * only need to do this once.
6015 bdrv_refresh_filename(bs_below
);
6016 filenames_refreshed
= true;
6019 if (strcmp(backing_file
, bs_below
->filename
) == 0) {
6023 } else if (is_protocol
|| path_has_protocol(curr_bs
->backing_file
)) {
6025 * If either of the filename paths is actually a protocol, then
6026 * compare unmodified paths; otherwise make paths relative.
6028 char *backing_file_full_ret
;
6030 if (strcmp(backing_file
, curr_bs
->backing_file
) == 0) {
6034 /* Also check against the full backing filename for the image */
6035 backing_file_full_ret
= bdrv_get_full_backing_filename(curr_bs
,
6037 if (backing_file_full_ret
) {
6038 bool equal
= strcmp(backing_file
, backing_file_full_ret
) == 0;
6039 g_free(backing_file_full_ret
);
6046 /* If not an absolute filename path, make it relative to the current
6047 * image's filename path */
6048 filename_tmp
= bdrv_make_absolute_filename(curr_bs
, backing_file
,
6050 /* We are going to compare canonicalized absolute pathnames */
6051 if (!filename_tmp
|| !realpath(filename_tmp
, filename_full
)) {
6052 g_free(filename_tmp
);
6055 g_free(filename_tmp
);
6057 /* We need to make sure the backing filename we are comparing against
6058 * is relative to the current image filename (or absolute) */
6059 filename_tmp
= bdrv_get_full_backing_filename(curr_bs
, NULL
);
6060 if (!filename_tmp
|| !realpath(filename_tmp
, backing_file_full
)) {
6061 g_free(filename_tmp
);
6064 g_free(filename_tmp
);
6066 if (strcmp(backing_file_full
, filename_full
) == 0) {
6073 g_free(filename_full
);
6074 g_free(backing_file_full
);
6078 void bdrv_init(void)
6080 module_call_init(MODULE_INIT_BLOCK
);
6083 void bdrv_init_with_whitelist(void)
6085 use_bdrv_whitelist
= 1;
6089 int coroutine_fn
bdrv_co_invalidate_cache(BlockDriverState
*bs
, Error
**errp
)
6091 BdrvChild
*child
, *parent
;
6092 Error
*local_err
= NULL
;
6094 BdrvDirtyBitmap
*bm
;
6100 QLIST_FOREACH(child
, &bs
->children
, next
) {
6101 bdrv_co_invalidate_cache(child
->bs
, &local_err
);
6103 error_propagate(errp
, local_err
);
6109 * Update permissions, they may differ for inactive nodes.
6111 * Note that the required permissions of inactive images are always a
6112 * subset of the permissions required after activating the image. This
6113 * allows us to just get the permissions upfront without restricting
6114 * drv->bdrv_invalidate_cache().
6116 * It also means that in error cases, we don't have to try and revert to
6117 * the old permissions (which is an operation that could fail, too). We can
6118 * just keep the extended permissions for the next time that an activation
6119 * of the image is tried.
6121 if (bs
->open_flags
& BDRV_O_INACTIVE
) {
6122 bs
->open_flags
&= ~BDRV_O_INACTIVE
;
6123 ret
= bdrv_refresh_perms(bs
, errp
);
6125 bs
->open_flags
|= BDRV_O_INACTIVE
;
6129 if (bs
->drv
->bdrv_co_invalidate_cache
) {
6130 bs
->drv
->bdrv_co_invalidate_cache(bs
, &local_err
);
6132 bs
->open_flags
|= BDRV_O_INACTIVE
;
6133 error_propagate(errp
, local_err
);
6138 FOR_EACH_DIRTY_BITMAP(bs
, bm
) {
6139 bdrv_dirty_bitmap_skip_store(bm
, false);
6142 ret
= refresh_total_sectors(bs
, bs
->total_sectors
);
6144 bs
->open_flags
|= BDRV_O_INACTIVE
;
6145 error_setg_errno(errp
, -ret
, "Could not refresh total sector count");
6150 QLIST_FOREACH(parent
, &bs
->parents
, next_parent
) {
6151 if (parent
->klass
->activate
) {
6152 parent
->klass
->activate(parent
, &local_err
);
6154 bs
->open_flags
|= BDRV_O_INACTIVE
;
6155 error_propagate(errp
, local_err
);
6164 void bdrv_invalidate_cache_all(Error
**errp
)
6166 BlockDriverState
*bs
;
6167 BdrvNextIterator it
;
6169 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
6170 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
6173 aio_context_acquire(aio_context
);
6174 ret
= bdrv_invalidate_cache(bs
, errp
);
6175 aio_context_release(aio_context
);
6177 bdrv_next_cleanup(&it
);
6183 static bool bdrv_has_bds_parent(BlockDriverState
*bs
, bool only_active
)
6187 QLIST_FOREACH(parent
, &bs
->parents
, next_parent
) {
6188 if (parent
->klass
->parent_is_bds
) {
6189 BlockDriverState
*parent_bs
= parent
->opaque
;
6190 if (!only_active
|| !(parent_bs
->open_flags
& BDRV_O_INACTIVE
)) {
6199 static int bdrv_inactivate_recurse(BlockDriverState
*bs
)
6201 BdrvChild
*child
, *parent
;
6208 /* Make sure that we don't inactivate a child before its parent.
6209 * It will be covered by recursion from the yet active parent. */
6210 if (bdrv_has_bds_parent(bs
, true)) {
6214 assert(!(bs
->open_flags
& BDRV_O_INACTIVE
));
6216 /* Inactivate this node */
6217 if (bs
->drv
->bdrv_inactivate
) {
6218 ret
= bs
->drv
->bdrv_inactivate(bs
);
6224 QLIST_FOREACH(parent
, &bs
->parents
, next_parent
) {
6225 if (parent
->klass
->inactivate
) {
6226 ret
= parent
->klass
->inactivate(parent
);
6233 bs
->open_flags
|= BDRV_O_INACTIVE
;
6236 * Update permissions, they may differ for inactive nodes.
6237 * We only tried to loosen restrictions, so errors are not fatal, ignore
6240 bdrv_refresh_perms(bs
, NULL
);
6242 /* Recursively inactivate children */
6243 QLIST_FOREACH(child
, &bs
->children
, next
) {
6244 ret
= bdrv_inactivate_recurse(child
->bs
);
6253 int bdrv_inactivate_all(void)
6255 BlockDriverState
*bs
= NULL
;
6256 BdrvNextIterator it
;
6258 GSList
*aio_ctxs
= NULL
, *ctx
;
6260 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
6261 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
6263 if (!g_slist_find(aio_ctxs
, aio_context
)) {
6264 aio_ctxs
= g_slist_prepend(aio_ctxs
, aio_context
);
6265 aio_context_acquire(aio_context
);
6269 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
6270 /* Nodes with BDS parents are covered by recursion from the last
6271 * parent that gets inactivated. Don't inactivate them a second
6272 * time if that has already happened. */
6273 if (bdrv_has_bds_parent(bs
, false)) {
6276 ret
= bdrv_inactivate_recurse(bs
);
6278 bdrv_next_cleanup(&it
);
6284 for (ctx
= aio_ctxs
; ctx
!= NULL
; ctx
= ctx
->next
) {
6285 AioContext
*aio_context
= ctx
->data
;
6286 aio_context_release(aio_context
);
6288 g_slist_free(aio_ctxs
);
6293 /**************************************************************/
6294 /* removable device support */
6297 * Return TRUE if the media is present
6299 bool bdrv_is_inserted(BlockDriverState
*bs
)
6301 BlockDriver
*drv
= bs
->drv
;
6307 if (drv
->bdrv_is_inserted
) {
6308 return drv
->bdrv_is_inserted(bs
);
6310 QLIST_FOREACH(child
, &bs
->children
, next
) {
6311 if (!bdrv_is_inserted(child
->bs
)) {
6319 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6321 void bdrv_eject(BlockDriverState
*bs
, bool eject_flag
)
6323 BlockDriver
*drv
= bs
->drv
;
6325 if (drv
&& drv
->bdrv_eject
) {
6326 drv
->bdrv_eject(bs
, eject_flag
);
6331 * Lock or unlock the media (if it is locked, the user won't be able
6332 * to eject it manually).
6334 void bdrv_lock_medium(BlockDriverState
*bs
, bool locked
)
6336 BlockDriver
*drv
= bs
->drv
;
6338 trace_bdrv_lock_medium(bs
, locked
);
6340 if (drv
&& drv
->bdrv_lock_medium
) {
6341 drv
->bdrv_lock_medium(bs
, locked
);
6345 /* Get a reference to bs */
6346 void bdrv_ref(BlockDriverState
*bs
)
6351 /* Release a previously grabbed reference to bs.
6352 * If after releasing, reference count is zero, the BlockDriverState is
6354 void bdrv_unref(BlockDriverState
*bs
)
6359 assert(bs
->refcnt
> 0);
6360 if (--bs
->refcnt
== 0) {
6365 struct BdrvOpBlocker
{
6367 QLIST_ENTRY(BdrvOpBlocker
) list
;
6370 bool bdrv_op_is_blocked(BlockDriverState
*bs
, BlockOpType op
, Error
**errp
)
6372 BdrvOpBlocker
*blocker
;
6373 assert((int) op
>= 0 && op
< BLOCK_OP_TYPE_MAX
);
6374 if (!QLIST_EMPTY(&bs
->op_blockers
[op
])) {
6375 blocker
= QLIST_FIRST(&bs
->op_blockers
[op
]);
6376 error_propagate_prepend(errp
, error_copy(blocker
->reason
),
6377 "Node '%s' is busy: ",
6378 bdrv_get_device_or_node_name(bs
));
6384 void bdrv_op_block(BlockDriverState
*bs
, BlockOpType op
, Error
*reason
)
6386 BdrvOpBlocker
*blocker
;
6387 assert((int) op
>= 0 && op
< BLOCK_OP_TYPE_MAX
);
6389 blocker
= g_new0(BdrvOpBlocker
, 1);
6390 blocker
->reason
= reason
;
6391 QLIST_INSERT_HEAD(&bs
->op_blockers
[op
], blocker
, list
);
6394 void bdrv_op_unblock(BlockDriverState
*bs
, BlockOpType op
, Error
*reason
)
6396 BdrvOpBlocker
*blocker
, *next
;
6397 assert((int) op
>= 0 && op
< BLOCK_OP_TYPE_MAX
);
6398 QLIST_FOREACH_SAFE(blocker
, &bs
->op_blockers
[op
], list
, next
) {
6399 if (blocker
->reason
== reason
) {
6400 QLIST_REMOVE(blocker
, list
);
6406 void bdrv_op_block_all(BlockDriverState
*bs
, Error
*reason
)
6409 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
6410 bdrv_op_block(bs
, i
, reason
);
6414 void bdrv_op_unblock_all(BlockDriverState
*bs
, Error
*reason
)
6417 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
6418 bdrv_op_unblock(bs
, i
, reason
);
6422 bool bdrv_op_blocker_is_empty(BlockDriverState
*bs
)
6426 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
6427 if (!QLIST_EMPTY(&bs
->op_blockers
[i
])) {
6434 void bdrv_img_create(const char *filename
, const char *fmt
,
6435 const char *base_filename
, const char *base_fmt
,
6436 char *options
, uint64_t img_size
, int flags
, bool quiet
,
6439 QemuOptsList
*create_opts
= NULL
;
6440 QemuOpts
*opts
= NULL
;
6441 const char *backing_fmt
, *backing_file
;
6443 BlockDriver
*drv
, *proto_drv
;
6444 Error
*local_err
= NULL
;
6447 /* Find driver and parse its options */
6448 drv
= bdrv_find_format(fmt
);
6450 error_setg(errp
, "Unknown file format '%s'", fmt
);
6454 proto_drv
= bdrv_find_protocol(filename
, true, errp
);
6459 if (!drv
->create_opts
) {
6460 error_setg(errp
, "Format driver '%s' does not support image creation",
6465 if (!proto_drv
->create_opts
) {
6466 error_setg(errp
, "Protocol driver '%s' does not support image creation",
6467 proto_drv
->format_name
);
6471 /* Create parameter list */
6472 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
6473 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
6475 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
6477 /* Parse -o options */
6479 if (!qemu_opts_do_parse(opts
, options
, NULL
, errp
)) {
6484 if (!qemu_opt_get(opts
, BLOCK_OPT_SIZE
)) {
6485 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, img_size
, &error_abort
);
6486 } else if (img_size
!= UINT64_C(-1)) {
6487 error_setg(errp
, "The image size must be specified only once");
6491 if (base_filename
) {
6492 if (!qemu_opt_set(opts
, BLOCK_OPT_BACKING_FILE
, base_filename
,
6494 error_setg(errp
, "Backing file not supported for file format '%s'",
6501 if (!qemu_opt_set(opts
, BLOCK_OPT_BACKING_FMT
, base_fmt
, NULL
)) {
6502 error_setg(errp
, "Backing file format not supported for file "
6503 "format '%s'", fmt
);
6508 backing_file
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FILE
);
6510 if (!strcmp(filename
, backing_file
)) {
6511 error_setg(errp
, "Error: Trying to create an image with the "
6512 "same filename as the backing file");
6515 if (backing_file
[0] == '\0') {
6516 error_setg(errp
, "Expected backing file name, got empty string");
6521 backing_fmt
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FMT
);
6523 /* The size for the image must always be specified, unless we have a backing
6524 * file and we have not been forbidden from opening it. */
6525 size
= qemu_opt_get_size(opts
, BLOCK_OPT_SIZE
, img_size
);
6526 if (backing_file
&& !(flags
& BDRV_O_NO_BACKING
)) {
6527 BlockDriverState
*bs
;
6530 QDict
*backing_options
= NULL
;
6533 bdrv_get_full_backing_filename_from_filename(filename
, backing_file
,
6538 assert(full_backing
);
6540 /* backing files always opened read-only */
6542 back_flags
&= ~(BDRV_O_RDWR
| BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
);
6544 backing_options
= qdict_new();
6546 qdict_put_str(backing_options
, "driver", backing_fmt
);
6548 qdict_put_bool(backing_options
, BDRV_OPT_FORCE_SHARE
, true);
6550 bs
= bdrv_open(full_backing
, NULL
, backing_options
, back_flags
,
6552 g_free(full_backing
);
6554 error_append_hint(&local_err
, "Could not open backing image.\n");
6558 warn_report("Deprecated use of backing file without explicit "
6559 "backing format (detected format of %s)",
6560 bs
->drv
->format_name
);
6561 if (bs
->drv
!= &bdrv_raw
) {
6563 * A probe of raw deserves the most attention:
6564 * leaving the backing format out of the image
6565 * will ensure bs->probed is set (ensuring we
6566 * don't accidentally commit into the backing
6567 * file), and allow more spots to warn the users
6568 * to fix their toolchain when opening this image
6569 * later. For other images, we can safely record
6570 * the format that we probed.
6572 backing_fmt
= bs
->drv
->format_name
;
6573 qemu_opt_set(opts
, BLOCK_OPT_BACKING_FMT
, backing_fmt
,
6578 /* Opened BS, have no size */
6579 size
= bdrv_getlength(bs
);
6581 error_setg_errno(errp
, -size
, "Could not get size of '%s'",
6586 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, size
, &error_abort
);
6590 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6591 } else if (backing_file
&& !backing_fmt
) {
6592 warn_report("Deprecated use of unopened backing file without "
6593 "explicit backing format, use of this image requires "
6594 "potentially unsafe format probing");
6598 error_setg(errp
, "Image creation needs a size parameter");
6603 printf("Formatting '%s', fmt=%s ", filename
, fmt
);
6604 qemu_opts_print(opts
, " ");
6609 ret
= bdrv_create(drv
, filename
, opts
, &local_err
);
6611 if (ret
== -EFBIG
) {
6612 /* This is generally a better message than whatever the driver would
6613 * deliver (especially because of the cluster_size_hint), since that
6614 * is most probably not much different from "image too large". */
6615 const char *cluster_size_hint
= "";
6616 if (qemu_opt_get_size(opts
, BLOCK_OPT_CLUSTER_SIZE
, 0)) {
6617 cluster_size_hint
= " (try using a larger cluster size)";
6619 error_setg(errp
, "The image size is too large for file format '%s'"
6620 "%s", fmt
, cluster_size_hint
);
6621 error_free(local_err
);
6626 qemu_opts_del(opts
);
6627 qemu_opts_free(create_opts
);
6628 error_propagate(errp
, local_err
);
6631 AioContext
*bdrv_get_aio_context(BlockDriverState
*bs
)
6633 return bs
? bs
->aio_context
: qemu_get_aio_context();
6636 AioContext
*coroutine_fn
bdrv_co_enter(BlockDriverState
*bs
)
6638 Coroutine
*self
= qemu_coroutine_self();
6639 AioContext
*old_ctx
= qemu_coroutine_get_aio_context(self
);
6640 AioContext
*new_ctx
;
6643 * Increase bs->in_flight to ensure that this operation is completed before
6644 * moving the node to a different AioContext. Read new_ctx only afterwards.
6646 bdrv_inc_in_flight(bs
);
6648 new_ctx
= bdrv_get_aio_context(bs
);
6649 aio_co_reschedule_self(new_ctx
);
6653 void coroutine_fn
bdrv_co_leave(BlockDriverState
*bs
, AioContext
*old_ctx
)
6655 aio_co_reschedule_self(old_ctx
);
6656 bdrv_dec_in_flight(bs
);
6659 void coroutine_fn
bdrv_co_lock(BlockDriverState
*bs
)
6661 AioContext
*ctx
= bdrv_get_aio_context(bs
);
6663 /* In the main thread, bs->aio_context won't change concurrently */
6664 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6667 * We're in coroutine context, so we already hold the lock of the main
6668 * loop AioContext. Don't lock it twice to avoid deadlocks.
6670 assert(qemu_in_coroutine());
6671 if (ctx
!= qemu_get_aio_context()) {
6672 aio_context_acquire(ctx
);
6676 void coroutine_fn
bdrv_co_unlock(BlockDriverState
*bs
)
6678 AioContext
*ctx
= bdrv_get_aio_context(bs
);
6680 assert(qemu_in_coroutine());
6681 if (ctx
!= qemu_get_aio_context()) {
6682 aio_context_release(ctx
);
6686 void bdrv_coroutine_enter(BlockDriverState
*bs
, Coroutine
*co
)
6688 aio_co_enter(bdrv_get_aio_context(bs
), co
);
6691 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier
*ban
)
6693 QLIST_REMOVE(ban
, list
);
6697 static void bdrv_detach_aio_context(BlockDriverState
*bs
)
6699 BdrvAioNotifier
*baf
, *baf_tmp
;
6701 assert(!bs
->walking_aio_notifiers
);
6702 bs
->walking_aio_notifiers
= true;
6703 QLIST_FOREACH_SAFE(baf
, &bs
->aio_notifiers
, list
, baf_tmp
) {
6705 bdrv_do_remove_aio_context_notifier(baf
);
6707 baf
->detach_aio_context(baf
->opaque
);
6710 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6711 * remove remaining aio notifiers if we aren't called again.
6713 bs
->walking_aio_notifiers
= false;
6715 if (bs
->drv
&& bs
->drv
->bdrv_detach_aio_context
) {
6716 bs
->drv
->bdrv_detach_aio_context(bs
);
6719 if (bs
->quiesce_counter
) {
6720 aio_enable_external(bs
->aio_context
);
6722 bs
->aio_context
= NULL
;
6725 static void bdrv_attach_aio_context(BlockDriverState
*bs
,
6726 AioContext
*new_context
)
6728 BdrvAioNotifier
*ban
, *ban_tmp
;
6730 if (bs
->quiesce_counter
) {
6731 aio_disable_external(new_context
);
6734 bs
->aio_context
= new_context
;
6736 if (bs
->drv
&& bs
->drv
->bdrv_attach_aio_context
) {
6737 bs
->drv
->bdrv_attach_aio_context(bs
, new_context
);
6740 assert(!bs
->walking_aio_notifiers
);
6741 bs
->walking_aio_notifiers
= true;
6742 QLIST_FOREACH_SAFE(ban
, &bs
->aio_notifiers
, list
, ban_tmp
) {
6744 bdrv_do_remove_aio_context_notifier(ban
);
6746 ban
->attached_aio_context(new_context
, ban
->opaque
);
6749 bs
->walking_aio_notifiers
= false;
6753 * Changes the AioContext used for fd handlers, timers, and BHs by this
6754 * BlockDriverState and all its children and parents.
6756 * Must be called from the main AioContext.
6758 * The caller must own the AioContext lock for the old AioContext of bs, but it
6759 * must not own the AioContext lock for new_context (unless new_context is the
6760 * same as the current context of bs).
6762 * @ignore will accumulate all visited BdrvChild object. The caller is
6763 * responsible for freeing the list afterwards.
6765 void bdrv_set_aio_context_ignore(BlockDriverState
*bs
,
6766 AioContext
*new_context
, GSList
**ignore
)
6768 AioContext
*old_context
= bdrv_get_aio_context(bs
);
6769 GSList
*children_to_process
= NULL
;
6770 GSList
*parents_to_process
= NULL
;
6772 BdrvChild
*child
, *parent
;
6774 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6776 if (old_context
== new_context
) {
6780 bdrv_drained_begin(bs
);
6782 QLIST_FOREACH(child
, &bs
->children
, next
) {
6783 if (g_slist_find(*ignore
, child
)) {
6786 *ignore
= g_slist_prepend(*ignore
, child
);
6787 children_to_process
= g_slist_prepend(children_to_process
, child
);
6790 QLIST_FOREACH(parent
, &bs
->parents
, next_parent
) {
6791 if (g_slist_find(*ignore
, parent
)) {
6794 *ignore
= g_slist_prepend(*ignore
, parent
);
6795 parents_to_process
= g_slist_prepend(parents_to_process
, parent
);
6798 for (entry
= children_to_process
;
6800 entry
= g_slist_next(entry
)) {
6801 child
= entry
->data
;
6802 bdrv_set_aio_context_ignore(child
->bs
, new_context
, ignore
);
6804 g_slist_free(children_to_process
);
6806 for (entry
= parents_to_process
;
6808 entry
= g_slist_next(entry
)) {
6809 parent
= entry
->data
;
6810 assert(parent
->klass
->set_aio_ctx
);
6811 parent
->klass
->set_aio_ctx(parent
, new_context
, ignore
);
6813 g_slist_free(parents_to_process
);
6815 bdrv_detach_aio_context(bs
);
6817 /* Acquire the new context, if necessary */
6818 if (qemu_get_aio_context() != new_context
) {
6819 aio_context_acquire(new_context
);
6822 bdrv_attach_aio_context(bs
, new_context
);
6825 * If this function was recursively called from
6826 * bdrv_set_aio_context_ignore(), there may be nodes in the
6827 * subtree that have not yet been moved to the new AioContext.
6828 * Release the old one so bdrv_drained_end() can poll them.
6830 if (qemu_get_aio_context() != old_context
) {
6831 aio_context_release(old_context
);
6834 bdrv_drained_end(bs
);
6836 if (qemu_get_aio_context() != old_context
) {
6837 aio_context_acquire(old_context
);
6839 if (qemu_get_aio_context() != new_context
) {
6840 aio_context_release(new_context
);
6844 static bool bdrv_parent_can_set_aio_context(BdrvChild
*c
, AioContext
*ctx
,
6845 GSList
**ignore
, Error
**errp
)
6847 if (g_slist_find(*ignore
, c
)) {
6850 *ignore
= g_slist_prepend(*ignore
, c
);
6853 * A BdrvChildClass that doesn't handle AioContext changes cannot
6854 * tolerate any AioContext changes
6856 if (!c
->klass
->can_set_aio_ctx
) {
6857 char *user
= bdrv_child_user_desc(c
);
6858 error_setg(errp
, "Changing iothreads is not supported by %s", user
);
6862 if (!c
->klass
->can_set_aio_ctx(c
, ctx
, ignore
, errp
)) {
6863 assert(!errp
|| *errp
);
6869 bool bdrv_child_can_set_aio_context(BdrvChild
*c
, AioContext
*ctx
,
6870 GSList
**ignore
, Error
**errp
)
6872 if (g_slist_find(*ignore
, c
)) {
6875 *ignore
= g_slist_prepend(*ignore
, c
);
6876 return bdrv_can_set_aio_context(c
->bs
, ctx
, ignore
, errp
);
6879 /* @ignore will accumulate all visited BdrvChild object. The caller is
6880 * responsible for freeing the list afterwards. */
6881 bool bdrv_can_set_aio_context(BlockDriverState
*bs
, AioContext
*ctx
,
6882 GSList
**ignore
, Error
**errp
)
6886 if (bdrv_get_aio_context(bs
) == ctx
) {
6890 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
6891 if (!bdrv_parent_can_set_aio_context(c
, ctx
, ignore
, errp
)) {
6895 QLIST_FOREACH(c
, &bs
->children
, next
) {
6896 if (!bdrv_child_can_set_aio_context(c
, ctx
, ignore
, errp
)) {
6904 int bdrv_child_try_set_aio_context(BlockDriverState
*bs
, AioContext
*ctx
,
6905 BdrvChild
*ignore_child
, Error
**errp
)
6910 ignore
= ignore_child
? g_slist_prepend(NULL
, ignore_child
) : NULL
;
6911 ret
= bdrv_can_set_aio_context(bs
, ctx
, &ignore
, errp
);
6912 g_slist_free(ignore
);
6918 ignore
= ignore_child
? g_slist_prepend(NULL
, ignore_child
) : NULL
;
6919 bdrv_set_aio_context_ignore(bs
, ctx
, &ignore
);
6920 g_slist_free(ignore
);
6925 int bdrv_try_set_aio_context(BlockDriverState
*bs
, AioContext
*ctx
,
6928 return bdrv_child_try_set_aio_context(bs
, ctx
, NULL
, errp
);
6931 void bdrv_add_aio_context_notifier(BlockDriverState
*bs
,
6932 void (*attached_aio_context
)(AioContext
*new_context
, void *opaque
),
6933 void (*detach_aio_context
)(void *opaque
), void *opaque
)
6935 BdrvAioNotifier
*ban
= g_new(BdrvAioNotifier
, 1);
6936 *ban
= (BdrvAioNotifier
){
6937 .attached_aio_context
= attached_aio_context
,
6938 .detach_aio_context
= detach_aio_context
,
6942 QLIST_INSERT_HEAD(&bs
->aio_notifiers
, ban
, list
);
6945 void bdrv_remove_aio_context_notifier(BlockDriverState
*bs
,
6946 void (*attached_aio_context
)(AioContext
*,
6948 void (*detach_aio_context
)(void *),
6951 BdrvAioNotifier
*ban
, *ban_next
;
6953 QLIST_FOREACH_SAFE(ban
, &bs
->aio_notifiers
, list
, ban_next
) {
6954 if (ban
->attached_aio_context
== attached_aio_context
&&
6955 ban
->detach_aio_context
== detach_aio_context
&&
6956 ban
->opaque
== opaque
&&
6957 ban
->deleted
== false)
6959 if (bs
->walking_aio_notifiers
) {
6960 ban
->deleted
= true;
6962 bdrv_do_remove_aio_context_notifier(ban
);
6971 int bdrv_amend_options(BlockDriverState
*bs
, QemuOpts
*opts
,
6972 BlockDriverAmendStatusCB
*status_cb
, void *cb_opaque
,
6977 error_setg(errp
, "Node is ejected");
6980 if (!bs
->drv
->bdrv_amend_options
) {
6981 error_setg(errp
, "Block driver '%s' does not support option amendment",
6982 bs
->drv
->format_name
);
6985 return bs
->drv
->bdrv_amend_options(bs
, opts
, status_cb
,
6986 cb_opaque
, force
, errp
);
6990 * This function checks whether the given @to_replace is allowed to be
6991 * replaced by a node that always shows the same data as @bs. This is
6992 * used for example to verify whether the mirror job can replace
6993 * @to_replace by the target mirrored from @bs.
6994 * To be replaceable, @bs and @to_replace may either be guaranteed to
6995 * always show the same data (because they are only connected through
6996 * filters), or some driver may allow replacing one of its children
6997 * because it can guarantee that this child's data is not visible at
6998 * all (for example, for dissenting quorum children that have no other
7001 bool bdrv_recurse_can_replace(BlockDriverState
*bs
,
7002 BlockDriverState
*to_replace
)
7004 BlockDriverState
*filtered
;
7006 if (!bs
|| !bs
->drv
) {
7010 if (bs
== to_replace
) {
7014 /* See what the driver can do */
7015 if (bs
->drv
->bdrv_recurse_can_replace
) {
7016 return bs
->drv
->bdrv_recurse_can_replace(bs
, to_replace
);
7019 /* For filters without an own implementation, we can recurse on our own */
7020 filtered
= bdrv_filter_bs(bs
);
7022 return bdrv_recurse_can_replace(filtered
, to_replace
);
7030 * Check whether the given @node_name can be replaced by a node that
7031 * has the same data as @parent_bs. If so, return @node_name's BDS;
7034 * @node_name must be a (recursive) *child of @parent_bs (or this
7035 * function will return NULL).
7037 * The result (whether the node can be replaced or not) is only valid
7038 * for as long as no graph or permission changes occur.
7040 BlockDriverState
*check_to_replace_node(BlockDriverState
*parent_bs
,
7041 const char *node_name
, Error
**errp
)
7043 BlockDriverState
*to_replace_bs
= bdrv_find_node(node_name
);
7044 AioContext
*aio_context
;
7046 if (!to_replace_bs
) {
7047 error_setg(errp
, "Failed to find node with node-name='%s'", node_name
);
7051 aio_context
= bdrv_get_aio_context(to_replace_bs
);
7052 aio_context_acquire(aio_context
);
7054 if (bdrv_op_is_blocked(to_replace_bs
, BLOCK_OP_TYPE_REPLACE
, errp
)) {
7055 to_replace_bs
= NULL
;
7059 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7060 * most non filter in order to prevent data corruption.
7061 * Another benefit is that this tests exclude backing files which are
7062 * blocked by the backing blockers.
7064 if (!bdrv_recurse_can_replace(parent_bs
, to_replace_bs
)) {
7065 error_setg(errp
, "Cannot replace '%s' by a node mirrored from '%s', "
7066 "because it cannot be guaranteed that doing so would not "
7067 "lead to an abrupt change of visible data",
7068 node_name
, parent_bs
->node_name
);
7069 to_replace_bs
= NULL
;
7074 aio_context_release(aio_context
);
7075 return to_replace_bs
;
7079 * Iterates through the list of runtime option keys that are said to
7080 * be "strong" for a BDS. An option is called "strong" if it changes
7081 * a BDS's data. For example, the null block driver's "size" and
7082 * "read-zeroes" options are strong, but its "latency-ns" option is
7085 * If a key returned by this function ends with a dot, all options
7086 * starting with that prefix are strong.
7088 static const char *const *strong_options(BlockDriverState
*bs
,
7089 const char *const *curopt
)
7091 static const char *const global_options
[] = {
7092 "driver", "filename", NULL
7096 return &global_options
[0];
7100 if (curopt
== &global_options
[ARRAY_SIZE(global_options
) - 1] && bs
->drv
) {
7101 curopt
= bs
->drv
->strong_runtime_opts
;
7104 return (curopt
&& *curopt
) ? curopt
: NULL
;
7108 * Copies all strong runtime options from bs->options to the given
7109 * QDict. The set of strong option keys is determined by invoking
7112 * Returns true iff any strong option was present in bs->options (and
7113 * thus copied to the target QDict) with the exception of "filename"
7114 * and "driver". The caller is expected to use this value to decide
7115 * whether the existence of strong options prevents the generation of
7118 static bool append_strong_runtime_options(QDict
*d
, BlockDriverState
*bs
)
7120 bool found_any
= false;
7121 const char *const *option_name
= NULL
;
7127 while ((option_name
= strong_options(bs
, option_name
))) {
7128 bool option_given
= false;
7130 assert(strlen(*option_name
) > 0);
7131 if ((*option_name
)[strlen(*option_name
) - 1] != '.') {
7132 QObject
*entry
= qdict_get(bs
->options
, *option_name
);
7137 qdict_put_obj(d
, *option_name
, qobject_ref(entry
));
7138 option_given
= true;
7140 const QDictEntry
*entry
;
7141 for (entry
= qdict_first(bs
->options
); entry
;
7142 entry
= qdict_next(bs
->options
, entry
))
7144 if (strstart(qdict_entry_key(entry
), *option_name
, NULL
)) {
7145 qdict_put_obj(d
, qdict_entry_key(entry
),
7146 qobject_ref(qdict_entry_value(entry
)));
7147 option_given
= true;
7152 /* While "driver" and "filename" need to be included in a JSON filename,
7153 * their existence does not prohibit generation of a plain filename. */
7154 if (!found_any
&& option_given
&&
7155 strcmp(*option_name
, "driver") && strcmp(*option_name
, "filename"))
7161 if (!qdict_haskey(d
, "driver")) {
7162 /* Drivers created with bdrv_new_open_driver() may not have a
7163 * @driver option. Add it here. */
7164 qdict_put_str(d
, "driver", bs
->drv
->format_name
);
7170 /* Note: This function may return false positives; it may return true
7171 * even if opening the backing file specified by bs's image header
7172 * would result in exactly bs->backing. */
7173 bool bdrv_backing_overridden(BlockDriverState
*bs
)
7176 return strcmp(bs
->auto_backing_file
,
7177 bs
->backing
->bs
->filename
);
7179 /* No backing BDS, so if the image header reports any backing
7180 * file, it must have been suppressed */
7181 return bs
->auto_backing_file
[0] != '\0';
7185 /* Updates the following BDS fields:
7186 * - exact_filename: A filename which may be used for opening a block device
7187 * which (mostly) equals the given BDS (even without any
7188 * other options; so reading and writing must return the same
7189 * results, but caching etc. may be different)
7190 * - full_open_options: Options which, when given when opening a block device
7191 * (without a filename), result in a BDS (mostly)
7192 * equalling the given one
7193 * - filename: If exact_filename is set, it is copied here. Otherwise,
7194 * full_open_options is converted to a JSON object, prefixed with
7195 * "json:" (for use through the JSON pseudo protocol) and put here.
7197 void bdrv_refresh_filename(BlockDriverState
*bs
)
7199 BlockDriver
*drv
= bs
->drv
;
7201 BlockDriverState
*primary_child_bs
;
7203 bool backing_overridden
;
7204 bool generate_json_filename
; /* Whether our default implementation should
7205 fill exact_filename (false) or not (true) */
7211 /* This BDS's file name may depend on any of its children's file names, so
7212 * refresh those first */
7213 QLIST_FOREACH(child
, &bs
->children
, next
) {
7214 bdrv_refresh_filename(child
->bs
);
7218 /* For implicit nodes, just copy everything from the single child */
7219 child
= QLIST_FIRST(&bs
->children
);
7220 assert(QLIST_NEXT(child
, next
) == NULL
);
7222 pstrcpy(bs
->exact_filename
, sizeof(bs
->exact_filename
),
7223 child
->bs
->exact_filename
);
7224 pstrcpy(bs
->filename
, sizeof(bs
->filename
), child
->bs
->filename
);
7226 qobject_unref(bs
->full_open_options
);
7227 bs
->full_open_options
= qobject_ref(child
->bs
->full_open_options
);
7232 backing_overridden
= bdrv_backing_overridden(bs
);
7234 if (bs
->open_flags
& BDRV_O_NO_IO
) {
7235 /* Without I/O, the backing file does not change anything.
7236 * Therefore, in such a case (primarily qemu-img), we can
7237 * pretend the backing file has not been overridden even if
7238 * it technically has been. */
7239 backing_overridden
= false;
7242 /* Gather the options QDict */
7244 generate_json_filename
= append_strong_runtime_options(opts
, bs
);
7245 generate_json_filename
|= backing_overridden
;
7247 if (drv
->bdrv_gather_child_options
) {
7248 /* Some block drivers may not want to present all of their children's
7249 * options, or name them differently from BdrvChild.name */
7250 drv
->bdrv_gather_child_options(bs
, opts
, backing_overridden
);
7252 QLIST_FOREACH(child
, &bs
->children
, next
) {
7253 if (child
== bs
->backing
&& !backing_overridden
) {
7254 /* We can skip the backing BDS if it has not been overridden */
7258 qdict_put(opts
, child
->name
,
7259 qobject_ref(child
->bs
->full_open_options
));
7262 if (backing_overridden
&& !bs
->backing
) {
7263 /* Force no backing file */
7264 qdict_put_null(opts
, "backing");
7268 qobject_unref(bs
->full_open_options
);
7269 bs
->full_open_options
= opts
;
7271 primary_child_bs
= bdrv_primary_bs(bs
);
7273 if (drv
->bdrv_refresh_filename
) {
7274 /* Obsolete information is of no use here, so drop the old file name
7275 * information before refreshing it */
7276 bs
->exact_filename
[0] = '\0';
7278 drv
->bdrv_refresh_filename(bs
);
7279 } else if (primary_child_bs
) {
7281 * Try to reconstruct valid information from the underlying
7282 * file -- this only works for format nodes (filter nodes
7283 * cannot be probed and as such must be selected by the user
7284 * either through an options dict, or through a special
7285 * filename which the filter driver must construct in its
7286 * .bdrv_refresh_filename() implementation).
7289 bs
->exact_filename
[0] = '\0';
7292 * We can use the underlying file's filename if:
7293 * - it has a filename,
7294 * - the current BDS is not a filter,
7295 * - the file is a protocol BDS, and
7296 * - opening that file (as this BDS's format) will automatically create
7297 * the BDS tree we have right now, that is:
7298 * - the user did not significantly change this BDS's behavior with
7299 * some explicit (strong) options
7300 * - no non-file child of this BDS has been overridden by the user
7301 * Both of these conditions are represented by generate_json_filename.
7303 if (primary_child_bs
->exact_filename
[0] &&
7304 primary_child_bs
->drv
->bdrv_file_open
&&
7305 !drv
->is_filter
&& !generate_json_filename
)
7307 strcpy(bs
->exact_filename
, primary_child_bs
->exact_filename
);
7311 if (bs
->exact_filename
[0]) {
7312 pstrcpy(bs
->filename
, sizeof(bs
->filename
), bs
->exact_filename
);
7314 GString
*json
= qobject_to_json(QOBJECT(bs
->full_open_options
));
7315 if (snprintf(bs
->filename
, sizeof(bs
->filename
), "json:%s",
7316 json
->str
) >= sizeof(bs
->filename
)) {
7317 /* Give user a hint if we truncated things. */
7318 strcpy(bs
->filename
+ sizeof(bs
->filename
) - 4, "...");
7320 g_string_free(json
, true);
7324 char *bdrv_dirname(BlockDriverState
*bs
, Error
**errp
)
7326 BlockDriver
*drv
= bs
->drv
;
7327 BlockDriverState
*child_bs
;
7330 error_setg(errp
, "Node '%s' is ejected", bs
->node_name
);
7334 if (drv
->bdrv_dirname
) {
7335 return drv
->bdrv_dirname(bs
, errp
);
7338 child_bs
= bdrv_primary_bs(bs
);
7340 return bdrv_dirname(child_bs
, errp
);
7343 bdrv_refresh_filename(bs
);
7344 if (bs
->exact_filename
[0] != '\0') {
7345 return path_combine(bs
->exact_filename
, "");
7348 error_setg(errp
, "Cannot generate a base directory for %s nodes",
7354 * Hot add/remove a BDS's child. So the user can take a child offline when
7355 * it is broken and take a new child online
7357 void bdrv_add_child(BlockDriverState
*parent_bs
, BlockDriverState
*child_bs
,
7361 if (!parent_bs
->drv
|| !parent_bs
->drv
->bdrv_add_child
) {
7362 error_setg(errp
, "The node %s does not support adding a child",
7363 bdrv_get_device_or_node_name(parent_bs
));
7367 if (!QLIST_EMPTY(&child_bs
->parents
)) {
7368 error_setg(errp
, "The node %s already has a parent",
7369 child_bs
->node_name
);
7373 parent_bs
->drv
->bdrv_add_child(parent_bs
, child_bs
, errp
);
7376 void bdrv_del_child(BlockDriverState
*parent_bs
, BdrvChild
*child
, Error
**errp
)
7380 if (!parent_bs
->drv
|| !parent_bs
->drv
->bdrv_del_child
) {
7381 error_setg(errp
, "The node %s does not support removing a child",
7382 bdrv_get_device_or_node_name(parent_bs
));
7386 QLIST_FOREACH(tmp
, &parent_bs
->children
, next
) {
7393 error_setg(errp
, "The node %s does not have a child named %s",
7394 bdrv_get_device_or_node_name(parent_bs
),
7395 bdrv_get_device_or_node_name(child
->bs
));
7399 parent_bs
->drv
->bdrv_del_child(parent_bs
, child
, errp
);
7402 int bdrv_make_empty(BdrvChild
*c
, Error
**errp
)
7404 BlockDriver
*drv
= c
->bs
->drv
;
7407 assert(c
->perm
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
));
7409 if (!drv
->bdrv_make_empty
) {
7410 error_setg(errp
, "%s does not support emptying nodes",
7415 ret
= drv
->bdrv_make_empty(c
->bs
);
7417 error_setg_errno(errp
, -ret
, "Failed to empty %s",
7426 * Return the child that @bs acts as an overlay for, and from which data may be
7427 * copied in COW or COR operations. Usually this is the backing file.
7429 BdrvChild
*bdrv_cow_child(BlockDriverState
*bs
)
7431 if (!bs
|| !bs
->drv
) {
7435 if (bs
->drv
->is_filter
) {
7443 assert(bs
->backing
->role
& BDRV_CHILD_COW
);
7448 * If @bs acts as a filter for exactly one of its children, return
7451 BdrvChild
*bdrv_filter_child(BlockDriverState
*bs
)
7455 if (!bs
|| !bs
->drv
) {
7459 if (!bs
->drv
->is_filter
) {
7463 /* Only one of @backing or @file may be used */
7464 assert(!(bs
->backing
&& bs
->file
));
7466 c
= bs
->backing
?: bs
->file
;
7471 assert(c
->role
& BDRV_CHILD_FILTERED
);
7476 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7477 * whichever is non-NULL.
7479 * Return NULL if both are NULL.
7481 BdrvChild
*bdrv_filter_or_cow_child(BlockDriverState
*bs
)
7483 BdrvChild
*cow_child
= bdrv_cow_child(bs
);
7484 BdrvChild
*filter_child
= bdrv_filter_child(bs
);
7486 /* Filter nodes cannot have COW backing files */
7487 assert(!(cow_child
&& filter_child
));
7489 return cow_child
?: filter_child
;
7493 * Return the primary child of this node: For filters, that is the
7494 * filtered child. For other nodes, that is usually the child storing
7496 * (A generally more helpful description is that this is (usually) the
7497 * child that has the same filename as @bs.)
7499 * Drivers do not necessarily have a primary child; for example quorum
7502 BdrvChild
*bdrv_primary_child(BlockDriverState
*bs
)
7504 BdrvChild
*c
, *found
= NULL
;
7506 QLIST_FOREACH(c
, &bs
->children
, next
) {
7507 if (c
->role
& BDRV_CHILD_PRIMARY
) {
7516 static BlockDriverState
*bdrv_do_skip_filters(BlockDriverState
*bs
,
7517 bool stop_on_explicit_filter
)
7525 while (!(stop_on_explicit_filter
&& !bs
->implicit
)) {
7526 c
= bdrv_filter_child(bs
);
7529 * A filter that is embedded in a working block graph must
7530 * have a child. Assert this here so this function does
7531 * not return a filter node that is not expected by the
7534 assert(!bs
->drv
|| !bs
->drv
->is_filter
);
7540 * Note that this treats nodes with bs->drv == NULL as not being
7541 * filters (bs->drv == NULL should be replaced by something else
7543 * The advantage of this behavior is that this function will thus
7544 * always return a non-NULL value (given a non-NULL @bs).
7551 * Return the first BDS that has not been added implicitly or that
7552 * does not have a filtered child down the chain starting from @bs
7553 * (including @bs itself).
7555 BlockDriverState
*bdrv_skip_implicit_filters(BlockDriverState
*bs
)
7557 return bdrv_do_skip_filters(bs
, true);
7561 * Return the first BDS that does not have a filtered child down the
7562 * chain starting from @bs (including @bs itself).
7564 BlockDriverState
*bdrv_skip_filters(BlockDriverState
*bs
)
7566 return bdrv_do_skip_filters(bs
, false);
7570 * For a backing chain, return the first non-filter backing image of
7571 * the first non-filter image.
7573 BlockDriverState
*bdrv_backing_chain_next(BlockDriverState
*bs
)
7575 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs
)));