2 * QEMU System Emulator block driver
4 * Copyright (c) 2003 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
26 #include "block/trace.h"
27 #include "block/block_int.h"
28 #include "block/blockjob.h"
29 #include "block/nbd.h"
30 #include "block/qdict.h"
31 #include "qemu/error-report.h"
32 #include "module_block.h"
33 #include "qemu/module.h"
34 #include "qapi/error.h"
35 #include "qapi/qmp/qdict.h"
36 #include "qapi/qmp/qjson.h"
37 #include "qapi/qmp/qnull.h"
38 #include "qapi/qmp/qstring.h"
39 #include "qapi/qobject-output-visitor.h"
40 #include "qapi/qapi-visit-block-core.h"
41 #include "sysemu/block-backend.h"
42 #include "sysemu/sysemu.h"
43 #include "qemu/notify.h"
44 #include "qemu/option.h"
45 #include "qemu/coroutine.h"
46 #include "block/qapi.h"
47 #include "qemu/timer.h"
48 #include "qemu/cutils.h"
52 #include <sys/ioctl.h>
53 #include <sys/queue.h>
63 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
65 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
66 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
68 static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
69 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
71 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
72 QLIST_HEAD_INITIALIZER(bdrv_drivers);
74 static BlockDriverState *bdrv_open_inherit(const char *filename,
75 const char *reference,
76 QDict *options, int flags,
77 BlockDriverState *parent,
78 const BdrvChildRole *child_role,
81 /* If non-zero, use only whitelisted block drivers */
82 static int use_bdrv_whitelist;
85 static int is_windows_drive_prefix(const char *filename)
87 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
88 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
92 int is_windows_drive(const char *filename)
94 if (is_windows_drive_prefix(filename) &&
97 if (strstart(filename, "\\\\.\\", NULL) ||
98 strstart(filename, "//./", NULL))
104 size_t bdrv_opt_mem_align(BlockDriverState *bs)
106 if (!bs || !bs->drv) {
107 /* page size or 4k (hdd sector size) should be on the safe side */
108 return MAX(4096, getpagesize());
111 return bs->bl.opt_mem_alignment;
114 size_t bdrv_min_mem_align(BlockDriverState *bs)
116 if (!bs || !bs->drv) {
117 /* page size or 4k (hdd sector size) should be on the safe side */
118 return MAX(4096, getpagesize());
121 return bs->bl.min_mem_alignment;
124 /* check if the path starts with "<protocol>:" */
125 int path_has_protocol(const char *path)
130 if (is_windows_drive(path) ||
131 is_windows_drive_prefix(path)) {
134 p = path + strcspn(path, ":/\\");
136 p = path + strcspn(path, ":/");
142 int path_is_absolute(const char *path)
145 /* specific case for names like: "\\.\d:" */
146 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
149 return (*path == '/' || *path == '\\');
151 return (*path == '/');
155 /* if filename is absolute, just copy it to dest. Otherwise, build a
156 path to it by considering it is relative to base_path. URL are
158 void path_combine(char *dest, int dest_size,
159 const char *base_path,
160 const char *filename)
167 if (path_is_absolute(filename)) {
168 pstrcpy(dest, dest_size, filename);
170 const char *protocol_stripped = NULL;
172 if (path_has_protocol(base_path)) {
173 protocol_stripped = strchr(base_path, ':');
174 if (protocol_stripped) {
178 p = protocol_stripped ?: base_path;
180 p1 = strrchr(base_path, '/');
184 p2 = strrchr(base_path, '\\');
196 if (len > dest_size - 1)
198 memcpy(dest, base_path, len);
200 pstrcat(dest, dest_size, filename);
205 * Helper function for bdrv_parse_filename() implementations to remove optional
206 * protocol prefixes (especially "file:") from a filename and for putting the
207 * stripped filename into the options QDict if there is such a prefix.
209 void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
212 if (strstart(filename, prefix, &filename)) {
213 /* Stripping the explicit protocol prefix may result in a protocol
214 * prefix being (wrongly) detected (if the filename contains a colon) */
215 if (path_has_protocol(filename)) {
216 QString *fat_filename;
218 /* This means there is some colon before the first slash; therefore,
219 * this cannot be an absolute path */
220 assert(!path_is_absolute(filename));
222 /* And we can thus fix the protocol detection issue by prefixing it
224 fat_filename = qstring_from_str("./");
225 qstring_append(fat_filename, filename);
227 assert(!path_has_protocol(qstring_get_str(fat_filename)));
229 qdict_put(options, "filename", fat_filename);
231 /* If no protocol prefix was detected, we can use the shortened
233 qdict_put_str(options, "filename", filename);
239 /* Returns whether the image file is opened as read-only. Note that this can
240 * return false and writing to the image file is still not possible because the
241 * image is inactivated. */
242 bool bdrv_is_read_only(BlockDriverState *bs)
244 return bs->read_only;
247 int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
248 bool ignore_allow_rdw, Error **errp)
250 /* Do not set read_only if copy_on_read is enabled */
251 if (bs->copy_on_read && read_only) {
252 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
253 bdrv_get_device_or_node_name(bs));
257 /* Do not clear read_only if it is prohibited */
258 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
261 error_setg(errp, "Node '%s' is read only",
262 bdrv_get_device_or_node_name(bs));
269 /* TODO Remove (deprecated since 2.11)
270 * Block drivers are not supposed to automatically change bs->read_only.
271 * Instead, they should just check whether they can provide what the user
272 * explicitly requested and error out if read-write is requested, but they can
273 * only provide read-only access. */
274 int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp)
278 ret = bdrv_can_set_read_only(bs, read_only, false, errp);
283 bs->read_only = read_only;
287 void bdrv_get_full_backing_filename_from_filename(const char *backed,
289 char *dest, size_t sz,
292 if (backing[0] == '\0' || path_has_protocol(backing) ||
293 path_is_absolute(backing))
295 pstrcpy(dest, sz, backing);
296 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
297 error_setg(errp, "Cannot use relative backing file names for '%s'",
300 path_combine(dest, sz, backed, backing);
304 void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
307 char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
309 bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
313 void bdrv_register(BlockDriver *bdrv)
315 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
318 BlockDriverState *bdrv_new(void)
320 BlockDriverState *bs;
323 bs = g_new0(BlockDriverState, 1);
324 QLIST_INIT(&bs->dirty_bitmaps);
325 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
326 QLIST_INIT(&bs->op_blockers[i]);
328 notifier_with_return_list_init(&bs->before_write_notifiers);
329 qemu_co_mutex_init(&bs->reqs_lock);
330 qemu_mutex_init(&bs->dirty_bitmap_mutex);
332 bs->aio_context = qemu_get_aio_context();
334 qemu_co_queue_init(&bs->flush_queue);
336 for (i = 0; i < bdrv_drain_all_count; i++) {
337 bdrv_drained_begin(bs);
340 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
345 static BlockDriver *bdrv_do_find_format(const char *format_name)
349 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
350 if (!strcmp(drv1->format_name, format_name)) {
358 BlockDriver *bdrv_find_format(const char *format_name)
363 drv1 = bdrv_do_find_format(format_name);
368 /* The driver isn't registered, maybe we need to load a module */
369 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
370 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
371 block_module_load_one(block_driver_modules[i].library_name);
376 return bdrv_do_find_format(format_name);
379 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
381 static const char *whitelist_rw[] = {
382 CONFIG_BDRV_RW_WHITELIST
384 static const char *whitelist_ro[] = {
385 CONFIG_BDRV_RO_WHITELIST
389 if (!whitelist_rw[0] && !whitelist_ro[0]) {
390 return 1; /* no whitelist, anything goes */
393 for (p = whitelist_rw; *p; p++) {
394 if (!strcmp(drv->format_name, *p)) {
399 for (p = whitelist_ro; *p; p++) {
400 if (!strcmp(drv->format_name, *p)) {
408 bool bdrv_uses_whitelist(void)
410 return use_bdrv_whitelist;
413 typedef struct CreateCo {
421 static void coroutine_fn bdrv_create_co_entry(void *opaque)
423 Error *local_err = NULL;
426 CreateCo *cco = opaque;
429 ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err);
430 error_propagate(&cco->err, local_err);
434 int bdrv_create(BlockDriver *drv, const char* filename,
435 QemuOpts *opts, Error **errp)
442 .filename = g_strdup(filename),
448 if (!drv->bdrv_co_create_opts) {
449 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
454 if (qemu_in_coroutine()) {
455 /* Fast-path if already in coroutine context */
456 bdrv_create_co_entry(&cco);
458 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
459 qemu_coroutine_enter(co);
460 while (cco.ret == NOT_DONE) {
461 aio_poll(qemu_get_aio_context(), true);
468 error_propagate(errp, cco.err);
470 error_setg_errno(errp, -ret, "Could not create image");
475 g_free(cco.filename);
479 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
482 Error *local_err = NULL;
485 drv = bdrv_find_protocol(filename, true, errp);
490 ret = bdrv_create(drv, filename, opts, &local_err);
491 error_propagate(errp, local_err);
496 * Try to get @bs's logical and physical block size.
497 * On success, store them in @bsz struct and return 0.
498 * On failure return -errno.
499 * @bs must not be empty.
501 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
503 BlockDriver *drv = bs->drv;
505 if (drv && drv->bdrv_probe_blocksizes) {
506 return drv->bdrv_probe_blocksizes(bs, bsz);
507 } else if (drv && drv->is_filter && bs->file) {
508 return bdrv_probe_blocksizes(bs->file->bs, bsz);
515 * Try to get @bs's geometry (cyls, heads, sectors).
516 * On success, store them in @geo struct and return 0.
517 * On failure return -errno.
518 * @bs must not be empty.
520 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
522 BlockDriver *drv = bs->drv;
524 if (drv && drv->bdrv_probe_geometry) {
525 return drv->bdrv_probe_geometry(bs, geo);
526 } else if (drv && drv->is_filter && bs->file) {
527 return bdrv_probe_geometry(bs->file->bs, geo);
534 * Create a uniquely-named empty temporary file.
535 * Return 0 upon success, otherwise a negative errno value.
537 int get_tmp_filename(char *filename, int size)
540 char temp_dir[MAX_PATH];
541 /* GetTempFileName requires that its output buffer (4th param)
542 have length MAX_PATH or greater. */
543 assert(size >= MAX_PATH);
544 return (GetTempPath(MAX_PATH, temp_dir)
545 && GetTempFileName(temp_dir, "qem", 0, filename)
546 ? 0 : -GetLastError());
550 tmpdir = getenv("TMPDIR");
554 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
557 fd = mkstemp(filename);
561 if (close(fd) != 0) {
570 * Detect host devices. By convention, /dev/cdrom[N] is always
571 * recognized as a host CDROM.
573 static BlockDriver *find_hdev_driver(const char *filename)
575 int score_max = 0, score;
576 BlockDriver *drv = NULL, *d;
578 QLIST_FOREACH(d, &bdrv_drivers, list) {
579 if (d->bdrv_probe_device) {
580 score = d->bdrv_probe_device(filename);
581 if (score > score_max) {
591 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
595 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
596 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
604 BlockDriver *bdrv_find_protocol(const char *filename,
605 bool allow_protocol_prefix,
614 /* TODO Drivers without bdrv_file_open must be specified explicitly */
617 * XXX(hch): we really should not let host device detection
618 * override an explicit protocol specification, but moving this
619 * later breaks access to device names with colons in them.
620 * Thanks to the brain-dead persistent naming schemes on udev-
621 * based Linux systems those actually are quite common.
623 drv1 = find_hdev_driver(filename);
628 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
632 p = strchr(filename, ':');
635 if (len > sizeof(protocol) - 1)
636 len = sizeof(protocol) - 1;
637 memcpy(protocol, filename, len);
638 protocol[len] = '\0';
640 drv1 = bdrv_do_find_protocol(protocol);
645 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
646 if (block_driver_modules[i].protocol_name &&
647 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
648 block_module_load_one(block_driver_modules[i].library_name);
653 drv1 = bdrv_do_find_protocol(protocol);
655 error_setg(errp, "Unknown protocol '%s'", protocol);
661 * Guess image format by probing its contents.
662 * This is not a good idea when your image is raw (CVE-2008-2004), but
663 * we do it anyway for backward compatibility.
665 * @buf contains the image's first @buf_size bytes.
666 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
667 * but can be smaller if the image file is smaller)
668 * @filename is its filename.
670 * For all block drivers, call the bdrv_probe() method to get its
672 * Return the first block driver with the highest probing score.
674 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
675 const char *filename)
677 int score_max = 0, score;
678 BlockDriver *drv = NULL, *d;
680 QLIST_FOREACH(d, &bdrv_drivers, list) {
682 score = d->bdrv_probe(buf, buf_size, filename);
683 if (score > score_max) {
693 static int find_image_format(BlockBackend *file, const char *filename,
694 BlockDriver **pdrv, Error **errp)
697 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
700 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
701 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
706 ret = blk_pread(file, 0, buf, sizeof(buf));
708 error_setg_errno(errp, -ret, "Could not read image for determining its "
714 drv = bdrv_probe_all(buf, ret, filename);
716 error_setg(errp, "Could not determine image format: No compatible "
725 * Set the current 'total_sectors' value
726 * Return 0 on success, -errno on error.
728 int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
730 BlockDriver *drv = bs->drv;
736 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
740 /* query actual device if possible, otherwise just trust the hint */
741 if (drv->bdrv_getlength) {
742 int64_t length = drv->bdrv_getlength(bs);
746 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
749 bs->total_sectors = hint;
754 * Combines a QDict of new block driver @options with any missing options taken
755 * from @old_options, so that leaving out an option defaults to its old value.
757 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
760 if (bs->drv && bs->drv->bdrv_join_options) {
761 bs->drv->bdrv_join_options(options, old_options);
763 qdict_join(options, old_options, false);
768 * Set open flags for a given discard mode
770 * Return 0 on success, -1 if the discard mode was invalid.
772 int bdrv_parse_discard_flags(const char *mode, int *flags)
774 *flags &= ~BDRV_O_UNMAP;
776 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
778 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
779 *flags |= BDRV_O_UNMAP;
788 * Set open flags for a given cache mode
790 * Return 0 on success, -1 if the cache mode was invalid.
792 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
794 *flags &= ~BDRV_O_CACHE_MASK;
796 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
797 *writethrough = false;
798 *flags |= BDRV_O_NOCACHE;
799 } else if (!strcmp(mode, "directsync")) {
800 *writethrough = true;
801 *flags |= BDRV_O_NOCACHE;
802 } else if (!strcmp(mode, "writeback")) {
803 *writethrough = false;
804 } else if (!strcmp(mode, "unsafe")) {
805 *writethrough = false;
806 *flags |= BDRV_O_NO_FLUSH;
807 } else if (!strcmp(mode, "writethrough")) {
808 *writethrough = true;
816 static char *bdrv_child_get_parent_desc(BdrvChild *c)
818 BlockDriverState *parent = c->opaque;
819 return g_strdup(bdrv_get_device_or_node_name(parent));
822 static void bdrv_child_cb_drained_begin(BdrvChild *child)
824 BlockDriverState *bs = child->opaque;
825 bdrv_do_drained_begin_quiesce(bs, NULL, false);
828 static bool bdrv_child_cb_drained_poll(BdrvChild *child)
830 BlockDriverState *bs = child->opaque;
831 return bdrv_drain_poll(bs, false, NULL, false);
834 static void bdrv_child_cb_drained_end(BdrvChild *child)
836 BlockDriverState *bs = child->opaque;
837 bdrv_drained_end(bs);
840 static void bdrv_child_cb_attach(BdrvChild *child)
842 BlockDriverState *bs = child->opaque;
843 bdrv_apply_subtree_drain(child, bs);
846 static void bdrv_child_cb_detach(BdrvChild *child)
848 BlockDriverState *bs = child->opaque;
849 bdrv_unapply_subtree_drain(child, bs);
852 static int bdrv_child_cb_inactivate(BdrvChild *child)
854 BlockDriverState *bs = child->opaque;
855 assert(bs->open_flags & BDRV_O_INACTIVE);
860 * Returns the options and flags that a temporary snapshot should get, based on
861 * the originally requested flags (the originally requested image will have
862 * flags like a backing file)
864 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
865 int parent_flags, QDict *parent_options)
867 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
869 /* For temporary files, unconditional cache=unsafe is fine */
870 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
871 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
873 /* Copy the read-only option from the parent */
874 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
876 /* aio=native doesn't work for cache.direct=off, so disable it for the
877 * temporary snapshot */
878 *child_flags &= ~BDRV_O_NATIVE_AIO;
882 * Returns the options and flags that bs->file should get if a protocol driver
883 * is expected, based on the given options and flags for the parent BDS
885 static void bdrv_inherited_options(int *child_flags, QDict *child_options,
886 int parent_flags, QDict *parent_options)
888 int flags = parent_flags;
890 /* Enable protocol handling, disable format probing for bs->file */
891 flags |= BDRV_O_PROTOCOL;
893 /* If the cache mode isn't explicitly set, inherit direct and no-flush from
895 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
896 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
897 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
899 /* Inherit the read-only option from the parent if it's not set */
900 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
902 /* Our block drivers take care to send flushes and respect unmap policy,
903 * so we can default to enable both on lower layers regardless of the
904 * corresponding parent options. */
905 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
907 /* Clear flags that only apply to the top layer */
908 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
911 *child_flags = flags;
914 const BdrvChildRole child_file = {
915 .parent_is_bds = true,
916 .get_parent_desc = bdrv_child_get_parent_desc,
917 .inherit_options = bdrv_inherited_options,
918 .drained_begin = bdrv_child_cb_drained_begin,
919 .drained_poll = bdrv_child_cb_drained_poll,
920 .drained_end = bdrv_child_cb_drained_end,
921 .attach = bdrv_child_cb_attach,
922 .detach = bdrv_child_cb_detach,
923 .inactivate = bdrv_child_cb_inactivate,
927 * Returns the options and flags that bs->file should get if the use of formats
928 * (and not only protocols) is permitted for it, based on the given options and
929 * flags for the parent BDS
931 static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
932 int parent_flags, QDict *parent_options)
934 child_file.inherit_options(child_flags, child_options,
935 parent_flags, parent_options);
937 *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
940 const BdrvChildRole child_format = {
941 .parent_is_bds = true,
942 .get_parent_desc = bdrv_child_get_parent_desc,
943 .inherit_options = bdrv_inherited_fmt_options,
944 .drained_begin = bdrv_child_cb_drained_begin,
945 .drained_poll = bdrv_child_cb_drained_poll,
946 .drained_end = bdrv_child_cb_drained_end,
947 .attach = bdrv_child_cb_attach,
948 .detach = bdrv_child_cb_detach,
949 .inactivate = bdrv_child_cb_inactivate,
952 static void bdrv_backing_attach(BdrvChild *c)
954 BlockDriverState *parent = c->opaque;
955 BlockDriverState *backing_hd = c->bs;
957 assert(!parent->backing_blocker);
958 error_setg(&parent->backing_blocker,
959 "node is used as backing hd of '%s'",
960 bdrv_get_device_or_node_name(parent));
962 parent->open_flags &= ~BDRV_O_NO_BACKING;
963 pstrcpy(parent->backing_file, sizeof(parent->backing_file),
964 backing_hd->filename);
965 pstrcpy(parent->backing_format, sizeof(parent->backing_format),
966 backing_hd->drv ? backing_hd->drv->format_name : "");
968 bdrv_op_block_all(backing_hd, parent->backing_blocker);
969 /* Otherwise we won't be able to commit or stream */
970 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
971 parent->backing_blocker);
972 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
973 parent->backing_blocker);
975 * We do backup in 3 ways:
977 * The target bs is new opened, and the source is top BDS
979 * Both the source and the target are top BDSes.
980 * 3. internal backup(used for block replication)
981 * Both the source and the target are backing file
983 * In case 1 and 2, neither the source nor the target is the backing file.
984 * In case 3, we will block the top BDS, so there is only one block job
985 * for the top BDS and its backing chain.
987 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
988 parent->backing_blocker);
989 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
990 parent->backing_blocker);
992 bdrv_child_cb_attach(c);
995 static void bdrv_backing_detach(BdrvChild *c)
997 BlockDriverState *parent = c->opaque;
999 assert(parent->backing_blocker);
1000 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1001 error_free(parent->backing_blocker);
1002 parent->backing_blocker = NULL;
1004 bdrv_child_cb_detach(c);
1008 * Returns the options and flags that bs->backing should get, based on the
1009 * given options and flags for the parent BDS
1011 static void bdrv_backing_options(int *child_flags, QDict *child_options,
1012 int parent_flags, QDict *parent_options)
1014 int flags = parent_flags;
1016 /* The cache mode is inherited unmodified for backing files; except WCE,
1017 * which is only applied on the top level (BlockBackend) */
1018 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1019 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1020 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1022 /* backing files always opened read-only */
1023 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1024 flags &= ~BDRV_O_COPY_ON_READ;
1026 /* snapshot=on is handled on the top layer */
1027 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
1029 *child_flags = flags;
1032 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1033 const char *filename, Error **errp)
1035 BlockDriverState *parent = c->opaque;
1036 int orig_flags = bdrv_get_flags(parent);
1039 if (!(orig_flags & BDRV_O_RDWR)) {
1040 ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp);
1046 ret = bdrv_change_backing_file(parent, filename,
1047 base->drv ? base->drv->format_name : "");
1049 error_setg_errno(errp, -ret, "Could not update backing file link");
1052 if (!(orig_flags & BDRV_O_RDWR)) {
1053 bdrv_reopen(parent, orig_flags, NULL);
1059 const BdrvChildRole child_backing = {
1060 .parent_is_bds = true,
1061 .get_parent_desc = bdrv_child_get_parent_desc,
1062 .attach = bdrv_backing_attach,
1063 .detach = bdrv_backing_detach,
1064 .inherit_options = bdrv_backing_options,
1065 .drained_begin = bdrv_child_cb_drained_begin,
1066 .drained_poll = bdrv_child_cb_drained_poll,
1067 .drained_end = bdrv_child_cb_drained_end,
1068 .inactivate = bdrv_child_cb_inactivate,
1069 .update_filename = bdrv_backing_update_filename,
1072 static int bdrv_open_flags(BlockDriverState *bs, int flags)
1074 int open_flags = flags;
1077 * Clear flags that are internal to the block layer before opening the
1080 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1083 * Snapshots should be writable.
1085 if (flags & BDRV_O_TEMPORARY) {
1086 open_flags |= BDRV_O_RDWR;
1092 static void update_flags_from_options(int *flags, QemuOpts *opts)
1094 *flags &= ~BDRV_O_CACHE_MASK;
1096 assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
1097 if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1098 *flags |= BDRV_O_NO_FLUSH;
1101 assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
1102 if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1103 *flags |= BDRV_O_NOCACHE;
1106 *flags &= ~BDRV_O_RDWR;
1108 assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
1109 if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) {
1110 *flags |= BDRV_O_RDWR;
1115 static void update_options_from_flags(QDict *options, int flags)
1117 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1118 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1120 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
1121 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1122 flags & BDRV_O_NO_FLUSH);
1124 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1125 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1129 static void bdrv_assign_node_name(BlockDriverState *bs,
1130 const char *node_name,
1133 char *gen_node_name = NULL;
1136 node_name = gen_node_name = id_generate(ID_BLOCK);
1137 } else if (!id_wellformed(node_name)) {
1139 * Check for empty string or invalid characters, but not if it is
1140 * generated (generated names use characters not available to the user)
1142 error_setg(errp, "Invalid node name");
1146 /* takes care of avoiding namespaces collisions */
1147 if (blk_by_name(node_name)) {
1148 error_setg(errp, "node-name=%s is conflicting with a device id",
1153 /* takes care of avoiding duplicates node names */
1154 if (bdrv_find_node(node_name)) {
1155 error_setg(errp, "Duplicate node name");
1159 /* copy node name into the bs and insert it into the graph list */
1160 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1161 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
1163 g_free(gen_node_name);
1166 static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1167 const char *node_name, QDict *options,
1168 int open_flags, Error **errp)
1170 Error *local_err = NULL;
1173 bdrv_assign_node_name(bs, node_name, &local_err);
1175 error_propagate(errp, local_err);
1180 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1181 bs->opaque = g_malloc0(drv->instance_size);
1183 if (drv->bdrv_file_open) {
1184 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1185 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1186 } else if (drv->bdrv_open) {
1187 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1194 error_propagate(errp, local_err);
1195 } else if (bs->filename[0]) {
1196 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1198 error_setg_errno(errp, -ret, "Could not open image");
1203 ret = refresh_total_sectors(bs, bs->total_sectors);
1205 error_setg_errno(errp, -ret, "Could not refresh total sector count");
1209 bdrv_refresh_limits(bs, &local_err);
1211 error_propagate(errp, local_err);
1215 assert(bdrv_opt_mem_align(bs) != 0);
1216 assert(bdrv_min_mem_align(bs) != 0);
1217 assert(is_power_of_2(bs->bl.request_alignment));
1219 for (i = 0; i < bs->quiesce_counter; i++) {
1220 if (drv->bdrv_co_drain_begin) {
1221 drv->bdrv_co_drain_begin(bs);
1228 if (bs->file != NULL) {
1229 bdrv_unref_child(bs, bs->file);
1237 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1238 int flags, Error **errp)
1240 BlockDriverState *bs;
1244 bs->open_flags = flags;
1245 bs->explicit_options = qdict_new();
1246 bs->options = qdict_new();
1249 update_options_from_flags(bs->options, flags);
1251 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1253 qobject_unref(bs->explicit_options);
1254 bs->explicit_options = NULL;
1255 qobject_unref(bs->options);
1264 QemuOptsList bdrv_runtime_opts = {
1265 .name = "bdrv_common",
1266 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1269 .name = "node-name",
1270 .type = QEMU_OPT_STRING,
1271 .help = "Node name of the block device node",
1275 .type = QEMU_OPT_STRING,
1276 .help = "Block driver to use for the node",
1279 .name = BDRV_OPT_CACHE_DIRECT,
1280 .type = QEMU_OPT_BOOL,
1281 .help = "Bypass software writeback cache on the host",
1284 .name = BDRV_OPT_CACHE_NO_FLUSH,
1285 .type = QEMU_OPT_BOOL,
1286 .help = "Ignore flush requests",
1289 .name = BDRV_OPT_READ_ONLY,
1290 .type = QEMU_OPT_BOOL,
1291 .help = "Node is opened in read-only mode",
1294 .name = "detect-zeroes",
1295 .type = QEMU_OPT_STRING,
1296 .help = "try to optimize zero writes (off, on, unmap)",
1300 .type = QEMU_OPT_STRING,
1301 .help = "discard operation (ignore/off, unmap/on)",
1304 .name = BDRV_OPT_FORCE_SHARE,
1305 .type = QEMU_OPT_BOOL,
1306 .help = "always accept other writers (default: off)",
1308 { /* end of list */ }
1313 * Common part for opening disk images and files
1315 * Removes all processed options from *options.
1317 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1318 QDict *options, Error **errp)
1320 int ret, open_flags;
1321 const char *filename;
1322 const char *driver_name = NULL;
1323 const char *node_name = NULL;
1324 const char *discard;
1325 const char *detect_zeroes;
1328 Error *local_err = NULL;
1330 assert(bs->file == NULL);
1331 assert(options != NULL && bs->options != options);
1333 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1334 qemu_opts_absorb_qdict(opts, options, &local_err);
1336 error_propagate(errp, local_err);
1341 update_flags_from_options(&bs->open_flags, opts);
1343 driver_name = qemu_opt_get(opts, "driver");
1344 drv = bdrv_find_format(driver_name);
1345 assert(drv != NULL);
1347 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1349 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1351 BDRV_OPT_FORCE_SHARE
1352 "=on can only be used with read-only images");
1358 filename = blk_bs(file)->filename;
1361 * Caution: while qdict_get_try_str() is fine, getting
1362 * non-string types would require more care. When @options
1363 * come from -blockdev or blockdev_add, its members are typed
1364 * according to the QAPI schema, but when they come from
1365 * -drive, they're all QString.
1367 filename = qdict_get_try_str(options, "filename");
1370 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1371 error_setg(errp, "The '%s' block driver requires a file name",
1377 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1380 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1382 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
1384 !bs->read_only && bdrv_is_whitelisted(drv, true)
1385 ? "Driver '%s' can only be used for read-only devices"
1386 : "Driver '%s' is not whitelisted",
1392 /* bdrv_new() and bdrv_close() make it so */
1393 assert(atomic_read(&bs->copy_on_read) == 0);
1395 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1396 if (!bs->read_only) {
1397 bdrv_enable_copy_on_read(bs);
1399 error_setg(errp, "Can't use copy-on-read on read-only device");
1405 discard = qemu_opt_get(opts, "discard");
1406 if (discard != NULL) {
1407 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1408 error_setg(errp, "Invalid discard option");
1414 detect_zeroes = qemu_opt_get(opts, "detect-zeroes");
1415 if (detect_zeroes) {
1416 BlockdevDetectZeroesOptions value =
1417 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
1419 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
1422 error_propagate(errp, local_err);
1427 if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1428 !(bs->open_flags & BDRV_O_UNMAP))
1430 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1431 "without setting discard operation to unmap");
1436 bs->detect_zeroes = value;
1439 if (filename != NULL) {
1440 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1442 bs->filename[0] = '\0';
1444 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1446 /* Open the image, either directly or using a protocol */
1447 open_flags = bdrv_open_flags(bs, bs->open_flags);
1448 node_name = qemu_opt_get(opts, "node-name");
1450 assert(!drv->bdrv_file_open || file == NULL);
1451 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1456 qemu_opts_del(opts);
1460 qemu_opts_del(opts);
1464 static QDict *parse_json_filename(const char *filename, Error **errp)
1466 QObject *options_obj;
1470 ret = strstart(filename, "json:", &filename);
1473 options_obj = qobject_from_json(filename, errp);
1475 /* Work around qobject_from_json() lossage TODO fix that */
1476 if (errp && !*errp) {
1477 error_setg(errp, "Could not parse the JSON options");
1480 error_prepend(errp, "Could not parse the JSON options: ");
1484 options = qobject_to(QDict, options_obj);
1486 qobject_unref(options_obj);
1487 error_setg(errp, "Invalid JSON object given");
1491 qdict_flatten(options);
1496 static void parse_json_protocol(QDict *options, const char **pfilename,
1499 QDict *json_options;
1500 Error *local_err = NULL;
1502 /* Parse json: pseudo-protocol */
1503 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1507 json_options = parse_json_filename(*pfilename, &local_err);
1509 error_propagate(errp, local_err);
1513 /* Options given in the filename have lower priority than options
1514 * specified directly */
1515 qdict_join(options, json_options, false);
1516 qobject_unref(json_options);
1521 * Fills in default options for opening images and converts the legacy
1522 * filename/flags pair to option QDict entries.
1523 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1524 * block driver has been specified explicitly.
1526 static int bdrv_fill_options(QDict **options, const char *filename,
1527 int *flags, Error **errp)
1529 const char *drvname;
1530 bool protocol = *flags & BDRV_O_PROTOCOL;
1531 bool parse_filename = false;
1532 BlockDriver *drv = NULL;
1533 Error *local_err = NULL;
1536 * Caution: while qdict_get_try_str() is fine, getting non-string
1537 * types would require more care. When @options come from
1538 * -blockdev or blockdev_add, its members are typed according to
1539 * the QAPI schema, but when they come from -drive, they're all
1542 drvname = qdict_get_try_str(*options, "driver");
1544 drv = bdrv_find_format(drvname);
1546 error_setg(errp, "Unknown driver '%s'", drvname);
1549 /* If the user has explicitly specified the driver, this choice should
1550 * override the BDRV_O_PROTOCOL flag */
1551 protocol = drv->bdrv_file_open;
1555 *flags |= BDRV_O_PROTOCOL;
1557 *flags &= ~BDRV_O_PROTOCOL;
1560 /* Translate cache options from flags into options */
1561 update_options_from_flags(*options, *flags);
1563 /* Fetch the file name from the options QDict if necessary */
1564 if (protocol && filename) {
1565 if (!qdict_haskey(*options, "filename")) {
1566 qdict_put_str(*options, "filename", filename);
1567 parse_filename = true;
1569 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1575 /* Find the right block driver */
1576 /* See cautionary note on accessing @options above */
1577 filename = qdict_get_try_str(*options, "filename");
1579 if (!drvname && protocol) {
1581 drv = bdrv_find_protocol(filename, parse_filename, errp);
1586 drvname = drv->format_name;
1587 qdict_put_str(*options, "driver", drvname);
1589 error_setg(errp, "Must specify either driver or file");
1594 assert(drv || !protocol);
1596 /* Driver-specific filename parsing */
1597 if (drv && drv->bdrv_parse_filename && parse_filename) {
1598 drv->bdrv_parse_filename(filename, *options, &local_err);
1600 error_propagate(errp, local_err);
1604 if (!drv->bdrv_needs_filename) {
1605 qdict_del(*options, "filename");
1612 static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1613 uint64_t perm, uint64_t shared,
1614 GSList *ignore_children, Error **errp);
1615 static void bdrv_child_abort_perm_update(BdrvChild *c);
1616 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1618 typedef struct BlockReopenQueueEntry {
1620 BDRVReopenState state;
1621 QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1622 } BlockReopenQueueEntry;
1625 * Return the flags that @bs will have after the reopens in @q have
1626 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1627 * return the current flags.
1629 static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1631 BlockReopenQueueEntry *entry;
1634 QSIMPLEQ_FOREACH(entry, q, entry) {
1635 if (entry->state.bs == bs) {
1636 return entry->state.flags;
1641 return bs->open_flags;
1644 /* Returns whether the image file can be written to after the reopen queue @q
1645 * has been successfully applied, or right now if @q is NULL. */
1646 static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1647 BlockReopenQueue *q)
1649 int flags = bdrv_reopen_get_flags(q, bs);
1651 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1655 * Return whether the BDS can be written to. This is not necessarily
1656 * the same as !bdrv_is_read_only(bs), as inactivated images may not
1657 * be written to but do not count as read-only images.
1659 bool bdrv_is_writable(BlockDriverState *bs)
1661 return bdrv_is_writable_after_reopen(bs, NULL);
1664 static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
1665 BdrvChild *c, const BdrvChildRole *role,
1666 BlockReopenQueue *reopen_queue,
1667 uint64_t parent_perm, uint64_t parent_shared,
1668 uint64_t *nperm, uint64_t *nshared)
1670 if (bs->drv && bs->drv->bdrv_child_perm) {
1671 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
1672 parent_perm, parent_shared,
1675 /* TODO Take force_share from reopen_queue */
1676 if (child_bs && child_bs->force_share) {
1677 *nshared = BLK_PERM_ALL;
1682 * Check whether permissions on this node can be changed in a way that
1683 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1684 * permissions of all its parents. This involves checking whether all necessary
1685 * permission changes to child nodes can be performed.
1687 * A call to this function must always be followed by a call to bdrv_set_perm()
1688 * or bdrv_abort_perm_update().
1690 static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
1691 uint64_t cumulative_perms,
1692 uint64_t cumulative_shared_perms,
1693 GSList *ignore_children, Error **errp)
1695 BlockDriver *drv = bs->drv;
1699 /* Write permissions never work with read-only images */
1700 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
1701 !bdrv_is_writable_after_reopen(bs, q))
1703 error_setg(errp, "Block node is read-only");
1707 /* Check this node */
1712 if (drv->bdrv_check_perm) {
1713 return drv->bdrv_check_perm(bs, cumulative_perms,
1714 cumulative_shared_perms, errp);
1717 /* Drivers that never have children can omit .bdrv_child_perm() */
1718 if (!drv->bdrv_child_perm) {
1719 assert(QLIST_EMPTY(&bs->children));
1723 /* Check all children */
1724 QLIST_FOREACH(c, &bs->children, next) {
1725 uint64_t cur_perm, cur_shared;
1726 bdrv_child_perm(bs, c->bs, c, c->role, q,
1727 cumulative_perms, cumulative_shared_perms,
1728 &cur_perm, &cur_shared);
1729 ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
1730 ignore_children, errp);
1740 * Notifies drivers that after a previous bdrv_check_perm() call, the
1741 * permission update is not performed and any preparations made for it (e.g.
1742 * taken file locks) need to be undone.
1744 * This function recursively notifies all child nodes.
1746 static void bdrv_abort_perm_update(BlockDriverState *bs)
1748 BlockDriver *drv = bs->drv;
1755 if (drv->bdrv_abort_perm_update) {
1756 drv->bdrv_abort_perm_update(bs);
1759 QLIST_FOREACH(c, &bs->children, next) {
1760 bdrv_child_abort_perm_update(c);
1764 static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
1765 uint64_t cumulative_shared_perms)
1767 BlockDriver *drv = bs->drv;
1774 /* Update this node */
1775 if (drv->bdrv_set_perm) {
1776 drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
1779 /* Drivers that never have children can omit .bdrv_child_perm() */
1780 if (!drv->bdrv_child_perm) {
1781 assert(QLIST_EMPTY(&bs->children));
1785 /* Update all children */
1786 QLIST_FOREACH(c, &bs->children, next) {
1787 uint64_t cur_perm, cur_shared;
1788 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
1789 cumulative_perms, cumulative_shared_perms,
1790 &cur_perm, &cur_shared);
1791 bdrv_child_set_perm(c, cur_perm, cur_shared);
1795 static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
1796 uint64_t *shared_perm)
1799 uint64_t cumulative_perms = 0;
1800 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
1802 QLIST_FOREACH(c, &bs->parents, next_parent) {
1803 cumulative_perms |= c->perm;
1804 cumulative_shared_perms &= c->shared_perm;
1807 *perm = cumulative_perms;
1808 *shared_perm = cumulative_shared_perms;
1811 static char *bdrv_child_user_desc(BdrvChild *c)
1813 if (c->role->get_parent_desc) {
1814 return c->role->get_parent_desc(c);
1817 return g_strdup("another user");
1820 char *bdrv_perm_names(uint64_t perm)
1826 { BLK_PERM_CONSISTENT_READ, "consistent read" },
1827 { BLK_PERM_WRITE, "write" },
1828 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1829 { BLK_PERM_RESIZE, "resize" },
1830 { BLK_PERM_GRAPH_MOD, "change children" },
1834 char *result = g_strdup("");
1835 struct perm_name *p;
1837 for (p = permissions; p->name; p++) {
1838 if (perm & p->perm) {
1840 result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1849 * Checks whether a new reference to @bs can be added if the new user requires
1850 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
1851 * set, the BdrvChild objects in this list are ignored in the calculations;
1852 * this allows checking permission updates for an existing reference.
1854 * Needs to be followed by a call to either bdrv_set_perm() or
1855 * bdrv_abort_perm_update(). */
1856 static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
1857 uint64_t new_used_perm,
1858 uint64_t new_shared_perm,
1859 GSList *ignore_children, Error **errp)
1862 uint64_t cumulative_perms = new_used_perm;
1863 uint64_t cumulative_shared_perms = new_shared_perm;
1865 /* There is no reason why anyone couldn't tolerate write_unchanged */
1866 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1868 QLIST_FOREACH(c, &bs->parents, next_parent) {
1869 if (g_slist_find(ignore_children, c)) {
1873 if ((new_used_perm & c->shared_perm) != new_used_perm) {
1874 char *user = bdrv_child_user_desc(c);
1875 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1876 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1878 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1884 if ((c->perm & new_shared_perm) != c->perm) {
1885 char *user = bdrv_child_user_desc(c);
1886 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1887 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1889 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1895 cumulative_perms |= c->perm;
1896 cumulative_shared_perms &= c->shared_perm;
1899 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
1900 ignore_children, errp);
1903 /* Needs to be followed by a call to either bdrv_child_set_perm() or
1904 * bdrv_child_abort_perm_update(). */
1905 static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1906 uint64_t perm, uint64_t shared,
1907 GSList *ignore_children, Error **errp)
1911 ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
1912 ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
1913 g_slist_free(ignore_children);
1918 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
1920 uint64_t cumulative_perms, cumulative_shared_perms;
1923 c->shared_perm = shared;
1925 bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
1926 &cumulative_shared_perms);
1927 bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
1930 static void bdrv_child_abort_perm_update(BdrvChild *c)
1932 bdrv_abort_perm_update(c->bs);
1935 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
1940 ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
1942 bdrv_child_abort_perm_update(c);
1946 bdrv_child_set_perm(c, perm, shared);
1951 void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
1952 const BdrvChildRole *role,
1953 BlockReopenQueue *reopen_queue,
1954 uint64_t perm, uint64_t shared,
1955 uint64_t *nperm, uint64_t *nshared)
1958 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
1959 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
1963 *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
1964 (c->perm & DEFAULT_PERM_UNCHANGED);
1965 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
1966 (c->shared_perm & DEFAULT_PERM_UNCHANGED);
1969 void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
1970 const BdrvChildRole *role,
1971 BlockReopenQueue *reopen_queue,
1972 uint64_t perm, uint64_t shared,
1973 uint64_t *nperm, uint64_t *nshared)
1975 bool backing = (role == &child_backing);
1976 assert(role == &child_backing || role == &child_file);
1979 int flags = bdrv_reopen_get_flags(reopen_queue, bs);
1981 /* Apart from the modifications below, the same permissions are
1982 * forwarded and left alone as for filters */
1983 bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
1986 /* Format drivers may touch metadata even if the guest doesn't write */
1987 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
1988 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
1991 /* bs->file always needs to be consistent because of the metadata. We
1992 * can never allow other users to resize or write to it. */
1993 if (!(flags & BDRV_O_NO_IO)) {
1994 perm |= BLK_PERM_CONSISTENT_READ;
1996 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
1998 /* We want consistent read from backing files if the parent needs it.
1999 * No other operations are performed on backing files. */
2000 perm &= BLK_PERM_CONSISTENT_READ;
2002 /* If the parent can deal with changing data, we're okay with a
2003 * writable and resizable backing file. */
2004 /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
2005 if (shared & BLK_PERM_WRITE) {
2006 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2011 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2012 BLK_PERM_WRITE_UNCHANGED;
2015 if (bs->open_flags & BDRV_O_INACTIVE) {
2016 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2023 static void bdrv_replace_child_noperm(BdrvChild *child,
2024 BlockDriverState *new_bs)
2026 BlockDriverState *old_bs = child->bs;
2029 if (old_bs && new_bs) {
2030 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2033 /* Detach first so that the recursive drain sections coming from @child
2034 * are already gone and we only end the drain sections that came from
2036 if (child->role->detach) {
2037 child->role->detach(child);
2039 if (old_bs->quiesce_counter && child->role->drained_end) {
2040 int num = old_bs->quiesce_counter;
2041 if (child->role->parent_is_bds) {
2042 num -= bdrv_drain_all_count;
2045 for (i = 0; i < num; i++) {
2046 child->role->drained_end(child);
2049 QLIST_REMOVE(child, next_parent);
2055 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2056 if (new_bs->quiesce_counter && child->role->drained_begin) {
2057 int num = new_bs->quiesce_counter;
2058 if (child->role->parent_is_bds) {
2059 num -= bdrv_drain_all_count;
2062 for (i = 0; i < num; i++) {
2063 child->role->drained_begin(child);
2067 /* Attach only after starting new drained sections, so that recursive
2068 * drain sections coming from @child don't get an extra .drained_begin
2070 if (child->role->attach) {
2071 child->role->attach(child);
2077 * Updates @child to change its reference to point to @new_bs, including
2078 * checking and applying the necessary permisson updates both to the old node
2081 * NULL is passed as @new_bs for removing the reference before freeing @child.
2083 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2084 * function uses bdrv_set_perm() to update the permissions according to the new
2085 * reference that @new_bs gets.
2087 static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
2089 BlockDriverState *old_bs = child->bs;
2090 uint64_t perm, shared_perm;
2092 bdrv_replace_child_noperm(child, new_bs);
2095 /* Update permissions for old node. This is guaranteed to succeed
2096 * because we're just taking a parent away, so we're loosening
2098 bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
2099 bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
2100 bdrv_set_perm(old_bs, perm, shared_perm);
2104 bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2105 bdrv_set_perm(new_bs, perm, shared_perm);
2109 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2110 const char *child_name,
2111 const BdrvChildRole *child_role,
2112 uint64_t perm, uint64_t shared_perm,
2113 void *opaque, Error **errp)
2118 ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
2120 bdrv_abort_perm_update(child_bs);
2124 child = g_new(BdrvChild, 1);
2125 *child = (BdrvChild) {
2127 .name = g_strdup(child_name),
2130 .shared_perm = shared_perm,
2134 /* This performs the matching bdrv_set_perm() for the above check. */
2135 bdrv_replace_child(child, child_bs);
2140 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2141 BlockDriverState *child_bs,
2142 const char *child_name,
2143 const BdrvChildRole *child_role,
2147 uint64_t perm, shared_perm;
2149 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2151 assert(parent_bs->drv);
2152 assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
2153 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2154 perm, shared_perm, &perm, &shared_perm);
2156 child = bdrv_root_attach_child(child_bs, child_name, child_role,
2157 perm, shared_perm, parent_bs, errp);
2158 if (child == NULL) {
2162 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2166 static void bdrv_detach_child(BdrvChild *child)
2168 if (child->next.le_prev) {
2169 QLIST_REMOVE(child, next);
2170 child->next.le_prev = NULL;
2173 bdrv_replace_child(child, NULL);
2175 g_free(child->name);
2179 void bdrv_root_unref_child(BdrvChild *child)
2181 BlockDriverState *child_bs;
2183 child_bs = child->bs;
2184 bdrv_detach_child(child);
2185 bdrv_unref(child_bs);
2188 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2190 if (child == NULL) {
2194 if (child->bs->inherits_from == parent) {
2197 /* Remove inherits_from only when the last reference between parent and
2198 * child->bs goes away. */
2199 QLIST_FOREACH(c, &parent->children, next) {
2200 if (c != child && c->bs == child->bs) {
2205 child->bs->inherits_from = NULL;
2209 bdrv_root_unref_child(child);
2213 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2216 QLIST_FOREACH(c, &bs->parents, next_parent) {
2217 if (c->role->change_media) {
2218 c->role->change_media(c, load);
2224 * Sets the backing file link of a BDS. A new reference is created; callers
2225 * which don't need their own reference any more must call bdrv_unref().
2227 void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2231 bdrv_ref(backing_hd);
2235 bdrv_unref_child(bs, bs->backing);
2243 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
2246 bdrv_unref(backing_hd);
2249 bdrv_refresh_filename(bs);
2252 bdrv_refresh_limits(bs, NULL);
2256 * Opens the backing file for a BlockDriverState if not yet open
2258 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2259 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2260 * itself, all options starting with "${bdref_key}." are considered part of the
2263 * TODO Can this be unified with bdrv_open_image()?
2265 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2266 const char *bdref_key, Error **errp)
2268 char *backing_filename = g_malloc0(PATH_MAX);
2269 char *bdref_key_dot;
2270 const char *reference = NULL;
2272 BlockDriverState *backing_hd;
2274 QDict *tmp_parent_options = NULL;
2275 Error *local_err = NULL;
2277 if (bs->backing != NULL) {
2281 /* NULL means an empty set of options */
2282 if (parent_options == NULL) {
2283 tmp_parent_options = qdict_new();
2284 parent_options = tmp_parent_options;
2287 bs->open_flags &= ~BDRV_O_NO_BACKING;
2289 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2290 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2291 g_free(bdref_key_dot);
2294 * Caution: while qdict_get_try_str() is fine, getting non-string
2295 * types would require more care. When @parent_options come from
2296 * -blockdev or blockdev_add, its members are typed according to
2297 * the QAPI schema, but when they come from -drive, they're all
2300 reference = qdict_get_try_str(parent_options, bdref_key);
2301 if (reference || qdict_haskey(options, "file.filename")) {
2302 backing_filename[0] = '\0';
2303 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
2304 qobject_unref(options);
2307 bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
2311 error_propagate(errp, local_err);
2312 qobject_unref(options);
2317 if (!bs->drv || !bs->drv->supports_backing) {
2319 error_setg(errp, "Driver doesn't support backing files");
2320 qobject_unref(options);
2325 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
2326 qdict_put_str(options, "driver", bs->backing_format);
2329 backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2330 reference, options, 0, bs, &child_backing,
2333 bs->open_flags |= BDRV_O_NO_BACKING;
2334 error_prepend(errp, "Could not open backing file: ");
2338 bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
2340 /* Hook up the backing file link; drop our reference, bs owns the
2341 * backing_hd reference now */
2342 bdrv_set_backing_hd(bs, backing_hd, &local_err);
2343 bdrv_unref(backing_hd);
2345 error_propagate(errp, local_err);
2350 qdict_del(parent_options, bdref_key);
2353 g_free(backing_filename);
2354 qobject_unref(tmp_parent_options);
2358 static BlockDriverState *
2359 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
2360 BlockDriverState *parent, const BdrvChildRole *child_role,
2361 bool allow_none, Error **errp)
2363 BlockDriverState *bs = NULL;
2364 QDict *image_options;
2365 char *bdref_key_dot;
2366 const char *reference;
2368 assert(child_role != NULL);
2370 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2371 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2372 g_free(bdref_key_dot);
2375 * Caution: while qdict_get_try_str() is fine, getting non-string
2376 * types would require more care. When @options come from
2377 * -blockdev or blockdev_add, its members are typed according to
2378 * the QAPI schema, but when they come from -drive, they're all
2381 reference = qdict_get_try_str(options, bdref_key);
2382 if (!filename && !reference && !qdict_size(image_options)) {
2384 error_setg(errp, "A block device must be specified for \"%s\"",
2387 qobject_unref(image_options);
2391 bs = bdrv_open_inherit(filename, reference, image_options, 0,
2392 parent, child_role, errp);
2398 qdict_del(options, bdref_key);
2403 * Opens a disk image whose options are given as BlockdevRef in another block
2406 * If allow_none is true, no image will be opened if filename is false and no
2407 * BlockdevRef is given. NULL will be returned, but errp remains unset.
2409 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
2410 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2411 * itself, all options starting with "${bdref_key}." are considered part of the
2414 * The BlockdevRef will be removed from the options QDict.
2416 BdrvChild *bdrv_open_child(const char *filename,
2417 QDict *options, const char *bdref_key,
2418 BlockDriverState *parent,
2419 const BdrvChildRole *child_role,
2420 bool allow_none, Error **errp)
2423 BlockDriverState *bs;
2425 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
2431 c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
2440 /* TODO Future callers may need to specify parent/child_role in order for
2441 * option inheritance to work. Existing callers use it for the root node. */
2442 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2444 BlockDriverState *bs = NULL;
2445 Error *local_err = NULL;
2446 QObject *obj = NULL;
2447 QDict *qdict = NULL;
2448 const char *reference = NULL;
2451 if (ref->type == QTYPE_QSTRING) {
2452 reference = ref->u.reference;
2454 BlockdevOptions *options = &ref->u.definition;
2455 assert(ref->type == QTYPE_QDICT);
2457 v = qobject_output_visitor_new(&obj);
2458 visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2460 error_propagate(errp, local_err);
2463 visit_complete(v, &obj);
2465 qdict = qobject_to(QDict, obj);
2466 qdict_flatten(qdict);
2468 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
2469 * compatibility with other callers) rather than what we want as the
2470 * real defaults. Apply the defaults here instead. */
2471 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
2472 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
2473 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
2476 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
2485 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
2487 QDict *snapshot_options,
2490 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
2491 char *tmp_filename = g_malloc0(PATH_MAX + 1);
2493 QemuOpts *opts = NULL;
2494 BlockDriverState *bs_snapshot = NULL;
2495 Error *local_err = NULL;
2498 /* if snapshot, we create a temporary backing file and open it
2499 instead of opening 'filename' directly */
2501 /* Get the required size from the image */
2502 total_size = bdrv_getlength(bs);
2503 if (total_size < 0) {
2504 error_setg_errno(errp, -total_size, "Could not get image size");
2508 /* Create the temporary image */
2509 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
2511 error_setg_errno(errp, -ret, "Could not get temporary filename");
2515 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
2517 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
2518 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
2519 qemu_opts_del(opts);
2521 error_prepend(errp, "Could not create temporary overlay '%s': ",
2526 /* Prepare options QDict for the temporary file */
2527 qdict_put_str(snapshot_options, "file.driver", "file");
2528 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
2529 qdict_put_str(snapshot_options, "driver", "qcow2");
2531 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
2532 snapshot_options = NULL;
2537 /* bdrv_append() consumes a strong reference to bs_snapshot
2538 * (i.e. it will call bdrv_unref() on it) even on error, so in
2539 * order to be able to return one, we have to increase
2540 * bs_snapshot's refcount here */
2541 bdrv_ref(bs_snapshot);
2542 bdrv_append(bs_snapshot, bs, &local_err);
2544 error_propagate(errp, local_err);
2550 qobject_unref(snapshot_options);
2551 g_free(tmp_filename);
2556 * Opens a disk image (raw, qcow2, vmdk, ...)
2558 * options is a QDict of options to pass to the block drivers, or NULL for an
2559 * empty set of options. The reference to the QDict belongs to the block layer
2560 * after the call (even on failure), so if the caller intends to reuse the
2561 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
2563 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2564 * If it is not NULL, the referenced BDS will be reused.
2566 * The reference parameter may be used to specify an existing block device which
2567 * should be opened. If specified, neither options nor a filename may be given,
2568 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
2570 static BlockDriverState *bdrv_open_inherit(const char *filename,
2571 const char *reference,
2572 QDict *options, int flags,
2573 BlockDriverState *parent,
2574 const BdrvChildRole *child_role,
2578 BlockBackend *file = NULL;
2579 BlockDriverState *bs;
2580 BlockDriver *drv = NULL;
2581 const char *drvname;
2582 const char *backing;
2583 Error *local_err = NULL;
2584 QDict *snapshot_options = NULL;
2585 int snapshot_flags = 0;
2587 assert(!child_role || !flags);
2588 assert(!child_role == !parent);
2591 bool options_non_empty = options ? qdict_size(options) : false;
2592 qobject_unref(options);
2594 if (filename || options_non_empty) {
2595 error_setg(errp, "Cannot reference an existing block device with "
2596 "additional options or a new filename");
2600 bs = bdrv_lookup_bs(reference, reference, errp);
2611 /* NULL means an empty set of options */
2612 if (options == NULL) {
2613 options = qdict_new();
2616 /* json: syntax counts as explicit options, as if in the QDict */
2617 parse_json_protocol(options, &filename, &local_err);
2622 bs->explicit_options = qdict_clone_shallow(options);
2625 bs->inherits_from = parent;
2626 child_role->inherit_options(&flags, options,
2627 parent->open_flags, parent->options);
2630 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
2636 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2637 * Caution: getting a boolean member of @options requires care.
2638 * When @options come from -blockdev or blockdev_add, members are
2639 * typed according to the QAPI schema, but when they come from
2640 * -drive, they're all QString.
2642 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2643 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2644 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2646 flags &= ~BDRV_O_RDWR;
2649 if (flags & BDRV_O_SNAPSHOT) {
2650 snapshot_options = qdict_new();
2651 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
2653 /* Let bdrv_backing_options() override "read-only" */
2654 qdict_del(options, BDRV_OPT_READ_ONLY);
2655 bdrv_backing_options(&flags, options, flags, options);
2658 bs->open_flags = flags;
2659 bs->options = options;
2660 options = qdict_clone_shallow(options);
2662 /* Find the right image format driver */
2663 /* See cautionary note on accessing @options above */
2664 drvname = qdict_get_try_str(options, "driver");
2666 drv = bdrv_find_format(drvname);
2668 error_setg(errp, "Unknown driver: '%s'", drvname);
2673 assert(drvname || !(flags & BDRV_O_PROTOCOL));
2675 /* See cautionary note on accessing @options above */
2676 backing = qdict_get_try_str(options, "backing");
2677 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
2678 (backing && *backing == '\0'))
2681 warn_report("Use of \"backing\": \"\" is deprecated; "
2682 "use \"backing\": null instead");
2684 flags |= BDRV_O_NO_BACKING;
2685 qdict_del(options, "backing");
2688 /* Open image file without format layer. This BlockBackend is only used for
2689 * probing, the block drivers will do their own bdrv_open_child() for the
2690 * same BDS, which is why we put the node name back into options. */
2691 if ((flags & BDRV_O_PROTOCOL) == 0) {
2692 BlockDriverState *file_bs;
2694 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
2695 &child_file, true, &local_err);
2699 if (file_bs != NULL) {
2700 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
2701 * looking at the header to guess the image format. This works even
2702 * in cases where a guest would not see a consistent state. */
2703 file = blk_new(0, BLK_PERM_ALL);
2704 blk_insert_bs(file, file_bs, &local_err);
2705 bdrv_unref(file_bs);
2710 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
2714 /* Image format probing */
2717 ret = find_image_format(file, filename, &drv, &local_err);
2722 * This option update would logically belong in bdrv_fill_options(),
2723 * but we first need to open bs->file for the probing to work, while
2724 * opening bs->file already requires the (mostly) final set of options
2725 * so that cache mode etc. can be inherited.
2727 * Adding the driver later is somewhat ugly, but it's not an option
2728 * that would ever be inherited, so it's correct. We just need to make
2729 * sure to update both bs->options (which has the full effective
2730 * options for bs) and options (which has file.* already removed).
2732 qdict_put_str(bs->options, "driver", drv->format_name);
2733 qdict_put_str(options, "driver", drv->format_name);
2735 error_setg(errp, "Must specify either driver or file");
2739 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
2740 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
2741 /* file must be NULL if a protocol BDS is about to be created
2742 * (the inverse results in an error message from bdrv_open_common()) */
2743 assert(!(flags & BDRV_O_PROTOCOL) || !file);
2745 /* Open the image */
2746 ret = bdrv_open_common(bs, file, options, &local_err);
2756 /* If there is a backing file, use it */
2757 if ((flags & BDRV_O_NO_BACKING) == 0) {
2758 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
2760 goto close_and_fail;
2764 bdrv_refresh_filename(bs);
2766 /* Check if any unknown options were used */
2767 if (qdict_size(options) != 0) {
2768 const QDictEntry *entry = qdict_first(options);
2769 if (flags & BDRV_O_PROTOCOL) {
2770 error_setg(errp, "Block protocol '%s' doesn't support the option "
2771 "'%s'", drv->format_name, entry->key);
2774 "Block format '%s' does not support the option '%s'",
2775 drv->format_name, entry->key);
2778 goto close_and_fail;
2781 bdrv_parent_cb_change_media(bs, true);
2783 qobject_unref(options);
2785 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2786 * temporary snapshot afterwards. */
2787 if (snapshot_flags) {
2788 BlockDriverState *snapshot_bs;
2789 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
2790 snapshot_options, &local_err);
2791 snapshot_options = NULL;
2793 goto close_and_fail;
2795 /* We are not going to return bs but the overlay on top of it
2796 * (snapshot_bs); thus, we have to drop the strong reference to bs
2797 * (which we obtained by calling bdrv_new()). bs will not be deleted,
2798 * though, because the overlay still has a reference to it. */
2807 qobject_unref(snapshot_options);
2808 qobject_unref(bs->explicit_options);
2809 qobject_unref(bs->options);
2810 qobject_unref(options);
2812 bs->explicit_options = NULL;
2814 error_propagate(errp, local_err);
2819 qobject_unref(snapshot_options);
2820 qobject_unref(options);
2821 error_propagate(errp, local_err);
2825 BlockDriverState *bdrv_open(const char *filename, const char *reference,
2826 QDict *options, int flags, Error **errp)
2828 return bdrv_open_inherit(filename, reference, options, flags, NULL,
2833 * Adds a BlockDriverState to a simple queue for an atomic, transactional
2834 * reopen of multiple devices.
2836 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2837 * already performed, or alternatively may be NULL a new BlockReopenQueue will
2838 * be created and initialized. This newly created BlockReopenQueue should be
2839 * passed back in for subsequent calls that are intended to be of the same
2842 * bs is the BlockDriverState to add to the reopen queue.
2844 * options contains the changed options for the associated bs
2845 * (the BlockReopenQueue takes ownership)
2847 * flags contains the open flags for the associated bs
2849 * returns a pointer to bs_queue, which is either the newly allocated
2850 * bs_queue, or the existing bs_queue being used.
2852 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
2854 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
2855 BlockDriverState *bs,
2858 const BdrvChildRole *role,
2859 QDict *parent_options,
2864 BlockReopenQueueEntry *bs_entry;
2866 QDict *old_options, *explicit_options;
2868 /* Make sure that the caller remembered to use a drained section. This is
2869 * important to avoid graph changes between the recursive queuing here and
2870 * bdrv_reopen_multiple(). */
2871 assert(bs->quiesce_counter > 0);
2873 if (bs_queue == NULL) {
2874 bs_queue = g_new0(BlockReopenQueue, 1);
2875 QSIMPLEQ_INIT(bs_queue);
2879 options = qdict_new();
2882 /* Check if this BlockDriverState is already in the queue */
2883 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2884 if (bs == bs_entry->state.bs) {
2890 * Precedence of options:
2891 * 1. Explicitly passed in options (highest)
2892 * 2. Set in flags (only for top level)
2893 * 3. Retained from explicitly set options of bs
2894 * 4. Inherited from parent node
2895 * 5. Retained from effective options of bs
2898 if (!parent_options) {
2900 * Any setting represented by flags is always updated. If the
2901 * corresponding QDict option is set, it takes precedence. Otherwise
2902 * the flag is translated into a QDict option. The old setting of bs is
2905 update_options_from_flags(options, flags);
2908 /* Old explicitly set values (don't overwrite by inherited value) */
2910 old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
2912 old_options = qdict_clone_shallow(bs->explicit_options);
2914 bdrv_join_options(bs, options, old_options);
2915 qobject_unref(old_options);
2917 explicit_options = qdict_clone_shallow(options);
2919 /* Inherit from parent node */
2920 if (parent_options) {
2922 QDict *options_copy;
2924 role->inherit_options(&flags, options, parent_flags, parent_options);
2925 options_copy = qdict_clone_shallow(options);
2926 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2927 qemu_opts_absorb_qdict(opts, options_copy, NULL);
2928 update_flags_from_options(&flags, opts);
2929 qemu_opts_del(opts);
2930 qobject_unref(options_copy);
2933 /* Old values are used for options that aren't set yet */
2934 old_options = qdict_clone_shallow(bs->options);
2935 bdrv_join_options(bs, options, old_options);
2936 qobject_unref(old_options);
2938 /* bdrv_open_inherit() sets and clears some additional flags internally */
2939 flags &= ~BDRV_O_PROTOCOL;
2940 if (flags & BDRV_O_RDWR) {
2941 flags |= BDRV_O_ALLOW_RDWR;
2945 bs_entry = g_new0(BlockReopenQueueEntry, 1);
2946 QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
2948 qobject_unref(bs_entry->state.options);
2949 qobject_unref(bs_entry->state.explicit_options);
2952 bs_entry->state.bs = bs;
2953 bs_entry->state.options = options;
2954 bs_entry->state.explicit_options = explicit_options;
2955 bs_entry->state.flags = flags;
2957 /* This needs to be overwritten in bdrv_reopen_prepare() */
2958 bs_entry->state.perm = UINT64_MAX;
2959 bs_entry->state.shared_perm = 0;
2961 QLIST_FOREACH(child, &bs->children, next) {
2962 QDict *new_child_options;
2963 char *child_key_dot;
2965 /* reopen can only change the options of block devices that were
2966 * implicitly created and inherited options. For other (referenced)
2967 * block devices, a syntax like "backing.foo" results in an error. */
2968 if (child->bs->inherits_from != bs) {
2972 child_key_dot = g_strdup_printf("%s.", child->name);
2973 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
2974 g_free(child_key_dot);
2976 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
2977 child->role, options, flags);
2983 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
2984 BlockDriverState *bs,
2985 QDict *options, int flags)
2987 return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
2992 * Reopen multiple BlockDriverStates atomically & transactionally.
2994 * The queue passed in (bs_queue) must have been built up previous
2995 * via bdrv_reopen_queue().
2997 * Reopens all BDS specified in the queue, with the appropriate
2998 * flags. All devices are prepared for reopen, and failure of any
2999 * device will cause all device changes to be abandonded, and intermediate
3002 * If all devices prepare successfully, then the changes are committed
3005 * All affected nodes must be drained between bdrv_reopen_queue() and
3006 * bdrv_reopen_multiple().
3008 int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
3011 BlockReopenQueueEntry *bs_entry, *next;
3012 Error *local_err = NULL;
3014 assert(bs_queue != NULL);
3016 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3017 assert(bs_entry->state.bs->quiesce_counter > 0);
3018 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
3019 error_propagate(errp, local_err);
3022 bs_entry->prepared = true;
3025 /* If we reach this point, we have success and just need to apply the
3028 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3029 bdrv_reopen_commit(&bs_entry->state);
3035 QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3036 if (ret && bs_entry->prepared) {
3037 bdrv_reopen_abort(&bs_entry->state);
3039 qobject_unref(bs_entry->state.explicit_options);
3041 qobject_unref(bs_entry->state.options);
3050 /* Reopen a single BlockDriverState with the specified flags. */
3051 int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
3054 Error *local_err = NULL;
3055 BlockReopenQueue *queue;
3057 bdrv_subtree_drained_begin(bs);
3059 queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
3060 ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err);
3061 if (local_err != NULL) {
3062 error_propagate(errp, local_err);
3065 bdrv_subtree_drained_end(bs);
3070 static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3073 BlockReopenQueueEntry *entry;
3075 QSIMPLEQ_FOREACH(entry, q, entry) {
3076 BlockDriverState *bs = entry->state.bs;
3079 QLIST_FOREACH(child, &bs->children, next) {
3089 static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3090 uint64_t *perm, uint64_t *shared)
3093 BlockReopenQueueEntry *parent;
3094 uint64_t cumulative_perms = 0;
3095 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3097 QLIST_FOREACH(c, &bs->parents, next_parent) {
3098 parent = find_parent_in_reopen_queue(q, c);
3100 cumulative_perms |= c->perm;
3101 cumulative_shared_perms &= c->shared_perm;
3103 uint64_t nperm, nshared;
3105 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
3106 parent->state.perm, parent->state.shared_perm,
3109 cumulative_perms |= nperm;
3110 cumulative_shared_perms &= nshared;
3113 *perm = cumulative_perms;
3114 *shared = cumulative_shared_perms;
3118 * Prepares a BlockDriverState for reopen. All changes are staged in the
3119 * 'opaque' field of the BDRVReopenState, which is used and allocated by
3120 * the block driver layer .bdrv_reopen_prepare()
3122 * bs is the BlockDriverState to reopen
3123 * flags are the new open flags
3124 * queue is the reopen queue
3126 * Returns 0 on success, non-zero on error. On error errp will be set
3129 * On failure, bdrv_reopen_abort() will be called to clean up any data.
3130 * It is the responsibility of the caller to then call the abort() or
3131 * commit() for any other BDS that have been left in a prepare() state
3134 int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3138 Error *local_err = NULL;
3144 assert(reopen_state != NULL);
3145 assert(reopen_state->bs->drv != NULL);
3146 drv = reopen_state->bs->drv;
3148 /* Process generic block layer options */
3149 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3150 qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3152 error_propagate(errp, local_err);
3157 update_flags_from_options(&reopen_state->flags, opts);
3159 /* node-name and driver must be unchanged. Put them back into the QDict, so
3160 * that they are checked at the end of this function. */
3161 value = qemu_opt_get(opts, "node-name");
3163 qdict_put_str(reopen_state->options, "node-name", value);
3166 value = qemu_opt_get(opts, "driver");
3168 qdict_put_str(reopen_state->options, "driver", value);
3171 /* If we are to stay read-only, do not allow permission change
3172 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
3173 * not set, or if the BDS still has copy_on_read enabled */
3174 read_only = !(reopen_state->flags & BDRV_O_RDWR);
3175 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
3177 error_propagate(errp, local_err);
3181 /* Calculate required permissions after reopening */
3182 bdrv_reopen_perm(queue, reopen_state->bs,
3183 &reopen_state->perm, &reopen_state->shared_perm);
3185 ret = bdrv_flush(reopen_state->bs);
3187 error_setg_errno(errp, -ret, "Error flushing drive");
3191 if (drv->bdrv_reopen_prepare) {
3192 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3194 if (local_err != NULL) {
3195 error_propagate(errp, local_err);
3197 error_setg(errp, "failed while preparing to reopen image '%s'",
3198 reopen_state->bs->filename);
3203 /* It is currently mandatory to have a bdrv_reopen_prepare()
3204 * handler for each supported drv. */
3205 error_setg(errp, "Block format '%s' used by node '%s' "
3206 "does not support reopening files", drv->format_name,
3207 bdrv_get_device_or_node_name(reopen_state->bs));
3212 /* Options that are not handled are only okay if they are unchanged
3213 * compared to the old state. It is expected that some options are only
3214 * used for the initial open, but not reopen (e.g. filename) */
3215 if (qdict_size(reopen_state->options)) {
3216 const QDictEntry *entry = qdict_first(reopen_state->options);
3219 QObject *new = entry->value;
3220 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
3223 * TODO: When using -drive to specify blockdev options, all values
3224 * will be strings; however, when using -blockdev, blockdev-add or
3225 * filenames using the json:{} pseudo-protocol, they will be
3227 * In contrast, reopening options are (currently) always strings
3228 * (because you can only specify them through qemu-io; all other
3229 * callers do not specify any options).
3230 * Therefore, when using anything other than -drive to create a BDS,
3231 * this cannot detect non-string options as unchanged, because
3232 * qobject_is_equal() always returns false for objects of different
3233 * type. In the future, this should be remedied by correctly typing
3234 * all options. For now, this is not too big of an issue because
3235 * the user can simply omit options which cannot be changed anyway,
3236 * so they will stay unchanged.
3238 if (!qobject_is_equal(new, old)) {
3239 error_setg(errp, "Cannot change the option '%s'", entry->key);
3243 } while ((entry = qdict_next(reopen_state->options, entry)));
3246 ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
3247 reopen_state->shared_perm, NULL, errp);
3255 qemu_opts_del(opts);
3260 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3261 * makes them final by swapping the staging BlockDriverState contents into
3262 * the active BlockDriverState contents.
3264 void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3267 BlockDriverState *bs;
3268 bool old_can_write, new_can_write;
3270 assert(reopen_state != NULL);
3271 bs = reopen_state->bs;
3273 assert(drv != NULL);
3276 !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3278 /* If there are any driver level actions to take */
3279 if (drv->bdrv_reopen_commit) {
3280 drv->bdrv_reopen_commit(reopen_state);
3283 /* set BDS specific flags now */
3284 qobject_unref(bs->explicit_options);
3286 bs->explicit_options = reopen_state->explicit_options;
3287 bs->open_flags = reopen_state->flags;
3288 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
3290 bdrv_refresh_limits(bs, NULL);
3292 bdrv_set_perm(reopen_state->bs, reopen_state->perm,
3293 reopen_state->shared_perm);
3296 !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3297 if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3298 Error *local_err = NULL;
3299 if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3300 /* This is not fatal, bitmaps just left read-only, so all following
3301 * writes will fail. User can remove read-only bitmaps to unblock
3304 error_reportf_err(local_err,
3305 "%s: Failed to make dirty bitmaps writable: ",
3306 bdrv_get_node_name(bs));
3312 * Abort the reopen, and delete and free the staged changes in
3315 void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3319 assert(reopen_state != NULL);
3320 drv = reopen_state->bs->drv;
3321 assert(drv != NULL);
3323 if (drv->bdrv_reopen_abort) {
3324 drv->bdrv_reopen_abort(reopen_state);
3327 qobject_unref(reopen_state->explicit_options);
3329 bdrv_abort_perm_update(reopen_state->bs);
3333 static void bdrv_close(BlockDriverState *bs)
3335 BdrvAioNotifier *ban, *ban_next;
3336 BdrvChild *child, *next;
3339 assert(!bs->refcnt);
3341 bdrv_drained_begin(bs); /* complete I/O */
3343 bdrv_drain(bs); /* in case flush left pending I/O */
3346 bs->drv->bdrv_close(bs);
3350 bdrv_set_backing_hd(bs, NULL, &error_abort);
3352 if (bs->file != NULL) {
3353 bdrv_unref_child(bs, bs->file);
3357 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
3358 /* TODO Remove bdrv_unref() from drivers' close function and use
3359 * bdrv_unref_child() here */
3360 if (child->bs->inherits_from == bs) {
3361 child->bs->inherits_from = NULL;
3363 bdrv_detach_child(child);
3368 atomic_set(&bs->copy_on_read, 0);
3369 bs->backing_file[0] = '\0';
3370 bs->backing_format[0] = '\0';
3371 bs->total_sectors = 0;
3372 bs->encrypted = false;
3374 qobject_unref(bs->options);
3375 qobject_unref(bs->explicit_options);
3377 bs->explicit_options = NULL;
3378 qobject_unref(bs->full_open_options);
3379 bs->full_open_options = NULL;
3381 bdrv_release_named_dirty_bitmaps(bs);
3382 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3384 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
3387 QLIST_INIT(&bs->aio_notifiers);
3388 bdrv_drained_end(bs);
3391 void bdrv_close_all(void)
3393 assert(job_next(NULL) == NULL);
3394 nbd_export_close_all();
3396 /* Drop references from requests still in flight, such as canceled block
3397 * jobs whose AIO context has not been polled yet */
3400 blk_remove_all_bs();
3401 blockdev_close_all_bdrv_states();
3403 assert(QTAILQ_EMPTY(&all_bdrv_states));
3406 static bool should_update_child(BdrvChild *c, BlockDriverState *to)
3410 if (c->role->stay_at_node) {
3414 /* If the child @c belongs to the BDS @to, replacing the current
3415 * c->bs by @to would mean to create a loop.
3417 * Such a case occurs when appending a BDS to a backing chain.
3418 * For instance, imagine the following chain:
3420 * guest device -> node A -> further backing chain...
3422 * Now we create a new BDS B which we want to put on top of this
3423 * chain, so we first attach A as its backing node:
3428 * guest device -> node A -> further backing chain...
3430 * Finally we want to replace A by B. When doing that, we want to
3431 * replace all pointers to A by pointers to B -- except for the
3432 * pointer from B because (1) that would create a loop, and (2)
3433 * that pointer should simply stay intact:
3435 * guest device -> node B
3438 * node A -> further backing chain...
3440 * In general, when replacing a node A (c->bs) by a node B (@to),
3441 * if A is a child of B, that means we cannot replace A by B there
3442 * because that would create a loop. Silently detaching A from B
3443 * is also not really an option. So overall just leaving A in
3444 * place there is the most sensible choice. */
3445 QLIST_FOREACH(to_c, &to->children, next) {
3454 void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
3457 BdrvChild *c, *next;
3458 GSList *list = NULL, *p;
3459 uint64_t old_perm, old_shared;
3460 uint64_t perm = 0, shared = BLK_PERM_ALL;
3463 assert(!atomic_read(&from->in_flight));
3464 assert(!atomic_read(&to->in_flight));
3466 /* Make sure that @from doesn't go away until we have successfully attached
3467 * all of its parents to @to. */
3470 /* Put all parents into @list and calculate their cumulative permissions */
3471 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
3472 assert(c->bs == from);
3473 if (!should_update_child(c, to)) {
3476 list = g_slist_prepend(list, c);
3478 shared &= c->shared_perm;
3481 /* Check whether the required permissions can be granted on @to, ignoring
3482 * all BdrvChild in @list so that they can't block themselves. */
3483 ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
3485 bdrv_abort_perm_update(to);
3489 /* Now actually perform the change. We performed the permission check for
3490 * all elements of @list at once, so set the permissions all at once at the
3492 for (p = list; p != NULL; p = p->next) {
3496 bdrv_replace_child_noperm(c, to);
3500 bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3501 bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3509 * Add new bs contents at the top of an image chain while the chain is
3510 * live, while keeping required fields on the top layer.
3512 * This will modify the BlockDriverState fields, and swap contents
3513 * between bs_new and bs_top. Both bs_new and bs_top are modified.
3515 * bs_new must not be attached to a BlockBackend.
3517 * This function does not create any image files.
3519 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3520 * that's what the callers commonly need. bs_new will be referenced by the old
3521 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3522 * reference of its own, it must call bdrv_ref().
3524 void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3527 Error *local_err = NULL;
3529 bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3531 error_propagate(errp, local_err);
3535 bdrv_replace_node(bs_top, bs_new, &local_err);
3537 error_propagate(errp, local_err);
3538 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3542 /* bs_new is now referenced by its new parents, we don't need the
3543 * additional reference any more. */
3548 static void bdrv_delete(BlockDriverState *bs)
3551 assert(bdrv_op_blocker_is_empty(bs));
3552 assert(!bs->refcnt);
3556 /* remove from list, if necessary */
3557 if (bs->node_name[0] != '\0') {
3558 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
3560 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
3566 * Run consistency checks on an image
3568 * Returns 0 if the check could be completed (it doesn't mean that the image is
3569 * free of errors) or -errno when an internal error occurred. The results of the
3570 * check are stored in res.
3572 static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
3573 BdrvCheckResult *res, BdrvCheckMode fix)
3575 if (bs->drv == NULL) {
3578 if (bs->drv->bdrv_co_check == NULL) {
3582 memset(res, 0, sizeof(*res));
3583 return bs->drv->bdrv_co_check(bs, res, fix);
3586 typedef struct CheckCo {
3587 BlockDriverState *bs;
3588 BdrvCheckResult *res;
3593 static void bdrv_check_co_entry(void *opaque)
3595 CheckCo *cco = opaque;
3596 cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
3599 int bdrv_check(BlockDriverState *bs,
3600 BdrvCheckResult *res, BdrvCheckMode fix)
3606 .ret = -EINPROGRESS,
3610 if (qemu_in_coroutine()) {
3611 /* Fast-path if already in coroutine context */
3612 bdrv_check_co_entry(&cco);
3614 co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
3615 qemu_coroutine_enter(co);
3616 BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
3625 * -EINVAL - backing format specified, but no file
3626 * -ENOSPC - can't update the backing file because no space is left in the
3628 * -ENOTSUP - format driver doesn't support changing the backing file
3630 int bdrv_change_backing_file(BlockDriverState *bs,
3631 const char *backing_file, const char *backing_fmt)
3633 BlockDriver *drv = bs->drv;
3640 /* Backing file format doesn't make sense without a backing file */
3641 if (backing_fmt && !backing_file) {
3645 if (drv->bdrv_change_backing_file != NULL) {
3646 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
3652 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3653 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3659 * Finds the image layer in the chain that has 'bs' as its backing file.
3661 * active is the current topmost image.
3663 * Returns NULL if bs is not found in active's image chain,
3664 * or if active == bs.
3666 * Returns the bottommost base image if bs == NULL.
3668 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
3669 BlockDriverState *bs)
3671 while (active && bs != backing_bs(active)) {
3672 active = backing_bs(active);
3678 /* Given a BDS, searches for the base layer. */
3679 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
3681 return bdrv_find_overlay(bs, NULL);
3685 * Drops images above 'base' up to and including 'top', and sets the image
3686 * above 'top' to have base as its backing file.
3688 * Requires that the overlay to 'top' is opened r/w, so that the backing file
3689 * information in 'bs' can be properly updated.
3691 * E.g., this will convert the following chain:
3692 * bottom <- base <- intermediate <- top <- active
3696 * bottom <- base <- active
3698 * It is allowed for bottom==base, in which case it converts:
3700 * base <- intermediate <- top <- active
3706 * If backing_file_str is non-NULL, it will be used when modifying top's
3707 * overlay image metadata.
3710 * if active == top, that is considered an error
3713 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3714 const char *backing_file_str)
3716 BdrvChild *c, *next;
3717 Error *local_err = NULL;
3722 if (!top->drv || !base->drv) {
3726 /* Make sure that base is in the backing chain of top */
3727 if (!bdrv_chain_contains(top, base)) {
3731 /* success - we can delete the intermediate states, and link top->base */
3732 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
3733 * we've figured out how they should work. */
3734 backing_file_str = backing_file_str ? backing_file_str : base->filename;
3736 QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
3737 /* Check whether we are allowed to switch c from top to base */
3738 GSList *ignore_children = g_slist_prepend(NULL, c);
3739 bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
3740 ignore_children, &local_err);
3741 g_slist_free(ignore_children);
3744 error_report_err(local_err);
3748 /* If so, update the backing file path in the image file */
3749 if (c->role->update_filename) {
3750 ret = c->role->update_filename(c, base, backing_file_str,
3753 bdrv_abort_perm_update(base);
3754 error_report_err(local_err);
3759 /* Do the actual switch in the in-memory graph.
3760 * Completes bdrv_check_update_perm() transaction internally. */
3762 bdrv_replace_child(c, base);
3773 * Length of a allocated file in bytes. Sparse files are counted by actual
3774 * allocated space. Return < 0 if error or unknown.
3776 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
3778 BlockDriver *drv = bs->drv;
3782 if (drv->bdrv_get_allocated_file_size) {
3783 return drv->bdrv_get_allocated_file_size(bs);
3786 return bdrv_get_allocated_file_size(bs->file->bs);
3793 * @drv: Format driver
3794 * @opts: Creation options for new image
3795 * @in_bs: Existing image containing data for new image (may be NULL)
3796 * @errp: Error object
3797 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
3800 * Calculate file size required to create a new image.
3802 * If @in_bs is given then space for allocated clusters and zero clusters
3803 * from that image are included in the calculation. If @opts contains a
3804 * backing file that is shared by @in_bs then backing clusters may be omitted
3805 * from the calculation.
3807 * If @in_bs is NULL then the calculation includes no allocated clusters
3808 * unless a preallocation option is given in @opts.
3810 * Note that @in_bs may use a different BlockDriver from @drv.
3812 * If an error occurs the @errp pointer is set.
3814 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
3815 BlockDriverState *in_bs, Error **errp)
3817 if (!drv->bdrv_measure) {
3818 error_setg(errp, "Block driver '%s' does not support size measurement",
3823 return drv->bdrv_measure(opts, in_bs, errp);
3827 * Return number of sectors on success, -errno on error.
3829 int64_t bdrv_nb_sectors(BlockDriverState *bs)
3831 BlockDriver *drv = bs->drv;
3836 if (drv->has_variable_length) {
3837 int ret = refresh_total_sectors(bs, bs->total_sectors);
3842 return bs->total_sectors;
3846 * Return length in bytes on success, -errno on error.
3847 * The length is always a multiple of BDRV_SECTOR_SIZE.
3849 int64_t bdrv_getlength(BlockDriverState *bs)
3851 int64_t ret = bdrv_nb_sectors(bs);
3853 ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
3854 return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
3857 /* return 0 as number of sectors if no device present or error */
3858 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
3860 int64_t nb_sectors = bdrv_nb_sectors(bs);
3862 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
3865 bool bdrv_is_sg(BlockDriverState *bs)
3870 bool bdrv_is_encrypted(BlockDriverState *bs)
3872 if (bs->backing && bs->backing->bs->encrypted) {
3875 return bs->encrypted;
3878 const char *bdrv_get_format_name(BlockDriverState *bs)
3880 return bs->drv ? bs->drv->format_name : NULL;
3883 static int qsort_strcmp(const void *a, const void *b)
3885 return strcmp(*(char *const *)a, *(char *const *)b);
3888 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
3894 const char **formats = NULL;
3896 QLIST_FOREACH(drv, &bdrv_drivers, list) {
3897 if (drv->format_name) {
3900 while (formats && i && !found) {
3901 found = !strcmp(formats[--i], drv->format_name);
3905 formats = g_renew(const char *, formats, count + 1);
3906 formats[count++] = drv->format_name;
3911 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
3912 const char *format_name = block_driver_modules[i].format_name;
3918 while (formats && j && !found) {
3919 found = !strcmp(formats[--j], format_name);
3923 formats = g_renew(const char *, formats, count + 1);
3924 formats[count++] = format_name;
3929 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
3931 for (i = 0; i < count; i++) {
3932 it(opaque, formats[i]);
3938 /* This function is to find a node in the bs graph */
3939 BlockDriverState *bdrv_find_node(const char *node_name)
3941 BlockDriverState *bs;
3945 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3946 if (!strcmp(node_name, bs->node_name)) {
3953 /* Put this QMP function here so it can access the static graph_bdrv_states. */
3954 BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
3956 BlockDeviceInfoList *list, *entry;
3957 BlockDriverState *bs;
3960 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3961 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
3963 qapi_free_BlockDeviceInfoList(list);
3966 entry = g_malloc0(sizeof(*entry));
3967 entry->value = info;
3975 BlockDriverState *bdrv_lookup_bs(const char *device,
3976 const char *node_name,
3980 BlockDriverState *bs;
3983 blk = blk_by_name(device);
3988 error_setg(errp, "Device '%s' has no medium", device);
3996 bs = bdrv_find_node(node_name);
4003 error_setg(errp, "Cannot find device=%s nor node_name=%s",
4004 device ? device : "",
4005 node_name ? node_name : "");
4009 /* If 'base' is in the same chain as 'top', return true. Otherwise,
4010 * return false. If either argument is NULL, return false. */
4011 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
4013 while (top && top != base) {
4014 top = backing_bs(top);
4020 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
4023 return QTAILQ_FIRST(&graph_bdrv_states);
4025 return QTAILQ_NEXT(bs, node_list);
4028 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
4031 return QTAILQ_FIRST(&all_bdrv_states);
4033 return QTAILQ_NEXT(bs, bs_list);
4036 const char *bdrv_get_node_name(const BlockDriverState *bs)
4038 return bs->node_name;
4041 const char *bdrv_get_parent_name(const BlockDriverState *bs)
4046 /* If multiple parents have a name, just pick the first one. */
4047 QLIST_FOREACH(c, &bs->parents, next_parent) {
4048 if (c->role->get_name) {
4049 name = c->role->get_name(c);
4050 if (name && *name) {
4059 /* TODO check what callers really want: bs->node_name or blk_name() */
4060 const char *bdrv_get_device_name(const BlockDriverState *bs)
4062 return bdrv_get_parent_name(bs) ?: "";
4065 /* This can be used to identify nodes that might not have a device
4066 * name associated. Since node and device names live in the same
4067 * namespace, the result is unambiguous. The exception is if both are
4068 * absent, then this returns an empty (non-null) string. */
4069 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
4071 return bdrv_get_parent_name(bs) ?: bs->node_name;
4074 int bdrv_get_flags(BlockDriverState *bs)
4076 return bs->open_flags;
4079 int bdrv_has_zero_init_1(BlockDriverState *bs)
4084 int bdrv_has_zero_init(BlockDriverState *bs)
4090 /* If BS is a copy on write image, it is initialized to
4091 the contents of the base image, which may not be zeroes. */
4095 if (bs->drv->bdrv_has_zero_init) {
4096 return bs->drv->bdrv_has_zero_init(bs);
4098 if (bs->file && bs->drv->is_filter) {
4099 return bdrv_has_zero_init(bs->file->bs);
4106 bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
4108 BlockDriverInfo bdi;
4114 if (bdrv_get_info(bs, &bdi) == 0) {
4115 return bdi.unallocated_blocks_are_zero;
4121 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
4123 if (!(bs->open_flags & BDRV_O_UNMAP)) {
4127 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
4130 const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
4132 if (bs->backing && bs->backing->bs->encrypted)
4133 return bs->backing_file;
4134 else if (bs->encrypted)
4135 return bs->filename;
4140 void bdrv_get_backing_filename(BlockDriverState *bs,
4141 char *filename, int filename_size)
4143 pstrcpy(filename, filename_size, bs->backing_file);
4146 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4148 BlockDriver *drv = bs->drv;
4149 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
4153 if (!drv->bdrv_get_info) {
4154 if (bs->file && drv->is_filter) {
4155 return bdrv_get_info(bs->file->bs, bdi);
4159 memset(bdi, 0, sizeof(*bdi));
4160 return drv->bdrv_get_info(bs, bdi);
4163 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
4165 BlockDriver *drv = bs->drv;
4166 if (drv && drv->bdrv_get_specific_info) {
4167 return drv->bdrv_get_specific_info(bs);
4172 void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
4174 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
4178 bs->drv->bdrv_debug_event(bs, event);
4181 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
4184 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
4185 bs = bs->file ? bs->file->bs : NULL;
4188 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
4189 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
4195 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
4197 while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
4198 bs = bs->file ? bs->file->bs : NULL;
4201 if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
4202 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
4208 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
4210 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
4211 bs = bs->file ? bs->file->bs : NULL;
4214 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
4215 return bs->drv->bdrv_debug_resume(bs, tag);
4221 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
4223 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
4224 bs = bs->file ? bs->file->bs : NULL;
4227 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
4228 return bs->drv->bdrv_debug_is_suspended(bs, tag);
4234 /* backing_file can either be relative, or absolute, or a protocol. If it is
4235 * relative, it must be relative to the chain. So, passing in bs->filename
4236 * from a BDS as backing_file should not be done, as that may be relative to
4237 * the CWD rather than the chain. */
4238 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4239 const char *backing_file)
4241 char *filename_full = NULL;
4242 char *backing_file_full = NULL;
4243 char *filename_tmp = NULL;
4244 int is_protocol = 0;
4245 BlockDriverState *curr_bs = NULL;
4246 BlockDriverState *retval = NULL;
4247 Error *local_error = NULL;
4249 if (!bs || !bs->drv || !backing_file) {
4253 filename_full = g_malloc(PATH_MAX);
4254 backing_file_full = g_malloc(PATH_MAX);
4255 filename_tmp = g_malloc(PATH_MAX);
4257 is_protocol = path_has_protocol(backing_file);
4259 for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
4261 /* If either of the filename paths is actually a protocol, then
4262 * compare unmodified paths; otherwise make paths relative */
4263 if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4264 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4265 retval = curr_bs->backing->bs;
4268 /* Also check against the full backing filename for the image */
4269 bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
4271 if (local_error == NULL) {
4272 if (strcmp(backing_file, backing_file_full) == 0) {
4273 retval = curr_bs->backing->bs;
4277 error_free(local_error);
4281 /* If not an absolute filename path, make it relative to the current
4282 * image's filename path */
4283 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4286 /* We are going to compare absolute pathnames */
4287 if (!realpath(filename_tmp, filename_full)) {
4291 /* We need to make sure the backing filename we are comparing against
4292 * is relative to the current image filename (or absolute) */
4293 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4294 curr_bs->backing_file);
4296 if (!realpath(filename_tmp, backing_file_full)) {
4300 if (strcmp(backing_file_full, filename_full) == 0) {
4301 retval = curr_bs->backing->bs;
4307 g_free(filename_full);
4308 g_free(backing_file_full);
4309 g_free(filename_tmp);
4313 void bdrv_init(void)
4315 module_call_init(MODULE_INIT_BLOCK);
4318 void bdrv_init_with_whitelist(void)
4320 use_bdrv_whitelist = 1;
4324 static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
4327 BdrvChild *child, *parent;
4328 uint64_t perm, shared_perm;
4329 Error *local_err = NULL;
4336 if (!(bs->open_flags & BDRV_O_INACTIVE)) {
4340 QLIST_FOREACH(child, &bs->children, next) {
4341 bdrv_co_invalidate_cache(child->bs, &local_err);
4343 error_propagate(errp, local_err);
4349 * Update permissions, they may differ for inactive nodes.
4351 * Note that the required permissions of inactive images are always a
4352 * subset of the permissions required after activating the image. This
4353 * allows us to just get the permissions upfront without restricting
4354 * drv->bdrv_invalidate_cache().
4356 * It also means that in error cases, we don't have to try and revert to
4357 * the old permissions (which is an operation that could fail, too). We can
4358 * just keep the extended permissions for the next time that an activation
4359 * of the image is tried.
4361 bs->open_flags &= ~BDRV_O_INACTIVE;
4362 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4363 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
4365 bs->open_flags |= BDRV_O_INACTIVE;
4366 error_propagate(errp, local_err);
4369 bdrv_set_perm(bs, perm, shared_perm);
4371 if (bs->drv->bdrv_co_invalidate_cache) {
4372 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
4374 bs->open_flags |= BDRV_O_INACTIVE;
4375 error_propagate(errp, local_err);
4380 ret = refresh_total_sectors(bs, bs->total_sectors);
4382 bs->open_flags |= BDRV_O_INACTIVE;
4383 error_setg_errno(errp, -ret, "Could not refresh total sector count");
4387 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4388 if (parent->role->activate) {
4389 parent->role->activate(parent, &local_err);
4391 error_propagate(errp, local_err);
4398 typedef struct InvalidateCacheCo {
4399 BlockDriverState *bs;
4402 } InvalidateCacheCo;
4404 static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
4406 InvalidateCacheCo *ico = opaque;
4407 bdrv_co_invalidate_cache(ico->bs, ico->errp);
4411 void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
4414 InvalidateCacheCo ico = {
4420 if (qemu_in_coroutine()) {
4421 /* Fast-path if already in coroutine context */
4422 bdrv_invalidate_cache_co_entry(&ico);
4424 co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
4425 qemu_coroutine_enter(co);
4426 BDRV_POLL_WHILE(bs, !ico.done);
4430 void bdrv_invalidate_cache_all(Error **errp)
4432 BlockDriverState *bs;
4433 Error *local_err = NULL;
4434 BdrvNextIterator it;
4436 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4437 AioContext *aio_context = bdrv_get_aio_context(bs);
4439 aio_context_acquire(aio_context);
4440 bdrv_invalidate_cache(bs, &local_err);
4441 aio_context_release(aio_context);
4443 error_propagate(errp, local_err);
4444 bdrv_next_cleanup(&it);
4450 static int bdrv_inactivate_recurse(BlockDriverState *bs,
4453 BdrvChild *child, *parent;
4460 if (!setting_flag && bs->drv->bdrv_inactivate) {
4461 ret = bs->drv->bdrv_inactivate(bs);
4467 if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) {
4468 uint64_t perm, shared_perm;
4470 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4471 if (parent->role->inactivate) {
4472 ret = parent->role->inactivate(parent);
4479 bs->open_flags |= BDRV_O_INACTIVE;
4481 /* Update permissions, they may differ for inactive nodes */
4482 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4483 bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
4484 bdrv_set_perm(bs, perm, shared_perm);
4487 QLIST_FOREACH(child, &bs->children, next) {
4488 ret = bdrv_inactivate_recurse(child->bs, setting_flag);
4494 /* At this point persistent bitmaps should be already stored by the format
4496 bdrv_release_persistent_dirty_bitmaps(bs);
4501 int bdrv_inactivate_all(void)
4503 BlockDriverState *bs = NULL;
4504 BdrvNextIterator it;
4507 GSList *aio_ctxs = NULL, *ctx;
4509 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4510 AioContext *aio_context = bdrv_get_aio_context(bs);
4512 if (!g_slist_find(aio_ctxs, aio_context)) {
4513 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
4514 aio_context_acquire(aio_context);
4518 /* We do two passes of inactivation. The first pass calls to drivers'
4519 * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
4520 * the second pass sets the BDRV_O_INACTIVE flag so that no further write
4522 for (pass = 0; pass < 2; pass++) {
4523 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4524 ret = bdrv_inactivate_recurse(bs, pass);
4526 bdrv_next_cleanup(&it);
4533 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4534 AioContext *aio_context = ctx->data;
4535 aio_context_release(aio_context);
4537 g_slist_free(aio_ctxs);
4542 /**************************************************************/
4543 /* removable device support */
4546 * Return TRUE if the media is present
4548 bool bdrv_is_inserted(BlockDriverState *bs)
4550 BlockDriver *drv = bs->drv;
4556 if (drv->bdrv_is_inserted) {
4557 return drv->bdrv_is_inserted(bs);
4559 QLIST_FOREACH(child, &bs->children, next) {
4560 if (!bdrv_is_inserted(child->bs)) {
4568 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
4570 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
4572 BlockDriver *drv = bs->drv;
4574 if (drv && drv->bdrv_eject) {
4575 drv->bdrv_eject(bs, eject_flag);
4580 * Lock or unlock the media (if it is locked, the user won't be able
4581 * to eject it manually).
4583 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
4585 BlockDriver *drv = bs->drv;
4587 trace_bdrv_lock_medium(bs, locked);
4589 if (drv && drv->bdrv_lock_medium) {
4590 drv->bdrv_lock_medium(bs, locked);
4594 /* Get a reference to bs */
4595 void bdrv_ref(BlockDriverState *bs)
4600 /* Release a previously grabbed reference to bs.
4601 * If after releasing, reference count is zero, the BlockDriverState is
4603 void bdrv_unref(BlockDriverState *bs)
4608 assert(bs->refcnt > 0);
4609 if (--bs->refcnt == 0) {
4614 struct BdrvOpBlocker {
4616 QLIST_ENTRY(BdrvOpBlocker) list;
4619 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
4621 BdrvOpBlocker *blocker;
4622 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4623 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
4624 blocker = QLIST_FIRST(&bs->op_blockers[op]);
4625 error_propagate(errp, error_copy(blocker->reason));
4626 error_prepend(errp, "Node '%s' is busy: ",
4627 bdrv_get_device_or_node_name(bs));
4633 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
4635 BdrvOpBlocker *blocker;
4636 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4638 blocker = g_new0(BdrvOpBlocker, 1);
4639 blocker->reason = reason;
4640 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
4643 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
4645 BdrvOpBlocker *blocker, *next;
4646 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4647 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
4648 if (blocker->reason == reason) {
4649 QLIST_REMOVE(blocker, list);
4655 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
4658 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4659 bdrv_op_block(bs, i, reason);
4663 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
4666 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4667 bdrv_op_unblock(bs, i, reason);
4671 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
4675 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4676 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
4683 void bdrv_img_create(const char *filename, const char *fmt,
4684 const char *base_filename, const char *base_fmt,
4685 char *options, uint64_t img_size, int flags, bool quiet,
4688 QemuOptsList *create_opts = NULL;
4689 QemuOpts *opts = NULL;
4690 const char *backing_fmt, *backing_file;
4692 BlockDriver *drv, *proto_drv;
4693 Error *local_err = NULL;
4696 /* Find driver and parse its options */
4697 drv = bdrv_find_format(fmt);
4699 error_setg(errp, "Unknown file format '%s'", fmt);
4703 proto_drv = bdrv_find_protocol(filename, true, errp);
4708 if (!drv->create_opts) {
4709 error_setg(errp, "Format driver '%s' does not support image creation",
4714 if (!proto_drv->create_opts) {
4715 error_setg(errp, "Protocol driver '%s' does not support image creation",
4716 proto_drv->format_name);
4720 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4721 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4723 /* Create parameter list with default values */
4724 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4725 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4727 /* Parse -o options */
4729 qemu_opts_do_parse(opts, options, NULL, &local_err);
4731 error_report_err(local_err);
4733 error_setg(errp, "Invalid options for file format '%s'", fmt);
4738 if (base_filename) {
4739 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
4741 error_setg(errp, "Backing file not supported for file format '%s'",
4748 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
4750 error_setg(errp, "Backing file format not supported for file "
4751 "format '%s'", fmt);
4756 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
4758 if (!strcmp(filename, backing_file)) {
4759 error_setg(errp, "Error: Trying to create an image with the "
4760 "same filename as the backing file");
4765 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
4767 /* The size for the image must always be specified, unless we have a backing
4768 * file and we have not been forbidden from opening it. */
4769 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
4770 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
4771 BlockDriverState *bs;
4772 char *full_backing = g_new0(char, PATH_MAX);
4774 QDict *backing_options = NULL;
4776 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
4777 full_backing, PATH_MAX,
4780 g_free(full_backing);
4784 /* backing files always opened read-only */
4786 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4788 backing_options = qdict_new();
4790 qdict_put_str(backing_options, "driver", backing_fmt);
4792 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
4794 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
4796 g_free(full_backing);
4797 if (!bs && size != -1) {
4798 /* Couldn't open BS, but we have a size, so it's nonfatal */
4799 warn_reportf_err(local_err,
4800 "Could not verify backing image. "
4801 "This may become an error in future versions.\n");
4804 /* Couldn't open bs, do not have size */
4805 error_append_hint(&local_err,
4806 "Could not open backing image to determine size.\n");
4810 /* Opened BS, have no size */
4811 size = bdrv_getlength(bs);
4813 error_setg_errno(errp, -size, "Could not get size of '%s'",
4818 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
4822 } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
4825 error_setg(errp, "Image creation needs a size parameter");
4830 printf("Formatting '%s', fmt=%s ", filename, fmt);
4831 qemu_opts_print(opts, " ");
4835 ret = bdrv_create(drv, filename, opts, &local_err);
4837 if (ret == -EFBIG) {
4838 /* This is generally a better message than whatever the driver would
4839 * deliver (especially because of the cluster_size_hint), since that
4840 * is most probably not much different from "image too large". */
4841 const char *cluster_size_hint = "";
4842 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
4843 cluster_size_hint = " (try using a larger cluster size)";
4845 error_setg(errp, "The image size is too large for file format '%s'"
4846 "%s", fmt, cluster_size_hint);
4847 error_free(local_err);
4852 qemu_opts_del(opts);
4853 qemu_opts_free(create_opts);
4854 error_propagate(errp, local_err);
4857 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
4859 return bs ? bs->aio_context : qemu_get_aio_context();
4862 AioWait *bdrv_get_aio_wait(BlockDriverState *bs)
4864 return bs ? &bs->wait : NULL;
4867 void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
4869 aio_co_enter(bdrv_get_aio_context(bs), co);
4872 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
4874 QLIST_REMOVE(ban, list);
4878 void bdrv_detach_aio_context(BlockDriverState *bs)
4880 BdrvAioNotifier *baf, *baf_tmp;
4887 assert(!bs->walking_aio_notifiers);
4888 bs->walking_aio_notifiers = true;
4889 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
4891 bdrv_do_remove_aio_context_notifier(baf);
4893 baf->detach_aio_context(baf->opaque);
4896 /* Never mind iterating again to check for ->deleted. bdrv_close() will
4897 * remove remaining aio notifiers if we aren't called again.
4899 bs->walking_aio_notifiers = false;
4901 if (bs->drv->bdrv_detach_aio_context) {
4902 bs->drv->bdrv_detach_aio_context(bs);
4904 QLIST_FOREACH(child, &bs->children, next) {
4905 bdrv_detach_aio_context(child->bs);
4908 bs->aio_context = NULL;
4911 void bdrv_attach_aio_context(BlockDriverState *bs,
4912 AioContext *new_context)
4914 BdrvAioNotifier *ban, *ban_tmp;
4921 bs->aio_context = new_context;
4923 QLIST_FOREACH(child, &bs->children, next) {
4924 bdrv_attach_aio_context(child->bs, new_context);
4926 if (bs->drv->bdrv_attach_aio_context) {
4927 bs->drv->bdrv_attach_aio_context(bs, new_context);
4930 assert(!bs->walking_aio_notifiers);
4931 bs->walking_aio_notifiers = true;
4932 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
4934 bdrv_do_remove_aio_context_notifier(ban);
4936 ban->attached_aio_context(new_context, ban->opaque);
4939 bs->walking_aio_notifiers = false;
4942 void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
4944 AioContext *ctx = bdrv_get_aio_context(bs);
4946 aio_disable_external(ctx);
4947 bdrv_parent_drained_begin(bs, NULL, false);
4948 bdrv_drain(bs); /* ensure there are no in-flight requests */
4950 while (aio_poll(ctx, false)) {
4951 /* wait for all bottom halves to execute */
4954 bdrv_detach_aio_context(bs);
4956 /* This function executes in the old AioContext so acquire the new one in
4957 * case it runs in a different thread.
4959 aio_context_acquire(new_context);
4960 bdrv_attach_aio_context(bs, new_context);
4961 bdrv_parent_drained_end(bs, NULL, false);
4962 aio_enable_external(ctx);
4963 aio_context_release(new_context);
4966 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
4967 void (*attached_aio_context)(AioContext *new_context, void *opaque),
4968 void (*detach_aio_context)(void *opaque), void *opaque)
4970 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
4971 *ban = (BdrvAioNotifier){
4972 .attached_aio_context = attached_aio_context,
4973 .detach_aio_context = detach_aio_context,
4977 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
4980 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
4981 void (*attached_aio_context)(AioContext *,
4983 void (*detach_aio_context)(void *),
4986 BdrvAioNotifier *ban, *ban_next;
4988 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4989 if (ban->attached_aio_context == attached_aio_context &&
4990 ban->detach_aio_context == detach_aio_context &&
4991 ban->opaque == opaque &&
4992 ban->deleted == false)
4994 if (bs->walking_aio_notifiers) {
4995 ban->deleted = true;
4997 bdrv_do_remove_aio_context_notifier(ban);
5006 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
5007 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5011 error_setg(errp, "Node is ejected");
5014 if (!bs->drv->bdrv_amend_options) {
5015 error_setg(errp, "Block driver '%s' does not support option amendment",
5016 bs->drv->format_name);
5019 return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
5022 /* This function will be called by the bdrv_recurse_is_first_non_filter method
5023 * of block filter and by bdrv_is_first_non_filter.
5024 * It is used to test if the given bs is the candidate or recurse more in the
5027 bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5028 BlockDriverState *candidate)
5030 /* return false if basic checks fails */
5031 if (!bs || !bs->drv) {
5035 /* the code reached a non block filter driver -> check if the bs is
5036 * the same as the candidate. It's the recursion termination condition.
5038 if (!bs->drv->is_filter) {
5039 return bs == candidate;
5041 /* Down this path the driver is a block filter driver */
5043 /* If the block filter recursion method is defined use it to recurse down
5046 if (bs->drv->bdrv_recurse_is_first_non_filter) {
5047 return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5050 /* the driver is a block filter but don't allow to recurse -> return false
5055 /* This function checks if the candidate is the first non filter bs down it's
5056 * bs chain. Since we don't have pointers to parents it explore all bs chains
5057 * from the top. Some filters can choose not to pass down the recursion.
5059 bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5061 BlockDriverState *bs;
5062 BdrvNextIterator it;
5064 /* walk down the bs forest recursively */
5065 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5068 /* try to recurse in this top level bs */
5069 perm = bdrv_recurse_is_first_non_filter(bs, candidate);
5071 /* candidate is the first non filter */
5073 bdrv_next_cleanup(&it);
5081 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
5082 const char *node_name, Error **errp)
5084 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
5085 AioContext *aio_context;
5087 if (!to_replace_bs) {
5088 error_setg(errp, "Node name '%s' not found", node_name);
5092 aio_context = bdrv_get_aio_context(to_replace_bs);
5093 aio_context_acquire(aio_context);
5095 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
5096 to_replace_bs = NULL;
5100 /* We don't want arbitrary node of the BDS chain to be replaced only the top
5101 * most non filter in order to prevent data corruption.
5102 * Another benefit is that this tests exclude backing files which are
5103 * blocked by the backing blockers.
5105 if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
5106 error_setg(errp, "Only top most non filter can be replaced");
5107 to_replace_bs = NULL;
5112 aio_context_release(aio_context);
5113 return to_replace_bs;
5116 static bool append_open_options(QDict *d, BlockDriverState *bs)
5118 const QDictEntry *entry;
5121 bool found_any = false;
5124 for (entry = qdict_first(bs->options); entry;
5125 entry = qdict_next(bs->options, entry))
5127 /* Exclude options for children */
5128 QLIST_FOREACH(child, &bs->children, next) {
5129 if (strstart(qdict_entry_key(entry), child->name, &p)
5130 && (!*p || *p == '.'))
5139 /* And exclude all non-driver-specific options */
5140 for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
5141 if (!strcmp(qdict_entry_key(entry), desc->name)) {
5149 qdict_put_obj(d, qdict_entry_key(entry),
5150 qobject_ref(qdict_entry_value(entry)));
5157 /* Updates the following BDS fields:
5158 * - exact_filename: A filename which may be used for opening a block device
5159 * which (mostly) equals the given BDS (even without any
5160 * other options; so reading and writing must return the same
5161 * results, but caching etc. may be different)
5162 * - full_open_options: Options which, when given when opening a block device
5163 * (without a filename), result in a BDS (mostly)
5164 * equalling the given one
5165 * - filename: If exact_filename is set, it is copied here. Otherwise,
5166 * full_open_options is converted to a JSON object, prefixed with
5167 * "json:" (for use through the JSON pseudo protocol) and put here.
5169 void bdrv_refresh_filename(BlockDriverState *bs)
5171 BlockDriver *drv = bs->drv;
5178 /* This BDS's file name will most probably depend on its file's name, so
5179 * refresh that first */
5181 bdrv_refresh_filename(bs->file->bs);
5184 if (drv->bdrv_refresh_filename) {
5185 /* Obsolete information is of no use here, so drop the old file name
5186 * information before refreshing it */
5187 bs->exact_filename[0] = '\0';
5188 if (bs->full_open_options) {
5189 qobject_unref(bs->full_open_options);
5190 bs->full_open_options = NULL;
5194 append_open_options(opts, bs);
5195 drv->bdrv_refresh_filename(bs, opts);
5196 qobject_unref(opts);
5197 } else if (bs->file) {
5198 /* Try to reconstruct valid information from the underlying file */
5199 bool has_open_options;
5201 bs->exact_filename[0] = '\0';
5202 if (bs->full_open_options) {
5203 qobject_unref(bs->full_open_options);
5204 bs->full_open_options = NULL;
5208 has_open_options = append_open_options(opts, bs);
5210 /* If no specific options have been given for this BDS, the filename of
5211 * the underlying file should suffice for this one as well */
5212 if (bs->file->bs->exact_filename[0] && !has_open_options) {
5213 strcpy(bs->exact_filename, bs->file->bs->exact_filename);
5215 /* Reconstructing the full options QDict is simple for most format block
5216 * drivers, as long as the full options are known for the underlying
5217 * file BDS. The full options QDict of that file BDS should somehow
5218 * contain a representation of the filename, therefore the following
5219 * suffices without querying the (exact_)filename of this BDS. */
5220 if (bs->file->bs->full_open_options) {
5221 qdict_put_str(opts, "driver", drv->format_name);
5222 qdict_put(opts, "file",
5223 qobject_ref(bs->file->bs->full_open_options));
5225 bs->full_open_options = opts;
5227 qobject_unref(opts);
5229 } else if (!bs->full_open_options && qdict_size(bs->options)) {
5230 /* There is no underlying file BDS (at least referenced by BDS.file),
5231 * so the full options QDict should be equal to the options given
5232 * specifically for this block device when it was opened (plus the
5233 * driver specification).
5234 * Because those options don't change, there is no need to update
5235 * full_open_options when it's already set. */
5238 append_open_options(opts, bs);
5239 qdict_put_str(opts, "driver", drv->format_name);
5241 if (bs->exact_filename[0]) {
5242 /* This may not work for all block protocol drivers (some may
5243 * require this filename to be parsed), but we have to find some
5244 * default solution here, so just include it. If some block driver
5245 * does not support pure options without any filename at all or
5246 * needs some special format of the options QDict, it needs to
5247 * implement the driver-specific bdrv_refresh_filename() function.
5249 qdict_put_str(opts, "filename", bs->exact_filename);
5252 bs->full_open_options = opts;
5255 if (bs->exact_filename[0]) {
5256 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
5257 } else if (bs->full_open_options) {
5258 QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
5259 snprintf(bs->filename, sizeof(bs->filename), "json:%s",
5260 qstring_get_str(json));
5261 qobject_unref(json);
5266 * Hot add/remove a BDS's child. So the user can take a child offline when
5267 * it is broken and take a new child online
5269 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5273 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
5274 error_setg(errp, "The node %s does not support adding a child",
5275 bdrv_get_device_or_node_name(parent_bs));
5279 if (!QLIST_EMPTY(&child_bs->parents)) {
5280 error_setg(errp, "The node %s already has a parent",
5281 child_bs->node_name);
5285 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5288 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5292 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5293 error_setg(errp, "The node %s does not support removing a child",
5294 bdrv_get_device_or_node_name(parent_bs));
5298 QLIST_FOREACH(tmp, &parent_bs->children, next) {
5305 error_setg(errp, "The node %s does not have a child named %s",
5306 bdrv_get_device_or_node_name(parent_bs),
5307 bdrv_get_device_or_node_name(child->bs));
5311 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5314 bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
5315 uint32_t granularity, Error **errp)
5317 BlockDriver *drv = bs->drv;
5320 error_setg_errno(errp, ENOMEDIUM,
5321 "Can't store persistent bitmaps to %s",
5322 bdrv_get_device_or_node_name(bs));
5326 if (!drv->bdrv_can_store_new_dirty_bitmap) {
5327 error_setg_errno(errp, ENOTSUP,
5328 "Can't store persistent bitmaps to %s",
5329 bdrv_get_device_or_node_name(bs));
5333 return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);