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 "sysemu/sysemu.h"
46 #include "qemu/notify.h"
47 #include "qemu/option.h"
48 #include "qemu/coroutine.h"
49 #include "block/qapi.h"
50 #include "qemu/timer.h"
51 #include "qemu/cutils.h"
53 #include "block/coroutines.h"
56 #include <sys/ioctl.h>
57 #include <sys/queue.h>
67 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
69 static QTAILQ_HEAD(, BlockDriverState
) graph_bdrv_states
=
70 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states
);
72 static QTAILQ_HEAD(, BlockDriverState
) all_bdrv_states
=
73 QTAILQ_HEAD_INITIALIZER(all_bdrv_states
);
75 static QLIST_HEAD(, BlockDriver
) bdrv_drivers
=
76 QLIST_HEAD_INITIALIZER(bdrv_drivers
);
78 static BlockDriverState
*bdrv_open_inherit(const char *filename
,
79 const char *reference
,
80 QDict
*options
, int flags
,
81 BlockDriverState
*parent
,
82 const BdrvChildClass
*child_class
,
83 BdrvChildRole child_role
,
86 static void bdrv_replace_child_noperm(BdrvChild
*child
,
87 BlockDriverState
*new_bs
);
88 static int bdrv_attach_child_noperm(BlockDriverState
*parent_bs
,
89 BlockDriverState
*child_bs
,
90 const char *child_name
,
91 const BdrvChildClass
*child_class
,
92 BdrvChildRole child_role
,
96 static void bdrv_remove_filter_or_cow_child(BlockDriverState
*bs
,
99 static int bdrv_reopen_prepare(BDRVReopenState
*reopen_state
,
100 BlockReopenQueue
*queue
,
101 Transaction
*set_backings_tran
, Error
**errp
);
102 static void bdrv_reopen_commit(BDRVReopenState
*reopen_state
);
103 static void bdrv_reopen_abort(BDRVReopenState
*reopen_state
);
105 /* If non-zero, use only whitelisted block drivers */
106 static int use_bdrv_whitelist
;
109 static int is_windows_drive_prefix(const char *filename
)
111 return (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
112 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
116 int is_windows_drive(const char *filename
)
118 if (is_windows_drive_prefix(filename
) &&
121 if (strstart(filename
, "\\\\.\\", NULL
) ||
122 strstart(filename
, "//./", NULL
))
128 size_t bdrv_opt_mem_align(BlockDriverState
*bs
)
130 if (!bs
|| !bs
->drv
) {
131 /* page size or 4k (hdd sector size) should be on the safe side */
132 return MAX(4096, qemu_real_host_page_size
);
135 return bs
->bl
.opt_mem_alignment
;
138 size_t bdrv_min_mem_align(BlockDriverState
*bs
)
140 if (!bs
|| !bs
->drv
) {
141 /* page size or 4k (hdd sector size) should be on the safe side */
142 return MAX(4096, qemu_real_host_page_size
);
145 return bs
->bl
.min_mem_alignment
;
148 /* check if the path starts with "<protocol>:" */
149 int path_has_protocol(const char *path
)
154 if (is_windows_drive(path
) ||
155 is_windows_drive_prefix(path
)) {
158 p
= path
+ strcspn(path
, ":/\\");
160 p
= path
+ strcspn(path
, ":/");
166 int path_is_absolute(const char *path
)
169 /* specific case for names like: "\\.\d:" */
170 if (is_windows_drive(path
) || is_windows_drive_prefix(path
)) {
173 return (*path
== '/' || *path
== '\\');
175 return (*path
== '/');
179 /* if filename is absolute, just return its duplicate. Otherwise, build a
180 path to it by considering it is relative to base_path. URL are
182 char *path_combine(const char *base_path
, const char *filename
)
184 const char *protocol_stripped
= NULL
;
189 if (path_is_absolute(filename
)) {
190 return g_strdup(filename
);
193 if (path_has_protocol(base_path
)) {
194 protocol_stripped
= strchr(base_path
, ':');
195 if (protocol_stripped
) {
199 p
= protocol_stripped
?: base_path
;
201 p1
= strrchr(base_path
, '/');
205 p2
= strrchr(base_path
, '\\');
206 if (!p1
|| p2
> p1
) {
221 result
= g_malloc(len
+ strlen(filename
) + 1);
222 memcpy(result
, base_path
, len
);
223 strcpy(result
+ len
, filename
);
229 * Helper function for bdrv_parse_filename() implementations to remove optional
230 * protocol prefixes (especially "file:") from a filename and for putting the
231 * stripped filename into the options QDict if there is such a prefix.
233 void bdrv_parse_filename_strip_prefix(const char *filename
, const char *prefix
,
236 if (strstart(filename
, prefix
, &filename
)) {
237 /* Stripping the explicit protocol prefix may result in a protocol
238 * prefix being (wrongly) detected (if the filename contains a colon) */
239 if (path_has_protocol(filename
)) {
240 GString
*fat_filename
;
242 /* This means there is some colon before the first slash; therefore,
243 * this cannot be an absolute path */
244 assert(!path_is_absolute(filename
));
246 /* And we can thus fix the protocol detection issue by prefixing it
248 fat_filename
= g_string_new("./");
249 g_string_append(fat_filename
, filename
);
251 assert(!path_has_protocol(fat_filename
->str
));
253 qdict_put(options
, "filename",
254 qstring_from_gstring(fat_filename
));
256 /* If no protocol prefix was detected, we can use the shortened
258 qdict_put_str(options
, "filename", filename
);
264 /* Returns whether the image file is opened as read-only. Note that this can
265 * return false and writing to the image file is still not possible because the
266 * image is inactivated. */
267 bool bdrv_is_read_only(BlockDriverState
*bs
)
269 return bs
->read_only
;
272 int bdrv_can_set_read_only(BlockDriverState
*bs
, bool read_only
,
273 bool ignore_allow_rdw
, Error
**errp
)
275 /* Do not set read_only if copy_on_read is enabled */
276 if (bs
->copy_on_read
&& read_only
) {
277 error_setg(errp
, "Can't set node '%s' to r/o with copy-on-read enabled",
278 bdrv_get_device_or_node_name(bs
));
282 /* Do not clear read_only if it is prohibited */
283 if (!read_only
&& !(bs
->open_flags
& BDRV_O_ALLOW_RDWR
) &&
286 error_setg(errp
, "Node '%s' is read only",
287 bdrv_get_device_or_node_name(bs
));
295 * Called by a driver that can only provide a read-only image.
297 * Returns 0 if the node is already read-only or it could switch the node to
298 * read-only because BDRV_O_AUTO_RDONLY is set.
300 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
301 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
302 * is not NULL, it is used as the error message for the Error object.
304 int bdrv_apply_auto_read_only(BlockDriverState
*bs
, const char *errmsg
,
309 if (!(bs
->open_flags
& BDRV_O_RDWR
)) {
312 if (!(bs
->open_flags
& BDRV_O_AUTO_RDONLY
)) {
316 ret
= bdrv_can_set_read_only(bs
, true, false, NULL
);
321 bs
->read_only
= true;
322 bs
->open_flags
&= ~BDRV_O_RDWR
;
327 error_setg(errp
, "%s", errmsg
?: "Image is read-only");
332 * If @backing is empty, this function returns NULL without setting
333 * @errp. In all other cases, NULL will only be returned with @errp
336 * Therefore, a return value of NULL without @errp set means that
337 * there is no backing file; if @errp is set, there is one but its
338 * absolute filename cannot be generated.
340 char *bdrv_get_full_backing_filename_from_filename(const char *backed
,
344 if (backing
[0] == '\0') {
346 } else if (path_has_protocol(backing
) || path_is_absolute(backing
)) {
347 return g_strdup(backing
);
348 } else if (backed
[0] == '\0' || strstart(backed
, "json:", NULL
)) {
349 error_setg(errp
, "Cannot use relative backing file names for '%s'",
353 return path_combine(backed
, backing
);
358 * If @filename is empty or NULL, this function returns NULL without
359 * setting @errp. In all other cases, NULL will only be returned with
362 static char *bdrv_make_absolute_filename(BlockDriverState
*relative_to
,
363 const char *filename
, Error
**errp
)
365 char *dir
, *full_name
;
367 if (!filename
|| filename
[0] == '\0') {
369 } else if (path_has_protocol(filename
) || path_is_absolute(filename
)) {
370 return g_strdup(filename
);
373 dir
= bdrv_dirname(relative_to
, errp
);
378 full_name
= g_strconcat(dir
, filename
, NULL
);
383 char *bdrv_get_full_backing_filename(BlockDriverState
*bs
, Error
**errp
)
385 return bdrv_make_absolute_filename(bs
, bs
->backing_file
, errp
);
388 void bdrv_register(BlockDriver
*bdrv
)
390 assert(bdrv
->format_name
);
391 QLIST_INSERT_HEAD(&bdrv_drivers
, bdrv
, list
);
394 BlockDriverState
*bdrv_new(void)
396 BlockDriverState
*bs
;
399 bs
= g_new0(BlockDriverState
, 1);
400 QLIST_INIT(&bs
->dirty_bitmaps
);
401 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
402 QLIST_INIT(&bs
->op_blockers
[i
]);
404 notifier_with_return_list_init(&bs
->before_write_notifiers
);
405 qemu_co_mutex_init(&bs
->reqs_lock
);
406 qemu_mutex_init(&bs
->dirty_bitmap_mutex
);
408 bs
->aio_context
= qemu_get_aio_context();
410 qemu_co_queue_init(&bs
->flush_queue
);
412 for (i
= 0; i
< bdrv_drain_all_count
; i
++) {
413 bdrv_drained_begin(bs
);
416 QTAILQ_INSERT_TAIL(&all_bdrv_states
, bs
, bs_list
);
421 static BlockDriver
*bdrv_do_find_format(const char *format_name
)
425 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
426 if (!strcmp(drv1
->format_name
, format_name
)) {
434 BlockDriver
*bdrv_find_format(const char *format_name
)
439 drv1
= bdrv_do_find_format(format_name
);
444 /* The driver isn't registered, maybe we need to load a module */
445 for (i
= 0; i
< (int)ARRAY_SIZE(block_driver_modules
); ++i
) {
446 if (!strcmp(block_driver_modules
[i
].format_name
, format_name
)) {
447 block_module_load_one(block_driver_modules
[i
].library_name
);
452 return bdrv_do_find_format(format_name
);
455 static int bdrv_format_is_whitelisted(const char *format_name
, bool read_only
)
457 static const char *whitelist_rw
[] = {
458 CONFIG_BDRV_RW_WHITELIST
461 static const char *whitelist_ro
[] = {
462 CONFIG_BDRV_RO_WHITELIST
467 if (!whitelist_rw
[0] && !whitelist_ro
[0]) {
468 return 1; /* no whitelist, anything goes */
471 for (p
= whitelist_rw
; *p
; p
++) {
472 if (!strcmp(format_name
, *p
)) {
477 for (p
= whitelist_ro
; *p
; p
++) {
478 if (!strcmp(format_name
, *p
)) {
486 int bdrv_is_whitelisted(BlockDriver
*drv
, bool read_only
)
488 return bdrv_format_is_whitelisted(drv
->format_name
, read_only
);
491 bool bdrv_uses_whitelist(void)
493 return use_bdrv_whitelist
;
496 typedef struct CreateCo
{
504 static void coroutine_fn
bdrv_create_co_entry(void *opaque
)
506 Error
*local_err
= NULL
;
509 CreateCo
*cco
= opaque
;
512 ret
= cco
->drv
->bdrv_co_create_opts(cco
->drv
,
513 cco
->filename
, cco
->opts
, &local_err
);
514 error_propagate(&cco
->err
, local_err
);
518 int bdrv_create(BlockDriver
*drv
, const char* filename
,
519 QemuOpts
*opts
, Error
**errp
)
526 .filename
= g_strdup(filename
),
532 if (!drv
->bdrv_co_create_opts
) {
533 error_setg(errp
, "Driver '%s' does not support image creation", drv
->format_name
);
538 if (qemu_in_coroutine()) {
539 /* Fast-path if already in coroutine context */
540 bdrv_create_co_entry(&cco
);
542 co
= qemu_coroutine_create(bdrv_create_co_entry
, &cco
);
543 qemu_coroutine_enter(co
);
544 while (cco
.ret
== NOT_DONE
) {
545 aio_poll(qemu_get_aio_context(), true);
552 error_propagate(errp
, cco
.err
);
554 error_setg_errno(errp
, -ret
, "Could not create image");
559 g_free(cco
.filename
);
564 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
565 * least the given @minimum_size.
567 * On success, return @blk's actual length.
568 * Otherwise, return -errno.
570 static int64_t create_file_fallback_truncate(BlockBackend
*blk
,
571 int64_t minimum_size
, Error
**errp
)
573 Error
*local_err
= NULL
;
577 ret
= blk_truncate(blk
, minimum_size
, false, PREALLOC_MODE_OFF
, 0,
579 if (ret
< 0 && ret
!= -ENOTSUP
) {
580 error_propagate(errp
, local_err
);
584 size
= blk_getlength(blk
);
586 error_free(local_err
);
587 error_setg_errno(errp
, -size
,
588 "Failed to inquire the new image file's length");
592 if (size
< minimum_size
) {
593 /* Need to grow the image, but we failed to do that */
594 error_propagate(errp
, local_err
);
598 error_free(local_err
);
605 * Helper function for bdrv_create_file_fallback(): Zero the first
606 * sector to remove any potentially pre-existing image header.
608 static int create_file_fallback_zero_first_sector(BlockBackend
*blk
,
609 int64_t current_size
,
612 int64_t bytes_to_clear
;
615 bytes_to_clear
= MIN(current_size
, BDRV_SECTOR_SIZE
);
616 if (bytes_to_clear
) {
617 ret
= blk_pwrite_zeroes(blk
, 0, bytes_to_clear
, BDRV_REQ_MAY_UNMAP
);
619 error_setg_errno(errp
, -ret
,
620 "Failed to clear the new image's first sector");
629 * Simple implementation of bdrv_co_create_opts for protocol drivers
630 * which only support creation via opening a file
631 * (usually existing raw storage device)
633 int coroutine_fn
bdrv_co_create_opts_simple(BlockDriver
*drv
,
634 const char *filename
,
642 PreallocMode prealloc
;
643 Error
*local_err
= NULL
;
646 size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0);
647 buf
= qemu_opt_get_del(opts
, BLOCK_OPT_PREALLOC
);
648 prealloc
= qapi_enum_parse(&PreallocMode_lookup
, buf
,
649 PREALLOC_MODE_OFF
, &local_err
);
652 error_propagate(errp
, local_err
);
656 if (prealloc
!= PREALLOC_MODE_OFF
) {
657 error_setg(errp
, "Unsupported preallocation mode '%s'",
658 PreallocMode_str(prealloc
));
662 options
= qdict_new();
663 qdict_put_str(options
, "driver", drv
->format_name
);
665 blk
= blk_new_open(filename
, NULL
, options
,
666 BDRV_O_RDWR
| BDRV_O_RESIZE
, errp
);
668 error_prepend(errp
, "Protocol driver '%s' does not support image "
669 "creation, and opening the image failed: ",
674 size
= create_file_fallback_truncate(blk
, size
, errp
);
680 ret
= create_file_fallback_zero_first_sector(blk
, size
, errp
);
691 int bdrv_create_file(const char *filename
, QemuOpts
*opts
, Error
**errp
)
693 QemuOpts
*protocol_opts
;
698 drv
= bdrv_find_protocol(filename
, true, errp
);
703 if (!drv
->create_opts
) {
704 error_setg(errp
, "Driver '%s' does not support image creation",
710 * 'opts' contains a QemuOptsList with a combination of format and protocol
713 * The format properly removes its options, but the default values remain
714 * in 'opts->list'. So if the protocol has options with the same name
715 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
716 * of the format, since for overlapping options, the format wins.
718 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
719 * only the set options, and then convert it back to QemuOpts, using the
720 * create_opts of the protocol. So the new QemuOpts, will contain only the
723 qdict
= qemu_opts_to_qdict(opts
, NULL
);
724 protocol_opts
= qemu_opts_from_qdict(drv
->create_opts
, qdict
, errp
);
725 if (protocol_opts
== NULL
) {
730 ret
= bdrv_create(drv
, filename
, protocol_opts
, errp
);
732 qemu_opts_del(protocol_opts
);
733 qobject_unref(qdict
);
737 int coroutine_fn
bdrv_co_delete_file(BlockDriverState
*bs
, Error
**errp
)
739 Error
*local_err
= NULL
;
745 error_setg(errp
, "Block node '%s' is not opened", bs
->filename
);
749 if (!bs
->drv
->bdrv_co_delete_file
) {
750 error_setg(errp
, "Driver '%s' does not support image deletion",
751 bs
->drv
->format_name
);
755 ret
= bs
->drv
->bdrv_co_delete_file(bs
, &local_err
);
757 error_propagate(errp
, local_err
);
763 void coroutine_fn
bdrv_co_delete_file_noerr(BlockDriverState
*bs
)
765 Error
*local_err
= NULL
;
772 ret
= bdrv_co_delete_file(bs
, &local_err
);
774 * ENOTSUP will happen if the block driver doesn't support
775 * the 'bdrv_co_delete_file' interface. This is a predictable
776 * scenario and shouldn't be reported back to the user.
778 if (ret
== -ENOTSUP
) {
779 error_free(local_err
);
780 } else if (ret
< 0) {
781 error_report_err(local_err
);
786 * Try to get @bs's logical and physical block size.
787 * On success, store them in @bsz struct and return 0.
788 * On failure return -errno.
789 * @bs must not be empty.
791 int bdrv_probe_blocksizes(BlockDriverState
*bs
, BlockSizes
*bsz
)
793 BlockDriver
*drv
= bs
->drv
;
794 BlockDriverState
*filtered
= bdrv_filter_bs(bs
);
796 if (drv
&& drv
->bdrv_probe_blocksizes
) {
797 return drv
->bdrv_probe_blocksizes(bs
, bsz
);
798 } else if (filtered
) {
799 return bdrv_probe_blocksizes(filtered
, bsz
);
806 * Try to get @bs's geometry (cyls, heads, sectors).
807 * On success, store them in @geo struct and return 0.
808 * On failure return -errno.
809 * @bs must not be empty.
811 int bdrv_probe_geometry(BlockDriverState
*bs
, HDGeometry
*geo
)
813 BlockDriver
*drv
= bs
->drv
;
814 BlockDriverState
*filtered
= bdrv_filter_bs(bs
);
816 if (drv
&& drv
->bdrv_probe_geometry
) {
817 return drv
->bdrv_probe_geometry(bs
, geo
);
818 } else if (filtered
) {
819 return bdrv_probe_geometry(filtered
, geo
);
826 * Create a uniquely-named empty temporary file.
827 * Return 0 upon success, otherwise a negative errno value.
829 int get_tmp_filename(char *filename
, int size
)
832 char temp_dir
[MAX_PATH
];
833 /* GetTempFileName requires that its output buffer (4th param)
834 have length MAX_PATH or greater. */
835 assert(size
>= MAX_PATH
);
836 return (GetTempPath(MAX_PATH
, temp_dir
)
837 && GetTempFileName(temp_dir
, "qem", 0, filename
)
838 ? 0 : -GetLastError());
842 tmpdir
= getenv("TMPDIR");
846 if (snprintf(filename
, size
, "%s/vl.XXXXXX", tmpdir
) >= size
) {
849 fd
= mkstemp(filename
);
853 if (close(fd
) != 0) {
862 * Detect host devices. By convention, /dev/cdrom[N] is always
863 * recognized as a host CDROM.
865 static BlockDriver
*find_hdev_driver(const char *filename
)
867 int score_max
= 0, score
;
868 BlockDriver
*drv
= NULL
, *d
;
870 QLIST_FOREACH(d
, &bdrv_drivers
, list
) {
871 if (d
->bdrv_probe_device
) {
872 score
= d
->bdrv_probe_device(filename
);
873 if (score
> score_max
) {
883 static BlockDriver
*bdrv_do_find_protocol(const char *protocol
)
887 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
888 if (drv1
->protocol_name
&& !strcmp(drv1
->protocol_name
, protocol
)) {
896 BlockDriver
*bdrv_find_protocol(const char *filename
,
897 bool allow_protocol_prefix
,
906 /* TODO Drivers without bdrv_file_open must be specified explicitly */
909 * XXX(hch): we really should not let host device detection
910 * override an explicit protocol specification, but moving this
911 * later breaks access to device names with colons in them.
912 * Thanks to the brain-dead persistent naming schemes on udev-
913 * based Linux systems those actually are quite common.
915 drv1
= find_hdev_driver(filename
);
920 if (!path_has_protocol(filename
) || !allow_protocol_prefix
) {
924 p
= strchr(filename
, ':');
927 if (len
> sizeof(protocol
) - 1)
928 len
= sizeof(protocol
) - 1;
929 memcpy(protocol
, filename
, len
);
930 protocol
[len
] = '\0';
932 drv1
= bdrv_do_find_protocol(protocol
);
937 for (i
= 0; i
< (int)ARRAY_SIZE(block_driver_modules
); ++i
) {
938 if (block_driver_modules
[i
].protocol_name
&&
939 !strcmp(block_driver_modules
[i
].protocol_name
, protocol
)) {
940 block_module_load_one(block_driver_modules
[i
].library_name
);
945 drv1
= bdrv_do_find_protocol(protocol
);
947 error_setg(errp
, "Unknown protocol '%s'", protocol
);
953 * Guess image format by probing its contents.
954 * This is not a good idea when your image is raw (CVE-2008-2004), but
955 * we do it anyway for backward compatibility.
957 * @buf contains the image's first @buf_size bytes.
958 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
959 * but can be smaller if the image file is smaller)
960 * @filename is its filename.
962 * For all block drivers, call the bdrv_probe() method to get its
964 * Return the first block driver with the highest probing score.
966 BlockDriver
*bdrv_probe_all(const uint8_t *buf
, int buf_size
,
967 const char *filename
)
969 int score_max
= 0, score
;
970 BlockDriver
*drv
= NULL
, *d
;
972 QLIST_FOREACH(d
, &bdrv_drivers
, list
) {
974 score
= d
->bdrv_probe(buf
, buf_size
, filename
);
975 if (score
> score_max
) {
985 static int find_image_format(BlockBackend
*file
, const char *filename
,
986 BlockDriver
**pdrv
, Error
**errp
)
989 uint8_t buf
[BLOCK_PROBE_BUF_SIZE
];
992 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
993 if (blk_is_sg(file
) || !blk_is_inserted(file
) || blk_getlength(file
) == 0) {
998 ret
= blk_pread(file
, 0, buf
, sizeof(buf
));
1000 error_setg_errno(errp
, -ret
, "Could not read image for determining its "
1006 drv
= bdrv_probe_all(buf
, ret
, filename
);
1008 error_setg(errp
, "Could not determine image format: No compatible "
1017 * Set the current 'total_sectors' value
1018 * Return 0 on success, -errno on error.
1020 int refresh_total_sectors(BlockDriverState
*bs
, int64_t hint
)
1022 BlockDriver
*drv
= bs
->drv
;
1028 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
1032 /* query actual device if possible, otherwise just trust the hint */
1033 if (drv
->bdrv_getlength
) {
1034 int64_t length
= drv
->bdrv_getlength(bs
);
1038 hint
= DIV_ROUND_UP(length
, BDRV_SECTOR_SIZE
);
1041 bs
->total_sectors
= hint
;
1043 if (bs
->total_sectors
* BDRV_SECTOR_SIZE
> BDRV_MAX_LENGTH
) {
1051 * Combines a QDict of new block driver @options with any missing options taken
1052 * from @old_options, so that leaving out an option defaults to its old value.
1054 static void bdrv_join_options(BlockDriverState
*bs
, QDict
*options
,
1057 if (bs
->drv
&& bs
->drv
->bdrv_join_options
) {
1058 bs
->drv
->bdrv_join_options(options
, old_options
);
1060 qdict_join(options
, old_options
, false);
1064 static BlockdevDetectZeroesOptions
bdrv_parse_detect_zeroes(QemuOpts
*opts
,
1068 Error
*local_err
= NULL
;
1069 char *value
= qemu_opt_get_del(opts
, "detect-zeroes");
1070 BlockdevDetectZeroesOptions detect_zeroes
=
1071 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup
, value
,
1072 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
, &local_err
);
1075 error_propagate(errp
, local_err
);
1076 return detect_zeroes
;
1079 if (detect_zeroes
== BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP
&&
1080 !(open_flags
& BDRV_O_UNMAP
))
1082 error_setg(errp
, "setting detect-zeroes to unmap is not allowed "
1083 "without setting discard operation to unmap");
1086 return detect_zeroes
;
1090 * Set open flags for aio engine
1092 * Return 0 on success, -1 if the engine specified is invalid
1094 int bdrv_parse_aio(const char *mode
, int *flags
)
1096 if (!strcmp(mode
, "threads")) {
1097 /* do nothing, default */
1098 } else if (!strcmp(mode
, "native")) {
1099 *flags
|= BDRV_O_NATIVE_AIO
;
1100 #ifdef CONFIG_LINUX_IO_URING
1101 } else if (!strcmp(mode
, "io_uring")) {
1102 *flags
|= BDRV_O_IO_URING
;
1112 * Set open flags for a given discard mode
1114 * Return 0 on success, -1 if the discard mode was invalid.
1116 int bdrv_parse_discard_flags(const char *mode
, int *flags
)
1118 *flags
&= ~BDRV_O_UNMAP
;
1120 if (!strcmp(mode
, "off") || !strcmp(mode
, "ignore")) {
1122 } else if (!strcmp(mode
, "on") || !strcmp(mode
, "unmap")) {
1123 *flags
|= BDRV_O_UNMAP
;
1132 * Set open flags for a given cache mode
1134 * Return 0 on success, -1 if the cache mode was invalid.
1136 int bdrv_parse_cache_mode(const char *mode
, int *flags
, bool *writethrough
)
1138 *flags
&= ~BDRV_O_CACHE_MASK
;
1140 if (!strcmp(mode
, "off") || !strcmp(mode
, "none")) {
1141 *writethrough
= false;
1142 *flags
|= BDRV_O_NOCACHE
;
1143 } else if (!strcmp(mode
, "directsync")) {
1144 *writethrough
= true;
1145 *flags
|= BDRV_O_NOCACHE
;
1146 } else if (!strcmp(mode
, "writeback")) {
1147 *writethrough
= false;
1148 } else if (!strcmp(mode
, "unsafe")) {
1149 *writethrough
= false;
1150 *flags
|= BDRV_O_NO_FLUSH
;
1151 } else if (!strcmp(mode
, "writethrough")) {
1152 *writethrough
= true;
1160 static char *bdrv_child_get_parent_desc(BdrvChild
*c
)
1162 BlockDriverState
*parent
= c
->opaque
;
1163 return g_strdup(bdrv_get_device_or_node_name(parent
));
1166 static void bdrv_child_cb_drained_begin(BdrvChild
*child
)
1168 BlockDriverState
*bs
= child
->opaque
;
1169 bdrv_do_drained_begin_quiesce(bs
, NULL
, false);
1172 static bool bdrv_child_cb_drained_poll(BdrvChild
*child
)
1174 BlockDriverState
*bs
= child
->opaque
;
1175 return bdrv_drain_poll(bs
, false, NULL
, false);
1178 static void bdrv_child_cb_drained_end(BdrvChild
*child
,
1179 int *drained_end_counter
)
1181 BlockDriverState
*bs
= child
->opaque
;
1182 bdrv_drained_end_no_poll(bs
, drained_end_counter
);
1185 static int bdrv_child_cb_inactivate(BdrvChild
*child
)
1187 BlockDriverState
*bs
= child
->opaque
;
1188 assert(bs
->open_flags
& BDRV_O_INACTIVE
);
1192 static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
1193 GSList
**ignore
, Error
**errp
)
1195 BlockDriverState
*bs
= child
->opaque
;
1196 return bdrv_can_set_aio_context(bs
, ctx
, ignore
, errp
);
1199 static void bdrv_child_cb_set_aio_ctx(BdrvChild
*child
, AioContext
*ctx
,
1202 BlockDriverState
*bs
= child
->opaque
;
1203 return bdrv_set_aio_context_ignore(bs
, ctx
, ignore
);
1207 * Returns the options and flags that a temporary snapshot should get, based on
1208 * the originally requested flags (the originally requested image will have
1209 * flags like a backing file)
1211 static void bdrv_temp_snapshot_options(int *child_flags
, QDict
*child_options
,
1212 int parent_flags
, QDict
*parent_options
)
1214 *child_flags
= (parent_flags
& ~BDRV_O_SNAPSHOT
) | BDRV_O_TEMPORARY
;
1216 /* For temporary files, unconditional cache=unsafe is fine */
1217 qdict_set_default_str(child_options
, BDRV_OPT_CACHE_DIRECT
, "off");
1218 qdict_set_default_str(child_options
, BDRV_OPT_CACHE_NO_FLUSH
, "on");
1220 /* Copy the read-only and discard options from the parent */
1221 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_READ_ONLY
);
1222 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_DISCARD
);
1224 /* aio=native doesn't work for cache.direct=off, so disable it for the
1225 * temporary snapshot */
1226 *child_flags
&= ~BDRV_O_NATIVE_AIO
;
1229 static void bdrv_backing_attach(BdrvChild
*c
)
1231 BlockDriverState
*parent
= c
->opaque
;
1232 BlockDriverState
*backing_hd
= c
->bs
;
1234 assert(!parent
->backing_blocker
);
1235 error_setg(&parent
->backing_blocker
,
1236 "node is used as backing hd of '%s'",
1237 bdrv_get_device_or_node_name(parent
));
1239 bdrv_refresh_filename(backing_hd
);
1241 parent
->open_flags
&= ~BDRV_O_NO_BACKING
;
1243 bdrv_op_block_all(backing_hd
, parent
->backing_blocker
);
1244 /* Otherwise we won't be able to commit or stream */
1245 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_COMMIT_TARGET
,
1246 parent
->backing_blocker
);
1247 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_STREAM
,
1248 parent
->backing_blocker
);
1250 * We do backup in 3 ways:
1252 * The target bs is new opened, and the source is top BDS
1253 * 2. blockdev backup
1254 * Both the source and the target are top BDSes.
1255 * 3. internal backup(used for block replication)
1256 * Both the source and the target are backing file
1258 * In case 1 and 2, neither the source nor the target is the backing file.
1259 * In case 3, we will block the top BDS, so there is only one block job
1260 * for the top BDS and its backing chain.
1262 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_BACKUP_SOURCE
,
1263 parent
->backing_blocker
);
1264 bdrv_op_unblock(backing_hd
, BLOCK_OP_TYPE_BACKUP_TARGET
,
1265 parent
->backing_blocker
);
1268 static void bdrv_backing_detach(BdrvChild
*c
)
1270 BlockDriverState
*parent
= c
->opaque
;
1272 assert(parent
->backing_blocker
);
1273 bdrv_op_unblock_all(c
->bs
, parent
->backing_blocker
);
1274 error_free(parent
->backing_blocker
);
1275 parent
->backing_blocker
= NULL
;
1278 static int bdrv_backing_update_filename(BdrvChild
*c
, BlockDriverState
*base
,
1279 const char *filename
, Error
**errp
)
1281 BlockDriverState
*parent
= c
->opaque
;
1282 bool read_only
= bdrv_is_read_only(parent
);
1286 ret
= bdrv_reopen_set_read_only(parent
, false, errp
);
1292 ret
= bdrv_change_backing_file(parent
, filename
,
1293 base
->drv
? base
->drv
->format_name
: "",
1296 error_setg_errno(errp
, -ret
, "Could not update backing file link");
1300 bdrv_reopen_set_read_only(parent
, true, NULL
);
1307 * Returns the options and flags that a generic child of a BDS should
1308 * get, based on the given options and flags for the parent BDS.
1310 static void bdrv_inherited_options(BdrvChildRole role
, bool parent_is_format
,
1311 int *child_flags
, QDict
*child_options
,
1312 int parent_flags
, QDict
*parent_options
)
1314 int flags
= parent_flags
;
1317 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1318 * Generally, the question to answer is: Should this child be
1319 * format-probed by default?
1323 * Pure and non-filtered data children of non-format nodes should
1324 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1325 * set). This only affects a very limited set of drivers (namely
1326 * quorum and blkverify when this comment was written).
1327 * Force-clear BDRV_O_PROTOCOL then.
1329 if (!parent_is_format
&&
1330 (role
& BDRV_CHILD_DATA
) &&
1331 !(role
& (BDRV_CHILD_METADATA
| BDRV_CHILD_FILTERED
)))
1333 flags
&= ~BDRV_O_PROTOCOL
;
1337 * All children of format nodes (except for COW children) and all
1338 * metadata children in general should never be format-probed.
1339 * Force-set BDRV_O_PROTOCOL then.
1341 if ((parent_is_format
&& !(role
& BDRV_CHILD_COW
)) ||
1342 (role
& BDRV_CHILD_METADATA
))
1344 flags
|= BDRV_O_PROTOCOL
;
1348 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1351 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_CACHE_DIRECT
);
1352 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_CACHE_NO_FLUSH
);
1353 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_FORCE_SHARE
);
1355 if (role
& BDRV_CHILD_COW
) {
1356 /* backing files are opened read-only by default */
1357 qdict_set_default_str(child_options
, BDRV_OPT_READ_ONLY
, "on");
1358 qdict_set_default_str(child_options
, BDRV_OPT_AUTO_READ_ONLY
, "off");
1360 /* Inherit the read-only option from the parent if it's not set */
1361 qdict_copy_default(child_options
, parent_options
, BDRV_OPT_READ_ONLY
);
1362 qdict_copy_default(child_options
, parent_options
,
1363 BDRV_OPT_AUTO_READ_ONLY
);
1367 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1368 * can default to enable it on lower layers regardless of the
1371 qdict_set_default_str(child_options
, BDRV_OPT_DISCARD
, "unmap");
1373 /* Clear flags that only apply to the top layer */
1374 flags
&= ~(BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
| BDRV_O_COPY_ON_READ
);
1376 if (role
& BDRV_CHILD_METADATA
) {
1377 flags
&= ~BDRV_O_NO_IO
;
1379 if (role
& BDRV_CHILD_COW
) {
1380 flags
&= ~BDRV_O_TEMPORARY
;
1383 *child_flags
= flags
;
1386 static void bdrv_child_cb_attach(BdrvChild
*child
)
1388 BlockDriverState
*bs
= child
->opaque
;
1390 if (child
->role
& BDRV_CHILD_COW
) {
1391 bdrv_backing_attach(child
);
1394 bdrv_apply_subtree_drain(child
, bs
);
1397 static void bdrv_child_cb_detach(BdrvChild
*child
)
1399 BlockDriverState
*bs
= child
->opaque
;
1401 if (child
->role
& BDRV_CHILD_COW
) {
1402 bdrv_backing_detach(child
);
1405 bdrv_unapply_subtree_drain(child
, bs
);
1408 static int bdrv_child_cb_update_filename(BdrvChild
*c
, BlockDriverState
*base
,
1409 const char *filename
, Error
**errp
)
1411 if (c
->role
& BDRV_CHILD_COW
) {
1412 return bdrv_backing_update_filename(c
, base
, filename
, errp
);
1417 static AioContext
*bdrv_child_cb_get_parent_aio_context(BdrvChild
*c
)
1419 BlockDriverState
*bs
= c
->opaque
;
1421 return bdrv_get_aio_context(bs
);
1424 const BdrvChildClass child_of_bds
= {
1425 .parent_is_bds
= true,
1426 .get_parent_desc
= bdrv_child_get_parent_desc
,
1427 .inherit_options
= bdrv_inherited_options
,
1428 .drained_begin
= bdrv_child_cb_drained_begin
,
1429 .drained_poll
= bdrv_child_cb_drained_poll
,
1430 .drained_end
= bdrv_child_cb_drained_end
,
1431 .attach
= bdrv_child_cb_attach
,
1432 .detach
= bdrv_child_cb_detach
,
1433 .inactivate
= bdrv_child_cb_inactivate
,
1434 .can_set_aio_ctx
= bdrv_child_cb_can_set_aio_ctx
,
1435 .set_aio_ctx
= bdrv_child_cb_set_aio_ctx
,
1436 .update_filename
= bdrv_child_cb_update_filename
,
1437 .get_parent_aio_context
= bdrv_child_cb_get_parent_aio_context
,
1440 AioContext
*bdrv_child_get_parent_aio_context(BdrvChild
*c
)
1442 return c
->klass
->get_parent_aio_context(c
);
1445 static int bdrv_open_flags(BlockDriverState
*bs
, int flags
)
1447 int open_flags
= flags
;
1450 * Clear flags that are internal to the block layer before opening the
1453 open_flags
&= ~(BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
| BDRV_O_PROTOCOL
);
1458 static void update_flags_from_options(int *flags
, QemuOpts
*opts
)
1460 *flags
&= ~(BDRV_O_CACHE_MASK
| BDRV_O_RDWR
| BDRV_O_AUTO_RDONLY
);
1462 if (qemu_opt_get_bool_del(opts
, BDRV_OPT_CACHE_NO_FLUSH
, false)) {
1463 *flags
|= BDRV_O_NO_FLUSH
;
1466 if (qemu_opt_get_bool_del(opts
, BDRV_OPT_CACHE_DIRECT
, false)) {
1467 *flags
|= BDRV_O_NOCACHE
;
1470 if (!qemu_opt_get_bool_del(opts
, BDRV_OPT_READ_ONLY
, false)) {
1471 *flags
|= BDRV_O_RDWR
;
1474 if (qemu_opt_get_bool_del(opts
, BDRV_OPT_AUTO_READ_ONLY
, false)) {
1475 *flags
|= BDRV_O_AUTO_RDONLY
;
1479 static void update_options_from_flags(QDict
*options
, int flags
)
1481 if (!qdict_haskey(options
, BDRV_OPT_CACHE_DIRECT
)) {
1482 qdict_put_bool(options
, BDRV_OPT_CACHE_DIRECT
, flags
& BDRV_O_NOCACHE
);
1484 if (!qdict_haskey(options
, BDRV_OPT_CACHE_NO_FLUSH
)) {
1485 qdict_put_bool(options
, BDRV_OPT_CACHE_NO_FLUSH
,
1486 flags
& BDRV_O_NO_FLUSH
);
1488 if (!qdict_haskey(options
, BDRV_OPT_READ_ONLY
)) {
1489 qdict_put_bool(options
, BDRV_OPT_READ_ONLY
, !(flags
& BDRV_O_RDWR
));
1491 if (!qdict_haskey(options
, BDRV_OPT_AUTO_READ_ONLY
)) {
1492 qdict_put_bool(options
, BDRV_OPT_AUTO_READ_ONLY
,
1493 flags
& BDRV_O_AUTO_RDONLY
);
1497 static void bdrv_assign_node_name(BlockDriverState
*bs
,
1498 const char *node_name
,
1501 char *gen_node_name
= NULL
;
1504 node_name
= gen_node_name
= id_generate(ID_BLOCK
);
1505 } else if (!id_wellformed(node_name
)) {
1507 * Check for empty string or invalid characters, but not if it is
1508 * generated (generated names use characters not available to the user)
1510 error_setg(errp
, "Invalid node-name: '%s'", node_name
);
1514 /* takes care of avoiding namespaces collisions */
1515 if (blk_by_name(node_name
)) {
1516 error_setg(errp
, "node-name=%s is conflicting with a device id",
1521 /* takes care of avoiding duplicates node names */
1522 if (bdrv_find_node(node_name
)) {
1523 error_setg(errp
, "Duplicate nodes with node-name='%s'", node_name
);
1527 /* Make sure that the node name isn't truncated */
1528 if (strlen(node_name
) >= sizeof(bs
->node_name
)) {
1529 error_setg(errp
, "Node name too long");
1533 /* copy node name into the bs and insert it into the graph list */
1534 pstrcpy(bs
->node_name
, sizeof(bs
->node_name
), node_name
);
1535 QTAILQ_INSERT_TAIL(&graph_bdrv_states
, bs
, node_list
);
1537 g_free(gen_node_name
);
1540 static int bdrv_open_driver(BlockDriverState
*bs
, BlockDriver
*drv
,
1541 const char *node_name
, QDict
*options
,
1542 int open_flags
, Error
**errp
)
1544 Error
*local_err
= NULL
;
1547 bdrv_assign_node_name(bs
, node_name
, &local_err
);
1549 error_propagate(errp
, local_err
);
1554 bs
->read_only
= !(bs
->open_flags
& BDRV_O_RDWR
);
1555 bs
->opaque
= g_malloc0(drv
->instance_size
);
1557 if (drv
->bdrv_file_open
) {
1558 assert(!drv
->bdrv_needs_filename
|| bs
->filename
[0]);
1559 ret
= drv
->bdrv_file_open(bs
, options
, open_flags
, &local_err
);
1560 } else if (drv
->bdrv_open
) {
1561 ret
= drv
->bdrv_open(bs
, options
, open_flags
, &local_err
);
1568 error_propagate(errp
, local_err
);
1569 } else if (bs
->filename
[0]) {
1570 error_setg_errno(errp
, -ret
, "Could not open '%s'", bs
->filename
);
1572 error_setg_errno(errp
, -ret
, "Could not open image");
1577 ret
= refresh_total_sectors(bs
, bs
->total_sectors
);
1579 error_setg_errno(errp
, -ret
, "Could not refresh total sector count");
1583 bdrv_refresh_limits(bs
, NULL
, &local_err
);
1585 error_propagate(errp
, local_err
);
1589 assert(bdrv_opt_mem_align(bs
) != 0);
1590 assert(bdrv_min_mem_align(bs
) != 0);
1591 assert(is_power_of_2(bs
->bl
.request_alignment
));
1593 for (i
= 0; i
< bs
->quiesce_counter
; i
++) {
1594 if (drv
->bdrv_co_drain_begin
) {
1595 drv
->bdrv_co_drain_begin(bs
);
1602 if (bs
->file
!= NULL
) {
1603 bdrv_unref_child(bs
, bs
->file
);
1611 BlockDriverState
*bdrv_new_open_driver(BlockDriver
*drv
, const char *node_name
,
1612 int flags
, Error
**errp
)
1614 BlockDriverState
*bs
;
1618 bs
->open_flags
= flags
;
1619 bs
->explicit_options
= qdict_new();
1620 bs
->options
= qdict_new();
1623 update_options_from_flags(bs
->options
, flags
);
1625 ret
= bdrv_open_driver(bs
, drv
, node_name
, bs
->options
, flags
, errp
);
1627 qobject_unref(bs
->explicit_options
);
1628 bs
->explicit_options
= NULL
;
1629 qobject_unref(bs
->options
);
1638 QemuOptsList bdrv_runtime_opts
= {
1639 .name
= "bdrv_common",
1640 .head
= QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts
.head
),
1643 .name
= "node-name",
1644 .type
= QEMU_OPT_STRING
,
1645 .help
= "Node name of the block device node",
1649 .type
= QEMU_OPT_STRING
,
1650 .help
= "Block driver to use for the node",
1653 .name
= BDRV_OPT_CACHE_DIRECT
,
1654 .type
= QEMU_OPT_BOOL
,
1655 .help
= "Bypass software writeback cache on the host",
1658 .name
= BDRV_OPT_CACHE_NO_FLUSH
,
1659 .type
= QEMU_OPT_BOOL
,
1660 .help
= "Ignore flush requests",
1663 .name
= BDRV_OPT_READ_ONLY
,
1664 .type
= QEMU_OPT_BOOL
,
1665 .help
= "Node is opened in read-only mode",
1668 .name
= BDRV_OPT_AUTO_READ_ONLY
,
1669 .type
= QEMU_OPT_BOOL
,
1670 .help
= "Node can become read-only if opening read-write fails",
1673 .name
= "detect-zeroes",
1674 .type
= QEMU_OPT_STRING
,
1675 .help
= "try to optimize zero writes (off, on, unmap)",
1678 .name
= BDRV_OPT_DISCARD
,
1679 .type
= QEMU_OPT_STRING
,
1680 .help
= "discard operation (ignore/off, unmap/on)",
1683 .name
= BDRV_OPT_FORCE_SHARE
,
1684 .type
= QEMU_OPT_BOOL
,
1685 .help
= "always accept other writers (default: off)",
1687 { /* end of list */ }
1691 QemuOptsList bdrv_create_opts_simple
= {
1692 .name
= "simple-create-opts",
1693 .head
= QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple
.head
),
1696 .name
= BLOCK_OPT_SIZE
,
1697 .type
= QEMU_OPT_SIZE
,
1698 .help
= "Virtual disk size"
1701 .name
= BLOCK_OPT_PREALLOC
,
1702 .type
= QEMU_OPT_STRING
,
1703 .help
= "Preallocation mode (allowed values: off)"
1705 { /* end of list */ }
1710 * Common part for opening disk images and files
1712 * Removes all processed options from *options.
1714 static int bdrv_open_common(BlockDriverState
*bs
, BlockBackend
*file
,
1715 QDict
*options
, Error
**errp
)
1717 int ret
, open_flags
;
1718 const char *filename
;
1719 const char *driver_name
= NULL
;
1720 const char *node_name
= NULL
;
1721 const char *discard
;
1724 Error
*local_err
= NULL
;
1726 assert(bs
->file
== NULL
);
1727 assert(options
!= NULL
&& bs
->options
!= options
);
1729 opts
= qemu_opts_create(&bdrv_runtime_opts
, NULL
, 0, &error_abort
);
1730 if (!qemu_opts_absorb_qdict(opts
, options
, errp
)) {
1735 update_flags_from_options(&bs
->open_flags
, opts
);
1737 driver_name
= qemu_opt_get(opts
, "driver");
1738 drv
= bdrv_find_format(driver_name
);
1739 assert(drv
!= NULL
);
1741 bs
->force_share
= qemu_opt_get_bool(opts
, BDRV_OPT_FORCE_SHARE
, false);
1743 if (bs
->force_share
&& (bs
->open_flags
& BDRV_O_RDWR
)) {
1745 BDRV_OPT_FORCE_SHARE
1746 "=on can only be used with read-only images");
1752 bdrv_refresh_filename(blk_bs(file
));
1753 filename
= blk_bs(file
)->filename
;
1756 * Caution: while qdict_get_try_str() is fine, getting
1757 * non-string types would require more care. When @options
1758 * come from -blockdev or blockdev_add, its members are typed
1759 * according to the QAPI schema, but when they come from
1760 * -drive, they're all QString.
1762 filename
= qdict_get_try_str(options
, "filename");
1765 if (drv
->bdrv_needs_filename
&& (!filename
|| !filename
[0])) {
1766 error_setg(errp
, "The '%s' block driver requires a file name",
1772 trace_bdrv_open_common(bs
, filename
?: "", bs
->open_flags
,
1775 bs
->read_only
= !(bs
->open_flags
& BDRV_O_RDWR
);
1777 if (use_bdrv_whitelist
&& !bdrv_is_whitelisted(drv
, bs
->read_only
)) {
1778 if (!bs
->read_only
&& bdrv_is_whitelisted(drv
, true)) {
1779 ret
= bdrv_apply_auto_read_only(bs
, NULL
, NULL
);
1785 !bs
->read_only
&& bdrv_is_whitelisted(drv
, true)
1786 ? "Driver '%s' can only be used for read-only devices"
1787 : "Driver '%s' is not whitelisted",
1793 /* bdrv_new() and bdrv_close() make it so */
1794 assert(qatomic_read(&bs
->copy_on_read
) == 0);
1796 if (bs
->open_flags
& BDRV_O_COPY_ON_READ
) {
1797 if (!bs
->read_only
) {
1798 bdrv_enable_copy_on_read(bs
);
1800 error_setg(errp
, "Can't use copy-on-read on read-only device");
1806 discard
= qemu_opt_get(opts
, BDRV_OPT_DISCARD
);
1807 if (discard
!= NULL
) {
1808 if (bdrv_parse_discard_flags(discard
, &bs
->open_flags
) != 0) {
1809 error_setg(errp
, "Invalid discard option");
1816 bdrv_parse_detect_zeroes(opts
, bs
->open_flags
, &local_err
);
1818 error_propagate(errp
, local_err
);
1823 if (filename
!= NULL
) {
1824 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
1826 bs
->filename
[0] = '\0';
1828 pstrcpy(bs
->exact_filename
, sizeof(bs
->exact_filename
), bs
->filename
);
1830 /* Open the image, either directly or using a protocol */
1831 open_flags
= bdrv_open_flags(bs
, bs
->open_flags
);
1832 node_name
= qemu_opt_get(opts
, "node-name");
1834 assert(!drv
->bdrv_file_open
|| file
== NULL
);
1835 ret
= bdrv_open_driver(bs
, drv
, node_name
, options
, open_flags
, errp
);
1840 qemu_opts_del(opts
);
1844 qemu_opts_del(opts
);
1848 static QDict
*parse_json_filename(const char *filename
, Error
**errp
)
1850 QObject
*options_obj
;
1854 ret
= strstart(filename
, "json:", &filename
);
1857 options_obj
= qobject_from_json(filename
, errp
);
1859 error_prepend(errp
, "Could not parse the JSON options: ");
1863 options
= qobject_to(QDict
, options_obj
);
1865 qobject_unref(options_obj
);
1866 error_setg(errp
, "Invalid JSON object given");
1870 qdict_flatten(options
);
1875 static void parse_json_protocol(QDict
*options
, const char **pfilename
,
1878 QDict
*json_options
;
1879 Error
*local_err
= NULL
;
1881 /* Parse json: pseudo-protocol */
1882 if (!*pfilename
|| !g_str_has_prefix(*pfilename
, "json:")) {
1886 json_options
= parse_json_filename(*pfilename
, &local_err
);
1888 error_propagate(errp
, local_err
);
1892 /* Options given in the filename have lower priority than options
1893 * specified directly */
1894 qdict_join(options
, json_options
, false);
1895 qobject_unref(json_options
);
1900 * Fills in default options for opening images and converts the legacy
1901 * filename/flags pair to option QDict entries.
1902 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1903 * block driver has been specified explicitly.
1905 static int bdrv_fill_options(QDict
**options
, const char *filename
,
1906 int *flags
, Error
**errp
)
1908 const char *drvname
;
1909 bool protocol
= *flags
& BDRV_O_PROTOCOL
;
1910 bool parse_filename
= false;
1911 BlockDriver
*drv
= NULL
;
1912 Error
*local_err
= NULL
;
1915 * Caution: while qdict_get_try_str() is fine, getting non-string
1916 * types would require more care. When @options come from
1917 * -blockdev or blockdev_add, its members are typed according to
1918 * the QAPI schema, but when they come from -drive, they're all
1921 drvname
= qdict_get_try_str(*options
, "driver");
1923 drv
= bdrv_find_format(drvname
);
1925 error_setg(errp
, "Unknown driver '%s'", drvname
);
1928 /* If the user has explicitly specified the driver, this choice should
1929 * override the BDRV_O_PROTOCOL flag */
1930 protocol
= drv
->bdrv_file_open
;
1934 *flags
|= BDRV_O_PROTOCOL
;
1936 *flags
&= ~BDRV_O_PROTOCOL
;
1939 /* Translate cache options from flags into options */
1940 update_options_from_flags(*options
, *flags
);
1942 /* Fetch the file name from the options QDict if necessary */
1943 if (protocol
&& filename
) {
1944 if (!qdict_haskey(*options
, "filename")) {
1945 qdict_put_str(*options
, "filename", filename
);
1946 parse_filename
= true;
1948 error_setg(errp
, "Can't specify 'file' and 'filename' options at "
1954 /* Find the right block driver */
1955 /* See cautionary note on accessing @options above */
1956 filename
= qdict_get_try_str(*options
, "filename");
1958 if (!drvname
&& protocol
) {
1960 drv
= bdrv_find_protocol(filename
, parse_filename
, errp
);
1965 drvname
= drv
->format_name
;
1966 qdict_put_str(*options
, "driver", drvname
);
1968 error_setg(errp
, "Must specify either driver or file");
1973 assert(drv
|| !protocol
);
1975 /* Driver-specific filename parsing */
1976 if (drv
&& drv
->bdrv_parse_filename
&& parse_filename
) {
1977 drv
->bdrv_parse_filename(filename
, *options
, &local_err
);
1979 error_propagate(errp
, local_err
);
1983 if (!drv
->bdrv_needs_filename
) {
1984 qdict_del(*options
, "filename");
1991 typedef struct BlockReopenQueueEntry
{
1994 BDRVReopenState state
;
1995 QTAILQ_ENTRY(BlockReopenQueueEntry
) entry
;
1996 } BlockReopenQueueEntry
;
1999 * Return the flags that @bs will have after the reopens in @q have
2000 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2001 * return the current flags.
2003 static int bdrv_reopen_get_flags(BlockReopenQueue
*q
, BlockDriverState
*bs
)
2005 BlockReopenQueueEntry
*entry
;
2008 QTAILQ_FOREACH(entry
, q
, entry
) {
2009 if (entry
->state
.bs
== bs
) {
2010 return entry
->state
.flags
;
2015 return bs
->open_flags
;
2018 /* Returns whether the image file can be written to after the reopen queue @q
2019 * has been successfully applied, or right now if @q is NULL. */
2020 static bool bdrv_is_writable_after_reopen(BlockDriverState
*bs
,
2021 BlockReopenQueue
*q
)
2023 int flags
= bdrv_reopen_get_flags(q
, bs
);
2025 return (flags
& (BDRV_O_RDWR
| BDRV_O_INACTIVE
)) == BDRV_O_RDWR
;
2029 * Return whether the BDS can be written to. This is not necessarily
2030 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2031 * be written to but do not count as read-only images.
2033 bool bdrv_is_writable(BlockDriverState
*bs
)
2035 return bdrv_is_writable_after_reopen(bs
, NULL
);
2038 static char *bdrv_child_user_desc(BdrvChild
*c
)
2040 if (c
->klass
->get_parent_desc
) {
2041 return c
->klass
->get_parent_desc(c
);
2044 return g_strdup("another user");
2047 static bool bdrv_a_allow_b(BdrvChild
*a
, BdrvChild
*b
, Error
**errp
)
2049 g_autofree
char *user
= NULL
;
2050 g_autofree
char *perm_names
= NULL
;
2052 if ((b
->perm
& a
->shared_perm
) == b
->perm
) {
2056 perm_names
= bdrv_perm_names(b
->perm
& ~a
->shared_perm
);
2057 user
= bdrv_child_user_desc(a
);
2058 error_setg(errp
, "Conflicts with use by %s as '%s', which does not "
2060 user
, a
->name
, perm_names
, bdrv_get_node_name(b
->bs
));
2065 static bool bdrv_parent_perms_conflict(BlockDriverState
*bs
, Error
**errp
)
2070 * During the loop we'll look at each pair twice. That's correct because
2071 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2074 QLIST_FOREACH(a
, &bs
->parents
, next_parent
) {
2075 QLIST_FOREACH(b
, &bs
->parents
, next_parent
) {
2080 if (!bdrv_a_allow_b(a
, b
, errp
)) {
2089 static void bdrv_child_perm(BlockDriverState
*bs
, BlockDriverState
*child_bs
,
2090 BdrvChild
*c
, BdrvChildRole role
,
2091 BlockReopenQueue
*reopen_queue
,
2092 uint64_t parent_perm
, uint64_t parent_shared
,
2093 uint64_t *nperm
, uint64_t *nshared
)
2095 assert(bs
->drv
&& bs
->drv
->bdrv_child_perm
);
2096 bs
->drv
->bdrv_child_perm(bs
, c
, role
, reopen_queue
,
2097 parent_perm
, parent_shared
,
2099 /* TODO Take force_share from reopen_queue */
2100 if (child_bs
&& child_bs
->force_share
) {
2101 *nshared
= BLK_PERM_ALL
;
2106 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2107 * nodes that are already in the @list, of course) so that final list is
2108 * topologically sorted. Return the result (GSList @list object is updated, so
2109 * don't use old reference after function call).
2111 * On function start @list must be already topologically sorted and for any node
2112 * in the @list the whole subtree of the node must be in the @list as well. The
2113 * simplest way to satisfy this criteria: use only result of
2114 * bdrv_topological_dfs() or NULL as @list parameter.
2116 static GSList
*bdrv_topological_dfs(GSList
*list
, GHashTable
*found
,
2117 BlockDriverState
*bs
)
2120 g_autoptr(GHashTable
) local_found
= NULL
;
2124 found
= local_found
= g_hash_table_new(NULL
, NULL
);
2127 if (g_hash_table_contains(found
, bs
)) {
2130 g_hash_table_add(found
, bs
);
2132 QLIST_FOREACH(child
, &bs
->children
, next
) {
2133 list
= bdrv_topological_dfs(list
, found
, child
->bs
);
2136 return g_slist_prepend(list
, bs
);
2139 typedef struct BdrvChildSetPermState
{
2142 uint64_t old_shared_perm
;
2143 } BdrvChildSetPermState
;
2145 static void bdrv_child_set_perm_abort(void *opaque
)
2147 BdrvChildSetPermState
*s
= opaque
;
2149 s
->child
->perm
= s
->old_perm
;
2150 s
->child
->shared_perm
= s
->old_shared_perm
;
2153 static TransactionActionDrv bdrv_child_set_pem_drv
= {
2154 .abort
= bdrv_child_set_perm_abort
,
2158 static void bdrv_child_set_perm(BdrvChild
*c
, uint64_t perm
,
2159 uint64_t shared
, Transaction
*tran
)
2161 BdrvChildSetPermState
*s
= g_new(BdrvChildSetPermState
, 1);
2163 *s
= (BdrvChildSetPermState
) {
2165 .old_perm
= c
->perm
,
2166 .old_shared_perm
= c
->shared_perm
,
2170 c
->shared_perm
= shared
;
2172 tran_add(tran
, &bdrv_child_set_pem_drv
, s
);
2175 static void bdrv_drv_set_perm_commit(void *opaque
)
2177 BlockDriverState
*bs
= opaque
;
2178 uint64_t cumulative_perms
, cumulative_shared_perms
;
2180 if (bs
->drv
->bdrv_set_perm
) {
2181 bdrv_get_cumulative_perm(bs
, &cumulative_perms
,
2182 &cumulative_shared_perms
);
2183 bs
->drv
->bdrv_set_perm(bs
, cumulative_perms
, cumulative_shared_perms
);
2187 static void bdrv_drv_set_perm_abort(void *opaque
)
2189 BlockDriverState
*bs
= opaque
;
2191 if (bs
->drv
->bdrv_abort_perm_update
) {
2192 bs
->drv
->bdrv_abort_perm_update(bs
);
2196 TransactionActionDrv bdrv_drv_set_perm_drv
= {
2197 .abort
= bdrv_drv_set_perm_abort
,
2198 .commit
= bdrv_drv_set_perm_commit
,
2201 static int bdrv_drv_set_perm(BlockDriverState
*bs
, uint64_t perm
,
2202 uint64_t shared_perm
, Transaction
*tran
,
2209 if (bs
->drv
->bdrv_check_perm
) {
2210 int ret
= bs
->drv
->bdrv_check_perm(bs
, perm
, shared_perm
, errp
);
2217 tran_add(tran
, &bdrv_drv_set_perm_drv
, bs
);
2223 typedef struct BdrvReplaceChildState
{
2225 BlockDriverState
*old_bs
;
2226 } BdrvReplaceChildState
;
2228 static void bdrv_replace_child_commit(void *opaque
)
2230 BdrvReplaceChildState
*s
= opaque
;
2232 bdrv_unref(s
->old_bs
);
2235 static void bdrv_replace_child_abort(void *opaque
)
2237 BdrvReplaceChildState
*s
= opaque
;
2238 BlockDriverState
*new_bs
= s
->child
->bs
;
2240 /* old_bs reference is transparently moved from @s to @s->child */
2241 bdrv_replace_child_noperm(s
->child
, s
->old_bs
);
2245 static TransactionActionDrv bdrv_replace_child_drv
= {
2246 .commit
= bdrv_replace_child_commit
,
2247 .abort
= bdrv_replace_child_abort
,
2252 * bdrv_replace_child
2254 * Note: real unref of old_bs is done only on commit.
2256 static void bdrv_replace_child(BdrvChild
*child
, BlockDriverState
*new_bs
,
2259 BdrvReplaceChildState
*s
= g_new(BdrvReplaceChildState
, 1);
2260 *s
= (BdrvReplaceChildState
) {
2262 .old_bs
= child
->bs
,
2264 tran_add(tran
, &bdrv_replace_child_drv
, s
);
2269 bdrv_replace_child_noperm(child
, new_bs
);
2270 /* old_bs reference is transparently moved from @child to @s */
2274 * Refresh permissions in @bs subtree. The function is intended to be called
2275 * after some graph modification that was done without permission update.
2277 static int bdrv_node_refresh_perm(BlockDriverState
*bs
, BlockReopenQueue
*q
,
2278 Transaction
*tran
, Error
**errp
)
2280 BlockDriver
*drv
= bs
->drv
;
2283 uint64_t cumulative_perms
, cumulative_shared_perms
;
2285 bdrv_get_cumulative_perm(bs
, &cumulative_perms
, &cumulative_shared_perms
);
2287 /* Write permissions never work with read-only images */
2288 if ((cumulative_perms
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
)) &&
2289 !bdrv_is_writable_after_reopen(bs
, q
))
2291 if (!bdrv_is_writable_after_reopen(bs
, NULL
)) {
2292 error_setg(errp
, "Block node is read-only");
2294 error_setg(errp
, "Read-only block node '%s' cannot support "
2295 "read-write users", bdrv_get_node_name(bs
));
2302 * Unaligned requests will automatically be aligned to bl.request_alignment
2303 * and without RESIZE we can't extend requests to write to space beyond the
2304 * end of the image, so it's required that the image size is aligned.
2306 if ((cumulative_perms
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
)) &&
2307 !(cumulative_perms
& BLK_PERM_RESIZE
))
2309 if ((bs
->total_sectors
* BDRV_SECTOR_SIZE
) % bs
->bl
.request_alignment
) {
2310 error_setg(errp
, "Cannot get 'write' permission without 'resize': "
2311 "Image size is not a multiple of request "
2317 /* Check this node */
2322 ret
= bdrv_drv_set_perm(bs
, cumulative_perms
, cumulative_shared_perms
, tran
,
2328 /* Drivers that never have children can omit .bdrv_child_perm() */
2329 if (!drv
->bdrv_child_perm
) {
2330 assert(QLIST_EMPTY(&bs
->children
));
2334 /* Check all children */
2335 QLIST_FOREACH(c
, &bs
->children
, next
) {
2336 uint64_t cur_perm
, cur_shared
;
2338 bdrv_child_perm(bs
, c
->bs
, c
, c
->role
, q
,
2339 cumulative_perms
, cumulative_shared_perms
,
2340 &cur_perm
, &cur_shared
);
2341 bdrv_child_set_perm(c
, cur_perm
, cur_shared
, tran
);
2347 static int bdrv_list_refresh_perms(GSList
*list
, BlockReopenQueue
*q
,
2348 Transaction
*tran
, Error
**errp
)
2351 BlockDriverState
*bs
;
2353 for ( ; list
; list
= list
->next
) {
2356 if (bdrv_parent_perms_conflict(bs
, errp
)) {
2360 ret
= bdrv_node_refresh_perm(bs
, q
, tran
, errp
);
2369 void bdrv_get_cumulative_perm(BlockDriverState
*bs
, uint64_t *perm
,
2370 uint64_t *shared_perm
)
2373 uint64_t cumulative_perms
= 0;
2374 uint64_t cumulative_shared_perms
= BLK_PERM_ALL
;
2376 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
2377 cumulative_perms
|= c
->perm
;
2378 cumulative_shared_perms
&= c
->shared_perm
;
2381 *perm
= cumulative_perms
;
2382 *shared_perm
= cumulative_shared_perms
;
2385 char *bdrv_perm_names(uint64_t perm
)
2391 { BLK_PERM_CONSISTENT_READ
, "consistent read" },
2392 { BLK_PERM_WRITE
, "write" },
2393 { BLK_PERM_WRITE_UNCHANGED
, "write unchanged" },
2394 { BLK_PERM_RESIZE
, "resize" },
2395 { BLK_PERM_GRAPH_MOD
, "change children" },
2399 GString
*result
= g_string_sized_new(30);
2400 struct perm_name
*p
;
2402 for (p
= permissions
; p
->name
; p
++) {
2403 if (perm
& p
->perm
) {
2404 if (result
->len
> 0) {
2405 g_string_append(result
, ", ");
2407 g_string_append(result
, p
->name
);
2411 return g_string_free(result
, FALSE
);
2415 static int bdrv_refresh_perms(BlockDriverState
*bs
, Error
**errp
)
2418 Transaction
*tran
= tran_new();
2419 g_autoptr(GSList
) list
= bdrv_topological_dfs(NULL
, NULL
, bs
);
2421 ret
= bdrv_list_refresh_perms(list
, NULL
, tran
, errp
);
2422 tran_finalize(tran
, ret
);
2427 int bdrv_child_try_set_perm(BdrvChild
*c
, uint64_t perm
, uint64_t shared
,
2430 Error
*local_err
= NULL
;
2431 Transaction
*tran
= tran_new();
2434 bdrv_child_set_perm(c
, perm
, shared
, tran
);
2436 ret
= bdrv_refresh_perms(c
->bs
, &local_err
);
2438 tran_finalize(tran
, ret
);
2441 if ((perm
& ~c
->perm
) || (c
->shared_perm
& ~shared
)) {
2442 /* tighten permissions */
2443 error_propagate(errp
, local_err
);
2446 * Our caller may intend to only loosen restrictions and
2447 * does not expect this function to fail. Errors are not
2448 * fatal in such a case, so we can just hide them from our
2451 error_free(local_err
);
2459 int bdrv_child_refresh_perms(BlockDriverState
*bs
, BdrvChild
*c
, Error
**errp
)
2461 uint64_t parent_perms
, parent_shared
;
2462 uint64_t perms
, shared
;
2464 bdrv_get_cumulative_perm(bs
, &parent_perms
, &parent_shared
);
2465 bdrv_child_perm(bs
, c
->bs
, c
, c
->role
, NULL
,
2466 parent_perms
, parent_shared
, &perms
, &shared
);
2468 return bdrv_child_try_set_perm(c
, perms
, shared
, errp
);
2472 * Default implementation for .bdrv_child_perm() for block filters:
2473 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2476 static void bdrv_filter_default_perms(BlockDriverState
*bs
, BdrvChild
*c
,
2478 BlockReopenQueue
*reopen_queue
,
2479 uint64_t perm
, uint64_t shared
,
2480 uint64_t *nperm
, uint64_t *nshared
)
2482 *nperm
= perm
& DEFAULT_PERM_PASSTHROUGH
;
2483 *nshared
= (shared
& DEFAULT_PERM_PASSTHROUGH
) | DEFAULT_PERM_UNCHANGED
;
2486 static void bdrv_default_perms_for_cow(BlockDriverState
*bs
, BdrvChild
*c
,
2488 BlockReopenQueue
*reopen_queue
,
2489 uint64_t perm
, uint64_t shared
,
2490 uint64_t *nperm
, uint64_t *nshared
)
2492 assert(role
& BDRV_CHILD_COW
);
2495 * We want consistent read from backing files if the parent needs it.
2496 * No other operations are performed on backing files.
2498 perm
&= BLK_PERM_CONSISTENT_READ
;
2501 * If the parent can deal with changing data, we're okay with a
2502 * writable and resizable backing file.
2503 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2505 if (shared
& BLK_PERM_WRITE
) {
2506 shared
= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2511 shared
|= BLK_PERM_CONSISTENT_READ
| BLK_PERM_GRAPH_MOD
|
2512 BLK_PERM_WRITE_UNCHANGED
;
2514 if (bs
->open_flags
& BDRV_O_INACTIVE
) {
2515 shared
|= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2522 static void bdrv_default_perms_for_storage(BlockDriverState
*bs
, BdrvChild
*c
,
2524 BlockReopenQueue
*reopen_queue
,
2525 uint64_t perm
, uint64_t shared
,
2526 uint64_t *nperm
, uint64_t *nshared
)
2530 assert(role
& (BDRV_CHILD_METADATA
| BDRV_CHILD_DATA
));
2532 flags
= bdrv_reopen_get_flags(reopen_queue
, bs
);
2535 * Apart from the modifications below, the same permissions are
2536 * forwarded and left alone as for filters
2538 bdrv_filter_default_perms(bs
, c
, role
, reopen_queue
,
2539 perm
, shared
, &perm
, &shared
);
2541 if (role
& BDRV_CHILD_METADATA
) {
2542 /* Format drivers may touch metadata even if the guest doesn't write */
2543 if (bdrv_is_writable_after_reopen(bs
, reopen_queue
)) {
2544 perm
|= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2548 * bs->file always needs to be consistent because of the
2549 * metadata. We can never allow other users to resize or write
2552 if (!(flags
& BDRV_O_NO_IO
)) {
2553 perm
|= BLK_PERM_CONSISTENT_READ
;
2555 shared
&= ~(BLK_PERM_WRITE
| BLK_PERM_RESIZE
);
2558 if (role
& BDRV_CHILD_DATA
) {
2560 * Technically, everything in this block is a subset of the
2561 * BDRV_CHILD_METADATA path taken above, and so this could
2562 * be an "else if" branch. However, that is not obvious, and
2563 * this function is not performance critical, therefore we let
2564 * this be an independent "if".
2568 * We cannot allow other users to resize the file because the
2569 * format driver might have some assumptions about the size
2570 * (e.g. because it is stored in metadata, or because the file
2571 * is split into fixed-size data files).
2573 shared
&= ~BLK_PERM_RESIZE
;
2576 * WRITE_UNCHANGED often cannot be performed as such on the
2577 * data file. For example, the qcow2 driver may still need to
2578 * write copied clusters on copy-on-read.
2580 if (perm
& BLK_PERM_WRITE_UNCHANGED
) {
2581 perm
|= BLK_PERM_WRITE
;
2585 * If the data file is written to, the format driver may
2586 * expect to be able to resize it by writing beyond the EOF.
2588 if (perm
& BLK_PERM_WRITE
) {
2589 perm
|= BLK_PERM_RESIZE
;
2593 if (bs
->open_flags
& BDRV_O_INACTIVE
) {
2594 shared
|= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2601 void bdrv_default_perms(BlockDriverState
*bs
, BdrvChild
*c
,
2602 BdrvChildRole role
, BlockReopenQueue
*reopen_queue
,
2603 uint64_t perm
, uint64_t shared
,
2604 uint64_t *nperm
, uint64_t *nshared
)
2606 if (role
& BDRV_CHILD_FILTERED
) {
2607 assert(!(role
& (BDRV_CHILD_DATA
| BDRV_CHILD_METADATA
|
2609 bdrv_filter_default_perms(bs
, c
, role
, reopen_queue
,
2610 perm
, shared
, nperm
, nshared
);
2611 } else if (role
& BDRV_CHILD_COW
) {
2612 assert(!(role
& (BDRV_CHILD_DATA
| BDRV_CHILD_METADATA
)));
2613 bdrv_default_perms_for_cow(bs
, c
, role
, reopen_queue
,
2614 perm
, shared
, nperm
, nshared
);
2615 } else if (role
& (BDRV_CHILD_METADATA
| BDRV_CHILD_DATA
)) {
2616 bdrv_default_perms_for_storage(bs
, c
, role
, reopen_queue
,
2617 perm
, shared
, nperm
, nshared
);
2619 g_assert_not_reached();
2623 uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm
)
2625 static const uint64_t permissions
[] = {
2626 [BLOCK_PERMISSION_CONSISTENT_READ
] = BLK_PERM_CONSISTENT_READ
,
2627 [BLOCK_PERMISSION_WRITE
] = BLK_PERM_WRITE
,
2628 [BLOCK_PERMISSION_WRITE_UNCHANGED
] = BLK_PERM_WRITE_UNCHANGED
,
2629 [BLOCK_PERMISSION_RESIZE
] = BLK_PERM_RESIZE
,
2630 [BLOCK_PERMISSION_GRAPH_MOD
] = BLK_PERM_GRAPH_MOD
,
2633 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions
) != BLOCK_PERMISSION__MAX
);
2634 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions
) != BLK_PERM_ALL
+ 1);
2636 assert(qapi_perm
< BLOCK_PERMISSION__MAX
);
2638 return permissions
[qapi_perm
];
2641 static void bdrv_replace_child_noperm(BdrvChild
*child
,
2642 BlockDriverState
*new_bs
)
2644 BlockDriverState
*old_bs
= child
->bs
;
2645 int new_bs_quiesce_counter
;
2648 assert(!child
->frozen
);
2650 if (old_bs
&& new_bs
) {
2651 assert(bdrv_get_aio_context(old_bs
) == bdrv_get_aio_context(new_bs
));
2654 new_bs_quiesce_counter
= (new_bs
? new_bs
->quiesce_counter
: 0);
2655 drain_saldo
= new_bs_quiesce_counter
- child
->parent_quiesce_counter
;
2658 * If the new child node is drained but the old one was not, flush
2659 * all outstanding requests to the old child node.
2661 while (drain_saldo
> 0 && child
->klass
->drained_begin
) {
2662 bdrv_parent_drained_begin_single(child
, true);
2667 /* Detach first so that the recursive drain sections coming from @child
2668 * are already gone and we only end the drain sections that came from
2670 if (child
->klass
->detach
) {
2671 child
->klass
->detach(child
);
2673 QLIST_REMOVE(child
, next_parent
);
2679 QLIST_INSERT_HEAD(&new_bs
->parents
, child
, next_parent
);
2682 * Detaching the old node may have led to the new node's
2683 * quiesce_counter having been decreased. Not a problem, we
2684 * just need to recognize this here and then invoke
2685 * drained_end appropriately more often.
2687 assert(new_bs
->quiesce_counter
<= new_bs_quiesce_counter
);
2688 drain_saldo
+= new_bs
->quiesce_counter
- new_bs_quiesce_counter
;
2690 /* Attach only after starting new drained sections, so that recursive
2691 * drain sections coming from @child don't get an extra .drained_begin
2693 if (child
->klass
->attach
) {
2694 child
->klass
->attach(child
);
2699 * If the old child node was drained but the new one is not, allow
2700 * requests to come in only after the new node has been attached.
2702 while (drain_saldo
< 0 && child
->klass
->drained_end
) {
2703 bdrv_parent_drained_end_single(child
);
2708 static void bdrv_child_free(void *opaque
)
2710 BdrvChild
*c
= opaque
;
2716 static void bdrv_remove_empty_child(BdrvChild
*child
)
2719 QLIST_SAFE_REMOVE(child
, next
);
2720 bdrv_child_free(child
);
2723 typedef struct BdrvAttachChildCommonState
{
2725 AioContext
*old_parent_ctx
;
2726 AioContext
*old_child_ctx
;
2727 } BdrvAttachChildCommonState
;
2729 static void bdrv_attach_child_common_abort(void *opaque
)
2731 BdrvAttachChildCommonState
*s
= opaque
;
2732 BdrvChild
*child
= *s
->child
;
2733 BlockDriverState
*bs
= child
->bs
;
2735 bdrv_replace_child_noperm(child
, NULL
);
2737 if (bdrv_get_aio_context(bs
) != s
->old_child_ctx
) {
2738 bdrv_try_set_aio_context(bs
, s
->old_child_ctx
, &error_abort
);
2741 if (bdrv_child_get_parent_aio_context(child
) != s
->old_parent_ctx
) {
2742 GSList
*ignore
= g_slist_prepend(NULL
, child
);
2744 child
->klass
->can_set_aio_ctx(child
, s
->old_parent_ctx
, &ignore
,
2746 g_slist_free(ignore
);
2747 ignore
= g_slist_prepend(NULL
, child
);
2748 child
->klass
->set_aio_ctx(child
, s
->old_parent_ctx
, &ignore
);
2750 g_slist_free(ignore
);
2754 bdrv_remove_empty_child(child
);
2758 static TransactionActionDrv bdrv_attach_child_common_drv
= {
2759 .abort
= bdrv_attach_child_common_abort
,
2764 * Common part of attaching bdrv child to bs or to blk or to job
2766 static int bdrv_attach_child_common(BlockDriverState
*child_bs
,
2767 const char *child_name
,
2768 const BdrvChildClass
*child_class
,
2769 BdrvChildRole child_role
,
2770 uint64_t perm
, uint64_t shared_perm
,
2771 void *opaque
, BdrvChild
**child
,
2772 Transaction
*tran
, Error
**errp
)
2774 BdrvChild
*new_child
;
2775 AioContext
*parent_ctx
;
2776 AioContext
*child_ctx
= bdrv_get_aio_context(child_bs
);
2779 assert(*child
== NULL
);
2781 new_child
= g_new(BdrvChild
, 1);
2782 *new_child
= (BdrvChild
) {
2784 .name
= g_strdup(child_name
),
2785 .klass
= child_class
,
2788 .shared_perm
= shared_perm
,
2793 * If the AioContexts don't match, first try to move the subtree of
2794 * child_bs into the AioContext of the new parent. If this doesn't work,
2795 * try moving the parent into the AioContext of child_bs instead.
2797 parent_ctx
= bdrv_child_get_parent_aio_context(new_child
);
2798 if (child_ctx
!= parent_ctx
) {
2799 Error
*local_err
= NULL
;
2800 int ret
= bdrv_try_set_aio_context(child_bs
, parent_ctx
, &local_err
);
2802 if (ret
< 0 && child_class
->can_set_aio_ctx
) {
2803 GSList
*ignore
= g_slist_prepend(NULL
, new_child
);
2804 if (child_class
->can_set_aio_ctx(new_child
, child_ctx
, &ignore
,
2807 error_free(local_err
);
2809 g_slist_free(ignore
);
2810 ignore
= g_slist_prepend(NULL
, new_child
);
2811 child_class
->set_aio_ctx(new_child
, child_ctx
, &ignore
);
2813 g_slist_free(ignore
);
2817 error_propagate(errp
, local_err
);
2818 bdrv_remove_empty_child(new_child
);
2824 bdrv_replace_child_noperm(new_child
, child_bs
);
2828 BdrvAttachChildCommonState
*s
= g_new(BdrvAttachChildCommonState
, 1);
2829 *s
= (BdrvAttachChildCommonState
) {
2831 .old_parent_ctx
= parent_ctx
,
2832 .old_child_ctx
= child_ctx
,
2834 tran_add(tran
, &bdrv_attach_child_common_drv
, s
);
2839 static int bdrv_attach_child_noperm(BlockDriverState
*parent_bs
,
2840 BlockDriverState
*child_bs
,
2841 const char *child_name
,
2842 const BdrvChildClass
*child_class
,
2843 BdrvChildRole child_role
,
2849 uint64_t perm
, shared_perm
;
2851 assert(parent_bs
->drv
);
2853 bdrv_get_cumulative_perm(parent_bs
, &perm
, &shared_perm
);
2854 bdrv_child_perm(parent_bs
, child_bs
, NULL
, child_role
, NULL
,
2855 perm
, shared_perm
, &perm
, &shared_perm
);
2857 ret
= bdrv_attach_child_common(child_bs
, child_name
, child_class
,
2858 child_role
, perm
, shared_perm
, parent_bs
,
2864 QLIST_INSERT_HEAD(&parent_bs
->children
, *child
, next
);
2866 * child is removed in bdrv_attach_child_common_abort(), so don't care to
2867 * abort this change separately.
2873 static void bdrv_detach_child(BdrvChild
*child
)
2875 BlockDriverState
*old_bs
= child
->bs
;
2877 bdrv_replace_child_noperm(child
, NULL
);
2878 bdrv_remove_empty_child(child
);
2882 * Update permissions for old node. We're just taking a parent away, so
2883 * we're loosening restrictions. Errors of permission update are not
2884 * fatal in this case, ignore them.
2886 bdrv_refresh_perms(old_bs
, NULL
);
2889 * When the parent requiring a non-default AioContext is removed, the
2890 * node moves back to the main AioContext
2892 bdrv_try_set_aio_context(old_bs
, qemu_get_aio_context(), NULL
);
2897 * This function steals the reference to child_bs from the caller.
2898 * That reference is later dropped by bdrv_root_unref_child().
2900 * On failure NULL is returned, errp is set and the reference to
2901 * child_bs is also dropped.
2903 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
2904 * (unless @child_bs is already in @ctx).
2906 BdrvChild
*bdrv_root_attach_child(BlockDriverState
*child_bs
,
2907 const char *child_name
,
2908 const BdrvChildClass
*child_class
,
2909 BdrvChildRole child_role
,
2910 uint64_t perm
, uint64_t shared_perm
,
2911 void *opaque
, Error
**errp
)
2914 BdrvChild
*child
= NULL
;
2915 Transaction
*tran
= tran_new();
2917 ret
= bdrv_attach_child_common(child_bs
, child_name
, child_class
,
2918 child_role
, perm
, shared_perm
, opaque
,
2919 &child
, tran
, errp
);
2921 bdrv_unref(child_bs
);
2925 ret
= bdrv_refresh_perms(child_bs
, errp
);
2926 tran_finalize(tran
, ret
);
2928 bdrv_unref(child_bs
);
2933 * This function transfers the reference to child_bs from the caller
2934 * to parent_bs. That reference is later dropped by parent_bs on
2935 * bdrv_close() or if someone calls bdrv_unref_child().
2937 * On failure NULL is returned, errp is set and the reference to
2938 * child_bs is also dropped.
2940 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2941 * hold the AioContext lock for @child_bs, but not for @parent_bs.
2943 BdrvChild
*bdrv_attach_child(BlockDriverState
*parent_bs
,
2944 BlockDriverState
*child_bs
,
2945 const char *child_name
,
2946 const BdrvChildClass
*child_class
,
2947 BdrvChildRole child_role
,
2951 BdrvChild
*child
= NULL
;
2952 Transaction
*tran
= tran_new();
2954 ret
= bdrv_attach_child_noperm(parent_bs
, child_bs
, child_name
, child_class
,
2955 child_role
, &child
, tran
, errp
);
2960 ret
= bdrv_refresh_perms(parent_bs
, errp
);
2966 tran_finalize(tran
, ret
);
2968 bdrv_unref(child_bs
);
2973 /* Callers must ensure that child->frozen is false. */
2974 void bdrv_root_unref_child(BdrvChild
*child
)
2976 BlockDriverState
*child_bs
;
2978 child_bs
= child
->bs
;
2979 bdrv_detach_child(child
);
2980 bdrv_unref(child_bs
);
2983 typedef struct BdrvSetInheritsFrom
{
2984 BlockDriverState
*bs
;
2985 BlockDriverState
*old_inherits_from
;
2986 } BdrvSetInheritsFrom
;
2988 static void bdrv_set_inherits_from_abort(void *opaque
)
2990 BdrvSetInheritsFrom
*s
= opaque
;
2992 s
->bs
->inherits_from
= s
->old_inherits_from
;
2995 static TransactionActionDrv bdrv_set_inherits_from_drv
= {
2996 .abort
= bdrv_set_inherits_from_abort
,
3000 /* @tran is allowed to be NULL. In this case no rollback is possible */
3001 static void bdrv_set_inherits_from(BlockDriverState
*bs
,
3002 BlockDriverState
*new_inherits_from
,
3006 BdrvSetInheritsFrom
*s
= g_new(BdrvSetInheritsFrom
, 1);
3008 *s
= (BdrvSetInheritsFrom
) {
3010 .old_inherits_from
= bs
->inherits_from
,
3013 tran_add(tran
, &bdrv_set_inherits_from_drv
, s
);
3016 bs
->inherits_from
= new_inherits_from
;
3020 * Clear all inherits_from pointers from children and grandchildren of
3021 * @root that point to @root, where necessary.
3022 * @tran is allowed to be NULL. In this case no rollback is possible
3024 static void bdrv_unset_inherits_from(BlockDriverState
*root
, BdrvChild
*child
,
3029 if (child
->bs
->inherits_from
== root
) {
3031 * Remove inherits_from only when the last reference between root and
3032 * child->bs goes away.
3034 QLIST_FOREACH(c
, &root
->children
, next
) {
3035 if (c
!= child
&& c
->bs
== child
->bs
) {
3040 bdrv_set_inherits_from(child
->bs
, NULL
, tran
);
3044 QLIST_FOREACH(c
, &child
->bs
->children
, next
) {
3045 bdrv_unset_inherits_from(root
, c
, tran
);
3049 /* Callers must ensure that child->frozen is false. */
3050 void bdrv_unref_child(BlockDriverState
*parent
, BdrvChild
*child
)
3052 if (child
== NULL
) {
3056 bdrv_unset_inherits_from(parent
, child
, NULL
);
3057 bdrv_root_unref_child(child
);
3061 static void bdrv_parent_cb_change_media(BlockDriverState
*bs
, bool load
)
3064 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
3065 if (c
->klass
->change_media
) {
3066 c
->klass
->change_media(c
, load
);
3071 /* Return true if you can reach parent going through child->inherits_from
3072 * recursively. If parent or child are NULL, return false */
3073 static bool bdrv_inherits_from_recursive(BlockDriverState
*child
,
3074 BlockDriverState
*parent
)
3076 while (child
&& child
!= parent
) {
3077 child
= child
->inherits_from
;
3080 return child
!= NULL
;
3084 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3085 * mostly used for COW backing children (role = COW), but also for
3086 * filtered children (role = FILTERED | PRIMARY).
3088 static BdrvChildRole
bdrv_backing_role(BlockDriverState
*bs
)
3090 if (bs
->drv
&& bs
->drv
->is_filter
) {
3091 return BDRV_CHILD_FILTERED
| BDRV_CHILD_PRIMARY
;
3093 return BDRV_CHILD_COW
;
3098 * Sets the bs->backing link of a BDS. A new reference is created; callers
3099 * which don't need their own reference any more must call bdrv_unref().
3101 static int bdrv_set_backing_noperm(BlockDriverState
*bs
,
3102 BlockDriverState
*backing_hd
,
3103 Transaction
*tran
, Error
**errp
)
3106 bool update_inherits_from
= bdrv_chain_contains(bs
, backing_hd
) &&
3107 bdrv_inherits_from_recursive(backing_hd
, bs
);
3109 if (bdrv_is_backing_chain_frozen(bs
, child_bs(bs
->backing
), errp
)) {
3114 /* Cannot be frozen, we checked that above */
3115 bdrv_unset_inherits_from(bs
, bs
->backing
, tran
);
3116 bdrv_remove_filter_or_cow_child(bs
, tran
);
3123 ret
= bdrv_attach_child_noperm(bs
, backing_hd
, "backing",
3124 &child_of_bds
, bdrv_backing_role(bs
),
3125 &bs
->backing
, tran
, errp
);
3132 * If backing_hd was already part of bs's backing chain, and
3133 * inherits_from pointed recursively to bs then let's update it to
3134 * point directly to bs (else it will become NULL).
3136 if (update_inherits_from
) {
3137 bdrv_set_inherits_from(backing_hd
, bs
, tran
);
3141 bdrv_refresh_limits(bs
, tran
, NULL
);
3146 int bdrv_set_backing_hd(BlockDriverState
*bs
, BlockDriverState
*backing_hd
,
3150 Transaction
*tran
= tran_new();
3152 ret
= bdrv_set_backing_noperm(bs
, backing_hd
, tran
, errp
);
3157 ret
= bdrv_refresh_perms(bs
, errp
);
3159 tran_finalize(tran
, ret
);
3165 * Opens the backing file for a BlockDriverState if not yet open
3167 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3168 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3169 * itself, all options starting with "${bdref_key}." are considered part of the
3172 * TODO Can this be unified with bdrv_open_image()?
3174 int bdrv_open_backing_file(BlockDriverState
*bs
, QDict
*parent_options
,
3175 const char *bdref_key
, Error
**errp
)
3177 char *backing_filename
= NULL
;
3178 char *bdref_key_dot
;
3179 const char *reference
= NULL
;
3181 bool implicit_backing
= false;
3182 BlockDriverState
*backing_hd
;
3184 QDict
*tmp_parent_options
= NULL
;
3185 Error
*local_err
= NULL
;
3187 if (bs
->backing
!= NULL
) {
3191 /* NULL means an empty set of options */
3192 if (parent_options
== NULL
) {
3193 tmp_parent_options
= qdict_new();
3194 parent_options
= tmp_parent_options
;
3197 bs
->open_flags
&= ~BDRV_O_NO_BACKING
;
3199 bdref_key_dot
= g_strdup_printf("%s.", bdref_key
);
3200 qdict_extract_subqdict(parent_options
, &options
, bdref_key_dot
);
3201 g_free(bdref_key_dot
);
3204 * Caution: while qdict_get_try_str() is fine, getting non-string
3205 * types would require more care. When @parent_options come from
3206 * -blockdev or blockdev_add, its members are typed according to
3207 * the QAPI schema, but when they come from -drive, they're all
3210 reference
= qdict_get_try_str(parent_options
, bdref_key
);
3211 if (reference
|| qdict_haskey(options
, "file.filename")) {
3212 /* keep backing_filename NULL */
3213 } else if (bs
->backing_file
[0] == '\0' && qdict_size(options
) == 0) {
3214 qobject_unref(options
);
3217 if (qdict_size(options
) == 0) {
3218 /* If the user specifies options that do not modify the
3219 * backing file's behavior, we might still consider it the
3220 * implicit backing file. But it's easier this way, and
3221 * just specifying some of the backing BDS's options is
3222 * only possible with -drive anyway (otherwise the QAPI
3223 * schema forces the user to specify everything). */
3224 implicit_backing
= !strcmp(bs
->auto_backing_file
, bs
->backing_file
);
3227 backing_filename
= bdrv_get_full_backing_filename(bs
, &local_err
);
3230 error_propagate(errp
, local_err
);
3231 qobject_unref(options
);
3236 if (!bs
->drv
|| !bs
->drv
->supports_backing
) {
3238 error_setg(errp
, "Driver doesn't support backing files");
3239 qobject_unref(options
);
3244 bs
->backing_format
[0] != '\0' && !qdict_haskey(options
, "driver")) {
3245 qdict_put_str(options
, "driver", bs
->backing_format
);
3248 backing_hd
= bdrv_open_inherit(backing_filename
, reference
, options
, 0, bs
,
3249 &child_of_bds
, bdrv_backing_role(bs
), errp
);
3251 bs
->open_flags
|= BDRV_O_NO_BACKING
;
3252 error_prepend(errp
, "Could not open backing file: ");
3257 if (implicit_backing
) {
3258 bdrv_refresh_filename(backing_hd
);
3259 pstrcpy(bs
->auto_backing_file
, sizeof(bs
->auto_backing_file
),
3260 backing_hd
->filename
);
3263 /* Hook up the backing file link; drop our reference, bs owns the
3264 * backing_hd reference now */
3265 ret
= bdrv_set_backing_hd(bs
, backing_hd
, errp
);
3266 bdrv_unref(backing_hd
);
3271 qdict_del(parent_options
, bdref_key
);
3274 g_free(backing_filename
);
3275 qobject_unref(tmp_parent_options
);
3279 static BlockDriverState
*
3280 bdrv_open_child_bs(const char *filename
, QDict
*options
, const char *bdref_key
,
3281 BlockDriverState
*parent
, const BdrvChildClass
*child_class
,
3282 BdrvChildRole child_role
, bool allow_none
, Error
**errp
)
3284 BlockDriverState
*bs
= NULL
;
3285 QDict
*image_options
;
3286 char *bdref_key_dot
;
3287 const char *reference
;
3289 assert(child_class
!= NULL
);
3291 bdref_key_dot
= g_strdup_printf("%s.", bdref_key
);
3292 qdict_extract_subqdict(options
, &image_options
, bdref_key_dot
);
3293 g_free(bdref_key_dot
);
3296 * Caution: while qdict_get_try_str() is fine, getting non-string
3297 * types would require more care. When @options come from
3298 * -blockdev or blockdev_add, its members are typed according to
3299 * the QAPI schema, but when they come from -drive, they're all
3302 reference
= qdict_get_try_str(options
, bdref_key
);
3303 if (!filename
&& !reference
&& !qdict_size(image_options
)) {
3305 error_setg(errp
, "A block device must be specified for \"%s\"",
3308 qobject_unref(image_options
);
3312 bs
= bdrv_open_inherit(filename
, reference
, image_options
, 0,
3313 parent
, child_class
, child_role
, errp
);
3319 qdict_del(options
, bdref_key
);
3324 * Opens a disk image whose options are given as BlockdevRef in another block
3327 * If allow_none is true, no image will be opened if filename is false and no
3328 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3330 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3331 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3332 * itself, all options starting with "${bdref_key}." are considered part of the
3335 * The BlockdevRef will be removed from the options QDict.
3337 BdrvChild
*bdrv_open_child(const char *filename
,
3338 QDict
*options
, const char *bdref_key
,
3339 BlockDriverState
*parent
,
3340 const BdrvChildClass
*child_class
,
3341 BdrvChildRole child_role
,
3342 bool allow_none
, Error
**errp
)
3344 BlockDriverState
*bs
;
3346 bs
= bdrv_open_child_bs(filename
, options
, bdref_key
, parent
, child_class
,
3347 child_role
, allow_none
, errp
);
3352 return bdrv_attach_child(parent
, bs
, bdref_key
, child_class
, child_role
,
3357 * TODO Future callers may need to specify parent/child_class in order for
3358 * option inheritance to work. Existing callers use it for the root node.
3360 BlockDriverState
*bdrv_open_blockdev_ref(BlockdevRef
*ref
, Error
**errp
)
3362 BlockDriverState
*bs
= NULL
;
3363 QObject
*obj
= NULL
;
3364 QDict
*qdict
= NULL
;
3365 const char *reference
= NULL
;
3368 if (ref
->type
== QTYPE_QSTRING
) {
3369 reference
= ref
->u
.reference
;
3371 BlockdevOptions
*options
= &ref
->u
.definition
;
3372 assert(ref
->type
== QTYPE_QDICT
);
3374 v
= qobject_output_visitor_new(&obj
);
3375 visit_type_BlockdevOptions(v
, NULL
, &options
, &error_abort
);
3376 visit_complete(v
, &obj
);
3378 qdict
= qobject_to(QDict
, obj
);
3379 qdict_flatten(qdict
);
3381 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3382 * compatibility with other callers) rather than what we want as the
3383 * real defaults. Apply the defaults here instead. */
3384 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_DIRECT
, "off");
3385 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_NO_FLUSH
, "off");
3386 qdict_set_default_str(qdict
, BDRV_OPT_READ_ONLY
, "off");
3387 qdict_set_default_str(qdict
, BDRV_OPT_AUTO_READ_ONLY
, "off");
3391 bs
= bdrv_open_inherit(NULL
, reference
, qdict
, 0, NULL
, NULL
, 0, errp
);
3398 static BlockDriverState
*bdrv_append_temp_snapshot(BlockDriverState
*bs
,
3400 QDict
*snapshot_options
,
3403 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
3404 char *tmp_filename
= g_malloc0(PATH_MAX
+ 1);
3406 QemuOpts
*opts
= NULL
;
3407 BlockDriverState
*bs_snapshot
= NULL
;
3410 /* if snapshot, we create a temporary backing file and open it
3411 instead of opening 'filename' directly */
3413 /* Get the required size from the image */
3414 total_size
= bdrv_getlength(bs
);
3415 if (total_size
< 0) {
3416 error_setg_errno(errp
, -total_size
, "Could not get image size");
3420 /* Create the temporary image */
3421 ret
= get_tmp_filename(tmp_filename
, PATH_MAX
+ 1);
3423 error_setg_errno(errp
, -ret
, "Could not get temporary filename");
3427 opts
= qemu_opts_create(bdrv_qcow2
.create_opts
, NULL
, 0,
3429 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, total_size
, &error_abort
);
3430 ret
= bdrv_create(&bdrv_qcow2
, tmp_filename
, opts
, errp
);
3431 qemu_opts_del(opts
);
3433 error_prepend(errp
, "Could not create temporary overlay '%s': ",
3438 /* Prepare options QDict for the temporary file */
3439 qdict_put_str(snapshot_options
, "file.driver", "file");
3440 qdict_put_str(snapshot_options
, "file.filename", tmp_filename
);
3441 qdict_put_str(snapshot_options
, "driver", "qcow2");
3443 bs_snapshot
= bdrv_open(NULL
, NULL
, snapshot_options
, flags
, errp
);
3444 snapshot_options
= NULL
;
3449 ret
= bdrv_append(bs_snapshot
, bs
, errp
);
3456 qobject_unref(snapshot_options
);
3457 g_free(tmp_filename
);
3462 * Opens a disk image (raw, qcow2, vmdk, ...)
3464 * options is a QDict of options to pass to the block drivers, or NULL for an
3465 * empty set of options. The reference to the QDict belongs to the block layer
3466 * after the call (even on failure), so if the caller intends to reuse the
3467 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
3469 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3470 * If it is not NULL, the referenced BDS will be reused.
3472 * The reference parameter may be used to specify an existing block device which
3473 * should be opened. If specified, neither options nor a filename may be given,
3474 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
3476 static BlockDriverState
*bdrv_open_inherit(const char *filename
,
3477 const char *reference
,
3478 QDict
*options
, int flags
,
3479 BlockDriverState
*parent
,
3480 const BdrvChildClass
*child_class
,
3481 BdrvChildRole child_role
,
3485 BlockBackend
*file
= NULL
;
3486 BlockDriverState
*bs
;
3487 BlockDriver
*drv
= NULL
;
3489 const char *drvname
;
3490 const char *backing
;
3491 Error
*local_err
= NULL
;
3492 QDict
*snapshot_options
= NULL
;
3493 int snapshot_flags
= 0;
3495 assert(!child_class
|| !flags
);
3496 assert(!child_class
== !parent
);
3499 bool options_non_empty
= options
? qdict_size(options
) : false;
3500 qobject_unref(options
);
3502 if (filename
|| options_non_empty
) {
3503 error_setg(errp
, "Cannot reference an existing block device with "
3504 "additional options or a new filename");
3508 bs
= bdrv_lookup_bs(reference
, reference
, errp
);
3519 /* NULL means an empty set of options */
3520 if (options
== NULL
) {
3521 options
= qdict_new();
3524 /* json: syntax counts as explicit options, as if in the QDict */
3525 parse_json_protocol(options
, &filename
, &local_err
);
3530 bs
->explicit_options
= qdict_clone_shallow(options
);
3533 bool parent_is_format
;
3536 parent_is_format
= parent
->drv
->is_format
;
3539 * parent->drv is not set yet because this node is opened for
3540 * (potential) format probing. That means that @parent is going
3541 * to be a format node.
3543 parent_is_format
= true;
3546 bs
->inherits_from
= parent
;
3547 child_class
->inherit_options(child_role
, parent_is_format
,
3549 parent
->open_flags
, parent
->options
);
3552 ret
= bdrv_fill_options(&options
, filename
, &flags
, &local_err
);
3558 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3559 * Caution: getting a boolean member of @options requires care.
3560 * When @options come from -blockdev or blockdev_add, members are
3561 * typed according to the QAPI schema, but when they come from
3562 * -drive, they're all QString.
3564 if (g_strcmp0(qdict_get_try_str(options
, BDRV_OPT_READ_ONLY
), "on") &&
3565 !qdict_get_try_bool(options
, BDRV_OPT_READ_ONLY
, false)) {
3566 flags
|= (BDRV_O_RDWR
| BDRV_O_ALLOW_RDWR
);
3568 flags
&= ~BDRV_O_RDWR
;
3571 if (flags
& BDRV_O_SNAPSHOT
) {
3572 snapshot_options
= qdict_new();
3573 bdrv_temp_snapshot_options(&snapshot_flags
, snapshot_options
,
3575 /* Let bdrv_backing_options() override "read-only" */
3576 qdict_del(options
, BDRV_OPT_READ_ONLY
);
3577 bdrv_inherited_options(BDRV_CHILD_COW
, true,
3578 &flags
, options
, flags
, options
);
3581 bs
->open_flags
= flags
;
3582 bs
->options
= options
;
3583 options
= qdict_clone_shallow(options
);
3585 /* Find the right image format driver */
3586 /* See cautionary note on accessing @options above */
3587 drvname
= qdict_get_try_str(options
, "driver");
3589 drv
= bdrv_find_format(drvname
);
3591 error_setg(errp
, "Unknown driver: '%s'", drvname
);
3596 assert(drvname
|| !(flags
& BDRV_O_PROTOCOL
));
3598 /* See cautionary note on accessing @options above */
3599 backing
= qdict_get_try_str(options
, "backing");
3600 if (qobject_to(QNull
, qdict_get(options
, "backing")) != NULL
||
3601 (backing
&& *backing
== '\0'))
3604 warn_report("Use of \"backing\": \"\" is deprecated; "
3605 "use \"backing\": null instead");
3607 flags
|= BDRV_O_NO_BACKING
;
3608 qdict_del(bs
->explicit_options
, "backing");
3609 qdict_del(bs
->options
, "backing");
3610 qdict_del(options
, "backing");
3613 /* Open image file without format layer. This BlockBackend is only used for
3614 * probing, the block drivers will do their own bdrv_open_child() for the
3615 * same BDS, which is why we put the node name back into options. */
3616 if ((flags
& BDRV_O_PROTOCOL
) == 0) {
3617 BlockDriverState
*file_bs
;
3619 file_bs
= bdrv_open_child_bs(filename
, options
, "file", bs
,
3620 &child_of_bds
, BDRV_CHILD_IMAGE
,
3625 if (file_bs
!= NULL
) {
3626 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3627 * looking at the header to guess the image format. This works even
3628 * in cases where a guest would not see a consistent state. */
3629 file
= blk_new(bdrv_get_aio_context(file_bs
), 0, BLK_PERM_ALL
);
3630 blk_insert_bs(file
, file_bs
, &local_err
);
3631 bdrv_unref(file_bs
);
3636 qdict_put_str(options
, "file", bdrv_get_node_name(file_bs
));
3640 /* Image format probing */
3643 ret
= find_image_format(file
, filename
, &drv
, &local_err
);
3648 * This option update would logically belong in bdrv_fill_options(),
3649 * but we first need to open bs->file for the probing to work, while
3650 * opening bs->file already requires the (mostly) final set of options
3651 * so that cache mode etc. can be inherited.
3653 * Adding the driver later is somewhat ugly, but it's not an option
3654 * that would ever be inherited, so it's correct. We just need to make
3655 * sure to update both bs->options (which has the full effective
3656 * options for bs) and options (which has file.* already removed).
3658 qdict_put_str(bs
->options
, "driver", drv
->format_name
);
3659 qdict_put_str(options
, "driver", drv
->format_name
);
3661 error_setg(errp
, "Must specify either driver or file");
3665 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3666 assert(!!(flags
& BDRV_O_PROTOCOL
) == !!drv
->bdrv_file_open
);
3667 /* file must be NULL if a protocol BDS is about to be created
3668 * (the inverse results in an error message from bdrv_open_common()) */
3669 assert(!(flags
& BDRV_O_PROTOCOL
) || !file
);
3671 /* Open the image */
3672 ret
= bdrv_open_common(bs
, file
, options
, &local_err
);
3682 /* If there is a backing file, use it */
3683 if ((flags
& BDRV_O_NO_BACKING
) == 0) {
3684 ret
= bdrv_open_backing_file(bs
, options
, "backing", &local_err
);
3686 goto close_and_fail
;
3690 /* Remove all children options and references
3691 * from bs->options and bs->explicit_options */
3692 QLIST_FOREACH(child
, &bs
->children
, next
) {
3693 char *child_key_dot
;
3694 child_key_dot
= g_strdup_printf("%s.", child
->name
);
3695 qdict_extract_subqdict(bs
->explicit_options
, NULL
, child_key_dot
);
3696 qdict_extract_subqdict(bs
->options
, NULL
, child_key_dot
);
3697 qdict_del(bs
->explicit_options
, child
->name
);
3698 qdict_del(bs
->options
, child
->name
);
3699 g_free(child_key_dot
);
3702 /* Check if any unknown options were used */
3703 if (qdict_size(options
) != 0) {
3704 const QDictEntry
*entry
= qdict_first(options
);
3705 if (flags
& BDRV_O_PROTOCOL
) {
3706 error_setg(errp
, "Block protocol '%s' doesn't support the option "
3707 "'%s'", drv
->format_name
, entry
->key
);
3710 "Block format '%s' does not support the option '%s'",
3711 drv
->format_name
, entry
->key
);
3714 goto close_and_fail
;
3717 bdrv_parent_cb_change_media(bs
, true);
3719 qobject_unref(options
);
3722 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3723 * temporary snapshot afterwards. */
3724 if (snapshot_flags
) {
3725 BlockDriverState
*snapshot_bs
;
3726 snapshot_bs
= bdrv_append_temp_snapshot(bs
, snapshot_flags
,
3727 snapshot_options
, &local_err
);
3728 snapshot_options
= NULL
;
3730 goto close_and_fail
;
3732 /* We are not going to return bs but the overlay on top of it
3733 * (snapshot_bs); thus, we have to drop the strong reference to bs
3734 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3735 * though, because the overlay still has a reference to it. */
3744 qobject_unref(snapshot_options
);
3745 qobject_unref(bs
->explicit_options
);
3746 qobject_unref(bs
->options
);
3747 qobject_unref(options
);
3749 bs
->explicit_options
= NULL
;
3751 error_propagate(errp
, local_err
);
3756 qobject_unref(snapshot_options
);
3757 qobject_unref(options
);
3758 error_propagate(errp
, local_err
);
3762 BlockDriverState
*bdrv_open(const char *filename
, const char *reference
,
3763 QDict
*options
, int flags
, Error
**errp
)
3765 return bdrv_open_inherit(filename
, reference
, options
, flags
, NULL
,
3769 /* Return true if the NULL-terminated @list contains @str */
3770 static bool is_str_in_list(const char *str
, const char *const *list
)
3774 for (i
= 0; list
[i
] != NULL
; i
++) {
3775 if (!strcmp(str
, list
[i
])) {
3784 * Check that every option set in @bs->options is also set in
3787 * Options listed in the common_options list and in
3788 * @bs->drv->mutable_opts are skipped.
3790 * Return 0 on success, otherwise return -EINVAL and set @errp.
3792 static int bdrv_reset_options_allowed(BlockDriverState
*bs
,
3793 const QDict
*new_opts
, Error
**errp
)
3795 const QDictEntry
*e
;
3796 /* These options are common to all block drivers and are handled
3797 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3798 const char *const common_options
[] = {
3799 "node-name", "discard", "cache.direct", "cache.no-flush",
3800 "read-only", "auto-read-only", "detect-zeroes", NULL
3803 for (e
= qdict_first(bs
->options
); e
; e
= qdict_next(bs
->options
, e
)) {
3804 if (!qdict_haskey(new_opts
, e
->key
) &&
3805 !is_str_in_list(e
->key
, common_options
) &&
3806 !is_str_in_list(e
->key
, bs
->drv
->mutable_opts
)) {
3807 error_setg(errp
, "Option '%s' cannot be reset "
3808 "to its default value", e
->key
);
3817 * Returns true if @child can be reached recursively from @bs
3819 static bool bdrv_recurse_has_child(BlockDriverState
*bs
,
3820 BlockDriverState
*child
)
3828 QLIST_FOREACH(c
, &bs
->children
, next
) {
3829 if (bdrv_recurse_has_child(c
->bs
, child
)) {
3838 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3839 * reopen of multiple devices.
3841 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
3842 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3843 * be created and initialized. This newly created BlockReopenQueue should be
3844 * passed back in for subsequent calls that are intended to be of the same
3847 * bs is the BlockDriverState to add to the reopen queue.
3849 * options contains the changed options for the associated bs
3850 * (the BlockReopenQueue takes ownership)
3852 * flags contains the open flags for the associated bs
3854 * returns a pointer to bs_queue, which is either the newly allocated
3855 * bs_queue, or the existing bs_queue being used.
3857 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
3859 static BlockReopenQueue
*bdrv_reopen_queue_child(BlockReopenQueue
*bs_queue
,
3860 BlockDriverState
*bs
,
3862 const BdrvChildClass
*klass
,
3864 bool parent_is_format
,
3865 QDict
*parent_options
,
3871 BlockReopenQueueEntry
*bs_entry
;
3873 QDict
*old_options
, *explicit_options
, *options_copy
;
3877 /* Make sure that the caller remembered to use a drained section. This is
3878 * important to avoid graph changes between the recursive queuing here and
3879 * bdrv_reopen_multiple(). */
3880 assert(bs
->quiesce_counter
> 0);
3882 if (bs_queue
== NULL
) {
3883 bs_queue
= g_new0(BlockReopenQueue
, 1);
3884 QTAILQ_INIT(bs_queue
);
3888 options
= qdict_new();
3891 /* Check if this BlockDriverState is already in the queue */
3892 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
3893 if (bs
== bs_entry
->state
.bs
) {
3899 * Precedence of options:
3900 * 1. Explicitly passed in options (highest)
3901 * 2. Retained from explicitly set options of bs
3902 * 3. Inherited from parent node
3903 * 4. Retained from effective options of bs
3906 /* Old explicitly set values (don't overwrite by inherited value) */
3907 if (bs_entry
|| keep_old_opts
) {
3908 old_options
= qdict_clone_shallow(bs_entry
?
3909 bs_entry
->state
.explicit_options
:
3910 bs
->explicit_options
);
3911 bdrv_join_options(bs
, options
, old_options
);
3912 qobject_unref(old_options
);
3915 explicit_options
= qdict_clone_shallow(options
);
3917 /* Inherit from parent node */
3918 if (parent_options
) {
3920 klass
->inherit_options(role
, parent_is_format
, &flags
, options
,
3921 parent_flags
, parent_options
);
3923 flags
= bdrv_get_flags(bs
);
3926 if (keep_old_opts
) {
3927 /* Old values are used for options that aren't set yet */
3928 old_options
= qdict_clone_shallow(bs
->options
);
3929 bdrv_join_options(bs
, options
, old_options
);
3930 qobject_unref(old_options
);
3933 /* We have the final set of options so let's update the flags */
3934 options_copy
= qdict_clone_shallow(options
);
3935 opts
= qemu_opts_create(&bdrv_runtime_opts
, NULL
, 0, &error_abort
);
3936 qemu_opts_absorb_qdict(opts
, options_copy
, NULL
);
3937 update_flags_from_options(&flags
, opts
);
3938 qemu_opts_del(opts
);
3939 qobject_unref(options_copy
);
3941 /* bdrv_open_inherit() sets and clears some additional flags internally */
3942 flags
&= ~BDRV_O_PROTOCOL
;
3943 if (flags
& BDRV_O_RDWR
) {
3944 flags
|= BDRV_O_ALLOW_RDWR
;
3948 bs_entry
= g_new0(BlockReopenQueueEntry
, 1);
3949 QTAILQ_INSERT_TAIL(bs_queue
, bs_entry
, entry
);
3951 qobject_unref(bs_entry
->state
.options
);
3952 qobject_unref(bs_entry
->state
.explicit_options
);
3955 bs_entry
->state
.bs
= bs
;
3956 bs_entry
->state
.options
= options
;
3957 bs_entry
->state
.explicit_options
= explicit_options
;
3958 bs_entry
->state
.flags
= flags
;
3961 * If keep_old_opts is false then it means that unspecified
3962 * options must be reset to their original value. We don't allow
3963 * resetting 'backing' but we need to know if the option is
3964 * missing in order to decide if we have to return an error.
3966 if (!keep_old_opts
) {
3967 bs_entry
->state
.backing_missing
=
3968 !qdict_haskey(options
, "backing") &&
3969 !qdict_haskey(options
, "backing.driver");
3972 QLIST_FOREACH(child
, &bs
->children
, next
) {
3973 QDict
*new_child_options
= NULL
;
3974 bool child_keep_old
= keep_old_opts
;
3976 /* reopen can only change the options of block devices that were
3977 * implicitly created and inherited options. For other (referenced)
3978 * block devices, a syntax like "backing.foo" results in an error. */
3979 if (child
->bs
->inherits_from
!= bs
) {
3983 /* Check if the options contain a child reference */
3984 if (qdict_haskey(options
, child
->name
)) {
3985 const char *childref
= qdict_get_try_str(options
, child
->name
);
3987 * The current child must not be reopened if the child
3988 * reference is null or points to a different node.
3990 if (g_strcmp0(childref
, child
->bs
->node_name
)) {
3994 * If the child reference points to the current child then
3995 * reopen it with its existing set of options (note that
3996 * it can still inherit new options from the parent).
3998 child_keep_old
= true;
4000 /* Extract child options ("child-name.*") */
4001 char *child_key_dot
= g_strdup_printf("%s.", child
->name
);
4002 qdict_extract_subqdict(explicit_options
, NULL
, child_key_dot
);
4003 qdict_extract_subqdict(options
, &new_child_options
, child_key_dot
);
4004 g_free(child_key_dot
);
4007 bdrv_reopen_queue_child(bs_queue
, child
->bs
, new_child_options
,
4008 child
->klass
, child
->role
, bs
->drv
->is_format
,
4009 options
, flags
, child_keep_old
);
4015 BlockReopenQueue
*bdrv_reopen_queue(BlockReopenQueue
*bs_queue
,
4016 BlockDriverState
*bs
,
4017 QDict
*options
, bool keep_old_opts
)
4019 return bdrv_reopen_queue_child(bs_queue
, bs
, options
, NULL
, 0, false,
4020 NULL
, 0, keep_old_opts
);
4024 * Reopen multiple BlockDriverStates atomically & transactionally.
4026 * The queue passed in (bs_queue) must have been built up previous
4027 * via bdrv_reopen_queue().
4029 * Reopens all BDS specified in the queue, with the appropriate
4030 * flags. All devices are prepared for reopen, and failure of any
4031 * device will cause all device changes to be abandoned, and intermediate
4034 * If all devices prepare successfully, then the changes are committed
4037 * All affected nodes must be drained between bdrv_reopen_queue() and
4038 * bdrv_reopen_multiple().
4040 int bdrv_reopen_multiple(BlockReopenQueue
*bs_queue
, Error
**errp
)
4043 BlockReopenQueueEntry
*bs_entry
, *next
;
4044 Transaction
*tran
= tran_new();
4045 g_autoptr(GHashTable
) found
= NULL
;
4046 g_autoptr(GSList
) refresh_list
= NULL
;
4048 assert(bs_queue
!= NULL
);
4050 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
4051 ret
= bdrv_flush(bs_entry
->state
.bs
);
4053 error_setg_errno(errp
, -ret
, "Error flushing drive");
4058 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
4059 assert(bs_entry
->state
.bs
->quiesce_counter
> 0);
4060 ret
= bdrv_reopen_prepare(&bs_entry
->state
, bs_queue
, tran
, errp
);
4064 bs_entry
->prepared
= true;
4067 found
= g_hash_table_new(NULL
, NULL
);
4068 QTAILQ_FOREACH(bs_entry
, bs_queue
, entry
) {
4069 BDRVReopenState
*state
= &bs_entry
->state
;
4071 refresh_list
= bdrv_topological_dfs(refresh_list
, found
, state
->bs
);
4072 if (state
->old_backing_bs
) {
4073 refresh_list
= bdrv_topological_dfs(refresh_list
, found
,
4074 state
->old_backing_bs
);
4079 * Note that file-posix driver rely on permission update done during reopen
4080 * (even if no permission changed), because it wants "new" permissions for
4081 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4082 * in raw_reopen_prepare() which is called with "old" permissions.
4084 ret
= bdrv_list_refresh_perms(refresh_list
, bs_queue
, tran
, errp
);
4090 * If we reach this point, we have success and just need to apply the
4093 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4094 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4095 * children are usually goes after parents in reopen-queue, so go from last
4098 QTAILQ_FOREACH_REVERSE(bs_entry
, bs_queue
, entry
) {
4099 bdrv_reopen_commit(&bs_entry
->state
);
4104 QTAILQ_FOREACH_REVERSE(bs_entry
, bs_queue
, entry
) {
4105 BlockDriverState
*bs
= bs_entry
->state
.bs
;
4107 if (bs
->drv
->bdrv_reopen_commit_post
) {
4108 bs
->drv
->bdrv_reopen_commit_post(&bs_entry
->state
);
4117 QTAILQ_FOREACH_SAFE(bs_entry
, bs_queue
, entry
, next
) {
4118 if (bs_entry
->prepared
) {
4119 bdrv_reopen_abort(&bs_entry
->state
);
4121 qobject_unref(bs_entry
->state
.explicit_options
);
4122 qobject_unref(bs_entry
->state
.options
);
4126 QTAILQ_FOREACH_SAFE(bs_entry
, bs_queue
, entry
, next
) {
4134 int bdrv_reopen_set_read_only(BlockDriverState
*bs
, bool read_only
,
4138 BlockReopenQueue
*queue
;
4139 QDict
*opts
= qdict_new();
4141 qdict_put_bool(opts
, BDRV_OPT_READ_ONLY
, read_only
);
4143 bdrv_subtree_drained_begin(bs
);
4144 queue
= bdrv_reopen_queue(NULL
, bs
, opts
, true);
4145 ret
= bdrv_reopen_multiple(queue
, errp
);
4146 bdrv_subtree_drained_end(bs
);
4151 static bool bdrv_reopen_can_attach(BlockDriverState
*parent
,
4153 BlockDriverState
*new_child
,
4156 AioContext
*parent_ctx
= bdrv_get_aio_context(parent
);
4157 AioContext
*child_ctx
= bdrv_get_aio_context(new_child
);
4161 ignore
= g_slist_prepend(NULL
, child
);
4162 ret
= bdrv_can_set_aio_context(new_child
, parent_ctx
, &ignore
, NULL
);
4163 g_slist_free(ignore
);
4168 ignore
= g_slist_prepend(NULL
, child
);
4169 ret
= bdrv_can_set_aio_context(parent
, child_ctx
, &ignore
, errp
);
4170 g_slist_free(ignore
);
4175 * Take a BDRVReopenState and check if the value of 'backing' in the
4176 * reopen_state->options QDict is valid or not.
4178 * If 'backing' is missing from the QDict then return 0.
4180 * If 'backing' contains the node name of the backing file of
4181 * reopen_state->bs then return 0.
4183 * If 'backing' contains a different node name (or is null) then check
4184 * whether the current backing file can be replaced with the new one.
4185 * If that's the case then reopen_state->replace_backing_bs is set to
4186 * true and reopen_state->new_backing_bs contains a pointer to the new
4187 * backing BlockDriverState (or NULL).
4189 * Return 0 on success, otherwise return < 0 and set @errp.
4191 static int bdrv_reopen_parse_backing(BDRVReopenState
*reopen_state
,
4192 Transaction
*set_backings_tran
,
4195 BlockDriverState
*bs
= reopen_state
->bs
;
4196 BlockDriverState
*overlay_bs
, *below_bs
, *new_backing_bs
;
4200 value
= qdict_get(reopen_state
->options
, "backing");
4201 if (value
== NULL
) {
4205 switch (qobject_type(value
)) {
4207 new_backing_bs
= NULL
;
4210 str
= qstring_get_str(qobject_to(QString
, value
));
4211 new_backing_bs
= bdrv_lookup_bs(NULL
, str
, errp
);
4212 if (new_backing_bs
== NULL
) {
4214 } else if (bdrv_recurse_has_child(new_backing_bs
, bs
)) {
4215 error_setg(errp
, "Making '%s' a backing file of '%s' "
4216 "would create a cycle", str
, bs
->node_name
);
4221 /* 'backing' does not allow any other data type */
4222 g_assert_not_reached();
4226 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
4227 * bdrv_reopen_commit() won't fail.
4229 if (new_backing_bs
) {
4230 if (!bdrv_reopen_can_attach(bs
, bs
->backing
, new_backing_bs
, errp
)) {
4236 * Ensure that @bs can really handle backing files, because we are
4237 * about to give it one (or swap the existing one)
4239 if (bs
->drv
->is_filter
) {
4240 /* Filters always have a file or a backing child */
4242 error_setg(errp
, "'%s' is a %s filter node that does not support a "
4243 "backing child", bs
->node_name
, bs
->drv
->format_name
);
4246 } else if (!bs
->drv
->supports_backing
) {
4247 error_setg(errp
, "Driver '%s' of node '%s' does not support backing "
4248 "files", bs
->drv
->format_name
, bs
->node_name
);
4253 * Find the "actual" backing file by skipping all links that point
4254 * to an implicit node, if any (e.g. a commit filter node).
4255 * We cannot use any of the bdrv_skip_*() functions here because
4256 * those return the first explicit node, while we are looking for
4260 for (below_bs
= bdrv_filter_or_cow_bs(overlay_bs
);
4261 below_bs
&& below_bs
->implicit
;
4262 below_bs
= bdrv_filter_or_cow_bs(overlay_bs
))
4264 overlay_bs
= below_bs
;
4267 /* If we want to replace the backing file we need some extra checks */
4268 if (new_backing_bs
!= bdrv_filter_or_cow_bs(overlay_bs
)) {
4271 /* Check for implicit nodes between bs and its backing file */
4272 if (bs
!= overlay_bs
) {
4273 error_setg(errp
, "Cannot change backing link if '%s' has "
4274 "an implicit backing file", bs
->node_name
);
4278 * Check if the backing link that we want to replace is frozen.
4280 * bdrv_filter_or_cow_child(overlay_bs) == overlay_bs->backing,
4281 * because we know that overlay_bs == bs, and that @bs
4282 * either is a filter that uses ->backing or a COW format BDS
4283 * with bs->drv->supports_backing == true.
4285 if (bdrv_is_backing_chain_frozen(overlay_bs
,
4286 child_bs(overlay_bs
->backing
), errp
))
4290 reopen_state
->replace_backing_bs
= true;
4291 reopen_state
->old_backing_bs
= bs
->backing
? bs
->backing
->bs
: NULL
;
4292 ret
= bdrv_set_backing_noperm(bs
, new_backing_bs
, set_backings_tran
,
4303 * Prepares a BlockDriverState for reopen. All changes are staged in the
4304 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4305 * the block driver layer .bdrv_reopen_prepare()
4307 * bs is the BlockDriverState to reopen
4308 * flags are the new open flags
4309 * queue is the reopen queue
4311 * Returns 0 on success, non-zero on error. On error errp will be set
4314 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4315 * It is the responsibility of the caller to then call the abort() or
4316 * commit() for any other BDS that have been left in a prepare() state
4319 static int bdrv_reopen_prepare(BDRVReopenState
*reopen_state
,
4320 BlockReopenQueue
*queue
,
4321 Transaction
*set_backings_tran
, Error
**errp
)
4325 Error
*local_err
= NULL
;
4328 QDict
*orig_reopen_opts
;
4329 char *discard
= NULL
;
4331 bool drv_prepared
= false;
4333 assert(reopen_state
!= NULL
);
4334 assert(reopen_state
->bs
->drv
!= NULL
);
4335 drv
= reopen_state
->bs
->drv
;
4337 /* This function and each driver's bdrv_reopen_prepare() remove
4338 * entries from reopen_state->options as they are processed, so
4339 * we need to make a copy of the original QDict. */
4340 orig_reopen_opts
= qdict_clone_shallow(reopen_state
->options
);
4342 /* Process generic block layer options */
4343 opts
= qemu_opts_create(&bdrv_runtime_opts
, NULL
, 0, &error_abort
);
4344 if (!qemu_opts_absorb_qdict(opts
, reopen_state
->options
, errp
)) {
4349 /* This was already called in bdrv_reopen_queue_child() so the flags
4350 * are up-to-date. This time we simply want to remove the options from
4351 * QemuOpts in order to indicate that they have been processed. */
4352 old_flags
= reopen_state
->flags
;
4353 update_flags_from_options(&reopen_state
->flags
, opts
);
4354 assert(old_flags
== reopen_state
->flags
);
4356 discard
= qemu_opt_get_del(opts
, BDRV_OPT_DISCARD
);
4357 if (discard
!= NULL
) {
4358 if (bdrv_parse_discard_flags(discard
, &reopen_state
->flags
) != 0) {
4359 error_setg(errp
, "Invalid discard option");
4365 reopen_state
->detect_zeroes
=
4366 bdrv_parse_detect_zeroes(opts
, reopen_state
->flags
, &local_err
);
4368 error_propagate(errp
, local_err
);
4373 /* All other options (including node-name and driver) must be unchanged.
4374 * Put them back into the QDict, so that they are checked at the end
4375 * of this function. */
4376 qemu_opts_to_qdict(opts
, reopen_state
->options
);
4378 /* If we are to stay read-only, do not allow permission change
4379 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4380 * not set, or if the BDS still has copy_on_read enabled */
4381 read_only
= !(reopen_state
->flags
& BDRV_O_RDWR
);
4382 ret
= bdrv_can_set_read_only(reopen_state
->bs
, read_only
, true, &local_err
);
4384 error_propagate(errp
, local_err
);
4388 if (drv
->bdrv_reopen_prepare
) {
4390 * If a driver-specific option is missing, it means that we
4391 * should reset it to its default value.
4392 * But not all options allow that, so we need to check it first.
4394 ret
= bdrv_reset_options_allowed(reopen_state
->bs
,
4395 reopen_state
->options
, errp
);
4400 ret
= drv
->bdrv_reopen_prepare(reopen_state
, queue
, &local_err
);
4402 if (local_err
!= NULL
) {
4403 error_propagate(errp
, local_err
);
4405 bdrv_refresh_filename(reopen_state
->bs
);
4406 error_setg(errp
, "failed while preparing to reopen image '%s'",
4407 reopen_state
->bs
->filename
);
4412 /* It is currently mandatory to have a bdrv_reopen_prepare()
4413 * handler for each supported drv. */
4414 error_setg(errp
, "Block format '%s' used by node '%s' "
4415 "does not support reopening files", drv
->format_name
,
4416 bdrv_get_device_or_node_name(reopen_state
->bs
));
4421 drv_prepared
= true;
4424 * We must provide the 'backing' option if the BDS has a backing
4425 * file or if the image file has a backing file name as part of
4426 * its metadata. Otherwise the 'backing' option can be omitted.
4428 if (drv
->supports_backing
&& reopen_state
->backing_missing
&&
4429 (reopen_state
->bs
->backing
|| reopen_state
->bs
->backing_file
[0])) {
4430 error_setg(errp
, "backing is missing for '%s'",
4431 reopen_state
->bs
->node_name
);
4437 * Allow changing the 'backing' option. The new value can be
4438 * either a reference to an existing node (using its node name)
4439 * or NULL to simply detach the current backing file.
4441 ret
= bdrv_reopen_parse_backing(reopen_state
, set_backings_tran
, errp
);
4445 qdict_del(reopen_state
->options
, "backing");
4447 /* Options that are not handled are only okay if they are unchanged
4448 * compared to the old state. It is expected that some options are only
4449 * used for the initial open, but not reopen (e.g. filename) */
4450 if (qdict_size(reopen_state
->options
)) {
4451 const QDictEntry
*entry
= qdict_first(reopen_state
->options
);
4454 QObject
*new = entry
->value
;
4455 QObject
*old
= qdict_get(reopen_state
->bs
->options
, entry
->key
);
4457 /* Allow child references (child_name=node_name) as long as they
4458 * point to the current child (i.e. everything stays the same). */
4459 if (qobject_type(new) == QTYPE_QSTRING
) {
4461 QLIST_FOREACH(child
, &reopen_state
->bs
->children
, next
) {
4462 if (!strcmp(child
->name
, entry
->key
)) {
4468 if (!strcmp(child
->bs
->node_name
,
4469 qstring_get_str(qobject_to(QString
, new)))) {
4470 continue; /* Found child with this name, skip option */
4476 * TODO: When using -drive to specify blockdev options, all values
4477 * will be strings; however, when using -blockdev, blockdev-add or
4478 * filenames using the json:{} pseudo-protocol, they will be
4480 * In contrast, reopening options are (currently) always strings
4481 * (because you can only specify them through qemu-io; all other
4482 * callers do not specify any options).
4483 * Therefore, when using anything other than -drive to create a BDS,
4484 * this cannot detect non-string options as unchanged, because
4485 * qobject_is_equal() always returns false for objects of different
4486 * type. In the future, this should be remedied by correctly typing
4487 * all options. For now, this is not too big of an issue because
4488 * the user can simply omit options which cannot be changed anyway,
4489 * so they will stay unchanged.
4491 if (!qobject_is_equal(new, old
)) {
4492 error_setg(errp
, "Cannot change the option '%s'", entry
->key
);
4496 } while ((entry
= qdict_next(reopen_state
->options
, entry
)));
4501 /* Restore the original reopen_state->options QDict */
4502 qobject_unref(reopen_state
->options
);
4503 reopen_state
->options
= qobject_ref(orig_reopen_opts
);
4506 if (ret
< 0 && drv_prepared
) {
4507 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4508 * call drv->bdrv_reopen_abort() before signaling an error
4509 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4510 * when the respective bdrv_reopen_prepare() has failed) */
4511 if (drv
->bdrv_reopen_abort
) {
4512 drv
->bdrv_reopen_abort(reopen_state
);
4515 qemu_opts_del(opts
);
4516 qobject_unref(orig_reopen_opts
);
4522 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4523 * makes them final by swapping the staging BlockDriverState contents into
4524 * the active BlockDriverState contents.
4526 static void bdrv_reopen_commit(BDRVReopenState
*reopen_state
)
4529 BlockDriverState
*bs
;
4532 assert(reopen_state
!= NULL
);
4533 bs
= reopen_state
->bs
;
4535 assert(drv
!= NULL
);
4537 /* If there are any driver level actions to take */
4538 if (drv
->bdrv_reopen_commit
) {
4539 drv
->bdrv_reopen_commit(reopen_state
);
4542 /* set BDS specific flags now */
4543 qobject_unref(bs
->explicit_options
);
4544 qobject_unref(bs
->options
);
4546 bs
->explicit_options
= reopen_state
->explicit_options
;
4547 bs
->options
= reopen_state
->options
;
4548 bs
->open_flags
= reopen_state
->flags
;
4549 bs
->read_only
= !(reopen_state
->flags
& BDRV_O_RDWR
);
4550 bs
->detect_zeroes
= reopen_state
->detect_zeroes
;
4552 if (reopen_state
->replace_backing_bs
) {
4553 qdict_del(bs
->explicit_options
, "backing");
4554 qdict_del(bs
->options
, "backing");
4557 /* Remove child references from bs->options and bs->explicit_options.
4558 * Child options were already removed in bdrv_reopen_queue_child() */
4559 QLIST_FOREACH(child
, &bs
->children
, next
) {
4560 qdict_del(bs
->explicit_options
, child
->name
);
4561 qdict_del(bs
->options
, child
->name
);
4563 bdrv_refresh_limits(bs
, NULL
, NULL
);
4567 * Abort the reopen, and delete and free the staged changes in
4570 static void bdrv_reopen_abort(BDRVReopenState
*reopen_state
)
4574 assert(reopen_state
!= NULL
);
4575 drv
= reopen_state
->bs
->drv
;
4576 assert(drv
!= NULL
);
4578 if (drv
->bdrv_reopen_abort
) {
4579 drv
->bdrv_reopen_abort(reopen_state
);
4584 static void bdrv_close(BlockDriverState
*bs
)
4586 BdrvAioNotifier
*ban
, *ban_next
;
4587 BdrvChild
*child
, *next
;
4589 assert(!bs
->refcnt
);
4591 bdrv_drained_begin(bs
); /* complete I/O */
4593 bdrv_drain(bs
); /* in case flush left pending I/O */
4596 if (bs
->drv
->bdrv_close
) {
4597 /* Must unfreeze all children, so bdrv_unref_child() works */
4598 bs
->drv
->bdrv_close(bs
);
4603 QLIST_FOREACH_SAFE(child
, &bs
->children
, next
, next
) {
4604 bdrv_unref_child(bs
, child
);
4611 qatomic_set(&bs
->copy_on_read
, 0);
4612 bs
->backing_file
[0] = '\0';
4613 bs
->backing_format
[0] = '\0';
4614 bs
->total_sectors
= 0;
4615 bs
->encrypted
= false;
4617 qobject_unref(bs
->options
);
4618 qobject_unref(bs
->explicit_options
);
4620 bs
->explicit_options
= NULL
;
4621 qobject_unref(bs
->full_open_options
);
4622 bs
->full_open_options
= NULL
;
4624 bdrv_release_named_dirty_bitmaps(bs
);
4625 assert(QLIST_EMPTY(&bs
->dirty_bitmaps
));
4627 QLIST_FOREACH_SAFE(ban
, &bs
->aio_notifiers
, list
, ban_next
) {
4630 QLIST_INIT(&bs
->aio_notifiers
);
4631 bdrv_drained_end(bs
);
4634 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4635 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4638 if (bs
->quiesce_counter
) {
4639 bdrv_drain_all_end_quiesce(bs
);
4643 void bdrv_close_all(void)
4645 assert(job_next(NULL
) == NULL
);
4647 /* Drop references from requests still in flight, such as canceled block
4648 * jobs whose AIO context has not been polled yet */
4651 blk_remove_all_bs();
4652 blockdev_close_all_bdrv_states();
4654 assert(QTAILQ_EMPTY(&all_bdrv_states
));
4657 static bool should_update_child(BdrvChild
*c
, BlockDriverState
*to
)
4663 if (c
->klass
->stay_at_node
) {
4667 /* If the child @c belongs to the BDS @to, replacing the current
4668 * c->bs by @to would mean to create a loop.
4670 * Such a case occurs when appending a BDS to a backing chain.
4671 * For instance, imagine the following chain:
4673 * guest device -> node A -> further backing chain...
4675 * Now we create a new BDS B which we want to put on top of this
4676 * chain, so we first attach A as its backing node:
4681 * guest device -> node A -> further backing chain...
4683 * Finally we want to replace A by B. When doing that, we want to
4684 * replace all pointers to A by pointers to B -- except for the
4685 * pointer from B because (1) that would create a loop, and (2)
4686 * that pointer should simply stay intact:
4688 * guest device -> node B
4691 * node A -> further backing chain...
4693 * In general, when replacing a node A (c->bs) by a node B (@to),
4694 * if A is a child of B, that means we cannot replace A by B there
4695 * because that would create a loop. Silently detaching A from B
4696 * is also not really an option. So overall just leaving A in
4697 * place there is the most sensible choice.
4699 * We would also create a loop in any cases where @c is only
4700 * indirectly referenced by @to. Prevent this by returning false
4701 * if @c is found (by breadth-first search) anywhere in the whole
4706 found
= g_hash_table_new(NULL
, NULL
);
4707 g_hash_table_add(found
, to
);
4708 queue
= g_queue_new();
4709 g_queue_push_tail(queue
, to
);
4711 while (!g_queue_is_empty(queue
)) {
4712 BlockDriverState
*v
= g_queue_pop_head(queue
);
4715 QLIST_FOREACH(c2
, &v
->children
, next
) {
4721 if (g_hash_table_contains(found
, c2
->bs
)) {
4725 g_queue_push_tail(queue
, c2
->bs
);
4726 g_hash_table_add(found
, c2
->bs
);
4730 g_queue_free(queue
);
4731 g_hash_table_destroy(found
);
4736 typedef struct BdrvRemoveFilterOrCowChild
{
4739 } BdrvRemoveFilterOrCowChild
;
4741 static void bdrv_remove_filter_or_cow_child_abort(void *opaque
)
4743 BdrvRemoveFilterOrCowChild
*s
= opaque
;
4744 BlockDriverState
*parent_bs
= s
->child
->opaque
;
4746 QLIST_INSERT_HEAD(&parent_bs
->children
, s
->child
, next
);
4747 if (s
->is_backing
) {
4748 parent_bs
->backing
= s
->child
;
4750 parent_bs
->file
= s
->child
;
4754 * We don't have to restore child->bs here to undo bdrv_replace_child()
4755 * because that function is transactionable and it registered own completion
4756 * entries in @tran, so .abort() for bdrv_replace_child_safe() will be
4757 * called automatically.
4761 static void bdrv_remove_filter_or_cow_child_commit(void *opaque
)
4763 BdrvRemoveFilterOrCowChild
*s
= opaque
;
4765 bdrv_child_free(s
->child
);
4768 static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv
= {
4769 .abort
= bdrv_remove_filter_or_cow_child_abort
,
4770 .commit
= bdrv_remove_filter_or_cow_child_commit
,
4775 * A function to remove backing-chain child of @bs if exists: cow child for
4776 * format nodes (always .backing) and filter child for filters (may be .file or
4779 static void bdrv_remove_filter_or_cow_child(BlockDriverState
*bs
,
4782 BdrvRemoveFilterOrCowChild
*s
;
4783 BdrvChild
*child
= bdrv_filter_or_cow_child(bs
);
4790 bdrv_replace_child(child
, NULL
, tran
);
4793 s
= g_new(BdrvRemoveFilterOrCowChild
, 1);
4794 *s
= (BdrvRemoveFilterOrCowChild
) {
4796 .is_backing
= (child
== bs
->backing
),
4798 tran_add(tran
, &bdrv_remove_filter_or_cow_child_drv
, s
);
4800 QLIST_SAFE_REMOVE(child
, next
);
4801 if (s
->is_backing
) {
4808 static int bdrv_replace_node_noperm(BlockDriverState
*from
,
4809 BlockDriverState
*to
,
4810 bool auto_skip
, Transaction
*tran
,
4813 BdrvChild
*c
, *next
;
4815 QLIST_FOREACH_SAFE(c
, &from
->parents
, next_parent
, next
) {
4816 assert(c
->bs
== from
);
4817 if (!should_update_child(c
, to
)) {
4821 error_setg(errp
, "Should not change '%s' link to '%s'",
4822 c
->name
, from
->node_name
);
4826 error_setg(errp
, "Cannot change '%s' link to '%s'",
4827 c
->name
, from
->node_name
);
4830 bdrv_replace_child(c
, to
, tran
);
4837 * With auto_skip=true bdrv_replace_node_common skips updating from parents
4838 * if it creates a parent-child relation loop or if parent is block-job.
4840 * With auto_skip=false the error is returned if from has a parent which should
4843 * With @detach_subchain=true @to must be in a backing chain of @from. In this
4844 * case backing link of the cow-parent of @to is removed.
4846 static int bdrv_replace_node_common(BlockDriverState
*from
,
4847 BlockDriverState
*to
,
4848 bool auto_skip
, bool detach_subchain
,
4851 Transaction
*tran
= tran_new();
4852 g_autoptr(GHashTable
) found
= NULL
;
4853 g_autoptr(GSList
) refresh_list
= NULL
;
4854 BlockDriverState
*to_cow_parent
;
4857 if (detach_subchain
) {
4858 assert(bdrv_chain_contains(from
, to
));
4860 for (to_cow_parent
= from
;
4861 bdrv_filter_or_cow_bs(to_cow_parent
) != to
;
4862 to_cow_parent
= bdrv_filter_or_cow_bs(to_cow_parent
))
4868 /* Make sure that @from doesn't go away until we have successfully attached
4869 * all of its parents to @to. */
4872 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
4873 assert(bdrv_get_aio_context(from
) == bdrv_get_aio_context(to
));
4874 bdrv_drained_begin(from
);
4877 * Do the replacement without permission update.
4878 * Replacement may influence the permissions, we should calculate new
4879 * permissions based on new graph. If we fail, we'll roll-back the
4882 ret
= bdrv_replace_node_noperm(from
, to
, auto_skip
, tran
, errp
);
4887 if (detach_subchain
) {
4888 bdrv_remove_filter_or_cow_child(to_cow_parent
, tran
);
4891 found
= g_hash_table_new(NULL
, NULL
);
4893 refresh_list
= bdrv_topological_dfs(refresh_list
, found
, to
);
4894 refresh_list
= bdrv_topological_dfs(refresh_list
, found
, from
);
4896 ret
= bdrv_list_refresh_perms(refresh_list
, NULL
, tran
, errp
);
4904 tran_finalize(tran
, ret
);
4906 bdrv_drained_end(from
);
4912 int bdrv_replace_node(BlockDriverState
*from
, BlockDriverState
*to
,
4915 return bdrv_replace_node_common(from
, to
, true, false, errp
);
4918 int bdrv_drop_filter(BlockDriverState
*bs
, Error
**errp
)
4920 return bdrv_replace_node_common(bs
, bdrv_filter_or_cow_bs(bs
), true, true,
4925 * Add new bs contents at the top of an image chain while the chain is
4926 * live, while keeping required fields on the top layer.
4928 * This will modify the BlockDriverState fields, and swap contents
4929 * between bs_new and bs_top. Both bs_new and bs_top are modified.
4931 * bs_new must not be attached to a BlockBackend and must not have backing
4934 * This function does not create any image files.
4936 int bdrv_append(BlockDriverState
*bs_new
, BlockDriverState
*bs_top
,
4940 Transaction
*tran
= tran_new();
4942 assert(!bs_new
->backing
);
4944 ret
= bdrv_attach_child_noperm(bs_new
, bs_top
, "backing",
4945 &child_of_bds
, bdrv_backing_role(bs_new
),
4946 &bs_new
->backing
, tran
, errp
);
4951 ret
= bdrv_replace_node_noperm(bs_top
, bs_new
, true, tran
, errp
);
4956 ret
= bdrv_refresh_perms(bs_new
, errp
);
4958 tran_finalize(tran
, ret
);
4960 bdrv_refresh_limits(bs_top
, NULL
, NULL
);
4965 static void bdrv_delete(BlockDriverState
*bs
)
4967 assert(bdrv_op_blocker_is_empty(bs
));
4968 assert(!bs
->refcnt
);
4970 /* remove from list, if necessary */
4971 if (bs
->node_name
[0] != '\0') {
4972 QTAILQ_REMOVE(&graph_bdrv_states
, bs
, node_list
);
4974 QTAILQ_REMOVE(&all_bdrv_states
, bs
, bs_list
);
4981 BlockDriverState
*bdrv_insert_node(BlockDriverState
*bs
, QDict
*node_options
,
4982 int flags
, Error
**errp
)
4984 BlockDriverState
*new_node_bs
;
4985 Error
*local_err
= NULL
;
4987 new_node_bs
= bdrv_open(NULL
, NULL
, node_options
, flags
, errp
);
4988 if (new_node_bs
== NULL
) {
4989 error_prepend(errp
, "Could not create node: ");
4993 bdrv_drained_begin(bs
);
4994 bdrv_replace_node(bs
, new_node_bs
, &local_err
);
4995 bdrv_drained_end(bs
);
4998 bdrv_unref(new_node_bs
);
4999 error_propagate(errp
, local_err
);
5007 * Run consistency checks on an image
5009 * Returns 0 if the check could be completed (it doesn't mean that the image is
5010 * free of errors) or -errno when an internal error occurred. The results of the
5011 * check are stored in res.
5013 int coroutine_fn
bdrv_co_check(BlockDriverState
*bs
,
5014 BdrvCheckResult
*res
, BdrvCheckMode fix
)
5016 if (bs
->drv
== NULL
) {
5019 if (bs
->drv
->bdrv_co_check
== NULL
) {
5023 memset(res
, 0, sizeof(*res
));
5024 return bs
->drv
->bdrv_co_check(bs
, res
, fix
);
5030 * -EINVAL - backing format specified, but no file
5031 * -ENOSPC - can't update the backing file because no space is left in the
5033 * -ENOTSUP - format driver doesn't support changing the backing file
5035 int bdrv_change_backing_file(BlockDriverState
*bs
, const char *backing_file
,
5036 const char *backing_fmt
, bool warn
)
5038 BlockDriver
*drv
= bs
->drv
;
5045 /* Backing file format doesn't make sense without a backing file */
5046 if (backing_fmt
&& !backing_file
) {
5050 if (warn
&& backing_file
&& !backing_fmt
) {
5051 warn_report("Deprecated use of backing file without explicit "
5052 "backing format, use of this image requires "
5053 "potentially unsafe format probing");
5056 if (drv
->bdrv_change_backing_file
!= NULL
) {
5057 ret
= drv
->bdrv_change_backing_file(bs
, backing_file
, backing_fmt
);
5063 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
), backing_file
?: "");
5064 pstrcpy(bs
->backing_format
, sizeof(bs
->backing_format
), backing_fmt
?: "");
5065 pstrcpy(bs
->auto_backing_file
, sizeof(bs
->auto_backing_file
),
5066 backing_file
?: "");
5072 * Finds the first non-filter node above bs in the chain between
5073 * active and bs. The returned node is either an immediate parent of
5074 * bs, or there are only filter nodes between the two.
5076 * Returns NULL if bs is not found in active's image chain,
5077 * or if active == bs.
5079 * Returns the bottommost base image if bs == NULL.
5081 BlockDriverState
*bdrv_find_overlay(BlockDriverState
*active
,
5082 BlockDriverState
*bs
)
5084 bs
= bdrv_skip_filters(bs
);
5085 active
= bdrv_skip_filters(active
);
5088 BlockDriverState
*next
= bdrv_backing_chain_next(active
);
5098 /* Given a BDS, searches for the base layer. */
5099 BlockDriverState
*bdrv_find_base(BlockDriverState
*bs
)
5101 return bdrv_find_overlay(bs
, NULL
);
5105 * Return true if at least one of the COW (backing) and filter links
5106 * between @bs and @base is frozen. @errp is set if that's the case.
5107 * @base must be reachable from @bs, or NULL.
5109 bool bdrv_is_backing_chain_frozen(BlockDriverState
*bs
, BlockDriverState
*base
,
5112 BlockDriverState
*i
;
5115 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5116 child
= bdrv_filter_or_cow_child(i
);
5118 if (child
&& child
->frozen
) {
5119 error_setg(errp
, "Cannot change '%s' link from '%s' to '%s'",
5120 child
->name
, i
->node_name
, child
->bs
->node_name
);
5129 * Freeze all COW (backing) and filter links between @bs and @base.
5130 * If any of the links is already frozen the operation is aborted and
5131 * none of the links are modified.
5132 * @base must be reachable from @bs, or NULL.
5133 * Returns 0 on success. On failure returns < 0 and sets @errp.
5135 int bdrv_freeze_backing_chain(BlockDriverState
*bs
, BlockDriverState
*base
,
5138 BlockDriverState
*i
;
5141 if (bdrv_is_backing_chain_frozen(bs
, base
, errp
)) {
5145 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5146 child
= bdrv_filter_or_cow_child(i
);
5147 if (child
&& child
->bs
->never_freeze
) {
5148 error_setg(errp
, "Cannot freeze '%s' link to '%s'",
5149 child
->name
, child
->bs
->node_name
);
5154 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5155 child
= bdrv_filter_or_cow_child(i
);
5157 child
->frozen
= true;
5165 * Unfreeze all COW (backing) and filter links between @bs and @base.
5166 * The caller must ensure that all links are frozen before using this
5168 * @base must be reachable from @bs, or NULL.
5170 void bdrv_unfreeze_backing_chain(BlockDriverState
*bs
, BlockDriverState
*base
)
5172 BlockDriverState
*i
;
5175 for (i
= bs
; i
!= base
; i
= child_bs(child
)) {
5176 child
= bdrv_filter_or_cow_child(i
);
5178 assert(child
->frozen
);
5179 child
->frozen
= false;
5185 * Drops images above 'base' up to and including 'top', and sets the image
5186 * above 'top' to have base as its backing file.
5188 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5189 * information in 'bs' can be properly updated.
5191 * E.g., this will convert the following chain:
5192 * bottom <- base <- intermediate <- top <- active
5196 * bottom <- base <- active
5198 * It is allowed for bottom==base, in which case it converts:
5200 * base <- intermediate <- top <- active
5206 * If backing_file_str is non-NULL, it will be used when modifying top's
5207 * overlay image metadata.
5210 * if active == top, that is considered an error
5213 int bdrv_drop_intermediate(BlockDriverState
*top
, BlockDriverState
*base
,
5214 const char *backing_file_str
)
5216 BlockDriverState
*explicit_top
= top
;
5217 bool update_inherits_from
;
5219 Error
*local_err
= NULL
;
5221 g_autoptr(GSList
) updated_children
= NULL
;
5225 bdrv_subtree_drained_begin(top
);
5227 if (!top
->drv
|| !base
->drv
) {
5231 /* Make sure that base is in the backing chain of top */
5232 if (!bdrv_chain_contains(top
, base
)) {
5236 /* If 'base' recursively inherits from 'top' then we should set
5237 * base->inherits_from to top->inherits_from after 'top' and all
5238 * other intermediate nodes have been dropped.
5239 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5240 * it because no one inherits from it. We use explicit_top for that. */
5241 explicit_top
= bdrv_skip_implicit_filters(explicit_top
);
5242 update_inherits_from
= bdrv_inherits_from_recursive(base
, explicit_top
);
5244 /* success - we can delete the intermediate states, and link top->base */
5245 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
5246 * we've figured out how they should work. */
5247 if (!backing_file_str
) {
5248 bdrv_refresh_filename(base
);
5249 backing_file_str
= base
->filename
;
5252 QLIST_FOREACH(c
, &top
->parents
, next_parent
) {
5253 updated_children
= g_slist_prepend(updated_children
, c
);
5257 * It seems correct to pass detach_subchain=true here, but it triggers
5258 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5259 * another drained section, which modify the graph (for example, removing
5260 * the child, which we keep in updated_children list). So, it's a TODO.
5262 * Note, bug triggered if pass detach_subchain=true here and run
5263 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5266 bdrv_replace_node_common(top
, base
, false, false, &local_err
);
5268 error_report_err(local_err
);
5272 for (p
= updated_children
; p
; p
= p
->next
) {
5275 if (c
->klass
->update_filename
) {
5276 ret
= c
->klass
->update_filename(c
, base
, backing_file_str
,
5280 * TODO: Actually, we want to rollback all previous iterations
5281 * of this loop, and (which is almost impossible) previous
5282 * bdrv_replace_node()...
5284 * Note, that c->klass->update_filename may lead to permission
5285 * update, so it's a bad idea to call it inside permission
5286 * update transaction of bdrv_replace_node.
5288 error_report_err(local_err
);
5294 if (update_inherits_from
) {
5295 base
->inherits_from
= explicit_top
->inherits_from
;
5300 bdrv_subtree_drained_end(top
);
5306 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5307 * sums the size of all data-bearing children. (This excludes backing
5310 static int64_t bdrv_sum_allocated_file_size(BlockDriverState
*bs
)
5313 int64_t child_size
, sum
= 0;
5315 QLIST_FOREACH(child
, &bs
->children
, next
) {
5316 if (child
->role
& (BDRV_CHILD_DATA
| BDRV_CHILD_METADATA
|
5317 BDRV_CHILD_FILTERED
))
5319 child_size
= bdrv_get_allocated_file_size(child
->bs
);
5320 if (child_size
< 0) {
5331 * Length of a allocated file in bytes. Sparse files are counted by actual
5332 * allocated space. Return < 0 if error or unknown.
5334 int64_t bdrv_get_allocated_file_size(BlockDriverState
*bs
)
5336 BlockDriver
*drv
= bs
->drv
;
5340 if (drv
->bdrv_get_allocated_file_size
) {
5341 return drv
->bdrv_get_allocated_file_size(bs
);
5344 if (drv
->bdrv_file_open
) {
5346 * Protocol drivers default to -ENOTSUP (most of their data is
5347 * not stored in any of their children (if they even have any),
5348 * so there is no generic way to figure it out).
5351 } else if (drv
->is_filter
) {
5352 /* Filter drivers default to the size of their filtered child */
5353 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs
));
5355 /* Other drivers default to summing their children's sizes */
5356 return bdrv_sum_allocated_file_size(bs
);
5362 * @drv: Format driver
5363 * @opts: Creation options for new image
5364 * @in_bs: Existing image containing data for new image (may be NULL)
5365 * @errp: Error object
5366 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5369 * Calculate file size required to create a new image.
5371 * If @in_bs is given then space for allocated clusters and zero clusters
5372 * from that image are included in the calculation. If @opts contains a
5373 * backing file that is shared by @in_bs then backing clusters may be omitted
5374 * from the calculation.
5376 * If @in_bs is NULL then the calculation includes no allocated clusters
5377 * unless a preallocation option is given in @opts.
5379 * Note that @in_bs may use a different BlockDriver from @drv.
5381 * If an error occurs the @errp pointer is set.
5383 BlockMeasureInfo
*bdrv_measure(BlockDriver
*drv
, QemuOpts
*opts
,
5384 BlockDriverState
*in_bs
, Error
**errp
)
5386 if (!drv
->bdrv_measure
) {
5387 error_setg(errp
, "Block driver '%s' does not support size measurement",
5392 return drv
->bdrv_measure(opts
, in_bs
, errp
);
5396 * Return number of sectors on success, -errno on error.
5398 int64_t bdrv_nb_sectors(BlockDriverState
*bs
)
5400 BlockDriver
*drv
= bs
->drv
;
5405 if (drv
->has_variable_length
) {
5406 int ret
= refresh_total_sectors(bs
, bs
->total_sectors
);
5411 return bs
->total_sectors
;
5415 * Return length in bytes on success, -errno on error.
5416 * The length is always a multiple of BDRV_SECTOR_SIZE.
5418 int64_t bdrv_getlength(BlockDriverState
*bs
)
5420 int64_t ret
= bdrv_nb_sectors(bs
);
5425 if (ret
> INT64_MAX
/ BDRV_SECTOR_SIZE
) {
5428 return ret
* BDRV_SECTOR_SIZE
;
5431 /* return 0 as number of sectors if no device present or error */
5432 void bdrv_get_geometry(BlockDriverState
*bs
, uint64_t *nb_sectors_ptr
)
5434 int64_t nb_sectors
= bdrv_nb_sectors(bs
);
5436 *nb_sectors_ptr
= nb_sectors
< 0 ? 0 : nb_sectors
;
5439 bool bdrv_is_sg(BlockDriverState
*bs
)
5445 * Return whether the given node supports compressed writes.
5447 bool bdrv_supports_compressed_writes(BlockDriverState
*bs
)
5449 BlockDriverState
*filtered
;
5451 if (!bs
->drv
|| !block_driver_can_compress(bs
->drv
)) {
5455 filtered
= bdrv_filter_bs(bs
);
5458 * Filters can only forward compressed writes, so we have to
5461 return bdrv_supports_compressed_writes(filtered
);
5467 const char *bdrv_get_format_name(BlockDriverState
*bs
)
5469 return bs
->drv
? bs
->drv
->format_name
: NULL
;
5472 static int qsort_strcmp(const void *a
, const void *b
)
5474 return strcmp(*(char *const *)a
, *(char *const *)b
);
5477 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
5478 void *opaque
, bool read_only
)
5483 const char **formats
= NULL
;
5485 QLIST_FOREACH(drv
, &bdrv_drivers
, list
) {
5486 if (drv
->format_name
) {
5490 if (use_bdrv_whitelist
&& !bdrv_is_whitelisted(drv
, read_only
)) {
5494 while (formats
&& i
&& !found
) {
5495 found
= !strcmp(formats
[--i
], drv
->format_name
);
5499 formats
= g_renew(const char *, formats
, count
+ 1);
5500 formats
[count
++] = drv
->format_name
;
5505 for (i
= 0; i
< (int)ARRAY_SIZE(block_driver_modules
); i
++) {
5506 const char *format_name
= block_driver_modules
[i
].format_name
;
5512 if (use_bdrv_whitelist
&&
5513 !bdrv_format_is_whitelisted(format_name
, read_only
)) {
5517 while (formats
&& j
&& !found
) {
5518 found
= !strcmp(formats
[--j
], format_name
);
5522 formats
= g_renew(const char *, formats
, count
+ 1);
5523 formats
[count
++] = format_name
;
5528 qsort(formats
, count
, sizeof(formats
[0]), qsort_strcmp
);
5530 for (i
= 0; i
< count
; i
++) {
5531 it(opaque
, formats
[i
]);
5537 /* This function is to find a node in the bs graph */
5538 BlockDriverState
*bdrv_find_node(const char *node_name
)
5540 BlockDriverState
*bs
;
5544 QTAILQ_FOREACH(bs
, &graph_bdrv_states
, node_list
) {
5545 if (!strcmp(node_name
, bs
->node_name
)) {
5552 /* Put this QMP function here so it can access the static graph_bdrv_states. */
5553 BlockDeviceInfoList
*bdrv_named_nodes_list(bool flat
,
5556 BlockDeviceInfoList
*list
;
5557 BlockDriverState
*bs
;
5560 QTAILQ_FOREACH(bs
, &graph_bdrv_states
, node_list
) {
5561 BlockDeviceInfo
*info
= bdrv_block_device_info(NULL
, bs
, flat
, errp
);
5563 qapi_free_BlockDeviceInfoList(list
);
5566 QAPI_LIST_PREPEND(list
, info
);
5572 typedef struct XDbgBlockGraphConstructor
{
5573 XDbgBlockGraph
*graph
;
5574 GHashTable
*graph_nodes
;
5575 } XDbgBlockGraphConstructor
;
5577 static XDbgBlockGraphConstructor
*xdbg_graph_new(void)
5579 XDbgBlockGraphConstructor
*gr
= g_new(XDbgBlockGraphConstructor
, 1);
5581 gr
->graph
= g_new0(XDbgBlockGraph
, 1);
5582 gr
->graph_nodes
= g_hash_table_new(NULL
, NULL
);
5587 static XDbgBlockGraph
*xdbg_graph_finalize(XDbgBlockGraphConstructor
*gr
)
5589 XDbgBlockGraph
*graph
= gr
->graph
;
5591 g_hash_table_destroy(gr
->graph_nodes
);
5597 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor
*gr
, void *node
)
5599 uintptr_t ret
= (uintptr_t)g_hash_table_lookup(gr
->graph_nodes
, node
);
5606 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5607 * answer of g_hash_table_lookup.
5609 ret
= g_hash_table_size(gr
->graph_nodes
) + 1;
5610 g_hash_table_insert(gr
->graph_nodes
, node
, (void *)ret
);
5615 static void xdbg_graph_add_node(XDbgBlockGraphConstructor
*gr
, void *node
,
5616 XDbgBlockGraphNodeType type
, const char *name
)
5618 XDbgBlockGraphNode
*n
;
5620 n
= g_new0(XDbgBlockGraphNode
, 1);
5622 n
->id
= xdbg_graph_node_num(gr
, node
);
5624 n
->name
= g_strdup(name
);
5626 QAPI_LIST_PREPEND(gr
->graph
->nodes
, n
);
5629 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor
*gr
, void *parent
,
5630 const BdrvChild
*child
)
5632 BlockPermission qapi_perm
;
5633 XDbgBlockGraphEdge
*edge
;
5635 edge
= g_new0(XDbgBlockGraphEdge
, 1);
5637 edge
->parent
= xdbg_graph_node_num(gr
, parent
);
5638 edge
->child
= xdbg_graph_node_num(gr
, child
->bs
);
5639 edge
->name
= g_strdup(child
->name
);
5641 for (qapi_perm
= 0; qapi_perm
< BLOCK_PERMISSION__MAX
; qapi_perm
++) {
5642 uint64_t flag
= bdrv_qapi_perm_to_blk_perm(qapi_perm
);
5644 if (flag
& child
->perm
) {
5645 QAPI_LIST_PREPEND(edge
->perm
, qapi_perm
);
5647 if (flag
& child
->shared_perm
) {
5648 QAPI_LIST_PREPEND(edge
->shared_perm
, qapi_perm
);
5652 QAPI_LIST_PREPEND(gr
->graph
->edges
, edge
);
5656 XDbgBlockGraph
*bdrv_get_xdbg_block_graph(Error
**errp
)
5660 BlockDriverState
*bs
;
5662 XDbgBlockGraphConstructor
*gr
= xdbg_graph_new();
5664 for (blk
= blk_all_next(NULL
); blk
; blk
= blk_all_next(blk
)) {
5665 char *allocated_name
= NULL
;
5666 const char *name
= blk_name(blk
);
5669 name
= allocated_name
= blk_get_attached_dev_id(blk
);
5671 xdbg_graph_add_node(gr
, blk
, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND
,
5673 g_free(allocated_name
);
5674 if (blk_root(blk
)) {
5675 xdbg_graph_add_edge(gr
, blk
, blk_root(blk
));
5679 for (job
= block_job_next(NULL
); job
; job
= block_job_next(job
)) {
5682 xdbg_graph_add_node(gr
, job
, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB
,
5684 for (el
= job
->nodes
; el
; el
= el
->next
) {
5685 xdbg_graph_add_edge(gr
, job
, (BdrvChild
*)el
->data
);
5689 QTAILQ_FOREACH(bs
, &graph_bdrv_states
, node_list
) {
5690 xdbg_graph_add_node(gr
, bs
, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER
,
5692 QLIST_FOREACH(child
, &bs
->children
, next
) {
5693 xdbg_graph_add_edge(gr
, bs
, child
);
5697 return xdbg_graph_finalize(gr
);
5700 BlockDriverState
*bdrv_lookup_bs(const char *device
,
5701 const char *node_name
,
5705 BlockDriverState
*bs
;
5708 blk
= blk_by_name(device
);
5713 error_setg(errp
, "Device '%s' has no medium", device
);
5721 bs
= bdrv_find_node(node_name
);
5728 error_setg(errp
, "Cannot find device=\'%s\' nor node-name=\'%s\'",
5729 device
? device
: "",
5730 node_name
? node_name
: "");
5734 /* If 'base' is in the same chain as 'top', return true. Otherwise,
5735 * return false. If either argument is NULL, return false. */
5736 bool bdrv_chain_contains(BlockDriverState
*top
, BlockDriverState
*base
)
5738 while (top
&& top
!= base
) {
5739 top
= bdrv_filter_or_cow_bs(top
);
5745 BlockDriverState
*bdrv_next_node(BlockDriverState
*bs
)
5748 return QTAILQ_FIRST(&graph_bdrv_states
);
5750 return QTAILQ_NEXT(bs
, node_list
);
5753 BlockDriverState
*bdrv_next_all_states(BlockDriverState
*bs
)
5756 return QTAILQ_FIRST(&all_bdrv_states
);
5758 return QTAILQ_NEXT(bs
, bs_list
);
5761 const char *bdrv_get_node_name(const BlockDriverState
*bs
)
5763 return bs
->node_name
;
5766 const char *bdrv_get_parent_name(const BlockDriverState
*bs
)
5771 /* If multiple parents have a name, just pick the first one. */
5772 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
5773 if (c
->klass
->get_name
) {
5774 name
= c
->klass
->get_name(c
);
5775 if (name
&& *name
) {
5784 /* TODO check what callers really want: bs->node_name or blk_name() */
5785 const char *bdrv_get_device_name(const BlockDriverState
*bs
)
5787 return bdrv_get_parent_name(bs
) ?: "";
5790 /* This can be used to identify nodes that might not have a device
5791 * name associated. Since node and device names live in the same
5792 * namespace, the result is unambiguous. The exception is if both are
5793 * absent, then this returns an empty (non-null) string. */
5794 const char *bdrv_get_device_or_node_name(const BlockDriverState
*bs
)
5796 return bdrv_get_parent_name(bs
) ?: bs
->node_name
;
5799 int bdrv_get_flags(BlockDriverState
*bs
)
5801 return bs
->open_flags
;
5804 int bdrv_has_zero_init_1(BlockDriverState
*bs
)
5809 int bdrv_has_zero_init(BlockDriverState
*bs
)
5811 BlockDriverState
*filtered
;
5817 /* If BS is a copy on write image, it is initialized to
5818 the contents of the base image, which may not be zeroes. */
5819 if (bdrv_cow_child(bs
)) {
5822 if (bs
->drv
->bdrv_has_zero_init
) {
5823 return bs
->drv
->bdrv_has_zero_init(bs
);
5826 filtered
= bdrv_filter_bs(bs
);
5828 return bdrv_has_zero_init(filtered
);
5835 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState
*bs
)
5837 if (!(bs
->open_flags
& BDRV_O_UNMAP
)) {
5841 return bs
->supported_zero_flags
& BDRV_REQ_MAY_UNMAP
;
5844 void bdrv_get_backing_filename(BlockDriverState
*bs
,
5845 char *filename
, int filename_size
)
5847 pstrcpy(filename
, filename_size
, bs
->backing_file
);
5850 int bdrv_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
5853 BlockDriver
*drv
= bs
->drv
;
5854 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
5858 if (!drv
->bdrv_get_info
) {
5859 BlockDriverState
*filtered
= bdrv_filter_bs(bs
);
5861 return bdrv_get_info(filtered
, bdi
);
5865 memset(bdi
, 0, sizeof(*bdi
));
5866 ret
= drv
->bdrv_get_info(bs
, bdi
);
5871 if (bdi
->cluster_size
> BDRV_MAX_ALIGNMENT
) {
5878 ImageInfoSpecific
*bdrv_get_specific_info(BlockDriverState
*bs
,
5881 BlockDriver
*drv
= bs
->drv
;
5882 if (drv
&& drv
->bdrv_get_specific_info
) {
5883 return drv
->bdrv_get_specific_info(bs
, errp
);
5888 BlockStatsSpecific
*bdrv_get_specific_stats(BlockDriverState
*bs
)
5890 BlockDriver
*drv
= bs
->drv
;
5891 if (!drv
|| !drv
->bdrv_get_specific_stats
) {
5894 return drv
->bdrv_get_specific_stats(bs
);
5897 void bdrv_debug_event(BlockDriverState
*bs
, BlkdebugEvent event
)
5899 if (!bs
|| !bs
->drv
|| !bs
->drv
->bdrv_debug_event
) {
5903 bs
->drv
->bdrv_debug_event(bs
, event
);
5906 static BlockDriverState
*bdrv_find_debug_node(BlockDriverState
*bs
)
5908 while (bs
&& bs
->drv
&& !bs
->drv
->bdrv_debug_breakpoint
) {
5909 bs
= bdrv_primary_bs(bs
);
5912 if (bs
&& bs
->drv
&& bs
->drv
->bdrv_debug_breakpoint
) {
5913 assert(bs
->drv
->bdrv_debug_remove_breakpoint
);
5920 int bdrv_debug_breakpoint(BlockDriverState
*bs
, const char *event
,
5923 bs
= bdrv_find_debug_node(bs
);
5925 return bs
->drv
->bdrv_debug_breakpoint(bs
, event
, tag
);
5931 int bdrv_debug_remove_breakpoint(BlockDriverState
*bs
, const char *tag
)
5933 bs
= bdrv_find_debug_node(bs
);
5935 return bs
->drv
->bdrv_debug_remove_breakpoint(bs
, tag
);
5941 int bdrv_debug_resume(BlockDriverState
*bs
, const char *tag
)
5943 while (bs
&& (!bs
->drv
|| !bs
->drv
->bdrv_debug_resume
)) {
5944 bs
= bdrv_primary_bs(bs
);
5947 if (bs
&& bs
->drv
&& bs
->drv
->bdrv_debug_resume
) {
5948 return bs
->drv
->bdrv_debug_resume(bs
, tag
);
5954 bool bdrv_debug_is_suspended(BlockDriverState
*bs
, const char *tag
)
5956 while (bs
&& bs
->drv
&& !bs
->drv
->bdrv_debug_is_suspended
) {
5957 bs
= bdrv_primary_bs(bs
);
5960 if (bs
&& bs
->drv
&& bs
->drv
->bdrv_debug_is_suspended
) {
5961 return bs
->drv
->bdrv_debug_is_suspended(bs
, tag
);
5967 /* backing_file can either be relative, or absolute, or a protocol. If it is
5968 * relative, it must be relative to the chain. So, passing in bs->filename
5969 * from a BDS as backing_file should not be done, as that may be relative to
5970 * the CWD rather than the chain. */
5971 BlockDriverState
*bdrv_find_backing_image(BlockDriverState
*bs
,
5972 const char *backing_file
)
5974 char *filename_full
= NULL
;
5975 char *backing_file_full
= NULL
;
5976 char *filename_tmp
= NULL
;
5977 int is_protocol
= 0;
5978 bool filenames_refreshed
= false;
5979 BlockDriverState
*curr_bs
= NULL
;
5980 BlockDriverState
*retval
= NULL
;
5981 BlockDriverState
*bs_below
;
5983 if (!bs
|| !bs
->drv
|| !backing_file
) {
5987 filename_full
= g_malloc(PATH_MAX
);
5988 backing_file_full
= g_malloc(PATH_MAX
);
5990 is_protocol
= path_has_protocol(backing_file
);
5993 * Being largely a legacy function, skip any filters here
5994 * (because filters do not have normal filenames, so they cannot
5995 * match anyway; and allowing json:{} filenames is a bit out of
5998 for (curr_bs
= bdrv_skip_filters(bs
);
5999 bdrv_cow_child(curr_bs
) != NULL
;
6002 bs_below
= bdrv_backing_chain_next(curr_bs
);
6004 if (bdrv_backing_overridden(curr_bs
)) {
6006 * If the backing file was overridden, we can only compare
6007 * directly against the backing node's filename.
6010 if (!filenames_refreshed
) {
6012 * This will automatically refresh all of the
6013 * filenames in the rest of the backing chain, so we
6014 * only need to do this once.
6016 bdrv_refresh_filename(bs_below
);
6017 filenames_refreshed
= true;
6020 if (strcmp(backing_file
, bs_below
->filename
) == 0) {
6024 } else if (is_protocol
|| path_has_protocol(curr_bs
->backing_file
)) {
6026 * If either of the filename paths is actually a protocol, then
6027 * compare unmodified paths; otherwise make paths relative.
6029 char *backing_file_full_ret
;
6031 if (strcmp(backing_file
, curr_bs
->backing_file
) == 0) {
6035 /* Also check against the full backing filename for the image */
6036 backing_file_full_ret
= bdrv_get_full_backing_filename(curr_bs
,
6038 if (backing_file_full_ret
) {
6039 bool equal
= strcmp(backing_file
, backing_file_full_ret
) == 0;
6040 g_free(backing_file_full_ret
);
6047 /* If not an absolute filename path, make it relative to the current
6048 * image's filename path */
6049 filename_tmp
= bdrv_make_absolute_filename(curr_bs
, backing_file
,
6051 /* We are going to compare canonicalized absolute pathnames */
6052 if (!filename_tmp
|| !realpath(filename_tmp
, filename_full
)) {
6053 g_free(filename_tmp
);
6056 g_free(filename_tmp
);
6058 /* We need to make sure the backing filename we are comparing against
6059 * is relative to the current image filename (or absolute) */
6060 filename_tmp
= bdrv_get_full_backing_filename(curr_bs
, NULL
);
6061 if (!filename_tmp
|| !realpath(filename_tmp
, backing_file_full
)) {
6062 g_free(filename_tmp
);
6065 g_free(filename_tmp
);
6067 if (strcmp(backing_file_full
, filename_full
) == 0) {
6074 g_free(filename_full
);
6075 g_free(backing_file_full
);
6079 void bdrv_init(void)
6081 module_call_init(MODULE_INIT_BLOCK
);
6084 void bdrv_init_with_whitelist(void)
6086 use_bdrv_whitelist
= 1;
6090 int coroutine_fn
bdrv_co_invalidate_cache(BlockDriverState
*bs
, Error
**errp
)
6092 BdrvChild
*child
, *parent
;
6093 Error
*local_err
= NULL
;
6095 BdrvDirtyBitmap
*bm
;
6101 QLIST_FOREACH(child
, &bs
->children
, next
) {
6102 bdrv_co_invalidate_cache(child
->bs
, &local_err
);
6104 error_propagate(errp
, local_err
);
6110 * Update permissions, they may differ for inactive nodes.
6112 * Note that the required permissions of inactive images are always a
6113 * subset of the permissions required after activating the image. This
6114 * allows us to just get the permissions upfront without restricting
6115 * drv->bdrv_invalidate_cache().
6117 * It also means that in error cases, we don't have to try and revert to
6118 * the old permissions (which is an operation that could fail, too). We can
6119 * just keep the extended permissions for the next time that an activation
6120 * of the image is tried.
6122 if (bs
->open_flags
& BDRV_O_INACTIVE
) {
6123 bs
->open_flags
&= ~BDRV_O_INACTIVE
;
6124 ret
= bdrv_refresh_perms(bs
, errp
);
6126 bs
->open_flags
|= BDRV_O_INACTIVE
;
6130 if (bs
->drv
->bdrv_co_invalidate_cache
) {
6131 bs
->drv
->bdrv_co_invalidate_cache(bs
, &local_err
);
6133 bs
->open_flags
|= BDRV_O_INACTIVE
;
6134 error_propagate(errp
, local_err
);
6139 FOR_EACH_DIRTY_BITMAP(bs
, bm
) {
6140 bdrv_dirty_bitmap_skip_store(bm
, false);
6143 ret
= refresh_total_sectors(bs
, bs
->total_sectors
);
6145 bs
->open_flags
|= BDRV_O_INACTIVE
;
6146 error_setg_errno(errp
, -ret
, "Could not refresh total sector count");
6151 QLIST_FOREACH(parent
, &bs
->parents
, next_parent
) {
6152 if (parent
->klass
->activate
) {
6153 parent
->klass
->activate(parent
, &local_err
);
6155 bs
->open_flags
|= BDRV_O_INACTIVE
;
6156 error_propagate(errp
, local_err
);
6165 void bdrv_invalidate_cache_all(Error
**errp
)
6167 BlockDriverState
*bs
;
6168 BdrvNextIterator it
;
6170 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
6171 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
6174 aio_context_acquire(aio_context
);
6175 ret
= bdrv_invalidate_cache(bs
, errp
);
6176 aio_context_release(aio_context
);
6178 bdrv_next_cleanup(&it
);
6184 static bool bdrv_has_bds_parent(BlockDriverState
*bs
, bool only_active
)
6188 QLIST_FOREACH(parent
, &bs
->parents
, next_parent
) {
6189 if (parent
->klass
->parent_is_bds
) {
6190 BlockDriverState
*parent_bs
= parent
->opaque
;
6191 if (!only_active
|| !(parent_bs
->open_flags
& BDRV_O_INACTIVE
)) {
6200 static int bdrv_inactivate_recurse(BlockDriverState
*bs
)
6202 BdrvChild
*child
, *parent
;
6209 /* Make sure that we don't inactivate a child before its parent.
6210 * It will be covered by recursion from the yet active parent. */
6211 if (bdrv_has_bds_parent(bs
, true)) {
6215 assert(!(bs
->open_flags
& BDRV_O_INACTIVE
));
6217 /* Inactivate this node */
6218 if (bs
->drv
->bdrv_inactivate
) {
6219 ret
= bs
->drv
->bdrv_inactivate(bs
);
6225 QLIST_FOREACH(parent
, &bs
->parents
, next_parent
) {
6226 if (parent
->klass
->inactivate
) {
6227 ret
= parent
->klass
->inactivate(parent
);
6234 bs
->open_flags
|= BDRV_O_INACTIVE
;
6237 * Update permissions, they may differ for inactive nodes.
6238 * We only tried to loosen restrictions, so errors are not fatal, ignore
6241 bdrv_refresh_perms(bs
, NULL
);
6243 /* Recursively inactivate children */
6244 QLIST_FOREACH(child
, &bs
->children
, next
) {
6245 ret
= bdrv_inactivate_recurse(child
->bs
);
6254 int bdrv_inactivate_all(void)
6256 BlockDriverState
*bs
= NULL
;
6257 BdrvNextIterator it
;
6259 GSList
*aio_ctxs
= NULL
, *ctx
;
6261 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
6262 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
6264 if (!g_slist_find(aio_ctxs
, aio_context
)) {
6265 aio_ctxs
= g_slist_prepend(aio_ctxs
, aio_context
);
6266 aio_context_acquire(aio_context
);
6270 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
6271 /* Nodes with BDS parents are covered by recursion from the last
6272 * parent that gets inactivated. Don't inactivate them a second
6273 * time if that has already happened. */
6274 if (bdrv_has_bds_parent(bs
, false)) {
6277 ret
= bdrv_inactivate_recurse(bs
);
6279 bdrv_next_cleanup(&it
);
6285 for (ctx
= aio_ctxs
; ctx
!= NULL
; ctx
= ctx
->next
) {
6286 AioContext
*aio_context
= ctx
->data
;
6287 aio_context_release(aio_context
);
6289 g_slist_free(aio_ctxs
);
6294 /**************************************************************/
6295 /* removable device support */
6298 * Return TRUE if the media is present
6300 bool bdrv_is_inserted(BlockDriverState
*bs
)
6302 BlockDriver
*drv
= bs
->drv
;
6308 if (drv
->bdrv_is_inserted
) {
6309 return drv
->bdrv_is_inserted(bs
);
6311 QLIST_FOREACH(child
, &bs
->children
, next
) {
6312 if (!bdrv_is_inserted(child
->bs
)) {
6320 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6322 void bdrv_eject(BlockDriverState
*bs
, bool eject_flag
)
6324 BlockDriver
*drv
= bs
->drv
;
6326 if (drv
&& drv
->bdrv_eject
) {
6327 drv
->bdrv_eject(bs
, eject_flag
);
6332 * Lock or unlock the media (if it is locked, the user won't be able
6333 * to eject it manually).
6335 void bdrv_lock_medium(BlockDriverState
*bs
, bool locked
)
6337 BlockDriver
*drv
= bs
->drv
;
6339 trace_bdrv_lock_medium(bs
, locked
);
6341 if (drv
&& drv
->bdrv_lock_medium
) {
6342 drv
->bdrv_lock_medium(bs
, locked
);
6346 /* Get a reference to bs */
6347 void bdrv_ref(BlockDriverState
*bs
)
6352 /* Release a previously grabbed reference to bs.
6353 * If after releasing, reference count is zero, the BlockDriverState is
6355 void bdrv_unref(BlockDriverState
*bs
)
6360 assert(bs
->refcnt
> 0);
6361 if (--bs
->refcnt
== 0) {
6366 struct BdrvOpBlocker
{
6368 QLIST_ENTRY(BdrvOpBlocker
) list
;
6371 bool bdrv_op_is_blocked(BlockDriverState
*bs
, BlockOpType op
, Error
**errp
)
6373 BdrvOpBlocker
*blocker
;
6374 assert((int) op
>= 0 && op
< BLOCK_OP_TYPE_MAX
);
6375 if (!QLIST_EMPTY(&bs
->op_blockers
[op
])) {
6376 blocker
= QLIST_FIRST(&bs
->op_blockers
[op
]);
6377 error_propagate_prepend(errp
, error_copy(blocker
->reason
),
6378 "Node '%s' is busy: ",
6379 bdrv_get_device_or_node_name(bs
));
6385 void bdrv_op_block(BlockDriverState
*bs
, BlockOpType op
, Error
*reason
)
6387 BdrvOpBlocker
*blocker
;
6388 assert((int) op
>= 0 && op
< BLOCK_OP_TYPE_MAX
);
6390 blocker
= g_new0(BdrvOpBlocker
, 1);
6391 blocker
->reason
= reason
;
6392 QLIST_INSERT_HEAD(&bs
->op_blockers
[op
], blocker
, list
);
6395 void bdrv_op_unblock(BlockDriverState
*bs
, BlockOpType op
, Error
*reason
)
6397 BdrvOpBlocker
*blocker
, *next
;
6398 assert((int) op
>= 0 && op
< BLOCK_OP_TYPE_MAX
);
6399 QLIST_FOREACH_SAFE(blocker
, &bs
->op_blockers
[op
], list
, next
) {
6400 if (blocker
->reason
== reason
) {
6401 QLIST_REMOVE(blocker
, list
);
6407 void bdrv_op_block_all(BlockDriverState
*bs
, Error
*reason
)
6410 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
6411 bdrv_op_block(bs
, i
, reason
);
6415 void bdrv_op_unblock_all(BlockDriverState
*bs
, Error
*reason
)
6418 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
6419 bdrv_op_unblock(bs
, i
, reason
);
6423 bool bdrv_op_blocker_is_empty(BlockDriverState
*bs
)
6427 for (i
= 0; i
< BLOCK_OP_TYPE_MAX
; i
++) {
6428 if (!QLIST_EMPTY(&bs
->op_blockers
[i
])) {
6435 void bdrv_img_create(const char *filename
, const char *fmt
,
6436 const char *base_filename
, const char *base_fmt
,
6437 char *options
, uint64_t img_size
, int flags
, bool quiet
,
6440 QemuOptsList
*create_opts
= NULL
;
6441 QemuOpts
*opts
= NULL
;
6442 const char *backing_fmt
, *backing_file
;
6444 BlockDriver
*drv
, *proto_drv
;
6445 Error
*local_err
= NULL
;
6448 /* Find driver and parse its options */
6449 drv
= bdrv_find_format(fmt
);
6451 error_setg(errp
, "Unknown file format '%s'", fmt
);
6455 proto_drv
= bdrv_find_protocol(filename
, true, errp
);
6460 if (!drv
->create_opts
) {
6461 error_setg(errp
, "Format driver '%s' does not support image creation",
6466 if (!proto_drv
->create_opts
) {
6467 error_setg(errp
, "Protocol driver '%s' does not support image creation",
6468 proto_drv
->format_name
);
6472 /* Create parameter list */
6473 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
6474 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
6476 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
6478 /* Parse -o options */
6480 if (!qemu_opts_do_parse(opts
, options
, NULL
, errp
)) {
6485 if (!qemu_opt_get(opts
, BLOCK_OPT_SIZE
)) {
6486 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, img_size
, &error_abort
);
6487 } else if (img_size
!= UINT64_C(-1)) {
6488 error_setg(errp
, "The image size must be specified only once");
6492 if (base_filename
) {
6493 if (!qemu_opt_set(opts
, BLOCK_OPT_BACKING_FILE
, base_filename
,
6495 error_setg(errp
, "Backing file not supported for file format '%s'",
6502 if (!qemu_opt_set(opts
, BLOCK_OPT_BACKING_FMT
, base_fmt
, NULL
)) {
6503 error_setg(errp
, "Backing file format not supported for file "
6504 "format '%s'", fmt
);
6509 backing_file
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FILE
);
6511 if (!strcmp(filename
, backing_file
)) {
6512 error_setg(errp
, "Error: Trying to create an image with the "
6513 "same filename as the backing file");
6516 if (backing_file
[0] == '\0') {
6517 error_setg(errp
, "Expected backing file name, got empty string");
6522 backing_fmt
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FMT
);
6524 /* The size for the image must always be specified, unless we have a backing
6525 * file and we have not been forbidden from opening it. */
6526 size
= qemu_opt_get_size(opts
, BLOCK_OPT_SIZE
, img_size
);
6527 if (backing_file
&& !(flags
& BDRV_O_NO_BACKING
)) {
6528 BlockDriverState
*bs
;
6531 QDict
*backing_options
= NULL
;
6534 bdrv_get_full_backing_filename_from_filename(filename
, backing_file
,
6539 assert(full_backing
);
6541 /* backing files always opened read-only */
6543 back_flags
&= ~(BDRV_O_RDWR
| BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
);
6545 backing_options
= qdict_new();
6547 qdict_put_str(backing_options
, "driver", backing_fmt
);
6549 qdict_put_bool(backing_options
, BDRV_OPT_FORCE_SHARE
, true);
6551 bs
= bdrv_open(full_backing
, NULL
, backing_options
, back_flags
,
6553 g_free(full_backing
);
6555 error_append_hint(&local_err
, "Could not open backing image.\n");
6559 warn_report("Deprecated use of backing file without explicit "
6560 "backing format (detected format of %s)",
6561 bs
->drv
->format_name
);
6562 if (bs
->drv
!= &bdrv_raw
) {
6564 * A probe of raw deserves the most attention:
6565 * leaving the backing format out of the image
6566 * will ensure bs->probed is set (ensuring we
6567 * don't accidentally commit into the backing
6568 * file), and allow more spots to warn the users
6569 * to fix their toolchain when opening this image
6570 * later. For other images, we can safely record
6571 * the format that we probed.
6573 backing_fmt
= bs
->drv
->format_name
;
6574 qemu_opt_set(opts
, BLOCK_OPT_BACKING_FMT
, backing_fmt
,
6579 /* Opened BS, have no size */
6580 size
= bdrv_getlength(bs
);
6582 error_setg_errno(errp
, -size
, "Could not get size of '%s'",
6587 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, size
, &error_abort
);
6591 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6592 } else if (backing_file
&& !backing_fmt
) {
6593 warn_report("Deprecated use of unopened backing file without "
6594 "explicit backing format, use of this image requires "
6595 "potentially unsafe format probing");
6599 error_setg(errp
, "Image creation needs a size parameter");
6604 printf("Formatting '%s', fmt=%s ", filename
, fmt
);
6605 qemu_opts_print(opts
, " ");
6610 ret
= bdrv_create(drv
, filename
, opts
, &local_err
);
6612 if (ret
== -EFBIG
) {
6613 /* This is generally a better message than whatever the driver would
6614 * deliver (especially because of the cluster_size_hint), since that
6615 * is most probably not much different from "image too large". */
6616 const char *cluster_size_hint
= "";
6617 if (qemu_opt_get_size(opts
, BLOCK_OPT_CLUSTER_SIZE
, 0)) {
6618 cluster_size_hint
= " (try using a larger cluster size)";
6620 error_setg(errp
, "The image size is too large for file format '%s'"
6621 "%s", fmt
, cluster_size_hint
);
6622 error_free(local_err
);
6627 qemu_opts_del(opts
);
6628 qemu_opts_free(create_opts
);
6629 error_propagate(errp
, local_err
);
6632 AioContext
*bdrv_get_aio_context(BlockDriverState
*bs
)
6634 return bs
? bs
->aio_context
: qemu_get_aio_context();
6637 AioContext
*coroutine_fn
bdrv_co_enter(BlockDriverState
*bs
)
6639 Coroutine
*self
= qemu_coroutine_self();
6640 AioContext
*old_ctx
= qemu_coroutine_get_aio_context(self
);
6641 AioContext
*new_ctx
;
6644 * Increase bs->in_flight to ensure that this operation is completed before
6645 * moving the node to a different AioContext. Read new_ctx only afterwards.
6647 bdrv_inc_in_flight(bs
);
6649 new_ctx
= bdrv_get_aio_context(bs
);
6650 aio_co_reschedule_self(new_ctx
);
6654 void coroutine_fn
bdrv_co_leave(BlockDriverState
*bs
, AioContext
*old_ctx
)
6656 aio_co_reschedule_self(old_ctx
);
6657 bdrv_dec_in_flight(bs
);
6660 void coroutine_fn
bdrv_co_lock(BlockDriverState
*bs
)
6662 AioContext
*ctx
= bdrv_get_aio_context(bs
);
6664 /* In the main thread, bs->aio_context won't change concurrently */
6665 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6668 * We're in coroutine context, so we already hold the lock of the main
6669 * loop AioContext. Don't lock it twice to avoid deadlocks.
6671 assert(qemu_in_coroutine());
6672 if (ctx
!= qemu_get_aio_context()) {
6673 aio_context_acquire(ctx
);
6677 void coroutine_fn
bdrv_co_unlock(BlockDriverState
*bs
)
6679 AioContext
*ctx
= bdrv_get_aio_context(bs
);
6681 assert(qemu_in_coroutine());
6682 if (ctx
!= qemu_get_aio_context()) {
6683 aio_context_release(ctx
);
6687 void bdrv_coroutine_enter(BlockDriverState
*bs
, Coroutine
*co
)
6689 aio_co_enter(bdrv_get_aio_context(bs
), co
);
6692 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier
*ban
)
6694 QLIST_REMOVE(ban
, list
);
6698 static void bdrv_detach_aio_context(BlockDriverState
*bs
)
6700 BdrvAioNotifier
*baf
, *baf_tmp
;
6702 assert(!bs
->walking_aio_notifiers
);
6703 bs
->walking_aio_notifiers
= true;
6704 QLIST_FOREACH_SAFE(baf
, &bs
->aio_notifiers
, list
, baf_tmp
) {
6706 bdrv_do_remove_aio_context_notifier(baf
);
6708 baf
->detach_aio_context(baf
->opaque
);
6711 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6712 * remove remaining aio notifiers if we aren't called again.
6714 bs
->walking_aio_notifiers
= false;
6716 if (bs
->drv
&& bs
->drv
->bdrv_detach_aio_context
) {
6717 bs
->drv
->bdrv_detach_aio_context(bs
);
6720 if (bs
->quiesce_counter
) {
6721 aio_enable_external(bs
->aio_context
);
6723 bs
->aio_context
= NULL
;
6726 static void bdrv_attach_aio_context(BlockDriverState
*bs
,
6727 AioContext
*new_context
)
6729 BdrvAioNotifier
*ban
, *ban_tmp
;
6731 if (bs
->quiesce_counter
) {
6732 aio_disable_external(new_context
);
6735 bs
->aio_context
= new_context
;
6737 if (bs
->drv
&& bs
->drv
->bdrv_attach_aio_context
) {
6738 bs
->drv
->bdrv_attach_aio_context(bs
, new_context
);
6741 assert(!bs
->walking_aio_notifiers
);
6742 bs
->walking_aio_notifiers
= true;
6743 QLIST_FOREACH_SAFE(ban
, &bs
->aio_notifiers
, list
, ban_tmp
) {
6745 bdrv_do_remove_aio_context_notifier(ban
);
6747 ban
->attached_aio_context(new_context
, ban
->opaque
);
6750 bs
->walking_aio_notifiers
= false;
6754 * Changes the AioContext used for fd handlers, timers, and BHs by this
6755 * BlockDriverState and all its children and parents.
6757 * Must be called from the main AioContext.
6759 * The caller must own the AioContext lock for the old AioContext of bs, but it
6760 * must not own the AioContext lock for new_context (unless new_context is the
6761 * same as the current context of bs).
6763 * @ignore will accumulate all visited BdrvChild object. The caller is
6764 * responsible for freeing the list afterwards.
6766 void bdrv_set_aio_context_ignore(BlockDriverState
*bs
,
6767 AioContext
*new_context
, GSList
**ignore
)
6769 AioContext
*old_context
= bdrv_get_aio_context(bs
);
6770 GSList
*children_to_process
= NULL
;
6771 GSList
*parents_to_process
= NULL
;
6773 BdrvChild
*child
, *parent
;
6775 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6777 if (old_context
== new_context
) {
6781 bdrv_drained_begin(bs
);
6783 QLIST_FOREACH(child
, &bs
->children
, next
) {
6784 if (g_slist_find(*ignore
, child
)) {
6787 *ignore
= g_slist_prepend(*ignore
, child
);
6788 children_to_process
= g_slist_prepend(children_to_process
, child
);
6791 QLIST_FOREACH(parent
, &bs
->parents
, next_parent
) {
6792 if (g_slist_find(*ignore
, parent
)) {
6795 *ignore
= g_slist_prepend(*ignore
, parent
);
6796 parents_to_process
= g_slist_prepend(parents_to_process
, parent
);
6799 for (entry
= children_to_process
;
6801 entry
= g_slist_next(entry
)) {
6802 child
= entry
->data
;
6803 bdrv_set_aio_context_ignore(child
->bs
, new_context
, ignore
);
6805 g_slist_free(children_to_process
);
6807 for (entry
= parents_to_process
;
6809 entry
= g_slist_next(entry
)) {
6810 parent
= entry
->data
;
6811 assert(parent
->klass
->set_aio_ctx
);
6812 parent
->klass
->set_aio_ctx(parent
, new_context
, ignore
);
6814 g_slist_free(parents_to_process
);
6816 bdrv_detach_aio_context(bs
);
6818 /* Acquire the new context, if necessary */
6819 if (qemu_get_aio_context() != new_context
) {
6820 aio_context_acquire(new_context
);
6823 bdrv_attach_aio_context(bs
, new_context
);
6826 * If this function was recursively called from
6827 * bdrv_set_aio_context_ignore(), there may be nodes in the
6828 * subtree that have not yet been moved to the new AioContext.
6829 * Release the old one so bdrv_drained_end() can poll them.
6831 if (qemu_get_aio_context() != old_context
) {
6832 aio_context_release(old_context
);
6835 bdrv_drained_end(bs
);
6837 if (qemu_get_aio_context() != old_context
) {
6838 aio_context_acquire(old_context
);
6840 if (qemu_get_aio_context() != new_context
) {
6841 aio_context_release(new_context
);
6845 static bool bdrv_parent_can_set_aio_context(BdrvChild
*c
, AioContext
*ctx
,
6846 GSList
**ignore
, Error
**errp
)
6848 if (g_slist_find(*ignore
, c
)) {
6851 *ignore
= g_slist_prepend(*ignore
, c
);
6854 * A BdrvChildClass that doesn't handle AioContext changes cannot
6855 * tolerate any AioContext changes
6857 if (!c
->klass
->can_set_aio_ctx
) {
6858 char *user
= bdrv_child_user_desc(c
);
6859 error_setg(errp
, "Changing iothreads is not supported by %s", user
);
6863 if (!c
->klass
->can_set_aio_ctx(c
, ctx
, ignore
, errp
)) {
6864 assert(!errp
|| *errp
);
6870 bool bdrv_child_can_set_aio_context(BdrvChild
*c
, AioContext
*ctx
,
6871 GSList
**ignore
, Error
**errp
)
6873 if (g_slist_find(*ignore
, c
)) {
6876 *ignore
= g_slist_prepend(*ignore
, c
);
6877 return bdrv_can_set_aio_context(c
->bs
, ctx
, ignore
, errp
);
6880 /* @ignore will accumulate all visited BdrvChild object. The caller is
6881 * responsible for freeing the list afterwards. */
6882 bool bdrv_can_set_aio_context(BlockDriverState
*bs
, AioContext
*ctx
,
6883 GSList
**ignore
, Error
**errp
)
6887 if (bdrv_get_aio_context(bs
) == ctx
) {
6891 QLIST_FOREACH(c
, &bs
->parents
, next_parent
) {
6892 if (!bdrv_parent_can_set_aio_context(c
, ctx
, ignore
, errp
)) {
6896 QLIST_FOREACH(c
, &bs
->children
, next
) {
6897 if (!bdrv_child_can_set_aio_context(c
, ctx
, ignore
, errp
)) {
6905 int bdrv_child_try_set_aio_context(BlockDriverState
*bs
, AioContext
*ctx
,
6906 BdrvChild
*ignore_child
, Error
**errp
)
6911 ignore
= ignore_child
? g_slist_prepend(NULL
, ignore_child
) : NULL
;
6912 ret
= bdrv_can_set_aio_context(bs
, ctx
, &ignore
, errp
);
6913 g_slist_free(ignore
);
6919 ignore
= ignore_child
? g_slist_prepend(NULL
, ignore_child
) : NULL
;
6920 bdrv_set_aio_context_ignore(bs
, ctx
, &ignore
);
6921 g_slist_free(ignore
);
6926 int bdrv_try_set_aio_context(BlockDriverState
*bs
, AioContext
*ctx
,
6929 return bdrv_child_try_set_aio_context(bs
, ctx
, NULL
, errp
);
6932 void bdrv_add_aio_context_notifier(BlockDriverState
*bs
,
6933 void (*attached_aio_context
)(AioContext
*new_context
, void *opaque
),
6934 void (*detach_aio_context
)(void *opaque
), void *opaque
)
6936 BdrvAioNotifier
*ban
= g_new(BdrvAioNotifier
, 1);
6937 *ban
= (BdrvAioNotifier
){
6938 .attached_aio_context
= attached_aio_context
,
6939 .detach_aio_context
= detach_aio_context
,
6943 QLIST_INSERT_HEAD(&bs
->aio_notifiers
, ban
, list
);
6946 void bdrv_remove_aio_context_notifier(BlockDriverState
*bs
,
6947 void (*attached_aio_context
)(AioContext
*,
6949 void (*detach_aio_context
)(void *),
6952 BdrvAioNotifier
*ban
, *ban_next
;
6954 QLIST_FOREACH_SAFE(ban
, &bs
->aio_notifiers
, list
, ban_next
) {
6955 if (ban
->attached_aio_context
== attached_aio_context
&&
6956 ban
->detach_aio_context
== detach_aio_context
&&
6957 ban
->opaque
== opaque
&&
6958 ban
->deleted
== false)
6960 if (bs
->walking_aio_notifiers
) {
6961 ban
->deleted
= true;
6963 bdrv_do_remove_aio_context_notifier(ban
);
6972 int bdrv_amend_options(BlockDriverState
*bs
, QemuOpts
*opts
,
6973 BlockDriverAmendStatusCB
*status_cb
, void *cb_opaque
,
6978 error_setg(errp
, "Node is ejected");
6981 if (!bs
->drv
->bdrv_amend_options
) {
6982 error_setg(errp
, "Block driver '%s' does not support option amendment",
6983 bs
->drv
->format_name
);
6986 return bs
->drv
->bdrv_amend_options(bs
, opts
, status_cb
,
6987 cb_opaque
, force
, errp
);
6991 * This function checks whether the given @to_replace is allowed to be
6992 * replaced by a node that always shows the same data as @bs. This is
6993 * used for example to verify whether the mirror job can replace
6994 * @to_replace by the target mirrored from @bs.
6995 * To be replaceable, @bs and @to_replace may either be guaranteed to
6996 * always show the same data (because they are only connected through
6997 * filters), or some driver may allow replacing one of its children
6998 * because it can guarantee that this child's data is not visible at
6999 * all (for example, for dissenting quorum children that have no other
7002 bool bdrv_recurse_can_replace(BlockDriverState
*bs
,
7003 BlockDriverState
*to_replace
)
7005 BlockDriverState
*filtered
;
7007 if (!bs
|| !bs
->drv
) {
7011 if (bs
== to_replace
) {
7015 /* See what the driver can do */
7016 if (bs
->drv
->bdrv_recurse_can_replace
) {
7017 return bs
->drv
->bdrv_recurse_can_replace(bs
, to_replace
);
7020 /* For filters without an own implementation, we can recurse on our own */
7021 filtered
= bdrv_filter_bs(bs
);
7023 return bdrv_recurse_can_replace(filtered
, to_replace
);
7031 * Check whether the given @node_name can be replaced by a node that
7032 * has the same data as @parent_bs. If so, return @node_name's BDS;
7035 * @node_name must be a (recursive) *child of @parent_bs (or this
7036 * function will return NULL).
7038 * The result (whether the node can be replaced or not) is only valid
7039 * for as long as no graph or permission changes occur.
7041 BlockDriverState
*check_to_replace_node(BlockDriverState
*parent_bs
,
7042 const char *node_name
, Error
**errp
)
7044 BlockDriverState
*to_replace_bs
= bdrv_find_node(node_name
);
7045 AioContext
*aio_context
;
7047 if (!to_replace_bs
) {
7048 error_setg(errp
, "Failed to find node with node-name='%s'", node_name
);
7052 aio_context
= bdrv_get_aio_context(to_replace_bs
);
7053 aio_context_acquire(aio_context
);
7055 if (bdrv_op_is_blocked(to_replace_bs
, BLOCK_OP_TYPE_REPLACE
, errp
)) {
7056 to_replace_bs
= NULL
;
7060 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7061 * most non filter in order to prevent data corruption.
7062 * Another benefit is that this tests exclude backing files which are
7063 * blocked by the backing blockers.
7065 if (!bdrv_recurse_can_replace(parent_bs
, to_replace_bs
)) {
7066 error_setg(errp
, "Cannot replace '%s' by a node mirrored from '%s', "
7067 "because it cannot be guaranteed that doing so would not "
7068 "lead to an abrupt change of visible data",
7069 node_name
, parent_bs
->node_name
);
7070 to_replace_bs
= NULL
;
7075 aio_context_release(aio_context
);
7076 return to_replace_bs
;
7080 * Iterates through the list of runtime option keys that are said to
7081 * be "strong" for a BDS. An option is called "strong" if it changes
7082 * a BDS's data. For example, the null block driver's "size" and
7083 * "read-zeroes" options are strong, but its "latency-ns" option is
7086 * If a key returned by this function ends with a dot, all options
7087 * starting with that prefix are strong.
7089 static const char *const *strong_options(BlockDriverState
*bs
,
7090 const char *const *curopt
)
7092 static const char *const global_options
[] = {
7093 "driver", "filename", NULL
7097 return &global_options
[0];
7101 if (curopt
== &global_options
[ARRAY_SIZE(global_options
) - 1] && bs
->drv
) {
7102 curopt
= bs
->drv
->strong_runtime_opts
;
7105 return (curopt
&& *curopt
) ? curopt
: NULL
;
7109 * Copies all strong runtime options from bs->options to the given
7110 * QDict. The set of strong option keys is determined by invoking
7113 * Returns true iff any strong option was present in bs->options (and
7114 * thus copied to the target QDict) with the exception of "filename"
7115 * and "driver". The caller is expected to use this value to decide
7116 * whether the existence of strong options prevents the generation of
7119 static bool append_strong_runtime_options(QDict
*d
, BlockDriverState
*bs
)
7121 bool found_any
= false;
7122 const char *const *option_name
= NULL
;
7128 while ((option_name
= strong_options(bs
, option_name
))) {
7129 bool option_given
= false;
7131 assert(strlen(*option_name
) > 0);
7132 if ((*option_name
)[strlen(*option_name
) - 1] != '.') {
7133 QObject
*entry
= qdict_get(bs
->options
, *option_name
);
7138 qdict_put_obj(d
, *option_name
, qobject_ref(entry
));
7139 option_given
= true;
7141 const QDictEntry
*entry
;
7142 for (entry
= qdict_first(bs
->options
); entry
;
7143 entry
= qdict_next(bs
->options
, entry
))
7145 if (strstart(qdict_entry_key(entry
), *option_name
, NULL
)) {
7146 qdict_put_obj(d
, qdict_entry_key(entry
),
7147 qobject_ref(qdict_entry_value(entry
)));
7148 option_given
= true;
7153 /* While "driver" and "filename" need to be included in a JSON filename,
7154 * their existence does not prohibit generation of a plain filename. */
7155 if (!found_any
&& option_given
&&
7156 strcmp(*option_name
, "driver") && strcmp(*option_name
, "filename"))
7162 if (!qdict_haskey(d
, "driver")) {
7163 /* Drivers created with bdrv_new_open_driver() may not have a
7164 * @driver option. Add it here. */
7165 qdict_put_str(d
, "driver", bs
->drv
->format_name
);
7171 /* Note: This function may return false positives; it may return true
7172 * even if opening the backing file specified by bs's image header
7173 * would result in exactly bs->backing. */
7174 bool bdrv_backing_overridden(BlockDriverState
*bs
)
7177 return strcmp(bs
->auto_backing_file
,
7178 bs
->backing
->bs
->filename
);
7180 /* No backing BDS, so if the image header reports any backing
7181 * file, it must have been suppressed */
7182 return bs
->auto_backing_file
[0] != '\0';
7186 /* Updates the following BDS fields:
7187 * - exact_filename: A filename which may be used for opening a block device
7188 * which (mostly) equals the given BDS (even without any
7189 * other options; so reading and writing must return the same
7190 * results, but caching etc. may be different)
7191 * - full_open_options: Options which, when given when opening a block device
7192 * (without a filename), result in a BDS (mostly)
7193 * equalling the given one
7194 * - filename: If exact_filename is set, it is copied here. Otherwise,
7195 * full_open_options is converted to a JSON object, prefixed with
7196 * "json:" (for use through the JSON pseudo protocol) and put here.
7198 void bdrv_refresh_filename(BlockDriverState
*bs
)
7200 BlockDriver
*drv
= bs
->drv
;
7202 BlockDriverState
*primary_child_bs
;
7204 bool backing_overridden
;
7205 bool generate_json_filename
; /* Whether our default implementation should
7206 fill exact_filename (false) or not (true) */
7212 /* This BDS's file name may depend on any of its children's file names, so
7213 * refresh those first */
7214 QLIST_FOREACH(child
, &bs
->children
, next
) {
7215 bdrv_refresh_filename(child
->bs
);
7219 /* For implicit nodes, just copy everything from the single child */
7220 child
= QLIST_FIRST(&bs
->children
);
7221 assert(QLIST_NEXT(child
, next
) == NULL
);
7223 pstrcpy(bs
->exact_filename
, sizeof(bs
->exact_filename
),
7224 child
->bs
->exact_filename
);
7225 pstrcpy(bs
->filename
, sizeof(bs
->filename
), child
->bs
->filename
);
7227 qobject_unref(bs
->full_open_options
);
7228 bs
->full_open_options
= qobject_ref(child
->bs
->full_open_options
);
7233 backing_overridden
= bdrv_backing_overridden(bs
);
7235 if (bs
->open_flags
& BDRV_O_NO_IO
) {
7236 /* Without I/O, the backing file does not change anything.
7237 * Therefore, in such a case (primarily qemu-img), we can
7238 * pretend the backing file has not been overridden even if
7239 * it technically has been. */
7240 backing_overridden
= false;
7243 /* Gather the options QDict */
7245 generate_json_filename
= append_strong_runtime_options(opts
, bs
);
7246 generate_json_filename
|= backing_overridden
;
7248 if (drv
->bdrv_gather_child_options
) {
7249 /* Some block drivers may not want to present all of their children's
7250 * options, or name them differently from BdrvChild.name */
7251 drv
->bdrv_gather_child_options(bs
, opts
, backing_overridden
);
7253 QLIST_FOREACH(child
, &bs
->children
, next
) {
7254 if (child
== bs
->backing
&& !backing_overridden
) {
7255 /* We can skip the backing BDS if it has not been overridden */
7259 qdict_put(opts
, child
->name
,
7260 qobject_ref(child
->bs
->full_open_options
));
7263 if (backing_overridden
&& !bs
->backing
) {
7264 /* Force no backing file */
7265 qdict_put_null(opts
, "backing");
7269 qobject_unref(bs
->full_open_options
);
7270 bs
->full_open_options
= opts
;
7272 primary_child_bs
= bdrv_primary_bs(bs
);
7274 if (drv
->bdrv_refresh_filename
) {
7275 /* Obsolete information is of no use here, so drop the old file name
7276 * information before refreshing it */
7277 bs
->exact_filename
[0] = '\0';
7279 drv
->bdrv_refresh_filename(bs
);
7280 } else if (primary_child_bs
) {
7282 * Try to reconstruct valid information from the underlying
7283 * file -- this only works for format nodes (filter nodes
7284 * cannot be probed and as such must be selected by the user
7285 * either through an options dict, or through a special
7286 * filename which the filter driver must construct in its
7287 * .bdrv_refresh_filename() implementation).
7290 bs
->exact_filename
[0] = '\0';
7293 * We can use the underlying file's filename if:
7294 * - it has a filename,
7295 * - the current BDS is not a filter,
7296 * - the file is a protocol BDS, and
7297 * - opening that file (as this BDS's format) will automatically create
7298 * the BDS tree we have right now, that is:
7299 * - the user did not significantly change this BDS's behavior with
7300 * some explicit (strong) options
7301 * - no non-file child of this BDS has been overridden by the user
7302 * Both of these conditions are represented by generate_json_filename.
7304 if (primary_child_bs
->exact_filename
[0] &&
7305 primary_child_bs
->drv
->bdrv_file_open
&&
7306 !drv
->is_filter
&& !generate_json_filename
)
7308 strcpy(bs
->exact_filename
, primary_child_bs
->exact_filename
);
7312 if (bs
->exact_filename
[0]) {
7313 pstrcpy(bs
->filename
, sizeof(bs
->filename
), bs
->exact_filename
);
7315 GString
*json
= qobject_to_json(QOBJECT(bs
->full_open_options
));
7316 if (snprintf(bs
->filename
, sizeof(bs
->filename
), "json:%s",
7317 json
->str
) >= sizeof(bs
->filename
)) {
7318 /* Give user a hint if we truncated things. */
7319 strcpy(bs
->filename
+ sizeof(bs
->filename
) - 4, "...");
7321 g_string_free(json
, true);
7325 char *bdrv_dirname(BlockDriverState
*bs
, Error
**errp
)
7327 BlockDriver
*drv
= bs
->drv
;
7328 BlockDriverState
*child_bs
;
7331 error_setg(errp
, "Node '%s' is ejected", bs
->node_name
);
7335 if (drv
->bdrv_dirname
) {
7336 return drv
->bdrv_dirname(bs
, errp
);
7339 child_bs
= bdrv_primary_bs(bs
);
7341 return bdrv_dirname(child_bs
, errp
);
7344 bdrv_refresh_filename(bs
);
7345 if (bs
->exact_filename
[0] != '\0') {
7346 return path_combine(bs
->exact_filename
, "");
7349 error_setg(errp
, "Cannot generate a base directory for %s nodes",
7355 * Hot add/remove a BDS's child. So the user can take a child offline when
7356 * it is broken and take a new child online
7358 void bdrv_add_child(BlockDriverState
*parent_bs
, BlockDriverState
*child_bs
,
7362 if (!parent_bs
->drv
|| !parent_bs
->drv
->bdrv_add_child
) {
7363 error_setg(errp
, "The node %s does not support adding a child",
7364 bdrv_get_device_or_node_name(parent_bs
));
7368 if (!QLIST_EMPTY(&child_bs
->parents
)) {
7369 error_setg(errp
, "The node %s already has a parent",
7370 child_bs
->node_name
);
7374 parent_bs
->drv
->bdrv_add_child(parent_bs
, child_bs
, errp
);
7377 void bdrv_del_child(BlockDriverState
*parent_bs
, BdrvChild
*child
, Error
**errp
)
7381 if (!parent_bs
->drv
|| !parent_bs
->drv
->bdrv_del_child
) {
7382 error_setg(errp
, "The node %s does not support removing a child",
7383 bdrv_get_device_or_node_name(parent_bs
));
7387 QLIST_FOREACH(tmp
, &parent_bs
->children
, next
) {
7394 error_setg(errp
, "The node %s does not have a child named %s",
7395 bdrv_get_device_or_node_name(parent_bs
),
7396 bdrv_get_device_or_node_name(child
->bs
));
7400 parent_bs
->drv
->bdrv_del_child(parent_bs
, child
, errp
);
7403 int bdrv_make_empty(BdrvChild
*c
, Error
**errp
)
7405 BlockDriver
*drv
= c
->bs
->drv
;
7408 assert(c
->perm
& (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
));
7410 if (!drv
->bdrv_make_empty
) {
7411 error_setg(errp
, "%s does not support emptying nodes",
7416 ret
= drv
->bdrv_make_empty(c
->bs
);
7418 error_setg_errno(errp
, -ret
, "Failed to empty %s",
7427 * Return the child that @bs acts as an overlay for, and from which data may be
7428 * copied in COW or COR operations. Usually this is the backing file.
7430 BdrvChild
*bdrv_cow_child(BlockDriverState
*bs
)
7432 if (!bs
|| !bs
->drv
) {
7436 if (bs
->drv
->is_filter
) {
7444 assert(bs
->backing
->role
& BDRV_CHILD_COW
);
7449 * If @bs acts as a filter for exactly one of its children, return
7452 BdrvChild
*bdrv_filter_child(BlockDriverState
*bs
)
7456 if (!bs
|| !bs
->drv
) {
7460 if (!bs
->drv
->is_filter
) {
7464 /* Only one of @backing or @file may be used */
7465 assert(!(bs
->backing
&& bs
->file
));
7467 c
= bs
->backing
?: bs
->file
;
7472 assert(c
->role
& BDRV_CHILD_FILTERED
);
7477 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7478 * whichever is non-NULL.
7480 * Return NULL if both are NULL.
7482 BdrvChild
*bdrv_filter_or_cow_child(BlockDriverState
*bs
)
7484 BdrvChild
*cow_child
= bdrv_cow_child(bs
);
7485 BdrvChild
*filter_child
= bdrv_filter_child(bs
);
7487 /* Filter nodes cannot have COW backing files */
7488 assert(!(cow_child
&& filter_child
));
7490 return cow_child
?: filter_child
;
7494 * Return the primary child of this node: For filters, that is the
7495 * filtered child. For other nodes, that is usually the child storing
7497 * (A generally more helpful description is that this is (usually) the
7498 * child that has the same filename as @bs.)
7500 * Drivers do not necessarily have a primary child; for example quorum
7503 BdrvChild
*bdrv_primary_child(BlockDriverState
*bs
)
7505 BdrvChild
*c
, *found
= NULL
;
7507 QLIST_FOREACH(c
, &bs
->children
, next
) {
7508 if (c
->role
& BDRV_CHILD_PRIMARY
) {
7517 static BlockDriverState
*bdrv_do_skip_filters(BlockDriverState
*bs
,
7518 bool stop_on_explicit_filter
)
7526 while (!(stop_on_explicit_filter
&& !bs
->implicit
)) {
7527 c
= bdrv_filter_child(bs
);
7530 * A filter that is embedded in a working block graph must
7531 * have a child. Assert this here so this function does
7532 * not return a filter node that is not expected by the
7535 assert(!bs
->drv
|| !bs
->drv
->is_filter
);
7541 * Note that this treats nodes with bs->drv == NULL as not being
7542 * filters (bs->drv == NULL should be replaced by something else
7544 * The advantage of this behavior is that this function will thus
7545 * always return a non-NULL value (given a non-NULL @bs).
7552 * Return the first BDS that has not been added implicitly or that
7553 * does not have a filtered child down the chain starting from @bs
7554 * (including @bs itself).
7556 BlockDriverState
*bdrv_skip_implicit_filters(BlockDriverState
*bs
)
7558 return bdrv_do_skip_filters(bs
, true);
7562 * Return the first BDS that does not have a filtered child down the
7563 * chain starting from @bs (including @bs itself).
7565 BlockDriverState
*bdrv_skip_filters(BlockDriverState
*bs
)
7567 return bdrv_do_skip_filters(bs
, false);
7571 * For a backing chain, return the first non-filter backing image of
7572 * the first non-filter image.
7574 BlockDriverState
*bdrv_backing_chain_next(BlockDriverState
*bs
)
7576 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs
)));