Merge tag 'qemu-macppc-20230206' of https://github.com/mcayland/qemu into staging
[qemu.git] / block.c
blobaa9062f2c1e5dbbb84d306a9a24c6109eea263c4
1 /*
2 * QEMU System Emulator block driver
4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2020 Virtuozzo International GmbH.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
26 #include "qemu/osdep.h"
27 #include "block/trace.h"
28 #include "block/block_int.h"
29 #include "block/blockjob.h"
30 #include "block/dirty-bitmap.h"
31 #include "block/fuse.h"
32 #include "block/nbd.h"
33 #include "block/qdict.h"
34 #include "qemu/error-report.h"
35 #include "block/module_block.h"
36 #include "qemu/main-loop.h"
37 #include "qemu/module.h"
38 #include "qapi/error.h"
39 #include "qapi/qmp/qdict.h"
40 #include "qapi/qmp/qjson.h"
41 #include "qapi/qmp/qnull.h"
42 #include "qapi/qmp/qstring.h"
43 #include "qapi/qobject-output-visitor.h"
44 #include "qapi/qapi-visit-block-core.h"
45 #include "sysemu/block-backend.h"
46 #include "qemu/notify.h"
47 #include "qemu/option.h"
48 #include "qemu/coroutine.h"
49 #include "block/qapi.h"
50 #include "qemu/timer.h"
51 #include "qemu/cutils.h"
52 #include "qemu/id.h"
53 #include "qemu/range.h"
54 #include "qemu/rcu.h"
55 #include "block/coroutines.h"
57 #ifdef CONFIG_BSD
58 #include <sys/ioctl.h>
59 #include <sys/queue.h>
60 #if defined(HAVE_SYS_DISK_H)
61 #include <sys/disk.h>
62 #endif
63 #endif
65 #ifdef _WIN32
66 #include <windows.h>
67 #endif
69 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
71 /* Protected by BQL */
72 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
73 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
75 /* Protected by BQL */
76 static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
77 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
79 /* Protected by BQL */
80 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
81 QLIST_HEAD_INITIALIZER(bdrv_drivers);
83 static BlockDriverState *bdrv_open_inherit(const char *filename,
84 const char *reference,
85 QDict *options, int flags,
86 BlockDriverState *parent,
87 const BdrvChildClass *child_class,
88 BdrvChildRole child_role,
89 Error **errp);
91 static bool bdrv_recurse_has_child(BlockDriverState *bs,
92 BlockDriverState *child);
94 static void bdrv_replace_child_noperm(BdrvChild *child,
95 BlockDriverState *new_bs);
96 static void bdrv_remove_child(BdrvChild *child, Transaction *tran);
98 static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
99 BlockReopenQueue *queue,
100 Transaction *change_child_tran, Error **errp);
101 static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
102 static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
104 static bool bdrv_backing_overridden(BlockDriverState *bs);
106 static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
107 GHashTable *visited, Transaction *tran,
108 Error **errp);
110 /* If non-zero, use only whitelisted block drivers */
111 static int use_bdrv_whitelist;
113 #ifdef _WIN32
114 static int is_windows_drive_prefix(const char *filename)
116 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
117 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
118 filename[1] == ':');
121 int is_windows_drive(const char *filename)
123 if (is_windows_drive_prefix(filename) &&
124 filename[2] == '\0')
125 return 1;
126 if (strstart(filename, "\\\\.\\", NULL) ||
127 strstart(filename, "//./", NULL))
128 return 1;
129 return 0;
131 #endif
133 size_t bdrv_opt_mem_align(BlockDriverState *bs)
135 if (!bs || !bs->drv) {
136 /* page size or 4k (hdd sector size) should be on the safe side */
137 return MAX(4096, qemu_real_host_page_size());
139 IO_CODE();
141 return bs->bl.opt_mem_alignment;
144 size_t bdrv_min_mem_align(BlockDriverState *bs)
146 if (!bs || !bs->drv) {
147 /* page size or 4k (hdd sector size) should be on the safe side */
148 return MAX(4096, qemu_real_host_page_size());
150 IO_CODE();
152 return bs->bl.min_mem_alignment;
155 /* check if the path starts with "<protocol>:" */
156 int path_has_protocol(const char *path)
158 const char *p;
160 #ifdef _WIN32
161 if (is_windows_drive(path) ||
162 is_windows_drive_prefix(path)) {
163 return 0;
165 p = path + strcspn(path, ":/\\");
166 #else
167 p = path + strcspn(path, ":/");
168 #endif
170 return *p == ':';
173 int path_is_absolute(const char *path)
175 #ifdef _WIN32
176 /* specific case for names like: "\\.\d:" */
177 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
178 return 1;
180 return (*path == '/' || *path == '\\');
181 #else
182 return (*path == '/');
183 #endif
186 /* if filename is absolute, just return its duplicate. Otherwise, build a
187 path to it by considering it is relative to base_path. URL are
188 supported. */
189 char *path_combine(const char *base_path, const char *filename)
191 const char *protocol_stripped = NULL;
192 const char *p, *p1;
193 char *result;
194 int len;
196 if (path_is_absolute(filename)) {
197 return g_strdup(filename);
200 if (path_has_protocol(base_path)) {
201 protocol_stripped = strchr(base_path, ':');
202 if (protocol_stripped) {
203 protocol_stripped++;
206 p = protocol_stripped ?: base_path;
208 p1 = strrchr(base_path, '/');
209 #ifdef _WIN32
211 const char *p2;
212 p2 = strrchr(base_path, '\\');
213 if (!p1 || p2 > p1) {
214 p1 = p2;
217 #endif
218 if (p1) {
219 p1++;
220 } else {
221 p1 = base_path;
223 if (p1 > p) {
224 p = p1;
226 len = p - base_path;
228 result = g_malloc(len + strlen(filename) + 1);
229 memcpy(result, base_path, len);
230 strcpy(result + len, filename);
232 return result;
236 * Helper function for bdrv_parse_filename() implementations to remove optional
237 * protocol prefixes (especially "file:") from a filename and for putting the
238 * stripped filename into the options QDict if there is such a prefix.
240 void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
241 QDict *options)
243 if (strstart(filename, prefix, &filename)) {
244 /* Stripping the explicit protocol prefix may result in a protocol
245 * prefix being (wrongly) detected (if the filename contains a colon) */
246 if (path_has_protocol(filename)) {
247 GString *fat_filename;
249 /* This means there is some colon before the first slash; therefore,
250 * this cannot be an absolute path */
251 assert(!path_is_absolute(filename));
253 /* And we can thus fix the protocol detection issue by prefixing it
254 * by "./" */
255 fat_filename = g_string_new("./");
256 g_string_append(fat_filename, filename);
258 assert(!path_has_protocol(fat_filename->str));
260 qdict_put(options, "filename",
261 qstring_from_gstring(fat_filename));
262 } else {
263 /* If no protocol prefix was detected, we can use the shortened
264 * filename as-is */
265 qdict_put_str(options, "filename", filename);
271 /* Returns whether the image file is opened as read-only. Note that this can
272 * return false and writing to the image file is still not possible because the
273 * image is inactivated. */
274 bool bdrv_is_read_only(BlockDriverState *bs)
276 IO_CODE();
277 return !(bs->open_flags & BDRV_O_RDWR);
280 int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
281 bool ignore_allow_rdw, Error **errp)
283 IO_CODE();
285 /* Do not set read_only if copy_on_read is enabled */
286 if (bs->copy_on_read && read_only) {
287 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
288 bdrv_get_device_or_node_name(bs));
289 return -EINVAL;
292 /* Do not clear read_only if it is prohibited */
293 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
294 !ignore_allow_rdw)
296 error_setg(errp, "Node '%s' is read only",
297 bdrv_get_device_or_node_name(bs));
298 return -EPERM;
301 return 0;
305 * Called by a driver that can only provide a read-only image.
307 * Returns 0 if the node is already read-only or it could switch the node to
308 * read-only because BDRV_O_AUTO_RDONLY is set.
310 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
311 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
312 * is not NULL, it is used as the error message for the Error object.
314 int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
315 Error **errp)
317 int ret = 0;
318 IO_CODE();
320 if (!(bs->open_flags & BDRV_O_RDWR)) {
321 return 0;
323 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
324 goto fail;
327 ret = bdrv_can_set_read_only(bs, true, false, NULL);
328 if (ret < 0) {
329 goto fail;
332 bs->open_flags &= ~BDRV_O_RDWR;
334 return 0;
336 fail:
337 error_setg(errp, "%s", errmsg ?: "Image is read-only");
338 return -EACCES;
342 * If @backing is empty, this function returns NULL without setting
343 * @errp. In all other cases, NULL will only be returned with @errp
344 * set.
346 * Therefore, a return value of NULL without @errp set means that
347 * there is no backing file; if @errp is set, there is one but its
348 * absolute filename cannot be generated.
350 char *bdrv_get_full_backing_filename_from_filename(const char *backed,
351 const char *backing,
352 Error **errp)
354 if (backing[0] == '\0') {
355 return NULL;
356 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
357 return g_strdup(backing);
358 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
359 error_setg(errp, "Cannot use relative backing file names for '%s'",
360 backed);
361 return NULL;
362 } else {
363 return path_combine(backed, backing);
368 * If @filename is empty or NULL, this function returns NULL without
369 * setting @errp. In all other cases, NULL will only be returned with
370 * @errp set.
372 static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
373 const char *filename, Error **errp)
375 char *dir, *full_name;
377 if (!filename || filename[0] == '\0') {
378 return NULL;
379 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
380 return g_strdup(filename);
383 dir = bdrv_dirname(relative_to, errp);
384 if (!dir) {
385 return NULL;
388 full_name = g_strconcat(dir, filename, NULL);
389 g_free(dir);
390 return full_name;
393 char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
395 GLOBAL_STATE_CODE();
396 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
399 void bdrv_register(BlockDriver *bdrv)
401 assert(bdrv->format_name);
402 GLOBAL_STATE_CODE();
403 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
406 BlockDriverState *bdrv_new(void)
408 BlockDriverState *bs;
409 int i;
411 GLOBAL_STATE_CODE();
413 bs = g_new0(BlockDriverState, 1);
414 QLIST_INIT(&bs->dirty_bitmaps);
415 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
416 QLIST_INIT(&bs->op_blockers[i]);
418 qemu_co_mutex_init(&bs->reqs_lock);
419 qemu_mutex_init(&bs->dirty_bitmap_mutex);
420 bs->refcnt = 1;
421 bs->aio_context = qemu_get_aio_context();
423 qemu_co_queue_init(&bs->flush_queue);
425 qemu_co_mutex_init(&bs->bsc_modify_lock);
426 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
428 for (i = 0; i < bdrv_drain_all_count; i++) {
429 bdrv_drained_begin(bs);
432 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
434 return bs;
437 static BlockDriver *bdrv_do_find_format(const char *format_name)
439 BlockDriver *drv1;
440 GLOBAL_STATE_CODE();
442 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
443 if (!strcmp(drv1->format_name, format_name)) {
444 return drv1;
448 return NULL;
451 BlockDriver *bdrv_find_format(const char *format_name)
453 BlockDriver *drv1;
454 int i;
456 GLOBAL_STATE_CODE();
458 drv1 = bdrv_do_find_format(format_name);
459 if (drv1) {
460 return drv1;
463 /* The driver isn't registered, maybe we need to load a module */
464 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
465 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
466 Error *local_err = NULL;
467 int rv = block_module_load(block_driver_modules[i].library_name,
468 &local_err);
469 if (rv > 0) {
470 return bdrv_do_find_format(format_name);
471 } else if (rv < 0) {
472 error_report_err(local_err);
474 break;
477 return NULL;
480 static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
482 static const char *whitelist_rw[] = {
483 CONFIG_BDRV_RW_WHITELIST
484 NULL
486 static const char *whitelist_ro[] = {
487 CONFIG_BDRV_RO_WHITELIST
488 NULL
490 const char **p;
492 if (!whitelist_rw[0] && !whitelist_ro[0]) {
493 return 1; /* no whitelist, anything goes */
496 for (p = whitelist_rw; *p; p++) {
497 if (!strcmp(format_name, *p)) {
498 return 1;
501 if (read_only) {
502 for (p = whitelist_ro; *p; p++) {
503 if (!strcmp(format_name, *p)) {
504 return 1;
508 return 0;
511 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
513 GLOBAL_STATE_CODE();
514 return bdrv_format_is_whitelisted(drv->format_name, read_only);
517 bool bdrv_uses_whitelist(void)
519 return use_bdrv_whitelist;
522 typedef struct CreateCo {
523 BlockDriver *drv;
524 char *filename;
525 QemuOpts *opts;
526 int ret;
527 Error *err;
528 } CreateCo;
530 int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename,
531 QemuOpts *opts, Error **errp)
533 int ret;
534 GLOBAL_STATE_CODE();
535 ERRP_GUARD();
537 if (!drv->bdrv_co_create_opts) {
538 error_setg(errp, "Driver '%s' does not support image creation",
539 drv->format_name);
540 return -ENOTSUP;
543 ret = drv->bdrv_co_create_opts(drv, filename, opts, errp);
544 if (ret < 0 && !*errp) {
545 error_setg_errno(errp, -ret, "Could not create image");
548 return ret;
552 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
553 * least the given @minimum_size.
555 * On success, return @blk's actual length.
556 * Otherwise, return -errno.
558 static int64_t create_file_fallback_truncate(BlockBackend *blk,
559 int64_t minimum_size, Error **errp)
561 Error *local_err = NULL;
562 int64_t size;
563 int ret;
565 GLOBAL_STATE_CODE();
567 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
568 &local_err);
569 if (ret < 0 && ret != -ENOTSUP) {
570 error_propagate(errp, local_err);
571 return ret;
574 size = blk_getlength(blk);
575 if (size < 0) {
576 error_free(local_err);
577 error_setg_errno(errp, -size,
578 "Failed to inquire the new image file's length");
579 return size;
582 if (size < minimum_size) {
583 /* Need to grow the image, but we failed to do that */
584 error_propagate(errp, local_err);
585 return -ENOTSUP;
588 error_free(local_err);
589 local_err = NULL;
591 return size;
595 * Helper function for bdrv_create_file_fallback(): Zero the first
596 * sector to remove any potentially pre-existing image header.
598 static int coroutine_fn
599 create_file_fallback_zero_first_sector(BlockBackend *blk,
600 int64_t current_size,
601 Error **errp)
603 int64_t bytes_to_clear;
604 int ret;
606 GLOBAL_STATE_CODE();
608 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
609 if (bytes_to_clear) {
610 ret = blk_co_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
611 if (ret < 0) {
612 error_setg_errno(errp, -ret,
613 "Failed to clear the new image's first sector");
614 return ret;
618 return 0;
622 * Simple implementation of bdrv_co_create_opts for protocol drivers
623 * which only support creation via opening a file
624 * (usually existing raw storage device)
626 int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
627 const char *filename,
628 QemuOpts *opts,
629 Error **errp)
631 BlockBackend *blk;
632 QDict *options;
633 int64_t size = 0;
634 char *buf = NULL;
635 PreallocMode prealloc;
636 Error *local_err = NULL;
637 int ret;
639 GLOBAL_STATE_CODE();
641 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
642 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
643 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
644 PREALLOC_MODE_OFF, &local_err);
645 g_free(buf);
646 if (local_err) {
647 error_propagate(errp, local_err);
648 return -EINVAL;
651 if (prealloc != PREALLOC_MODE_OFF) {
652 error_setg(errp, "Unsupported preallocation mode '%s'",
653 PreallocMode_str(prealloc));
654 return -ENOTSUP;
657 options = qdict_new();
658 qdict_put_str(options, "driver", drv->format_name);
660 blk = blk_new_open(filename, NULL, options,
661 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
662 if (!blk) {
663 error_prepend(errp, "Protocol driver '%s' does not support image "
664 "creation, and opening the image failed: ",
665 drv->format_name);
666 return -EINVAL;
669 size = create_file_fallback_truncate(blk, size, errp);
670 if (size < 0) {
671 ret = size;
672 goto out;
675 ret = create_file_fallback_zero_first_sector(blk, size, errp);
676 if (ret < 0) {
677 goto out;
680 ret = 0;
681 out:
682 blk_unref(blk);
683 return ret;
686 int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts,
687 Error **errp)
689 QemuOpts *protocol_opts;
690 BlockDriver *drv;
691 QDict *qdict;
692 int ret;
694 GLOBAL_STATE_CODE();
696 drv = bdrv_find_protocol(filename, true, errp);
697 if (drv == NULL) {
698 return -ENOENT;
701 if (!drv->create_opts) {
702 error_setg(errp, "Driver '%s' does not support image creation",
703 drv->format_name);
704 return -ENOTSUP;
708 * 'opts' contains a QemuOptsList with a combination of format and protocol
709 * default values.
711 * The format properly removes its options, but the default values remain
712 * in 'opts->list'. So if the protocol has options with the same name
713 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
714 * of the format, since for overlapping options, the format wins.
716 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
717 * only the set options, and then convert it back to QemuOpts, using the
718 * create_opts of the protocol. So the new QemuOpts, will contain only the
719 * protocol defaults.
721 qdict = qemu_opts_to_qdict(opts, NULL);
722 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
723 if (protocol_opts == NULL) {
724 ret = -EINVAL;
725 goto out;
728 ret = bdrv_co_create(drv, filename, protocol_opts, errp);
729 out:
730 qemu_opts_del(protocol_opts);
731 qobject_unref(qdict);
732 return ret;
735 int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
737 Error *local_err = NULL;
738 int ret;
740 IO_CODE();
741 assert(bs != NULL);
743 if (!bs->drv) {
744 error_setg(errp, "Block node '%s' is not opened", bs->filename);
745 return -ENOMEDIUM;
748 if (!bs->drv->bdrv_co_delete_file) {
749 error_setg(errp, "Driver '%s' does not support image deletion",
750 bs->drv->format_name);
751 return -ENOTSUP;
754 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
755 if (ret < 0) {
756 error_propagate(errp, local_err);
759 return ret;
762 void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
764 Error *local_err = NULL;
765 int ret;
766 IO_CODE();
768 if (!bs) {
769 return;
772 ret = bdrv_co_delete_file(bs, &local_err);
774 * ENOTSUP will happen if the block driver doesn't support
775 * the 'bdrv_co_delete_file' interface. This is a predictable
776 * scenario and shouldn't be reported back to the user.
778 if (ret == -ENOTSUP) {
779 error_free(local_err);
780 } else if (ret < 0) {
781 error_report_err(local_err);
786 * Try to get @bs's logical and physical block size.
787 * On success, store them in @bsz struct and return 0.
788 * On failure return -errno.
789 * @bs must not be empty.
791 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
793 BlockDriver *drv = bs->drv;
794 BlockDriverState *filtered = bdrv_filter_bs(bs);
795 GLOBAL_STATE_CODE();
797 if (drv && drv->bdrv_probe_blocksizes) {
798 return drv->bdrv_probe_blocksizes(bs, bsz);
799 } else if (filtered) {
800 return bdrv_probe_blocksizes(filtered, bsz);
803 return -ENOTSUP;
807 * Try to get @bs's geometry (cyls, heads, sectors).
808 * On success, store them in @geo struct and return 0.
809 * On failure return -errno.
810 * @bs must not be empty.
812 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
814 BlockDriver *drv = bs->drv;
815 BlockDriverState *filtered = bdrv_filter_bs(bs);
816 GLOBAL_STATE_CODE();
818 if (drv && drv->bdrv_probe_geometry) {
819 return drv->bdrv_probe_geometry(bs, geo);
820 } else if (filtered) {
821 return bdrv_probe_geometry(filtered, geo);
824 return -ENOTSUP;
828 * Create a uniquely-named empty temporary file.
829 * Return the actual file name used upon success, otherwise NULL.
830 * This string should be freed with g_free() when not needed any longer.
832 * Note: creating a temporary file for the caller to (re)open is
833 * inherently racy. Use g_file_open_tmp() instead whenever practical.
835 char *create_tmp_file(Error **errp)
837 int fd;
838 const char *tmpdir;
839 g_autofree char *filename = NULL;
841 tmpdir = g_get_tmp_dir();
842 #ifndef _WIN32
844 * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot")
846 * This function is used to create temporary disk images (like -snapshot),
847 * so the files can become very large. /tmp is often a tmpfs where as
848 * /var/tmp is usually on a disk, so more appropriate for disk images.
850 if (!g_strcmp0(tmpdir, "/tmp")) {
851 tmpdir = "/var/tmp";
853 #endif
855 filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir);
856 fd = g_mkstemp(filename);
857 if (fd < 0) {
858 error_setg_errno(errp, errno, "Could not open temporary file '%s'",
859 filename);
860 return NULL;
862 close(fd);
864 return g_steal_pointer(&filename);
868 * Detect host devices. By convention, /dev/cdrom[N] is always
869 * recognized as a host CDROM.
871 static BlockDriver *find_hdev_driver(const char *filename)
873 int score_max = 0, score;
874 BlockDriver *drv = NULL, *d;
875 GLOBAL_STATE_CODE();
877 QLIST_FOREACH(d, &bdrv_drivers, list) {
878 if (d->bdrv_probe_device) {
879 score = d->bdrv_probe_device(filename);
880 if (score > score_max) {
881 score_max = score;
882 drv = d;
887 return drv;
890 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
892 BlockDriver *drv1;
893 GLOBAL_STATE_CODE();
895 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
896 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
897 return drv1;
901 return NULL;
904 BlockDriver *bdrv_find_protocol(const char *filename,
905 bool allow_protocol_prefix,
906 Error **errp)
908 BlockDriver *drv1;
909 char protocol[128];
910 int len;
911 const char *p;
912 int i;
914 GLOBAL_STATE_CODE();
915 /* TODO Drivers without bdrv_file_open must be specified explicitly */
918 * XXX(hch): we really should not let host device detection
919 * override an explicit protocol specification, but moving this
920 * later breaks access to device names with colons in them.
921 * Thanks to the brain-dead persistent naming schemes on udev-
922 * based Linux systems those actually are quite common.
924 drv1 = find_hdev_driver(filename);
925 if (drv1) {
926 return drv1;
929 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
930 return &bdrv_file;
933 p = strchr(filename, ':');
934 assert(p != NULL);
935 len = p - filename;
936 if (len > sizeof(protocol) - 1)
937 len = sizeof(protocol) - 1;
938 memcpy(protocol, filename, len);
939 protocol[len] = '\0';
941 drv1 = bdrv_do_find_protocol(protocol);
942 if (drv1) {
943 return drv1;
946 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
947 if (block_driver_modules[i].protocol_name &&
948 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
949 int rv = block_module_load(block_driver_modules[i].library_name, errp);
950 if (rv > 0) {
951 drv1 = bdrv_do_find_protocol(protocol);
952 } else if (rv < 0) {
953 return NULL;
955 break;
959 if (!drv1) {
960 error_setg(errp, "Unknown protocol '%s'", protocol);
962 return drv1;
966 * Guess image format by probing its contents.
967 * This is not a good idea when your image is raw (CVE-2008-2004), but
968 * we do it anyway for backward compatibility.
970 * @buf contains the image's first @buf_size bytes.
971 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
972 * but can be smaller if the image file is smaller)
973 * @filename is its filename.
975 * For all block drivers, call the bdrv_probe() method to get its
976 * probing score.
977 * Return the first block driver with the highest probing score.
979 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
980 const char *filename)
982 int score_max = 0, score;
983 BlockDriver *drv = NULL, *d;
984 IO_CODE();
986 QLIST_FOREACH(d, &bdrv_drivers, list) {
987 if (d->bdrv_probe) {
988 score = d->bdrv_probe(buf, buf_size, filename);
989 if (score > score_max) {
990 score_max = score;
991 drv = d;
996 return drv;
999 static int find_image_format(BlockBackend *file, const char *filename,
1000 BlockDriver **pdrv, Error **errp)
1002 BlockDriver *drv;
1003 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
1004 int ret = 0;
1006 GLOBAL_STATE_CODE();
1008 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
1009 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
1010 *pdrv = &bdrv_raw;
1011 return ret;
1014 ret = blk_pread(file, 0, sizeof(buf), buf, 0);
1015 if (ret < 0) {
1016 error_setg_errno(errp, -ret, "Could not read image for determining its "
1017 "format");
1018 *pdrv = NULL;
1019 return ret;
1022 drv = bdrv_probe_all(buf, sizeof(buf), filename);
1023 if (!drv) {
1024 error_setg(errp, "Could not determine image format: No compatible "
1025 "driver found");
1026 *pdrv = NULL;
1027 return -ENOENT;
1030 *pdrv = drv;
1031 return 0;
1035 * Set the current 'total_sectors' value
1036 * Return 0 on success, -errno on error.
1038 int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs,
1039 int64_t hint)
1041 BlockDriver *drv = bs->drv;
1042 IO_CODE();
1044 if (!drv) {
1045 return -ENOMEDIUM;
1048 /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */
1049 if (bdrv_is_sg(bs))
1050 return 0;
1052 /* query actual device if possible, otherwise just trust the hint */
1053 if (drv->bdrv_co_getlength) {
1054 int64_t length = drv->bdrv_co_getlength(bs);
1055 if (length < 0) {
1056 return length;
1058 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
1061 bs->total_sectors = hint;
1063 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1064 return -EFBIG;
1067 return 0;
1071 * Combines a QDict of new block driver @options with any missing options taken
1072 * from @old_options, so that leaving out an option defaults to its old value.
1074 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1075 QDict *old_options)
1077 GLOBAL_STATE_CODE();
1078 if (bs->drv && bs->drv->bdrv_join_options) {
1079 bs->drv->bdrv_join_options(options, old_options);
1080 } else {
1081 qdict_join(options, old_options, false);
1085 static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1086 int open_flags,
1087 Error **errp)
1089 Error *local_err = NULL;
1090 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1091 BlockdevDetectZeroesOptions detect_zeroes =
1092 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1093 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
1094 GLOBAL_STATE_CODE();
1095 g_free(value);
1096 if (local_err) {
1097 error_propagate(errp, local_err);
1098 return detect_zeroes;
1101 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1102 !(open_flags & BDRV_O_UNMAP))
1104 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1105 "without setting discard operation to unmap");
1108 return detect_zeroes;
1112 * Set open flags for aio engine
1114 * Return 0 on success, -1 if the engine specified is invalid
1116 int bdrv_parse_aio(const char *mode, int *flags)
1118 if (!strcmp(mode, "threads")) {
1119 /* do nothing, default */
1120 } else if (!strcmp(mode, "native")) {
1121 *flags |= BDRV_O_NATIVE_AIO;
1122 #ifdef CONFIG_LINUX_IO_URING
1123 } else if (!strcmp(mode, "io_uring")) {
1124 *flags |= BDRV_O_IO_URING;
1125 #endif
1126 } else {
1127 return -1;
1130 return 0;
1134 * Set open flags for a given discard mode
1136 * Return 0 on success, -1 if the discard mode was invalid.
1138 int bdrv_parse_discard_flags(const char *mode, int *flags)
1140 *flags &= ~BDRV_O_UNMAP;
1142 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1143 /* do nothing */
1144 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1145 *flags |= BDRV_O_UNMAP;
1146 } else {
1147 return -1;
1150 return 0;
1154 * Set open flags for a given cache mode
1156 * Return 0 on success, -1 if the cache mode was invalid.
1158 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
1160 *flags &= ~BDRV_O_CACHE_MASK;
1162 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
1163 *writethrough = false;
1164 *flags |= BDRV_O_NOCACHE;
1165 } else if (!strcmp(mode, "directsync")) {
1166 *writethrough = true;
1167 *flags |= BDRV_O_NOCACHE;
1168 } else if (!strcmp(mode, "writeback")) {
1169 *writethrough = false;
1170 } else if (!strcmp(mode, "unsafe")) {
1171 *writethrough = false;
1172 *flags |= BDRV_O_NO_FLUSH;
1173 } else if (!strcmp(mode, "writethrough")) {
1174 *writethrough = true;
1175 } else {
1176 return -1;
1179 return 0;
1182 static char *bdrv_child_get_parent_desc(BdrvChild *c)
1184 BlockDriverState *parent = c->opaque;
1185 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
1188 static void bdrv_child_cb_drained_begin(BdrvChild *child)
1190 BlockDriverState *bs = child->opaque;
1191 bdrv_do_drained_begin_quiesce(bs, NULL);
1194 static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1196 BlockDriverState *bs = child->opaque;
1197 return bdrv_drain_poll(bs, NULL, false);
1200 static void bdrv_child_cb_drained_end(BdrvChild *child)
1202 BlockDriverState *bs = child->opaque;
1203 bdrv_drained_end(bs);
1206 static int bdrv_child_cb_inactivate(BdrvChild *child)
1208 BlockDriverState *bs = child->opaque;
1209 GLOBAL_STATE_CODE();
1210 assert(bs->open_flags & BDRV_O_INACTIVE);
1211 return 0;
1214 static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx,
1215 GHashTable *visited, Transaction *tran,
1216 Error **errp)
1218 BlockDriverState *bs = child->opaque;
1219 return bdrv_change_aio_context(bs, ctx, visited, tran, errp);
1223 * Returns the options and flags that a temporary snapshot should get, based on
1224 * the originally requested flags (the originally requested image will have
1225 * flags like a backing file)
1227 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1228 int parent_flags, QDict *parent_options)
1230 GLOBAL_STATE_CODE();
1231 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1233 /* For temporary files, unconditional cache=unsafe is fine */
1234 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1235 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
1237 /* Copy the read-only and discard options from the parent */
1238 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1239 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
1241 /* aio=native doesn't work for cache.direct=off, so disable it for the
1242 * temporary snapshot */
1243 *child_flags &= ~BDRV_O_NATIVE_AIO;
1246 static void bdrv_backing_attach(BdrvChild *c)
1248 BlockDriverState *parent = c->opaque;
1249 BlockDriverState *backing_hd = c->bs;
1251 GLOBAL_STATE_CODE();
1252 assert(!parent->backing_blocker);
1253 error_setg(&parent->backing_blocker,
1254 "node is used as backing hd of '%s'",
1255 bdrv_get_device_or_node_name(parent));
1257 bdrv_refresh_filename(backing_hd);
1259 parent->open_flags &= ~BDRV_O_NO_BACKING;
1261 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1262 /* Otherwise we won't be able to commit or stream */
1263 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1264 parent->backing_blocker);
1265 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1266 parent->backing_blocker);
1268 * We do backup in 3 ways:
1269 * 1. drive backup
1270 * The target bs is new opened, and the source is top BDS
1271 * 2. blockdev backup
1272 * Both the source and the target are top BDSes.
1273 * 3. internal backup(used for block replication)
1274 * Both the source and the target are backing file
1276 * In case 1 and 2, neither the source nor the target is the backing file.
1277 * In case 3, we will block the top BDS, so there is only one block job
1278 * for the top BDS and its backing chain.
1280 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1281 parent->backing_blocker);
1282 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1283 parent->backing_blocker);
1286 static void bdrv_backing_detach(BdrvChild *c)
1288 BlockDriverState *parent = c->opaque;
1290 GLOBAL_STATE_CODE();
1291 assert(parent->backing_blocker);
1292 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1293 error_free(parent->backing_blocker);
1294 parent->backing_blocker = NULL;
1297 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1298 const char *filename, Error **errp)
1300 BlockDriverState *parent = c->opaque;
1301 bool read_only = bdrv_is_read_only(parent);
1302 int ret;
1303 GLOBAL_STATE_CODE();
1305 if (read_only) {
1306 ret = bdrv_reopen_set_read_only(parent, false, errp);
1307 if (ret < 0) {
1308 return ret;
1312 ret = bdrv_change_backing_file(parent, filename,
1313 base->drv ? base->drv->format_name : "",
1314 false);
1315 if (ret < 0) {
1316 error_setg_errno(errp, -ret, "Could not update backing file link");
1319 if (read_only) {
1320 bdrv_reopen_set_read_only(parent, true, NULL);
1323 return ret;
1327 * Returns the options and flags that a generic child of a BDS should
1328 * get, based on the given options and flags for the parent BDS.
1330 static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1331 int *child_flags, QDict *child_options,
1332 int parent_flags, QDict *parent_options)
1334 int flags = parent_flags;
1335 GLOBAL_STATE_CODE();
1338 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1339 * Generally, the question to answer is: Should this child be
1340 * format-probed by default?
1344 * Pure and non-filtered data children of non-format nodes should
1345 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1346 * set). This only affects a very limited set of drivers (namely
1347 * quorum and blkverify when this comment was written).
1348 * Force-clear BDRV_O_PROTOCOL then.
1350 if (!parent_is_format &&
1351 (role & BDRV_CHILD_DATA) &&
1352 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1354 flags &= ~BDRV_O_PROTOCOL;
1358 * All children of format nodes (except for COW children) and all
1359 * metadata children in general should never be format-probed.
1360 * Force-set BDRV_O_PROTOCOL then.
1362 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1363 (role & BDRV_CHILD_METADATA))
1365 flags |= BDRV_O_PROTOCOL;
1369 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1370 * the parent.
1372 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1373 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1374 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1376 if (role & BDRV_CHILD_COW) {
1377 /* backing files are opened read-only by default */
1378 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1379 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1380 } else {
1381 /* Inherit the read-only option from the parent if it's not set */
1382 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1383 qdict_copy_default(child_options, parent_options,
1384 BDRV_OPT_AUTO_READ_ONLY);
1388 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1389 * can default to enable it on lower layers regardless of the
1390 * parent option.
1392 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1394 /* Clear flags that only apply to the top layer */
1395 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1397 if (role & BDRV_CHILD_METADATA) {
1398 flags &= ~BDRV_O_NO_IO;
1400 if (role & BDRV_CHILD_COW) {
1401 flags &= ~BDRV_O_TEMPORARY;
1404 *child_flags = flags;
1407 static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child)
1409 BlockDriverState *bs = child->opaque;
1411 assert_bdrv_graph_writable();
1412 QLIST_INSERT_HEAD(&bs->children, child, next);
1413 if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) {
1415 * Here we handle filters and block/raw-format.c when it behave like
1416 * filter. They generally have a single PRIMARY child, which is also the
1417 * FILTERED child, and that they may have multiple more children, which
1418 * are neither PRIMARY nor FILTERED. And never we have a COW child here.
1419 * So bs->file will be the PRIMARY child, unless the PRIMARY child goes
1420 * into bs->backing on exceptional cases; and bs->backing will be
1421 * nothing else.
1423 assert(!(child->role & BDRV_CHILD_COW));
1424 if (child->role & BDRV_CHILD_PRIMARY) {
1425 assert(child->role & BDRV_CHILD_FILTERED);
1426 assert(!bs->backing);
1427 assert(!bs->file);
1429 if (bs->drv->filtered_child_is_backing) {
1430 bs->backing = child;
1431 } else {
1432 bs->file = child;
1434 } else {
1435 assert(!(child->role & BDRV_CHILD_FILTERED));
1437 } else if (child->role & BDRV_CHILD_COW) {
1438 assert(bs->drv->supports_backing);
1439 assert(!(child->role & BDRV_CHILD_PRIMARY));
1440 assert(!bs->backing);
1441 bs->backing = child;
1442 bdrv_backing_attach(child);
1443 } else if (child->role & BDRV_CHILD_PRIMARY) {
1444 assert(!bs->file);
1445 bs->file = child;
1449 static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child)
1451 BlockDriverState *bs = child->opaque;
1453 if (child->role & BDRV_CHILD_COW) {
1454 bdrv_backing_detach(child);
1457 assert_bdrv_graph_writable();
1458 QLIST_REMOVE(child, next);
1459 if (child == bs->backing) {
1460 assert(child != bs->file);
1461 bs->backing = NULL;
1462 } else if (child == bs->file) {
1463 bs->file = NULL;
1467 static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1468 const char *filename, Error **errp)
1470 if (c->role & BDRV_CHILD_COW) {
1471 return bdrv_backing_update_filename(c, base, filename, errp);
1473 return 0;
1476 AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
1478 BlockDriverState *bs = c->opaque;
1479 IO_CODE();
1481 return bdrv_get_aio_context(bs);
1484 const BdrvChildClass child_of_bds = {
1485 .parent_is_bds = true,
1486 .get_parent_desc = bdrv_child_get_parent_desc,
1487 .inherit_options = bdrv_inherited_options,
1488 .drained_begin = bdrv_child_cb_drained_begin,
1489 .drained_poll = bdrv_child_cb_drained_poll,
1490 .drained_end = bdrv_child_cb_drained_end,
1491 .attach = bdrv_child_cb_attach,
1492 .detach = bdrv_child_cb_detach,
1493 .inactivate = bdrv_child_cb_inactivate,
1494 .change_aio_ctx = bdrv_child_cb_change_aio_ctx,
1495 .update_filename = bdrv_child_cb_update_filename,
1496 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
1499 AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1501 IO_CODE();
1502 return c->klass->get_parent_aio_context(c);
1505 static int bdrv_open_flags(BlockDriverState *bs, int flags)
1507 int open_flags = flags;
1508 GLOBAL_STATE_CODE();
1511 * Clear flags that are internal to the block layer before opening the
1512 * image.
1514 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1516 return open_flags;
1519 static void update_flags_from_options(int *flags, QemuOpts *opts)
1521 GLOBAL_STATE_CODE();
1523 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
1525 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1526 *flags |= BDRV_O_NO_FLUSH;
1529 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1530 *flags |= BDRV_O_NOCACHE;
1533 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
1534 *flags |= BDRV_O_RDWR;
1537 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1538 *flags |= BDRV_O_AUTO_RDONLY;
1542 static void update_options_from_flags(QDict *options, int flags)
1544 GLOBAL_STATE_CODE();
1545 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1546 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1548 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
1549 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1550 flags & BDRV_O_NO_FLUSH);
1552 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1553 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1555 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1556 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1557 flags & BDRV_O_AUTO_RDONLY);
1561 static void bdrv_assign_node_name(BlockDriverState *bs,
1562 const char *node_name,
1563 Error **errp)
1565 char *gen_node_name = NULL;
1566 GLOBAL_STATE_CODE();
1568 if (!node_name) {
1569 node_name = gen_node_name = id_generate(ID_BLOCK);
1570 } else if (!id_wellformed(node_name)) {
1572 * Check for empty string or invalid characters, but not if it is
1573 * generated (generated names use characters not available to the user)
1575 error_setg(errp, "Invalid node-name: '%s'", node_name);
1576 return;
1579 /* takes care of avoiding namespaces collisions */
1580 if (blk_by_name(node_name)) {
1581 error_setg(errp, "node-name=%s is conflicting with a device id",
1582 node_name);
1583 goto out;
1586 /* takes care of avoiding duplicates node names */
1587 if (bdrv_find_node(node_name)) {
1588 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
1589 goto out;
1592 /* Make sure that the node name isn't truncated */
1593 if (strlen(node_name) >= sizeof(bs->node_name)) {
1594 error_setg(errp, "Node name too long");
1595 goto out;
1598 /* copy node name into the bs and insert it into the graph list */
1599 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1600 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
1601 out:
1602 g_free(gen_node_name);
1606 * The caller must always hold @bs AioContext lock, because this function calls
1607 * bdrv_refresh_total_sectors() which polls when called from non-coroutine
1608 * context.
1610 static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1611 const char *node_name, QDict *options,
1612 int open_flags, Error **errp)
1614 Error *local_err = NULL;
1615 int i, ret;
1616 GLOBAL_STATE_CODE();
1618 bdrv_assign_node_name(bs, node_name, &local_err);
1619 if (local_err) {
1620 error_propagate(errp, local_err);
1621 return -EINVAL;
1624 bs->drv = drv;
1625 bs->opaque = g_malloc0(drv->instance_size);
1627 if (drv->bdrv_file_open) {
1628 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1629 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1630 } else if (drv->bdrv_open) {
1631 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1632 } else {
1633 ret = 0;
1636 if (ret < 0) {
1637 if (local_err) {
1638 error_propagate(errp, local_err);
1639 } else if (bs->filename[0]) {
1640 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1641 } else {
1642 error_setg_errno(errp, -ret, "Could not open image");
1644 goto open_failed;
1647 assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK));
1648 assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK));
1651 * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves
1652 * drivers that pass read/write requests through to a child the trouble of
1653 * declaring support explicitly.
1655 * Drivers must not propagate this flag accidentally when they initiate I/O
1656 * to a bounce buffer. That case should be rare though.
1658 bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF;
1659 bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF;
1661 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
1662 if (ret < 0) {
1663 error_setg_errno(errp, -ret, "Could not refresh total sector count");
1664 return ret;
1667 bdrv_refresh_limits(bs, NULL, &local_err);
1668 if (local_err) {
1669 error_propagate(errp, local_err);
1670 return -EINVAL;
1673 assert(bdrv_opt_mem_align(bs) != 0);
1674 assert(bdrv_min_mem_align(bs) != 0);
1675 assert(is_power_of_2(bs->bl.request_alignment));
1677 for (i = 0; i < bs->quiesce_counter; i++) {
1678 if (drv->bdrv_drain_begin) {
1679 drv->bdrv_drain_begin(bs);
1683 return 0;
1684 open_failed:
1685 bs->drv = NULL;
1686 if (bs->file != NULL) {
1687 bdrv_unref_child(bs, bs->file);
1688 assert(!bs->file);
1690 g_free(bs->opaque);
1691 bs->opaque = NULL;
1692 return ret;
1696 * Create and open a block node.
1698 * @options is a QDict of options to pass to the block drivers, or NULL for an
1699 * empty set of options. The reference to the QDict belongs to the block layer
1700 * after the call (even on failure), so if the caller intends to reuse the
1701 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1703 BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1704 const char *node_name,
1705 QDict *options, int flags,
1706 Error **errp)
1708 BlockDriverState *bs;
1709 int ret;
1711 GLOBAL_STATE_CODE();
1713 bs = bdrv_new();
1714 bs->open_flags = flags;
1715 bs->options = options ?: qdict_new();
1716 bs->explicit_options = qdict_clone_shallow(bs->options);
1717 bs->opaque = NULL;
1719 update_options_from_flags(bs->options, flags);
1721 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1722 if (ret < 0) {
1723 qobject_unref(bs->explicit_options);
1724 bs->explicit_options = NULL;
1725 qobject_unref(bs->options);
1726 bs->options = NULL;
1727 bdrv_unref(bs);
1728 return NULL;
1731 return bs;
1734 /* Create and open a block node. */
1735 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1736 int flags, Error **errp)
1738 GLOBAL_STATE_CODE();
1739 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1742 QemuOptsList bdrv_runtime_opts = {
1743 .name = "bdrv_common",
1744 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1745 .desc = {
1747 .name = "node-name",
1748 .type = QEMU_OPT_STRING,
1749 .help = "Node name of the block device node",
1752 .name = "driver",
1753 .type = QEMU_OPT_STRING,
1754 .help = "Block driver to use for the node",
1757 .name = BDRV_OPT_CACHE_DIRECT,
1758 .type = QEMU_OPT_BOOL,
1759 .help = "Bypass software writeback cache on the host",
1762 .name = BDRV_OPT_CACHE_NO_FLUSH,
1763 .type = QEMU_OPT_BOOL,
1764 .help = "Ignore flush requests",
1767 .name = BDRV_OPT_READ_ONLY,
1768 .type = QEMU_OPT_BOOL,
1769 .help = "Node is opened in read-only mode",
1772 .name = BDRV_OPT_AUTO_READ_ONLY,
1773 .type = QEMU_OPT_BOOL,
1774 .help = "Node can become read-only if opening read-write fails",
1777 .name = "detect-zeroes",
1778 .type = QEMU_OPT_STRING,
1779 .help = "try to optimize zero writes (off, on, unmap)",
1782 .name = BDRV_OPT_DISCARD,
1783 .type = QEMU_OPT_STRING,
1784 .help = "discard operation (ignore/off, unmap/on)",
1787 .name = BDRV_OPT_FORCE_SHARE,
1788 .type = QEMU_OPT_BOOL,
1789 .help = "always accept other writers (default: off)",
1791 { /* end of list */ }
1795 QemuOptsList bdrv_create_opts_simple = {
1796 .name = "simple-create-opts",
1797 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
1798 .desc = {
1800 .name = BLOCK_OPT_SIZE,
1801 .type = QEMU_OPT_SIZE,
1802 .help = "Virtual disk size"
1805 .name = BLOCK_OPT_PREALLOC,
1806 .type = QEMU_OPT_STRING,
1807 .help = "Preallocation mode (allowed values: off)"
1809 { /* end of list */ }
1814 * Common part for opening disk images and files
1816 * Removes all processed options from *options.
1818 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1819 QDict *options, Error **errp)
1821 int ret, open_flags;
1822 const char *filename;
1823 const char *driver_name = NULL;
1824 const char *node_name = NULL;
1825 const char *discard;
1826 QemuOpts *opts;
1827 BlockDriver *drv;
1828 Error *local_err = NULL;
1829 bool ro;
1831 assert(bs->file == NULL);
1832 assert(options != NULL && bs->options != options);
1833 GLOBAL_STATE_CODE();
1835 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1836 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
1837 ret = -EINVAL;
1838 goto fail_opts;
1841 update_flags_from_options(&bs->open_flags, opts);
1843 driver_name = qemu_opt_get(opts, "driver");
1844 drv = bdrv_find_format(driver_name);
1845 assert(drv != NULL);
1847 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1849 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1850 error_setg(errp,
1851 BDRV_OPT_FORCE_SHARE
1852 "=on can only be used with read-only images");
1853 ret = -EINVAL;
1854 goto fail_opts;
1857 if (file != NULL) {
1858 bdrv_refresh_filename(blk_bs(file));
1859 filename = blk_bs(file)->filename;
1860 } else {
1862 * Caution: while qdict_get_try_str() is fine, getting
1863 * non-string types would require more care. When @options
1864 * come from -blockdev or blockdev_add, its members are typed
1865 * according to the QAPI schema, but when they come from
1866 * -drive, they're all QString.
1868 filename = qdict_get_try_str(options, "filename");
1871 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1872 error_setg(errp, "The '%s' block driver requires a file name",
1873 drv->format_name);
1874 ret = -EINVAL;
1875 goto fail_opts;
1878 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1879 drv->format_name);
1881 ro = bdrv_is_read_only(bs);
1883 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1884 if (!ro && bdrv_is_whitelisted(drv, true)) {
1885 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1886 } else {
1887 ret = -ENOTSUP;
1889 if (ret < 0) {
1890 error_setg(errp,
1891 !ro && bdrv_is_whitelisted(drv, true)
1892 ? "Driver '%s' can only be used for read-only devices"
1893 : "Driver '%s' is not whitelisted",
1894 drv->format_name);
1895 goto fail_opts;
1899 /* bdrv_new() and bdrv_close() make it so */
1900 assert(qatomic_read(&bs->copy_on_read) == 0);
1902 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1903 if (!ro) {
1904 bdrv_enable_copy_on_read(bs);
1905 } else {
1906 error_setg(errp, "Can't use copy-on-read on read-only device");
1907 ret = -EINVAL;
1908 goto fail_opts;
1912 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
1913 if (discard != NULL) {
1914 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1915 error_setg(errp, "Invalid discard option");
1916 ret = -EINVAL;
1917 goto fail_opts;
1921 bs->detect_zeroes =
1922 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1923 if (local_err) {
1924 error_propagate(errp, local_err);
1925 ret = -EINVAL;
1926 goto fail_opts;
1929 if (filename != NULL) {
1930 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1931 } else {
1932 bs->filename[0] = '\0';
1934 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1936 /* Open the image, either directly or using a protocol */
1937 open_flags = bdrv_open_flags(bs, bs->open_flags);
1938 node_name = qemu_opt_get(opts, "node-name");
1940 assert(!drv->bdrv_file_open || file == NULL);
1941 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1942 if (ret < 0) {
1943 goto fail_opts;
1946 qemu_opts_del(opts);
1947 return 0;
1949 fail_opts:
1950 qemu_opts_del(opts);
1951 return ret;
1954 static QDict *parse_json_filename(const char *filename, Error **errp)
1956 QObject *options_obj;
1957 QDict *options;
1958 int ret;
1959 GLOBAL_STATE_CODE();
1961 ret = strstart(filename, "json:", &filename);
1962 assert(ret);
1964 options_obj = qobject_from_json(filename, errp);
1965 if (!options_obj) {
1966 error_prepend(errp, "Could not parse the JSON options: ");
1967 return NULL;
1970 options = qobject_to(QDict, options_obj);
1971 if (!options) {
1972 qobject_unref(options_obj);
1973 error_setg(errp, "Invalid JSON object given");
1974 return NULL;
1977 qdict_flatten(options);
1979 return options;
1982 static void parse_json_protocol(QDict *options, const char **pfilename,
1983 Error **errp)
1985 QDict *json_options;
1986 Error *local_err = NULL;
1987 GLOBAL_STATE_CODE();
1989 /* Parse json: pseudo-protocol */
1990 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1991 return;
1994 json_options = parse_json_filename(*pfilename, &local_err);
1995 if (local_err) {
1996 error_propagate(errp, local_err);
1997 return;
2000 /* Options given in the filename have lower priority than options
2001 * specified directly */
2002 qdict_join(options, json_options, false);
2003 qobject_unref(json_options);
2004 *pfilename = NULL;
2008 * Fills in default options for opening images and converts the legacy
2009 * filename/flags pair to option QDict entries.
2010 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
2011 * block driver has been specified explicitly.
2013 static int bdrv_fill_options(QDict **options, const char *filename,
2014 int *flags, Error **errp)
2016 const char *drvname;
2017 bool protocol = *flags & BDRV_O_PROTOCOL;
2018 bool parse_filename = false;
2019 BlockDriver *drv = NULL;
2020 Error *local_err = NULL;
2022 GLOBAL_STATE_CODE();
2025 * Caution: while qdict_get_try_str() is fine, getting non-string
2026 * types would require more care. When @options come from
2027 * -blockdev or blockdev_add, its members are typed according to
2028 * the QAPI schema, but when they come from -drive, they're all
2029 * QString.
2031 drvname = qdict_get_try_str(*options, "driver");
2032 if (drvname) {
2033 drv = bdrv_find_format(drvname);
2034 if (!drv) {
2035 error_setg(errp, "Unknown driver '%s'", drvname);
2036 return -ENOENT;
2038 /* If the user has explicitly specified the driver, this choice should
2039 * override the BDRV_O_PROTOCOL flag */
2040 protocol = drv->bdrv_file_open;
2043 if (protocol) {
2044 *flags |= BDRV_O_PROTOCOL;
2045 } else {
2046 *flags &= ~BDRV_O_PROTOCOL;
2049 /* Translate cache options from flags into options */
2050 update_options_from_flags(*options, *flags);
2052 /* Fetch the file name from the options QDict if necessary */
2053 if (protocol && filename) {
2054 if (!qdict_haskey(*options, "filename")) {
2055 qdict_put_str(*options, "filename", filename);
2056 parse_filename = true;
2057 } else {
2058 error_setg(errp, "Can't specify 'file' and 'filename' options at "
2059 "the same time");
2060 return -EINVAL;
2064 /* Find the right block driver */
2065 /* See cautionary note on accessing @options above */
2066 filename = qdict_get_try_str(*options, "filename");
2068 if (!drvname && protocol) {
2069 if (filename) {
2070 drv = bdrv_find_protocol(filename, parse_filename, errp);
2071 if (!drv) {
2072 return -EINVAL;
2075 drvname = drv->format_name;
2076 qdict_put_str(*options, "driver", drvname);
2077 } else {
2078 error_setg(errp, "Must specify either driver or file");
2079 return -EINVAL;
2083 assert(drv || !protocol);
2085 /* Driver-specific filename parsing */
2086 if (drv && drv->bdrv_parse_filename && parse_filename) {
2087 drv->bdrv_parse_filename(filename, *options, &local_err);
2088 if (local_err) {
2089 error_propagate(errp, local_err);
2090 return -EINVAL;
2093 if (!drv->bdrv_needs_filename) {
2094 qdict_del(*options, "filename");
2098 return 0;
2101 typedef struct BlockReopenQueueEntry {
2102 bool prepared;
2103 bool perms_checked;
2104 BDRVReopenState state;
2105 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
2106 } BlockReopenQueueEntry;
2109 * Return the flags that @bs will have after the reopens in @q have
2110 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2111 * return the current flags.
2113 static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2115 BlockReopenQueueEntry *entry;
2117 if (q != NULL) {
2118 QTAILQ_FOREACH(entry, q, entry) {
2119 if (entry->state.bs == bs) {
2120 return entry->state.flags;
2125 return bs->open_flags;
2128 /* Returns whether the image file can be written to after the reopen queue @q
2129 * has been successfully applied, or right now if @q is NULL. */
2130 static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2131 BlockReopenQueue *q)
2133 int flags = bdrv_reopen_get_flags(q, bs);
2135 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2139 * Return whether the BDS can be written to. This is not necessarily
2140 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2141 * be written to but do not count as read-only images.
2143 bool bdrv_is_writable(BlockDriverState *bs)
2145 IO_CODE();
2146 return bdrv_is_writable_after_reopen(bs, NULL);
2149 static char *bdrv_child_user_desc(BdrvChild *c)
2151 GLOBAL_STATE_CODE();
2152 return c->klass->get_parent_desc(c);
2156 * Check that @a allows everything that @b needs. @a and @b must reference same
2157 * child node.
2159 static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2161 const char *child_bs_name;
2162 g_autofree char *a_user = NULL;
2163 g_autofree char *b_user = NULL;
2164 g_autofree char *perms = NULL;
2166 assert(a->bs);
2167 assert(a->bs == b->bs);
2168 GLOBAL_STATE_CODE();
2170 if ((b->perm & a->shared_perm) == b->perm) {
2171 return true;
2174 child_bs_name = bdrv_get_node_name(b->bs);
2175 a_user = bdrv_child_user_desc(a);
2176 b_user = bdrv_child_user_desc(b);
2177 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2179 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2180 "both required by %s (uses node '%s' as '%s' child) and "
2181 "unshared by %s (uses node '%s' as '%s' child).",
2182 child_bs_name, perms,
2183 b_user, child_bs_name, b->name,
2184 a_user, child_bs_name, a->name);
2186 return false;
2189 static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
2191 BdrvChild *a, *b;
2192 GLOBAL_STATE_CODE();
2195 * During the loop we'll look at each pair twice. That's correct because
2196 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2197 * directions.
2199 QLIST_FOREACH(a, &bs->parents, next_parent) {
2200 QLIST_FOREACH(b, &bs->parents, next_parent) {
2201 if (a == b) {
2202 continue;
2205 if (!bdrv_a_allow_b(a, b, errp)) {
2206 return true;
2211 return false;
2214 static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
2215 BdrvChild *c, BdrvChildRole role,
2216 BlockReopenQueue *reopen_queue,
2217 uint64_t parent_perm, uint64_t parent_shared,
2218 uint64_t *nperm, uint64_t *nshared)
2220 assert(bs->drv && bs->drv->bdrv_child_perm);
2221 GLOBAL_STATE_CODE();
2222 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
2223 parent_perm, parent_shared,
2224 nperm, nshared);
2225 /* TODO Take force_share from reopen_queue */
2226 if (child_bs && child_bs->force_share) {
2227 *nshared = BLK_PERM_ALL;
2232 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2233 * nodes that are already in the @list, of course) so that final list is
2234 * topologically sorted. Return the result (GSList @list object is updated, so
2235 * don't use old reference after function call).
2237 * On function start @list must be already topologically sorted and for any node
2238 * in the @list the whole subtree of the node must be in the @list as well. The
2239 * simplest way to satisfy this criteria: use only result of
2240 * bdrv_topological_dfs() or NULL as @list parameter.
2242 static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2243 BlockDriverState *bs)
2245 BdrvChild *child;
2246 g_autoptr(GHashTable) local_found = NULL;
2248 GLOBAL_STATE_CODE();
2250 if (!found) {
2251 assert(!list);
2252 found = local_found = g_hash_table_new(NULL, NULL);
2255 if (g_hash_table_contains(found, bs)) {
2256 return list;
2258 g_hash_table_add(found, bs);
2260 QLIST_FOREACH(child, &bs->children, next) {
2261 list = bdrv_topological_dfs(list, found, child->bs);
2264 return g_slist_prepend(list, bs);
2267 typedef struct BdrvChildSetPermState {
2268 BdrvChild *child;
2269 uint64_t old_perm;
2270 uint64_t old_shared_perm;
2271 } BdrvChildSetPermState;
2273 static void bdrv_child_set_perm_abort(void *opaque)
2275 BdrvChildSetPermState *s = opaque;
2277 GLOBAL_STATE_CODE();
2279 s->child->perm = s->old_perm;
2280 s->child->shared_perm = s->old_shared_perm;
2283 static TransactionActionDrv bdrv_child_set_pem_drv = {
2284 .abort = bdrv_child_set_perm_abort,
2285 .clean = g_free,
2288 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2289 uint64_t shared, Transaction *tran)
2291 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
2292 GLOBAL_STATE_CODE();
2294 *s = (BdrvChildSetPermState) {
2295 .child = c,
2296 .old_perm = c->perm,
2297 .old_shared_perm = c->shared_perm,
2300 c->perm = perm;
2301 c->shared_perm = shared;
2303 tran_add(tran, &bdrv_child_set_pem_drv, s);
2306 static void bdrv_drv_set_perm_commit(void *opaque)
2308 BlockDriverState *bs = opaque;
2309 uint64_t cumulative_perms, cumulative_shared_perms;
2310 GLOBAL_STATE_CODE();
2312 if (bs->drv->bdrv_set_perm) {
2313 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2314 &cumulative_shared_perms);
2315 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2319 static void bdrv_drv_set_perm_abort(void *opaque)
2321 BlockDriverState *bs = opaque;
2322 GLOBAL_STATE_CODE();
2324 if (bs->drv->bdrv_abort_perm_update) {
2325 bs->drv->bdrv_abort_perm_update(bs);
2329 TransactionActionDrv bdrv_drv_set_perm_drv = {
2330 .abort = bdrv_drv_set_perm_abort,
2331 .commit = bdrv_drv_set_perm_commit,
2334 static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2335 uint64_t shared_perm, Transaction *tran,
2336 Error **errp)
2338 GLOBAL_STATE_CODE();
2339 if (!bs->drv) {
2340 return 0;
2343 if (bs->drv->bdrv_check_perm) {
2344 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2345 if (ret < 0) {
2346 return ret;
2350 if (tran) {
2351 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2354 return 0;
2357 typedef struct BdrvReplaceChildState {
2358 BdrvChild *child;
2359 BlockDriverState *old_bs;
2360 } BdrvReplaceChildState;
2362 static void bdrv_replace_child_commit(void *opaque)
2364 BdrvReplaceChildState *s = opaque;
2365 GLOBAL_STATE_CODE();
2367 bdrv_unref(s->old_bs);
2370 static void bdrv_replace_child_abort(void *opaque)
2372 BdrvReplaceChildState *s = opaque;
2373 BlockDriverState *new_bs = s->child->bs;
2375 GLOBAL_STATE_CODE();
2376 /* old_bs reference is transparently moved from @s to @s->child */
2377 if (!s->child->bs) {
2379 * The parents were undrained when removing old_bs from the child. New
2380 * requests can't have been made, though, because the child was empty.
2382 * TODO Make bdrv_replace_child_noperm() transactionable to avoid
2383 * undraining the parent in the first place. Once this is done, having
2384 * new_bs drained when calling bdrv_replace_child_tran() is not a
2385 * requirement any more.
2387 bdrv_parent_drained_begin_single(s->child);
2388 assert(!bdrv_parent_drained_poll_single(s->child));
2390 assert(s->child->quiesced_parent);
2391 bdrv_replace_child_noperm(s->child, s->old_bs);
2392 bdrv_unref(new_bs);
2395 static TransactionActionDrv bdrv_replace_child_drv = {
2396 .commit = bdrv_replace_child_commit,
2397 .abort = bdrv_replace_child_abort,
2398 .clean = g_free,
2402 * bdrv_replace_child_tran
2404 * Note: real unref of old_bs is done only on commit.
2406 * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be
2407 * kept drained until the transaction is completed.
2409 * The function doesn't update permissions, caller is responsible for this.
2411 static void bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs,
2412 Transaction *tran)
2414 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2416 assert(child->quiesced_parent);
2417 assert(!new_bs || new_bs->quiesce_counter);
2419 *s = (BdrvReplaceChildState) {
2420 .child = child,
2421 .old_bs = child->bs,
2423 tran_add(tran, &bdrv_replace_child_drv, s);
2425 if (new_bs) {
2426 bdrv_ref(new_bs);
2428 bdrv_replace_child_noperm(child, new_bs);
2429 /* old_bs reference is transparently moved from @child to @s */
2433 * Refresh permissions in @bs subtree. The function is intended to be called
2434 * after some graph modification that was done without permission update.
2436 static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2437 Transaction *tran, Error **errp)
2439 BlockDriver *drv = bs->drv;
2440 BdrvChild *c;
2441 int ret;
2442 uint64_t cumulative_perms, cumulative_shared_perms;
2443 GLOBAL_STATE_CODE();
2445 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
2447 /* Write permissions never work with read-only images */
2448 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2449 !bdrv_is_writable_after_reopen(bs, q))
2451 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2452 error_setg(errp, "Block node is read-only");
2453 } else {
2454 error_setg(errp, "Read-only block node '%s' cannot support "
2455 "read-write users", bdrv_get_node_name(bs));
2458 return -EPERM;
2462 * Unaligned requests will automatically be aligned to bl.request_alignment
2463 * and without RESIZE we can't extend requests to write to space beyond the
2464 * end of the image, so it's required that the image size is aligned.
2466 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2467 !(cumulative_perms & BLK_PERM_RESIZE))
2469 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2470 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2471 "Image size is not a multiple of request "
2472 "alignment");
2473 return -EPERM;
2477 /* Check this node */
2478 if (!drv) {
2479 return 0;
2482 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
2483 errp);
2484 if (ret < 0) {
2485 return ret;
2488 /* Drivers that never have children can omit .bdrv_child_perm() */
2489 if (!drv->bdrv_child_perm) {
2490 assert(QLIST_EMPTY(&bs->children));
2491 return 0;
2494 /* Check all children */
2495 QLIST_FOREACH(c, &bs->children, next) {
2496 uint64_t cur_perm, cur_shared;
2498 bdrv_child_perm(bs, c->bs, c, c->role, q,
2499 cumulative_perms, cumulative_shared_perms,
2500 &cur_perm, &cur_shared);
2501 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
2504 return 0;
2508 * @list is a product of bdrv_topological_dfs() (may be called several times) -
2509 * a topologically sorted subgraph.
2511 static int bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q,
2512 Transaction *tran, Error **errp)
2514 int ret;
2515 BlockDriverState *bs;
2516 GLOBAL_STATE_CODE();
2518 for ( ; list; list = list->next) {
2519 bs = list->data;
2521 if (bdrv_parent_perms_conflict(bs, errp)) {
2522 return -EINVAL;
2525 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
2526 if (ret < 0) {
2527 return ret;
2531 return 0;
2535 * @list is any list of nodes. List is completed by all subtrees and
2536 * topologically sorted. It's not a problem if some node occurs in the @list
2537 * several times.
2539 static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2540 Transaction *tran, Error **errp)
2542 g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL);
2543 g_autoptr(GSList) refresh_list = NULL;
2545 for ( ; list; list = list->next) {
2546 refresh_list = bdrv_topological_dfs(refresh_list, found, list->data);
2549 return bdrv_do_refresh_perms(refresh_list, q, tran, errp);
2552 void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2553 uint64_t *shared_perm)
2555 BdrvChild *c;
2556 uint64_t cumulative_perms = 0;
2557 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2559 GLOBAL_STATE_CODE();
2561 QLIST_FOREACH(c, &bs->parents, next_parent) {
2562 cumulative_perms |= c->perm;
2563 cumulative_shared_perms &= c->shared_perm;
2566 *perm = cumulative_perms;
2567 *shared_perm = cumulative_shared_perms;
2570 char *bdrv_perm_names(uint64_t perm)
2572 struct perm_name {
2573 uint64_t perm;
2574 const char *name;
2575 } permissions[] = {
2576 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2577 { BLK_PERM_WRITE, "write" },
2578 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2579 { BLK_PERM_RESIZE, "resize" },
2580 { 0, NULL }
2583 GString *result = g_string_sized_new(30);
2584 struct perm_name *p;
2586 for (p = permissions; p->name; p++) {
2587 if (perm & p->perm) {
2588 if (result->len > 0) {
2589 g_string_append(result, ", ");
2591 g_string_append(result, p->name);
2595 return g_string_free(result, FALSE);
2599 /* @tran is allowed to be NULL. In this case no rollback is possible */
2600 static int bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran,
2601 Error **errp)
2603 int ret;
2604 Transaction *local_tran = NULL;
2605 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
2606 GLOBAL_STATE_CODE();
2608 if (!tran) {
2609 tran = local_tran = tran_new();
2612 ret = bdrv_do_refresh_perms(list, NULL, tran, errp);
2614 if (local_tran) {
2615 tran_finalize(local_tran, ret);
2618 return ret;
2621 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2622 Error **errp)
2624 Error *local_err = NULL;
2625 Transaction *tran = tran_new();
2626 int ret;
2628 GLOBAL_STATE_CODE();
2630 bdrv_child_set_perm(c, perm, shared, tran);
2632 ret = bdrv_refresh_perms(c->bs, tran, &local_err);
2634 tran_finalize(tran, ret);
2636 if (ret < 0) {
2637 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2638 /* tighten permissions */
2639 error_propagate(errp, local_err);
2640 } else {
2642 * Our caller may intend to only loosen restrictions and
2643 * does not expect this function to fail. Errors are not
2644 * fatal in such a case, so we can just hide them from our
2645 * caller.
2647 error_free(local_err);
2648 ret = 0;
2652 return ret;
2655 int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2657 uint64_t parent_perms, parent_shared;
2658 uint64_t perms, shared;
2660 GLOBAL_STATE_CODE();
2662 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
2663 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
2664 parent_perms, parent_shared, &perms, &shared);
2666 return bdrv_child_try_set_perm(c, perms, shared, errp);
2670 * Default implementation for .bdrv_child_perm() for block filters:
2671 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2672 * filtered child.
2674 static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
2675 BdrvChildRole role,
2676 BlockReopenQueue *reopen_queue,
2677 uint64_t perm, uint64_t shared,
2678 uint64_t *nperm, uint64_t *nshared)
2680 GLOBAL_STATE_CODE();
2681 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2682 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
2685 static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
2686 BdrvChildRole role,
2687 BlockReopenQueue *reopen_queue,
2688 uint64_t perm, uint64_t shared,
2689 uint64_t *nperm, uint64_t *nshared)
2691 assert(role & BDRV_CHILD_COW);
2692 GLOBAL_STATE_CODE();
2695 * We want consistent read from backing files if the parent needs it.
2696 * No other operations are performed on backing files.
2698 perm &= BLK_PERM_CONSISTENT_READ;
2701 * If the parent can deal with changing data, we're okay with a
2702 * writable and resizable backing file.
2703 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2705 if (shared & BLK_PERM_WRITE) {
2706 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2707 } else {
2708 shared = 0;
2711 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
2713 if (bs->open_flags & BDRV_O_INACTIVE) {
2714 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2717 *nperm = perm;
2718 *nshared = shared;
2721 static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
2722 BdrvChildRole role,
2723 BlockReopenQueue *reopen_queue,
2724 uint64_t perm, uint64_t shared,
2725 uint64_t *nperm, uint64_t *nshared)
2727 int flags;
2729 GLOBAL_STATE_CODE();
2730 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
2732 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2735 * Apart from the modifications below, the same permissions are
2736 * forwarded and left alone as for filters
2738 bdrv_filter_default_perms(bs, c, role, reopen_queue,
2739 perm, shared, &perm, &shared);
2741 if (role & BDRV_CHILD_METADATA) {
2742 /* Format drivers may touch metadata even if the guest doesn't write */
2743 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2744 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2748 * bs->file always needs to be consistent because of the
2749 * metadata. We can never allow other users to resize or write
2750 * to it.
2752 if (!(flags & BDRV_O_NO_IO)) {
2753 perm |= BLK_PERM_CONSISTENT_READ;
2755 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2758 if (role & BDRV_CHILD_DATA) {
2760 * Technically, everything in this block is a subset of the
2761 * BDRV_CHILD_METADATA path taken above, and so this could
2762 * be an "else if" branch. However, that is not obvious, and
2763 * this function is not performance critical, therefore we let
2764 * this be an independent "if".
2768 * We cannot allow other users to resize the file because the
2769 * format driver might have some assumptions about the size
2770 * (e.g. because it is stored in metadata, or because the file
2771 * is split into fixed-size data files).
2773 shared &= ~BLK_PERM_RESIZE;
2776 * WRITE_UNCHANGED often cannot be performed as such on the
2777 * data file. For example, the qcow2 driver may still need to
2778 * write copied clusters on copy-on-read.
2780 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2781 perm |= BLK_PERM_WRITE;
2785 * If the data file is written to, the format driver may
2786 * expect to be able to resize it by writing beyond the EOF.
2788 if (perm & BLK_PERM_WRITE) {
2789 perm |= BLK_PERM_RESIZE;
2793 if (bs->open_flags & BDRV_O_INACTIVE) {
2794 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2797 *nperm = perm;
2798 *nshared = shared;
2801 void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
2802 BdrvChildRole role, BlockReopenQueue *reopen_queue,
2803 uint64_t perm, uint64_t shared,
2804 uint64_t *nperm, uint64_t *nshared)
2806 GLOBAL_STATE_CODE();
2807 if (role & BDRV_CHILD_FILTERED) {
2808 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2809 BDRV_CHILD_COW)));
2810 bdrv_filter_default_perms(bs, c, role, reopen_queue,
2811 perm, shared, nperm, nshared);
2812 } else if (role & BDRV_CHILD_COW) {
2813 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
2814 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
2815 perm, shared, nperm, nshared);
2816 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
2817 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
2818 perm, shared, nperm, nshared);
2819 } else {
2820 g_assert_not_reached();
2824 uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2826 static const uint64_t permissions[] = {
2827 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2828 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2829 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2830 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2833 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2834 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2836 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2838 return permissions[qapi_perm];
2842 * Replaces the node that a BdrvChild points to without updating permissions.
2844 * If @new_bs is non-NULL, the parent of @child must already be drained through
2845 * @child.
2847 static void bdrv_replace_child_noperm(BdrvChild *child,
2848 BlockDriverState *new_bs)
2850 BlockDriverState *old_bs = child->bs;
2851 int new_bs_quiesce_counter;
2853 assert(!child->frozen);
2856 * If we want to change the BdrvChild to point to a drained node as its new
2857 * child->bs, we need to make sure that its new parent is drained, too. In
2858 * other words, either child->quiesce_parent must already be true or we must
2859 * be able to set it and keep the parent's quiesce_counter consistent with
2860 * that, but without polling or starting new requests (this function
2861 * guarantees that it doesn't poll, and starting new requests would be
2862 * against the invariants of drain sections).
2864 * To keep things simple, we pick the first option (child->quiesce_parent
2865 * must already be true). We also generalise the rule a bit to make it
2866 * easier to verify in callers and more likely to be covered in test cases:
2867 * The parent must be quiesced through this child even if new_bs isn't
2868 * currently drained.
2870 * The only exception is for callers that always pass new_bs == NULL. In
2871 * this case, we obviously never need to consider the case of a drained
2872 * new_bs, so we can keep the callers simpler by allowing them not to drain
2873 * the parent.
2875 assert(!new_bs || child->quiesced_parent);
2876 assert(old_bs != new_bs);
2877 GLOBAL_STATE_CODE();
2879 if (old_bs && new_bs) {
2880 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2883 /* TODO Pull this up into the callers to avoid polling here */
2884 bdrv_graph_wrlock();
2885 if (old_bs) {
2886 if (child->klass->detach) {
2887 child->klass->detach(child);
2889 QLIST_REMOVE(child, next_parent);
2892 child->bs = new_bs;
2894 if (new_bs) {
2895 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2896 if (child->klass->attach) {
2897 child->klass->attach(child);
2900 bdrv_graph_wrunlock();
2903 * If the parent was drained through this BdrvChild previously, but new_bs
2904 * is not drained, allow requests to come in only after the new node has
2905 * been attached.
2907 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2908 if (!new_bs_quiesce_counter && child->quiesced_parent) {
2909 bdrv_parent_drained_end_single(child);
2914 * Free the given @child.
2916 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2917 * unused (i.e. not in a children list).
2919 static void bdrv_child_free(BdrvChild *child)
2921 assert(!child->bs);
2922 GLOBAL_STATE_CODE();
2923 assert(!child->next.le_prev); /* not in children list */
2925 g_free(child->name);
2926 g_free(child);
2929 typedef struct BdrvAttachChildCommonState {
2930 BdrvChild *child;
2931 AioContext *old_parent_ctx;
2932 AioContext *old_child_ctx;
2933 } BdrvAttachChildCommonState;
2935 static void bdrv_attach_child_common_abort(void *opaque)
2937 BdrvAttachChildCommonState *s = opaque;
2938 BlockDriverState *bs = s->child->bs;
2940 GLOBAL_STATE_CODE();
2941 bdrv_replace_child_noperm(s->child, NULL);
2943 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
2944 bdrv_try_change_aio_context(bs, s->old_child_ctx, NULL, &error_abort);
2947 if (bdrv_child_get_parent_aio_context(s->child) != s->old_parent_ctx) {
2948 Transaction *tran;
2949 GHashTable *visited;
2950 bool ret;
2952 tran = tran_new();
2954 /* No need to visit `child`, because it has been detached already */
2955 visited = g_hash_table_new(NULL, NULL);
2956 ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx,
2957 visited, tran, &error_abort);
2958 g_hash_table_destroy(visited);
2960 /* transaction is supposed to always succeed */
2961 assert(ret == true);
2962 tran_commit(tran);
2965 bdrv_unref(bs);
2966 bdrv_child_free(s->child);
2969 static TransactionActionDrv bdrv_attach_child_common_drv = {
2970 .abort = bdrv_attach_child_common_abort,
2971 .clean = g_free,
2975 * Common part of attaching bdrv child to bs or to blk or to job
2977 * Function doesn't update permissions, caller is responsible for this.
2979 * Returns new created child.
2981 static BdrvChild *bdrv_attach_child_common(BlockDriverState *child_bs,
2982 const char *child_name,
2983 const BdrvChildClass *child_class,
2984 BdrvChildRole child_role,
2985 uint64_t perm, uint64_t shared_perm,
2986 void *opaque,
2987 Transaction *tran, Error **errp)
2989 BdrvChild *new_child;
2990 AioContext *parent_ctx;
2991 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
2993 assert(child_class->get_parent_desc);
2994 GLOBAL_STATE_CODE();
2996 new_child = g_new(BdrvChild, 1);
2997 *new_child = (BdrvChild) {
2998 .bs = NULL,
2999 .name = g_strdup(child_name),
3000 .klass = child_class,
3001 .role = child_role,
3002 .perm = perm,
3003 .shared_perm = shared_perm,
3004 .opaque = opaque,
3008 * If the AioContexts don't match, first try to move the subtree of
3009 * child_bs into the AioContext of the new parent. If this doesn't work,
3010 * try moving the parent into the AioContext of child_bs instead.
3012 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3013 if (child_ctx != parent_ctx) {
3014 Error *local_err = NULL;
3015 int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL,
3016 &local_err);
3018 if (ret < 0 && child_class->change_aio_ctx) {
3019 Transaction *tran = tran_new();
3020 GHashTable *visited = g_hash_table_new(NULL, NULL);
3021 bool ret_child;
3023 g_hash_table_add(visited, new_child);
3024 ret_child = child_class->change_aio_ctx(new_child, child_ctx,
3025 visited, tran, NULL);
3026 if (ret_child == true) {
3027 error_free(local_err);
3028 ret = 0;
3030 tran_finalize(tran, ret_child == true ? 0 : -1);
3031 g_hash_table_destroy(visited);
3034 if (ret < 0) {
3035 error_propagate(errp, local_err);
3036 bdrv_child_free(new_child);
3037 return NULL;
3041 bdrv_ref(child_bs);
3043 * Let every new BdrvChild start with a drained parent. Inserting the child
3044 * in the graph with bdrv_replace_child_noperm() will undrain it if
3045 * @child_bs is not drained.
3047 * The child was only just created and is not yet visible in global state
3048 * until bdrv_replace_child_noperm() inserts it into the graph, so nobody
3049 * could have sent requests and polling is not necessary.
3051 * Note that this means that the parent isn't fully drained yet, we only
3052 * stop new requests from coming in. This is fine, we don't care about the
3053 * old requests here, they are not for this child. If another place enters a
3054 * drain section for the same parent, but wants it to be fully quiesced, it
3055 * will not run most of the the code in .drained_begin() again (which is not
3056 * a problem, we already did this), but it will still poll until the parent
3057 * is fully quiesced, so it will not be negatively affected either.
3059 bdrv_parent_drained_begin_single(new_child);
3060 bdrv_replace_child_noperm(new_child, child_bs);
3062 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3063 *s = (BdrvAttachChildCommonState) {
3064 .child = new_child,
3065 .old_parent_ctx = parent_ctx,
3066 .old_child_ctx = child_ctx,
3068 tran_add(tran, &bdrv_attach_child_common_drv, s);
3070 return new_child;
3074 * Function doesn't update permissions, caller is responsible for this.
3076 static BdrvChild *bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3077 BlockDriverState *child_bs,
3078 const char *child_name,
3079 const BdrvChildClass *child_class,
3080 BdrvChildRole child_role,
3081 Transaction *tran,
3082 Error **errp)
3084 uint64_t perm, shared_perm;
3086 assert(parent_bs->drv);
3087 GLOBAL_STATE_CODE();
3089 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
3090 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
3091 child_bs->node_name, child_name, parent_bs->node_name);
3092 return NULL;
3095 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3096 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3097 perm, shared_perm, &perm, &shared_perm);
3099 return bdrv_attach_child_common(child_bs, child_name, child_class,
3100 child_role, perm, shared_perm, parent_bs,
3101 tran, errp);
3105 * This function steals the reference to child_bs from the caller.
3106 * That reference is later dropped by bdrv_root_unref_child().
3108 * On failure NULL is returned, errp is set and the reference to
3109 * child_bs is also dropped.
3111 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3112 * (unless @child_bs is already in @ctx).
3114 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3115 const char *child_name,
3116 const BdrvChildClass *child_class,
3117 BdrvChildRole child_role,
3118 uint64_t perm, uint64_t shared_perm,
3119 void *opaque, Error **errp)
3121 int ret;
3122 BdrvChild *child;
3123 Transaction *tran = tran_new();
3125 GLOBAL_STATE_CODE();
3127 child = bdrv_attach_child_common(child_bs, child_name, child_class,
3128 child_role, perm, shared_perm, opaque,
3129 tran, errp);
3130 if (!child) {
3131 ret = -EINVAL;
3132 goto out;
3135 ret = bdrv_refresh_perms(child_bs, tran, errp);
3137 out:
3138 tran_finalize(tran, ret);
3140 bdrv_unref(child_bs);
3142 return ret < 0 ? NULL : child;
3146 * This function transfers the reference to child_bs from the caller
3147 * to parent_bs. That reference is later dropped by parent_bs on
3148 * bdrv_close() or if someone calls bdrv_unref_child().
3150 * On failure NULL is returned, errp is set and the reference to
3151 * child_bs is also dropped.
3153 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3154 * hold the AioContext lock for @child_bs, but not for @parent_bs.
3156 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3157 BlockDriverState *child_bs,
3158 const char *child_name,
3159 const BdrvChildClass *child_class,
3160 BdrvChildRole child_role,
3161 Error **errp)
3163 int ret;
3164 BdrvChild *child;
3165 Transaction *tran = tran_new();
3167 GLOBAL_STATE_CODE();
3169 child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name,
3170 child_class, child_role, tran, errp);
3171 if (!child) {
3172 ret = -EINVAL;
3173 goto out;
3176 ret = bdrv_refresh_perms(parent_bs, tran, errp);
3177 if (ret < 0) {
3178 goto out;
3181 out:
3182 tran_finalize(tran, ret);
3184 bdrv_unref(child_bs);
3186 return ret < 0 ? NULL : child;
3189 /* Callers must ensure that child->frozen is false. */
3190 void bdrv_root_unref_child(BdrvChild *child)
3192 BlockDriverState *child_bs = child->bs;
3194 GLOBAL_STATE_CODE();
3195 bdrv_replace_child_noperm(child, NULL);
3196 bdrv_child_free(child);
3198 if (child_bs) {
3200 * Update permissions for old node. We're just taking a parent away, so
3201 * we're loosening restrictions. Errors of permission update are not
3202 * fatal in this case, ignore them.
3204 bdrv_refresh_perms(child_bs, NULL, NULL);
3207 * When the parent requiring a non-default AioContext is removed, the
3208 * node moves back to the main AioContext
3210 bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL,
3211 NULL);
3214 bdrv_unref(child_bs);
3217 typedef struct BdrvSetInheritsFrom {
3218 BlockDriverState *bs;
3219 BlockDriverState *old_inherits_from;
3220 } BdrvSetInheritsFrom;
3222 static void bdrv_set_inherits_from_abort(void *opaque)
3224 BdrvSetInheritsFrom *s = opaque;
3226 s->bs->inherits_from = s->old_inherits_from;
3229 static TransactionActionDrv bdrv_set_inherits_from_drv = {
3230 .abort = bdrv_set_inherits_from_abort,
3231 .clean = g_free,
3234 /* @tran is allowed to be NULL. In this case no rollback is possible */
3235 static void bdrv_set_inherits_from(BlockDriverState *bs,
3236 BlockDriverState *new_inherits_from,
3237 Transaction *tran)
3239 if (tran) {
3240 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3242 *s = (BdrvSetInheritsFrom) {
3243 .bs = bs,
3244 .old_inherits_from = bs->inherits_from,
3247 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3250 bs->inherits_from = new_inherits_from;
3254 * Clear all inherits_from pointers from children and grandchildren of
3255 * @root that point to @root, where necessary.
3256 * @tran is allowed to be NULL. In this case no rollback is possible
3258 static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3259 Transaction *tran)
3261 BdrvChild *c;
3263 if (child->bs->inherits_from == root) {
3265 * Remove inherits_from only when the last reference between root and
3266 * child->bs goes away.
3268 QLIST_FOREACH(c, &root->children, next) {
3269 if (c != child && c->bs == child->bs) {
3270 break;
3273 if (c == NULL) {
3274 bdrv_set_inherits_from(child->bs, NULL, tran);
3278 QLIST_FOREACH(c, &child->bs->children, next) {
3279 bdrv_unset_inherits_from(root, c, tran);
3283 /* Callers must ensure that child->frozen is false. */
3284 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3286 GLOBAL_STATE_CODE();
3287 if (child == NULL) {
3288 return;
3291 bdrv_unset_inherits_from(parent, child, NULL);
3292 bdrv_root_unref_child(child);
3296 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3298 BdrvChild *c;
3299 GLOBAL_STATE_CODE();
3300 QLIST_FOREACH(c, &bs->parents, next_parent) {
3301 if (c->klass->change_media) {
3302 c->klass->change_media(c, load);
3307 /* Return true if you can reach parent going through child->inherits_from
3308 * recursively. If parent or child are NULL, return false */
3309 static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3310 BlockDriverState *parent)
3312 while (child && child != parent) {
3313 child = child->inherits_from;
3316 return child != NULL;
3320 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3321 * mostly used for COW backing children (role = COW), but also for
3322 * filtered children (role = FILTERED | PRIMARY).
3324 static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3326 if (bs->drv && bs->drv->is_filter) {
3327 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3328 } else {
3329 return BDRV_CHILD_COW;
3334 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3335 * callers which don't need their own reference any more must call bdrv_unref().
3337 * Function doesn't update permissions, caller is responsible for this.
3339 static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3340 BlockDriverState *child_bs,
3341 bool is_backing,
3342 Transaction *tran, Error **errp)
3344 bool update_inherits_from =
3345 bdrv_inherits_from_recursive(child_bs, parent_bs);
3346 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3347 BdrvChildRole role;
3349 GLOBAL_STATE_CODE();
3351 if (!parent_bs->drv) {
3353 * Node without drv is an object without a class :/. TODO: finally fix
3354 * qcow2 driver to never clear bs->drv and implement format corruption
3355 * handling in other way.
3357 error_setg(errp, "Node corrupted");
3358 return -EINVAL;
3361 if (child && child->frozen) {
3362 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3363 child->name, parent_bs->node_name, child->bs->node_name);
3364 return -EPERM;
3367 if (is_backing && !parent_bs->drv->is_filter &&
3368 !parent_bs->drv->supports_backing)
3370 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3371 "files", parent_bs->drv->format_name, parent_bs->node_name);
3372 return -EINVAL;
3375 if (parent_bs->drv->is_filter) {
3376 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3377 } else if (is_backing) {
3378 role = BDRV_CHILD_COW;
3379 } else {
3381 * We only can use same role as it is in existing child. We don't have
3382 * infrastructure to determine role of file child in generic way
3384 if (!child) {
3385 error_setg(errp, "Cannot set file child to format node without "
3386 "file child");
3387 return -EINVAL;
3389 role = child->role;
3392 if (child) {
3393 bdrv_unset_inherits_from(parent_bs, child, tran);
3394 bdrv_remove_child(child, tran);
3397 if (!child_bs) {
3398 goto out;
3401 child = bdrv_attach_child_noperm(parent_bs, child_bs,
3402 is_backing ? "backing" : "file",
3403 &child_of_bds, role,
3404 tran, errp);
3405 if (!child) {
3406 return -EINVAL;
3411 * If inherits_from pointed recursively to bs then let's update it to
3412 * point directly to bs (else it will become NULL).
3414 if (update_inherits_from) {
3415 bdrv_set_inherits_from(child_bs, parent_bs, tran);
3418 out:
3419 bdrv_refresh_limits(parent_bs, tran, NULL);
3421 return 0;
3424 static int bdrv_set_backing_noperm(BlockDriverState *bs,
3425 BlockDriverState *backing_hd,
3426 Transaction *tran, Error **errp)
3428 GLOBAL_STATE_CODE();
3429 return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3432 int bdrv_set_backing_hd_drained(BlockDriverState *bs,
3433 BlockDriverState *backing_hd,
3434 Error **errp)
3436 int ret;
3437 Transaction *tran = tran_new();
3439 GLOBAL_STATE_CODE();
3440 assert(bs->quiesce_counter > 0);
3442 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3443 if (ret < 0) {
3444 goto out;
3447 ret = bdrv_refresh_perms(bs, tran, errp);
3448 out:
3449 tran_finalize(tran, ret);
3450 return ret;
3453 int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3454 Error **errp)
3456 int ret;
3457 GLOBAL_STATE_CODE();
3459 bdrv_drained_begin(bs);
3460 ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp);
3461 bdrv_drained_end(bs);
3463 return ret;
3467 * Opens the backing file for a BlockDriverState if not yet open
3469 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3470 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3471 * itself, all options starting with "${bdref_key}." are considered part of the
3472 * BlockdevRef.
3474 * TODO Can this be unified with bdrv_open_image()?
3476 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3477 const char *bdref_key, Error **errp)
3479 char *backing_filename = NULL;
3480 char *bdref_key_dot;
3481 const char *reference = NULL;
3482 int ret = 0;
3483 bool implicit_backing = false;
3484 BlockDriverState *backing_hd;
3485 QDict *options;
3486 QDict *tmp_parent_options = NULL;
3487 Error *local_err = NULL;
3489 GLOBAL_STATE_CODE();
3491 if (bs->backing != NULL) {
3492 goto free_exit;
3495 /* NULL means an empty set of options */
3496 if (parent_options == NULL) {
3497 tmp_parent_options = qdict_new();
3498 parent_options = tmp_parent_options;
3501 bs->open_flags &= ~BDRV_O_NO_BACKING;
3503 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3504 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3505 g_free(bdref_key_dot);
3508 * Caution: while qdict_get_try_str() is fine, getting non-string
3509 * types would require more care. When @parent_options come from
3510 * -blockdev or blockdev_add, its members are typed according to
3511 * the QAPI schema, but when they come from -drive, they're all
3512 * QString.
3514 reference = qdict_get_try_str(parent_options, bdref_key);
3515 if (reference || qdict_haskey(options, "file.filename")) {
3516 /* keep backing_filename NULL */
3517 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
3518 qobject_unref(options);
3519 goto free_exit;
3520 } else {
3521 if (qdict_size(options) == 0) {
3522 /* If the user specifies options that do not modify the
3523 * backing file's behavior, we might still consider it the
3524 * implicit backing file. But it's easier this way, and
3525 * just specifying some of the backing BDS's options is
3526 * only possible with -drive anyway (otherwise the QAPI
3527 * schema forces the user to specify everything). */
3528 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3531 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
3532 if (local_err) {
3533 ret = -EINVAL;
3534 error_propagate(errp, local_err);
3535 qobject_unref(options);
3536 goto free_exit;
3540 if (!bs->drv || !bs->drv->supports_backing) {
3541 ret = -EINVAL;
3542 error_setg(errp, "Driver doesn't support backing files");
3543 qobject_unref(options);
3544 goto free_exit;
3547 if (!reference &&
3548 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
3549 qdict_put_str(options, "driver", bs->backing_format);
3552 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
3553 &child_of_bds, bdrv_backing_role(bs), errp);
3554 if (!backing_hd) {
3555 bs->open_flags |= BDRV_O_NO_BACKING;
3556 error_prepend(errp, "Could not open backing file: ");
3557 ret = -EINVAL;
3558 goto free_exit;
3561 if (implicit_backing) {
3562 bdrv_refresh_filename(backing_hd);
3563 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3564 backing_hd->filename);
3567 /* Hook up the backing file link; drop our reference, bs owns the
3568 * backing_hd reference now */
3569 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
3570 bdrv_unref(backing_hd);
3571 if (ret < 0) {
3572 goto free_exit;
3575 qdict_del(parent_options, bdref_key);
3577 free_exit:
3578 g_free(backing_filename);
3579 qobject_unref(tmp_parent_options);
3580 return ret;
3583 static BlockDriverState *
3584 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
3585 BlockDriverState *parent, const BdrvChildClass *child_class,
3586 BdrvChildRole child_role, bool allow_none, Error **errp)
3588 BlockDriverState *bs = NULL;
3589 QDict *image_options;
3590 char *bdref_key_dot;
3591 const char *reference;
3593 assert(child_class != NULL);
3595 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3596 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3597 g_free(bdref_key_dot);
3600 * Caution: while qdict_get_try_str() is fine, getting non-string
3601 * types would require more care. When @options come from
3602 * -blockdev or blockdev_add, its members are typed according to
3603 * the QAPI schema, but when they come from -drive, they're all
3604 * QString.
3606 reference = qdict_get_try_str(options, bdref_key);
3607 if (!filename && !reference && !qdict_size(image_options)) {
3608 if (!allow_none) {
3609 error_setg(errp, "A block device must be specified for \"%s\"",
3610 bdref_key);
3612 qobject_unref(image_options);
3613 goto done;
3616 bs = bdrv_open_inherit(filename, reference, image_options, 0,
3617 parent, child_class, child_role, errp);
3618 if (!bs) {
3619 goto done;
3622 done:
3623 qdict_del(options, bdref_key);
3624 return bs;
3628 * Opens a disk image whose options are given as BlockdevRef in another block
3629 * device's options.
3631 * If allow_none is true, no image will be opened if filename is false and no
3632 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3634 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3635 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3636 * itself, all options starting with "${bdref_key}." are considered part of the
3637 * BlockdevRef.
3639 * The BlockdevRef will be removed from the options QDict.
3641 BdrvChild *bdrv_open_child(const char *filename,
3642 QDict *options, const char *bdref_key,
3643 BlockDriverState *parent,
3644 const BdrvChildClass *child_class,
3645 BdrvChildRole child_role,
3646 bool allow_none, Error **errp)
3648 BlockDriverState *bs;
3650 GLOBAL_STATE_CODE();
3652 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
3653 child_role, allow_none, errp);
3654 if (bs == NULL) {
3655 return NULL;
3658 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3659 errp);
3663 * Wrapper on bdrv_open_child() for most popular case: open primary child of bs.
3665 int bdrv_open_file_child(const char *filename,
3666 QDict *options, const char *bdref_key,
3667 BlockDriverState *parent, Error **errp)
3669 BdrvChildRole role;
3671 /* commit_top and mirror_top don't use this function */
3672 assert(!parent->drv->filtered_child_is_backing);
3673 role = parent->drv->is_filter ?
3674 (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE;
3676 if (!bdrv_open_child(filename, options, bdref_key, parent,
3677 &child_of_bds, role, false, errp))
3679 return -EINVAL;
3682 return 0;
3686 * TODO Future callers may need to specify parent/child_class in order for
3687 * option inheritance to work. Existing callers use it for the root node.
3689 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3691 BlockDriverState *bs = NULL;
3692 QObject *obj = NULL;
3693 QDict *qdict = NULL;
3694 const char *reference = NULL;
3695 Visitor *v = NULL;
3697 GLOBAL_STATE_CODE();
3699 if (ref->type == QTYPE_QSTRING) {
3700 reference = ref->u.reference;
3701 } else {
3702 BlockdevOptions *options = &ref->u.definition;
3703 assert(ref->type == QTYPE_QDICT);
3705 v = qobject_output_visitor_new(&obj);
3706 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
3707 visit_complete(v, &obj);
3709 qdict = qobject_to(QDict, obj);
3710 qdict_flatten(qdict);
3712 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3713 * compatibility with other callers) rather than what we want as the
3714 * real defaults. Apply the defaults here instead. */
3715 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3716 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3717 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
3718 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3722 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
3723 obj = NULL;
3724 qobject_unref(obj);
3725 visit_free(v);
3726 return bs;
3729 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3730 int flags,
3731 QDict *snapshot_options,
3732 Error **errp)
3734 g_autofree char *tmp_filename = NULL;
3735 int64_t total_size;
3736 QemuOpts *opts = NULL;
3737 BlockDriverState *bs_snapshot = NULL;
3738 int ret;
3740 GLOBAL_STATE_CODE();
3742 /* if snapshot, we create a temporary backing file and open it
3743 instead of opening 'filename' directly */
3745 /* Get the required size from the image */
3746 total_size = bdrv_getlength(bs);
3747 if (total_size < 0) {
3748 error_setg_errno(errp, -total_size, "Could not get image size");
3749 goto out;
3752 /* Create the temporary image */
3753 tmp_filename = create_tmp_file(errp);
3754 if (!tmp_filename) {
3755 goto out;
3758 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
3759 &error_abort);
3760 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
3761 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
3762 qemu_opts_del(opts);
3763 if (ret < 0) {
3764 error_prepend(errp, "Could not create temporary overlay '%s': ",
3765 tmp_filename);
3766 goto out;
3769 /* Prepare options QDict for the temporary file */
3770 qdict_put_str(snapshot_options, "file.driver", "file");
3771 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3772 qdict_put_str(snapshot_options, "driver", "qcow2");
3774 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
3775 snapshot_options = NULL;
3776 if (!bs_snapshot) {
3777 goto out;
3780 ret = bdrv_append(bs_snapshot, bs, errp);
3781 if (ret < 0) {
3782 bs_snapshot = NULL;
3783 goto out;
3786 out:
3787 qobject_unref(snapshot_options);
3788 return bs_snapshot;
3792 * Opens a disk image (raw, qcow2, vmdk, ...)
3794 * options is a QDict of options to pass to the block drivers, or NULL for an
3795 * empty set of options. The reference to the QDict belongs to the block layer
3796 * after the call (even on failure), so if the caller intends to reuse the
3797 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
3799 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3800 * If it is not NULL, the referenced BDS will be reused.
3802 * The reference parameter may be used to specify an existing block device which
3803 * should be opened. If specified, neither options nor a filename may be given,
3804 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
3806 * The caller must always hold @filename AioContext lock, because this
3807 * function eventually calls bdrv_refresh_total_sectors() which polls
3808 * when called from non-coroutine context.
3810 static BlockDriverState *bdrv_open_inherit(const char *filename,
3811 const char *reference,
3812 QDict *options, int flags,
3813 BlockDriverState *parent,
3814 const BdrvChildClass *child_class,
3815 BdrvChildRole child_role,
3816 Error **errp)
3818 int ret;
3819 BlockBackend *file = NULL;
3820 BlockDriverState *bs;
3821 BlockDriver *drv = NULL;
3822 BdrvChild *child;
3823 const char *drvname;
3824 const char *backing;
3825 Error *local_err = NULL;
3826 QDict *snapshot_options = NULL;
3827 int snapshot_flags = 0;
3829 assert(!child_class || !flags);
3830 assert(!child_class == !parent);
3831 GLOBAL_STATE_CODE();
3833 if (reference) {
3834 bool options_non_empty = options ? qdict_size(options) : false;
3835 qobject_unref(options);
3837 if (filename || options_non_empty) {
3838 error_setg(errp, "Cannot reference an existing block device with "
3839 "additional options or a new filename");
3840 return NULL;
3843 bs = bdrv_lookup_bs(reference, reference, errp);
3844 if (!bs) {
3845 return NULL;
3848 bdrv_ref(bs);
3849 return bs;
3852 bs = bdrv_new();
3854 /* NULL means an empty set of options */
3855 if (options == NULL) {
3856 options = qdict_new();
3859 /* json: syntax counts as explicit options, as if in the QDict */
3860 parse_json_protocol(options, &filename, &local_err);
3861 if (local_err) {
3862 goto fail;
3865 bs->explicit_options = qdict_clone_shallow(options);
3867 if (child_class) {
3868 bool parent_is_format;
3870 if (parent->drv) {
3871 parent_is_format = parent->drv->is_format;
3872 } else {
3874 * parent->drv is not set yet because this node is opened for
3875 * (potential) format probing. That means that @parent is going
3876 * to be a format node.
3878 parent_is_format = true;
3881 bs->inherits_from = parent;
3882 child_class->inherit_options(child_role, parent_is_format,
3883 &flags, options,
3884 parent->open_flags, parent->options);
3887 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
3888 if (ret < 0) {
3889 goto fail;
3893 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3894 * Caution: getting a boolean member of @options requires care.
3895 * When @options come from -blockdev or blockdev_add, members are
3896 * typed according to the QAPI schema, but when they come from
3897 * -drive, they're all QString.
3899 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3900 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3901 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3902 } else {
3903 flags &= ~BDRV_O_RDWR;
3906 if (flags & BDRV_O_SNAPSHOT) {
3907 snapshot_options = qdict_new();
3908 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3909 flags, options);
3910 /* Let bdrv_backing_options() override "read-only" */
3911 qdict_del(options, BDRV_OPT_READ_ONLY);
3912 bdrv_inherited_options(BDRV_CHILD_COW, true,
3913 &flags, options, flags, options);
3916 bs->open_flags = flags;
3917 bs->options = options;
3918 options = qdict_clone_shallow(options);
3920 /* Find the right image format driver */
3921 /* See cautionary note on accessing @options above */
3922 drvname = qdict_get_try_str(options, "driver");
3923 if (drvname) {
3924 drv = bdrv_find_format(drvname);
3925 if (!drv) {
3926 error_setg(errp, "Unknown driver: '%s'", drvname);
3927 goto fail;
3931 assert(drvname || !(flags & BDRV_O_PROTOCOL));
3933 /* See cautionary note on accessing @options above */
3934 backing = qdict_get_try_str(options, "backing");
3935 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3936 (backing && *backing == '\0'))
3938 if (backing) {
3939 warn_report("Use of \"backing\": \"\" is deprecated; "
3940 "use \"backing\": null instead");
3942 flags |= BDRV_O_NO_BACKING;
3943 qdict_del(bs->explicit_options, "backing");
3944 qdict_del(bs->options, "backing");
3945 qdict_del(options, "backing");
3948 /* Open image file without format layer. This BlockBackend is only used for
3949 * probing, the block drivers will do their own bdrv_open_child() for the
3950 * same BDS, which is why we put the node name back into options. */
3951 if ((flags & BDRV_O_PROTOCOL) == 0) {
3952 BlockDriverState *file_bs;
3954 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
3955 &child_of_bds, BDRV_CHILD_IMAGE,
3956 true, &local_err);
3957 if (local_err) {
3958 goto fail;
3960 if (file_bs != NULL) {
3961 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3962 * looking at the header to guess the image format. This works even
3963 * in cases where a guest would not see a consistent state. */
3964 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
3965 blk_insert_bs(file, file_bs, &local_err);
3966 bdrv_unref(file_bs);
3967 if (local_err) {
3968 goto fail;
3971 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
3975 /* Image format probing */
3976 bs->probed = !drv;
3977 if (!drv && file) {
3978 ret = find_image_format(file, filename, &drv, &local_err);
3979 if (ret < 0) {
3980 goto fail;
3983 * This option update would logically belong in bdrv_fill_options(),
3984 * but we first need to open bs->file for the probing to work, while
3985 * opening bs->file already requires the (mostly) final set of options
3986 * so that cache mode etc. can be inherited.
3988 * Adding the driver later is somewhat ugly, but it's not an option
3989 * that would ever be inherited, so it's correct. We just need to make
3990 * sure to update both bs->options (which has the full effective
3991 * options for bs) and options (which has file.* already removed).
3993 qdict_put_str(bs->options, "driver", drv->format_name);
3994 qdict_put_str(options, "driver", drv->format_name);
3995 } else if (!drv) {
3996 error_setg(errp, "Must specify either driver or file");
3997 goto fail;
4000 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
4001 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
4002 /* file must be NULL if a protocol BDS is about to be created
4003 * (the inverse results in an error message from bdrv_open_common()) */
4004 assert(!(flags & BDRV_O_PROTOCOL) || !file);
4006 /* Open the image */
4007 ret = bdrv_open_common(bs, file, options, &local_err);
4008 if (ret < 0) {
4009 goto fail;
4012 if (file) {
4013 blk_unref(file);
4014 file = NULL;
4017 /* If there is a backing file, use it */
4018 if ((flags & BDRV_O_NO_BACKING) == 0) {
4019 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
4020 if (ret < 0) {
4021 goto close_and_fail;
4025 /* Remove all children options and references
4026 * from bs->options and bs->explicit_options */
4027 QLIST_FOREACH(child, &bs->children, next) {
4028 char *child_key_dot;
4029 child_key_dot = g_strdup_printf("%s.", child->name);
4030 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
4031 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
4032 qdict_del(bs->explicit_options, child->name);
4033 qdict_del(bs->options, child->name);
4034 g_free(child_key_dot);
4037 /* Check if any unknown options were used */
4038 if (qdict_size(options) != 0) {
4039 const QDictEntry *entry = qdict_first(options);
4040 if (flags & BDRV_O_PROTOCOL) {
4041 error_setg(errp, "Block protocol '%s' doesn't support the option "
4042 "'%s'", drv->format_name, entry->key);
4043 } else {
4044 error_setg(errp,
4045 "Block format '%s' does not support the option '%s'",
4046 drv->format_name, entry->key);
4049 goto close_and_fail;
4052 bdrv_parent_cb_change_media(bs, true);
4054 qobject_unref(options);
4055 options = NULL;
4057 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4058 * temporary snapshot afterwards. */
4059 if (snapshot_flags) {
4060 BlockDriverState *snapshot_bs;
4061 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
4062 snapshot_options, &local_err);
4063 snapshot_options = NULL;
4064 if (local_err) {
4065 goto close_and_fail;
4067 /* We are not going to return bs but the overlay on top of it
4068 * (snapshot_bs); thus, we have to drop the strong reference to bs
4069 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4070 * though, because the overlay still has a reference to it. */
4071 bdrv_unref(bs);
4072 bs = snapshot_bs;
4075 return bs;
4077 fail:
4078 blk_unref(file);
4079 qobject_unref(snapshot_options);
4080 qobject_unref(bs->explicit_options);
4081 qobject_unref(bs->options);
4082 qobject_unref(options);
4083 bs->options = NULL;
4084 bs->explicit_options = NULL;
4085 bdrv_unref(bs);
4086 error_propagate(errp, local_err);
4087 return NULL;
4089 close_and_fail:
4090 bdrv_unref(bs);
4091 qobject_unref(snapshot_options);
4092 qobject_unref(options);
4093 error_propagate(errp, local_err);
4094 return NULL;
4098 * The caller must always hold @filename AioContext lock, because this
4099 * function eventually calls bdrv_refresh_total_sectors() which polls
4100 * when called from non-coroutine context.
4102 BlockDriverState *bdrv_open(const char *filename, const char *reference,
4103 QDict *options, int flags, Error **errp)
4105 GLOBAL_STATE_CODE();
4107 return bdrv_open_inherit(filename, reference, options, flags, NULL,
4108 NULL, 0, errp);
4111 /* Return true if the NULL-terminated @list contains @str */
4112 static bool is_str_in_list(const char *str, const char *const *list)
4114 if (str && list) {
4115 int i;
4116 for (i = 0; list[i] != NULL; i++) {
4117 if (!strcmp(str, list[i])) {
4118 return true;
4122 return false;
4126 * Check that every option set in @bs->options is also set in
4127 * @new_opts.
4129 * Options listed in the common_options list and in
4130 * @bs->drv->mutable_opts are skipped.
4132 * Return 0 on success, otherwise return -EINVAL and set @errp.
4134 static int bdrv_reset_options_allowed(BlockDriverState *bs,
4135 const QDict *new_opts, Error **errp)
4137 const QDictEntry *e;
4138 /* These options are common to all block drivers and are handled
4139 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4140 const char *const common_options[] = {
4141 "node-name", "discard", "cache.direct", "cache.no-flush",
4142 "read-only", "auto-read-only", "detect-zeroes", NULL
4145 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4146 if (!qdict_haskey(new_opts, e->key) &&
4147 !is_str_in_list(e->key, common_options) &&
4148 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4149 error_setg(errp, "Option '%s' cannot be reset "
4150 "to its default value", e->key);
4151 return -EINVAL;
4155 return 0;
4159 * Returns true if @child can be reached recursively from @bs
4161 static bool bdrv_recurse_has_child(BlockDriverState *bs,
4162 BlockDriverState *child)
4164 BdrvChild *c;
4166 if (bs == child) {
4167 return true;
4170 QLIST_FOREACH(c, &bs->children, next) {
4171 if (bdrv_recurse_has_child(c->bs, child)) {
4172 return true;
4176 return false;
4180 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4181 * reopen of multiple devices.
4183 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
4184 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4185 * be created and initialized. This newly created BlockReopenQueue should be
4186 * passed back in for subsequent calls that are intended to be of the same
4187 * atomic 'set'.
4189 * bs is the BlockDriverState to add to the reopen queue.
4191 * options contains the changed options for the associated bs
4192 * (the BlockReopenQueue takes ownership)
4194 * flags contains the open flags for the associated bs
4196 * returns a pointer to bs_queue, which is either the newly allocated
4197 * bs_queue, or the existing bs_queue being used.
4199 * bs is drained here and undrained by bdrv_reopen_queue_free().
4201 * To be called with bs->aio_context locked.
4203 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
4204 BlockDriverState *bs,
4205 QDict *options,
4206 const BdrvChildClass *klass,
4207 BdrvChildRole role,
4208 bool parent_is_format,
4209 QDict *parent_options,
4210 int parent_flags,
4211 bool keep_old_opts)
4213 assert(bs != NULL);
4215 BlockReopenQueueEntry *bs_entry;
4216 BdrvChild *child;
4217 QDict *old_options, *explicit_options, *options_copy;
4218 int flags;
4219 QemuOpts *opts;
4221 GLOBAL_STATE_CODE();
4223 bdrv_drained_begin(bs);
4225 if (bs_queue == NULL) {
4226 bs_queue = g_new0(BlockReopenQueue, 1);
4227 QTAILQ_INIT(bs_queue);
4230 if (!options) {
4231 options = qdict_new();
4234 /* Check if this BlockDriverState is already in the queue */
4235 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4236 if (bs == bs_entry->state.bs) {
4237 break;
4242 * Precedence of options:
4243 * 1. Explicitly passed in options (highest)
4244 * 2. Retained from explicitly set options of bs
4245 * 3. Inherited from parent node
4246 * 4. Retained from effective options of bs
4249 /* Old explicitly set values (don't overwrite by inherited value) */
4250 if (bs_entry || keep_old_opts) {
4251 old_options = qdict_clone_shallow(bs_entry ?
4252 bs_entry->state.explicit_options :
4253 bs->explicit_options);
4254 bdrv_join_options(bs, options, old_options);
4255 qobject_unref(old_options);
4258 explicit_options = qdict_clone_shallow(options);
4260 /* Inherit from parent node */
4261 if (parent_options) {
4262 flags = 0;
4263 klass->inherit_options(role, parent_is_format, &flags, options,
4264 parent_flags, parent_options);
4265 } else {
4266 flags = bdrv_get_flags(bs);
4269 if (keep_old_opts) {
4270 /* Old values are used for options that aren't set yet */
4271 old_options = qdict_clone_shallow(bs->options);
4272 bdrv_join_options(bs, options, old_options);
4273 qobject_unref(old_options);
4276 /* We have the final set of options so let's update the flags */
4277 options_copy = qdict_clone_shallow(options);
4278 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4279 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4280 update_flags_from_options(&flags, opts);
4281 qemu_opts_del(opts);
4282 qobject_unref(options_copy);
4284 /* bdrv_open_inherit() sets and clears some additional flags internally */
4285 flags &= ~BDRV_O_PROTOCOL;
4286 if (flags & BDRV_O_RDWR) {
4287 flags |= BDRV_O_ALLOW_RDWR;
4290 if (!bs_entry) {
4291 bs_entry = g_new0(BlockReopenQueueEntry, 1);
4292 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
4293 } else {
4294 qobject_unref(bs_entry->state.options);
4295 qobject_unref(bs_entry->state.explicit_options);
4298 bs_entry->state.bs = bs;
4299 bs_entry->state.options = options;
4300 bs_entry->state.explicit_options = explicit_options;
4301 bs_entry->state.flags = flags;
4304 * If keep_old_opts is false then it means that unspecified
4305 * options must be reset to their original value. We don't allow
4306 * resetting 'backing' but we need to know if the option is
4307 * missing in order to decide if we have to return an error.
4309 if (!keep_old_opts) {
4310 bs_entry->state.backing_missing =
4311 !qdict_haskey(options, "backing") &&
4312 !qdict_haskey(options, "backing.driver");
4315 QLIST_FOREACH(child, &bs->children, next) {
4316 QDict *new_child_options = NULL;
4317 bool child_keep_old = keep_old_opts;
4319 /* reopen can only change the options of block devices that were
4320 * implicitly created and inherited options. For other (referenced)
4321 * block devices, a syntax like "backing.foo" results in an error. */
4322 if (child->bs->inherits_from != bs) {
4323 continue;
4326 /* Check if the options contain a child reference */
4327 if (qdict_haskey(options, child->name)) {
4328 const char *childref = qdict_get_try_str(options, child->name);
4330 * The current child must not be reopened if the child
4331 * reference is null or points to a different node.
4333 if (g_strcmp0(childref, child->bs->node_name)) {
4334 continue;
4337 * If the child reference points to the current child then
4338 * reopen it with its existing set of options (note that
4339 * it can still inherit new options from the parent).
4341 child_keep_old = true;
4342 } else {
4343 /* Extract child options ("child-name.*") */
4344 char *child_key_dot = g_strdup_printf("%s.", child->name);
4345 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4346 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4347 g_free(child_key_dot);
4350 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
4351 child->klass, child->role, bs->drv->is_format,
4352 options, flags, child_keep_old);
4355 return bs_queue;
4358 /* To be called with bs->aio_context locked */
4359 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4360 BlockDriverState *bs,
4361 QDict *options, bool keep_old_opts)
4363 GLOBAL_STATE_CODE();
4365 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4366 NULL, 0, keep_old_opts);
4369 void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4371 GLOBAL_STATE_CODE();
4372 if (bs_queue) {
4373 BlockReopenQueueEntry *bs_entry, *next;
4374 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4375 AioContext *ctx = bdrv_get_aio_context(bs_entry->state.bs);
4377 aio_context_acquire(ctx);
4378 bdrv_drained_end(bs_entry->state.bs);
4379 aio_context_release(ctx);
4381 qobject_unref(bs_entry->state.explicit_options);
4382 qobject_unref(bs_entry->state.options);
4383 g_free(bs_entry);
4385 g_free(bs_queue);
4390 * Reopen multiple BlockDriverStates atomically & transactionally.
4392 * The queue passed in (bs_queue) must have been built up previous
4393 * via bdrv_reopen_queue().
4395 * Reopens all BDS specified in the queue, with the appropriate
4396 * flags. All devices are prepared for reopen, and failure of any
4397 * device will cause all device changes to be abandoned, and intermediate
4398 * data cleaned up.
4400 * If all devices prepare successfully, then the changes are committed
4401 * to all devices.
4403 * All affected nodes must be drained between bdrv_reopen_queue() and
4404 * bdrv_reopen_multiple().
4406 * To be called from the main thread, with all other AioContexts unlocked.
4408 int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
4410 int ret = -1;
4411 BlockReopenQueueEntry *bs_entry, *next;
4412 AioContext *ctx;
4413 Transaction *tran = tran_new();
4414 g_autoptr(GSList) refresh_list = NULL;
4416 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
4417 assert(bs_queue != NULL);
4418 GLOBAL_STATE_CODE();
4420 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4421 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4422 aio_context_acquire(ctx);
4423 ret = bdrv_flush(bs_entry->state.bs);
4424 aio_context_release(ctx);
4425 if (ret < 0) {
4426 error_setg_errno(errp, -ret, "Error flushing drive");
4427 goto abort;
4431 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4432 assert(bs_entry->state.bs->quiesce_counter > 0);
4433 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4434 aio_context_acquire(ctx);
4435 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
4436 aio_context_release(ctx);
4437 if (ret < 0) {
4438 goto abort;
4440 bs_entry->prepared = true;
4443 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4444 BDRVReopenState *state = &bs_entry->state;
4446 refresh_list = g_slist_prepend(refresh_list, state->bs);
4447 if (state->old_backing_bs) {
4448 refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs);
4450 if (state->old_file_bs) {
4451 refresh_list = g_slist_prepend(refresh_list, state->old_file_bs);
4456 * Note that file-posix driver rely on permission update done during reopen
4457 * (even if no permission changed), because it wants "new" permissions for
4458 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4459 * in raw_reopen_prepare() which is called with "old" permissions.
4461 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4462 if (ret < 0) {
4463 goto abort;
4467 * If we reach this point, we have success and just need to apply the
4468 * changes.
4470 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4471 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4472 * children are usually goes after parents in reopen-queue, so go from last
4473 * to first element.
4475 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4476 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4477 aio_context_acquire(ctx);
4478 bdrv_reopen_commit(&bs_entry->state);
4479 aio_context_release(ctx);
4482 tran_commit(tran);
4484 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4485 BlockDriverState *bs = bs_entry->state.bs;
4487 if (bs->drv->bdrv_reopen_commit_post) {
4488 ctx = bdrv_get_aio_context(bs);
4489 aio_context_acquire(ctx);
4490 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
4491 aio_context_release(ctx);
4495 ret = 0;
4496 goto cleanup;
4498 abort:
4499 tran_abort(tran);
4500 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4501 if (bs_entry->prepared) {
4502 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4503 aio_context_acquire(ctx);
4504 bdrv_reopen_abort(&bs_entry->state);
4505 aio_context_release(ctx);
4509 cleanup:
4510 bdrv_reopen_queue_free(bs_queue);
4512 return ret;
4515 int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4516 Error **errp)
4518 AioContext *ctx = bdrv_get_aio_context(bs);
4519 BlockReopenQueue *queue;
4520 int ret;
4522 GLOBAL_STATE_CODE();
4524 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4526 if (ctx != qemu_get_aio_context()) {
4527 aio_context_release(ctx);
4529 ret = bdrv_reopen_multiple(queue, errp);
4531 if (ctx != qemu_get_aio_context()) {
4532 aio_context_acquire(ctx);
4535 return ret;
4538 int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4539 Error **errp)
4541 QDict *opts = qdict_new();
4543 GLOBAL_STATE_CODE();
4545 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4547 return bdrv_reopen(bs, opts, true, errp);
4551 * Take a BDRVReopenState and check if the value of 'backing' in the
4552 * reopen_state->options QDict is valid or not.
4554 * If 'backing' is missing from the QDict then return 0.
4556 * If 'backing' contains the node name of the backing file of
4557 * reopen_state->bs then return 0.
4559 * If 'backing' contains a different node name (or is null) then check
4560 * whether the current backing file can be replaced with the new one.
4561 * If that's the case then reopen_state->replace_backing_bs is set to
4562 * true and reopen_state->new_backing_bs contains a pointer to the new
4563 * backing BlockDriverState (or NULL).
4565 * Return 0 on success, otherwise return < 0 and set @errp.
4567 static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4568 bool is_backing, Transaction *tran,
4569 Error **errp)
4571 BlockDriverState *bs = reopen_state->bs;
4572 BlockDriverState *new_child_bs;
4573 BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) :
4574 child_bs(bs->file);
4575 const char *child_name = is_backing ? "backing" : "file";
4576 QObject *value;
4577 const char *str;
4579 GLOBAL_STATE_CODE();
4581 value = qdict_get(reopen_state->options, child_name);
4582 if (value == NULL) {
4583 return 0;
4586 switch (qobject_type(value)) {
4587 case QTYPE_QNULL:
4588 assert(is_backing); /* The 'file' option does not allow a null value */
4589 new_child_bs = NULL;
4590 break;
4591 case QTYPE_QSTRING:
4592 str = qstring_get_str(qobject_to(QString, value));
4593 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4594 if (new_child_bs == NULL) {
4595 return -EINVAL;
4596 } else if (bdrv_recurse_has_child(new_child_bs, bs)) {
4597 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4598 "cycle", str, child_name, bs->node_name);
4599 return -EINVAL;
4601 break;
4602 default:
4604 * The options QDict has been flattened, so 'backing' and 'file'
4605 * do not allow any other data type here.
4607 g_assert_not_reached();
4610 if (old_child_bs == new_child_bs) {
4611 return 0;
4614 if (old_child_bs) {
4615 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
4616 return 0;
4619 if (old_child_bs->implicit) {
4620 error_setg(errp, "Cannot replace implicit %s child of %s",
4621 child_name, bs->node_name);
4622 return -EPERM;
4626 if (bs->drv->is_filter && !old_child_bs) {
4628 * Filters always have a file or a backing child, so we are trying to
4629 * change wrong child
4631 error_setg(errp, "'%s' is a %s filter node that does not support a "
4632 "%s child", bs->node_name, bs->drv->format_name, child_name);
4633 return -EINVAL;
4636 if (is_backing) {
4637 reopen_state->old_backing_bs = old_child_bs;
4638 } else {
4639 reopen_state->old_file_bs = old_child_bs;
4642 return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4643 tran, errp);
4647 * Prepares a BlockDriverState for reopen. All changes are staged in the
4648 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4649 * the block driver layer .bdrv_reopen_prepare()
4651 * bs is the BlockDriverState to reopen
4652 * flags are the new open flags
4653 * queue is the reopen queue
4655 * Returns 0 on success, non-zero on error. On error errp will be set
4656 * as well.
4658 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4659 * It is the responsibility of the caller to then call the abort() or
4660 * commit() for any other BDS that have been left in a prepare() state
4663 static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
4664 BlockReopenQueue *queue,
4665 Transaction *change_child_tran, Error **errp)
4667 int ret = -1;
4668 int old_flags;
4669 Error *local_err = NULL;
4670 BlockDriver *drv;
4671 QemuOpts *opts;
4672 QDict *orig_reopen_opts;
4673 char *discard = NULL;
4674 bool read_only;
4675 bool drv_prepared = false;
4677 assert(reopen_state != NULL);
4678 assert(reopen_state->bs->drv != NULL);
4679 GLOBAL_STATE_CODE();
4680 drv = reopen_state->bs->drv;
4682 /* This function and each driver's bdrv_reopen_prepare() remove
4683 * entries from reopen_state->options as they are processed, so
4684 * we need to make a copy of the original QDict. */
4685 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4687 /* Process generic block layer options */
4688 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4689 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
4690 ret = -EINVAL;
4691 goto error;
4694 /* This was already called in bdrv_reopen_queue_child() so the flags
4695 * are up-to-date. This time we simply want to remove the options from
4696 * QemuOpts in order to indicate that they have been processed. */
4697 old_flags = reopen_state->flags;
4698 update_flags_from_options(&reopen_state->flags, opts);
4699 assert(old_flags == reopen_state->flags);
4701 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
4702 if (discard != NULL) {
4703 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4704 error_setg(errp, "Invalid discard option");
4705 ret = -EINVAL;
4706 goto error;
4710 reopen_state->detect_zeroes =
4711 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4712 if (local_err) {
4713 error_propagate(errp, local_err);
4714 ret = -EINVAL;
4715 goto error;
4718 /* All other options (including node-name and driver) must be unchanged.
4719 * Put them back into the QDict, so that they are checked at the end
4720 * of this function. */
4721 qemu_opts_to_qdict(opts, reopen_state->options);
4723 /* If we are to stay read-only, do not allow permission change
4724 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4725 * not set, or if the BDS still has copy_on_read enabled */
4726 read_only = !(reopen_state->flags & BDRV_O_RDWR);
4727 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
4728 if (local_err) {
4729 error_propagate(errp, local_err);
4730 goto error;
4733 if (drv->bdrv_reopen_prepare) {
4735 * If a driver-specific option is missing, it means that we
4736 * should reset it to its default value.
4737 * But not all options allow that, so we need to check it first.
4739 ret = bdrv_reset_options_allowed(reopen_state->bs,
4740 reopen_state->options, errp);
4741 if (ret) {
4742 goto error;
4745 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4746 if (ret) {
4747 if (local_err != NULL) {
4748 error_propagate(errp, local_err);
4749 } else {
4750 bdrv_refresh_filename(reopen_state->bs);
4751 error_setg(errp, "failed while preparing to reopen image '%s'",
4752 reopen_state->bs->filename);
4754 goto error;
4756 } else {
4757 /* It is currently mandatory to have a bdrv_reopen_prepare()
4758 * handler for each supported drv. */
4759 error_setg(errp, "Block format '%s' used by node '%s' "
4760 "does not support reopening files", drv->format_name,
4761 bdrv_get_device_or_node_name(reopen_state->bs));
4762 ret = -1;
4763 goto error;
4766 drv_prepared = true;
4769 * We must provide the 'backing' option if the BDS has a backing
4770 * file or if the image file has a backing file name as part of
4771 * its metadata. Otherwise the 'backing' option can be omitted.
4773 if (drv->supports_backing && reopen_state->backing_missing &&
4774 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
4775 error_setg(errp, "backing is missing for '%s'",
4776 reopen_state->bs->node_name);
4777 ret = -EINVAL;
4778 goto error;
4782 * Allow changing the 'backing' option. The new value can be
4783 * either a reference to an existing node (using its node name)
4784 * or NULL to simply detach the current backing file.
4786 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
4787 change_child_tran, errp);
4788 if (ret < 0) {
4789 goto error;
4791 qdict_del(reopen_state->options, "backing");
4793 /* Allow changing the 'file' option. In this case NULL is not allowed */
4794 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
4795 change_child_tran, errp);
4796 if (ret < 0) {
4797 goto error;
4799 qdict_del(reopen_state->options, "file");
4801 /* Options that are not handled are only okay if they are unchanged
4802 * compared to the old state. It is expected that some options are only
4803 * used for the initial open, but not reopen (e.g. filename) */
4804 if (qdict_size(reopen_state->options)) {
4805 const QDictEntry *entry = qdict_first(reopen_state->options);
4807 do {
4808 QObject *new = entry->value;
4809 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
4811 /* Allow child references (child_name=node_name) as long as they
4812 * point to the current child (i.e. everything stays the same). */
4813 if (qobject_type(new) == QTYPE_QSTRING) {
4814 BdrvChild *child;
4815 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4816 if (!strcmp(child->name, entry->key)) {
4817 break;
4821 if (child) {
4822 if (!strcmp(child->bs->node_name,
4823 qstring_get_str(qobject_to(QString, new)))) {
4824 continue; /* Found child with this name, skip option */
4830 * TODO: When using -drive to specify blockdev options, all values
4831 * will be strings; however, when using -blockdev, blockdev-add or
4832 * filenames using the json:{} pseudo-protocol, they will be
4833 * correctly typed.
4834 * In contrast, reopening options are (currently) always strings
4835 * (because you can only specify them through qemu-io; all other
4836 * callers do not specify any options).
4837 * Therefore, when using anything other than -drive to create a BDS,
4838 * this cannot detect non-string options as unchanged, because
4839 * qobject_is_equal() always returns false for objects of different
4840 * type. In the future, this should be remedied by correctly typing
4841 * all options. For now, this is not too big of an issue because
4842 * the user can simply omit options which cannot be changed anyway,
4843 * so they will stay unchanged.
4845 if (!qobject_is_equal(new, old)) {
4846 error_setg(errp, "Cannot change the option '%s'", entry->key);
4847 ret = -EINVAL;
4848 goto error;
4850 } while ((entry = qdict_next(reopen_state->options, entry)));
4853 ret = 0;
4855 /* Restore the original reopen_state->options QDict */
4856 qobject_unref(reopen_state->options);
4857 reopen_state->options = qobject_ref(orig_reopen_opts);
4859 error:
4860 if (ret < 0 && drv_prepared) {
4861 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4862 * call drv->bdrv_reopen_abort() before signaling an error
4863 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4864 * when the respective bdrv_reopen_prepare() has failed) */
4865 if (drv->bdrv_reopen_abort) {
4866 drv->bdrv_reopen_abort(reopen_state);
4869 qemu_opts_del(opts);
4870 qobject_unref(orig_reopen_opts);
4871 g_free(discard);
4872 return ret;
4876 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4877 * makes them final by swapping the staging BlockDriverState contents into
4878 * the active BlockDriverState contents.
4880 static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
4882 BlockDriver *drv;
4883 BlockDriverState *bs;
4884 BdrvChild *child;
4886 assert(reopen_state != NULL);
4887 bs = reopen_state->bs;
4888 drv = bs->drv;
4889 assert(drv != NULL);
4890 GLOBAL_STATE_CODE();
4892 /* If there are any driver level actions to take */
4893 if (drv->bdrv_reopen_commit) {
4894 drv->bdrv_reopen_commit(reopen_state);
4897 /* set BDS specific flags now */
4898 qobject_unref(bs->explicit_options);
4899 qobject_unref(bs->options);
4900 qobject_ref(reopen_state->explicit_options);
4901 qobject_ref(reopen_state->options);
4903 bs->explicit_options = reopen_state->explicit_options;
4904 bs->options = reopen_state->options;
4905 bs->open_flags = reopen_state->flags;
4906 bs->detect_zeroes = reopen_state->detect_zeroes;
4908 /* Remove child references from bs->options and bs->explicit_options.
4909 * Child options were already removed in bdrv_reopen_queue_child() */
4910 QLIST_FOREACH(child, &bs->children, next) {
4911 qdict_del(bs->explicit_options, child->name);
4912 qdict_del(bs->options, child->name);
4914 /* backing is probably removed, so it's not handled by previous loop */
4915 qdict_del(bs->explicit_options, "backing");
4916 qdict_del(bs->options, "backing");
4918 bdrv_refresh_limits(bs, NULL, NULL);
4922 * Abort the reopen, and delete and free the staged changes in
4923 * reopen_state
4925 static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
4927 BlockDriver *drv;
4929 assert(reopen_state != NULL);
4930 drv = reopen_state->bs->drv;
4931 assert(drv != NULL);
4932 GLOBAL_STATE_CODE();
4934 if (drv->bdrv_reopen_abort) {
4935 drv->bdrv_reopen_abort(reopen_state);
4940 static void bdrv_close(BlockDriverState *bs)
4942 BdrvAioNotifier *ban, *ban_next;
4943 BdrvChild *child, *next;
4945 GLOBAL_STATE_CODE();
4946 assert(!bs->refcnt);
4948 bdrv_drained_begin(bs); /* complete I/O */
4949 bdrv_flush(bs);
4950 bdrv_drain(bs); /* in case flush left pending I/O */
4952 if (bs->drv) {
4953 if (bs->drv->bdrv_close) {
4954 /* Must unfreeze all children, so bdrv_unref_child() works */
4955 bs->drv->bdrv_close(bs);
4957 bs->drv = NULL;
4960 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
4961 bdrv_unref_child(bs, child);
4964 assert(!bs->backing);
4965 assert(!bs->file);
4966 g_free(bs->opaque);
4967 bs->opaque = NULL;
4968 qatomic_set(&bs->copy_on_read, 0);
4969 bs->backing_file[0] = '\0';
4970 bs->backing_format[0] = '\0';
4971 bs->total_sectors = 0;
4972 bs->encrypted = false;
4973 bs->sg = false;
4974 qobject_unref(bs->options);
4975 qobject_unref(bs->explicit_options);
4976 bs->options = NULL;
4977 bs->explicit_options = NULL;
4978 qobject_unref(bs->full_open_options);
4979 bs->full_open_options = NULL;
4980 g_free(bs->block_status_cache);
4981 bs->block_status_cache = NULL;
4983 bdrv_release_named_dirty_bitmaps(bs);
4984 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4986 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4987 g_free(ban);
4989 QLIST_INIT(&bs->aio_notifiers);
4990 bdrv_drained_end(bs);
4993 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4994 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4995 * gets called.
4997 if (bs->quiesce_counter) {
4998 bdrv_drain_all_end_quiesce(bs);
5002 void bdrv_close_all(void)
5004 GLOBAL_STATE_CODE();
5005 assert(job_next(NULL) == NULL);
5007 /* Drop references from requests still in flight, such as canceled block
5008 * jobs whose AIO context has not been polled yet */
5009 bdrv_drain_all();
5011 blk_remove_all_bs();
5012 blockdev_close_all_bdrv_states();
5014 assert(QTAILQ_EMPTY(&all_bdrv_states));
5017 static bool should_update_child(BdrvChild *c, BlockDriverState *to)
5019 GQueue *queue;
5020 GHashTable *found;
5021 bool ret;
5023 if (c->klass->stay_at_node) {
5024 return false;
5027 /* If the child @c belongs to the BDS @to, replacing the current
5028 * c->bs by @to would mean to create a loop.
5030 * Such a case occurs when appending a BDS to a backing chain.
5031 * For instance, imagine the following chain:
5033 * guest device -> node A -> further backing chain...
5035 * Now we create a new BDS B which we want to put on top of this
5036 * chain, so we first attach A as its backing node:
5038 * node B
5041 * guest device -> node A -> further backing chain...
5043 * Finally we want to replace A by B. When doing that, we want to
5044 * replace all pointers to A by pointers to B -- except for the
5045 * pointer from B because (1) that would create a loop, and (2)
5046 * that pointer should simply stay intact:
5048 * guest device -> node B
5051 * node A -> further backing chain...
5053 * In general, when replacing a node A (c->bs) by a node B (@to),
5054 * if A is a child of B, that means we cannot replace A by B there
5055 * because that would create a loop. Silently detaching A from B
5056 * is also not really an option. So overall just leaving A in
5057 * place there is the most sensible choice.
5059 * We would also create a loop in any cases where @c is only
5060 * indirectly referenced by @to. Prevent this by returning false
5061 * if @c is found (by breadth-first search) anywhere in the whole
5062 * subtree of @to.
5065 ret = true;
5066 found = g_hash_table_new(NULL, NULL);
5067 g_hash_table_add(found, to);
5068 queue = g_queue_new();
5069 g_queue_push_tail(queue, to);
5071 while (!g_queue_is_empty(queue)) {
5072 BlockDriverState *v = g_queue_pop_head(queue);
5073 BdrvChild *c2;
5075 QLIST_FOREACH(c2, &v->children, next) {
5076 if (c2 == c) {
5077 ret = false;
5078 break;
5081 if (g_hash_table_contains(found, c2->bs)) {
5082 continue;
5085 g_queue_push_tail(queue, c2->bs);
5086 g_hash_table_add(found, c2->bs);
5090 g_queue_free(queue);
5091 g_hash_table_destroy(found);
5093 return ret;
5096 static void bdrv_remove_child_commit(void *opaque)
5098 GLOBAL_STATE_CODE();
5099 bdrv_child_free(opaque);
5102 static TransactionActionDrv bdrv_remove_child_drv = {
5103 .commit = bdrv_remove_child_commit,
5106 /* Function doesn't update permissions, caller is responsible for this. */
5107 static void bdrv_remove_child(BdrvChild *child, Transaction *tran)
5109 if (!child) {
5110 return;
5113 if (child->bs) {
5114 BlockDriverState *bs = child->bs;
5115 bdrv_drained_begin(bs);
5116 bdrv_replace_child_tran(child, NULL, tran);
5117 bdrv_drained_end(bs);
5120 tran_add(tran, &bdrv_remove_child_drv, child);
5123 static void undrain_on_clean_cb(void *opaque)
5125 bdrv_drained_end(opaque);
5128 static TransactionActionDrv undrain_on_clean = {
5129 .clean = undrain_on_clean_cb,
5132 static int bdrv_replace_node_noperm(BlockDriverState *from,
5133 BlockDriverState *to,
5134 bool auto_skip, Transaction *tran,
5135 Error **errp)
5137 BdrvChild *c, *next;
5139 GLOBAL_STATE_CODE();
5141 bdrv_drained_begin(from);
5142 bdrv_drained_begin(to);
5143 tran_add(tran, &undrain_on_clean, from);
5144 tran_add(tran, &undrain_on_clean, to);
5146 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5147 assert(c->bs == from);
5148 if (!should_update_child(c, to)) {
5149 if (auto_skip) {
5150 continue;
5152 error_setg(errp, "Should not change '%s' link to '%s'",
5153 c->name, from->node_name);
5154 return -EINVAL;
5156 if (c->frozen) {
5157 error_setg(errp, "Cannot change '%s' link to '%s'",
5158 c->name, from->node_name);
5159 return -EPERM;
5161 bdrv_replace_child_tran(c, to, tran);
5164 return 0;
5168 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5169 * if it creates a parent-child relation loop or if parent is block-job.
5171 * With auto_skip=false the error is returned if from has a parent which should
5172 * not be updated.
5174 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5175 * case backing link of the cow-parent of @to is removed.
5177 static int bdrv_replace_node_common(BlockDriverState *from,
5178 BlockDriverState *to,
5179 bool auto_skip, bool detach_subchain,
5180 Error **errp)
5182 Transaction *tran = tran_new();
5183 g_autoptr(GSList) refresh_list = NULL;
5184 BlockDriverState *to_cow_parent = NULL;
5185 int ret;
5187 GLOBAL_STATE_CODE();
5189 if (detach_subchain) {
5190 assert(bdrv_chain_contains(from, to));
5191 assert(from != to);
5192 for (to_cow_parent = from;
5193 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5194 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5200 /* Make sure that @from doesn't go away until we have successfully attached
5201 * all of its parents to @to. */
5202 bdrv_ref(from);
5204 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
5205 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
5206 bdrv_drained_begin(from);
5209 * Do the replacement without permission update.
5210 * Replacement may influence the permissions, we should calculate new
5211 * permissions based on new graph. If we fail, we'll roll-back the
5212 * replacement.
5214 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5215 if (ret < 0) {
5216 goto out;
5219 if (detach_subchain) {
5220 bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent), tran);
5223 refresh_list = g_slist_prepend(refresh_list, to);
5224 refresh_list = g_slist_prepend(refresh_list, from);
5226 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5227 if (ret < 0) {
5228 goto out;
5231 ret = 0;
5233 out:
5234 tran_finalize(tran, ret);
5236 bdrv_drained_end(from);
5237 bdrv_unref(from);
5239 return ret;
5242 int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5243 Error **errp)
5245 GLOBAL_STATE_CODE();
5247 return bdrv_replace_node_common(from, to, true, false, errp);
5250 int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5252 GLOBAL_STATE_CODE();
5254 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5255 errp);
5259 * Add new bs contents at the top of an image chain while the chain is
5260 * live, while keeping required fields on the top layer.
5262 * This will modify the BlockDriverState fields, and swap contents
5263 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5265 * bs_new must not be attached to a BlockBackend and must not have backing
5266 * child.
5268 * This function does not create any image files.
5270 int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5271 Error **errp)
5273 int ret;
5274 BdrvChild *child;
5275 Transaction *tran = tran_new();
5277 GLOBAL_STATE_CODE();
5279 assert(!bs_new->backing);
5281 child = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5282 &child_of_bds, bdrv_backing_role(bs_new),
5283 tran, errp);
5284 if (!child) {
5285 ret = -EINVAL;
5286 goto out;
5289 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
5290 if (ret < 0) {
5291 goto out;
5294 ret = bdrv_refresh_perms(bs_new, tran, errp);
5295 out:
5296 tran_finalize(tran, ret);
5298 bdrv_refresh_limits(bs_top, NULL, NULL);
5300 return ret;
5303 /* Not for empty child */
5304 int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5305 Error **errp)
5307 int ret;
5308 Transaction *tran = tran_new();
5309 g_autoptr(GSList) refresh_list = NULL;
5310 BlockDriverState *old_bs = child->bs;
5312 GLOBAL_STATE_CODE();
5314 bdrv_ref(old_bs);
5315 bdrv_drained_begin(old_bs);
5316 bdrv_drained_begin(new_bs);
5318 bdrv_replace_child_tran(child, new_bs, tran);
5320 refresh_list = g_slist_prepend(refresh_list, old_bs);
5321 refresh_list = g_slist_prepend(refresh_list, new_bs);
5323 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5325 tran_finalize(tran, ret);
5327 bdrv_drained_end(old_bs);
5328 bdrv_drained_end(new_bs);
5329 bdrv_unref(old_bs);
5331 return ret;
5334 static void bdrv_delete(BlockDriverState *bs)
5336 assert(bdrv_op_blocker_is_empty(bs));
5337 assert(!bs->refcnt);
5338 GLOBAL_STATE_CODE();
5340 /* remove from list, if necessary */
5341 if (bs->node_name[0] != '\0') {
5342 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5344 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5346 bdrv_close(bs);
5348 g_free(bs);
5353 * Replace @bs by newly created block node.
5355 * @options is a QDict of options to pass to the block drivers, or NULL for an
5356 * empty set of options. The reference to the QDict belongs to the block layer
5357 * after the call (even on failure), so if the caller intends to reuse the
5358 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
5360 BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
5361 int flags, Error **errp)
5363 ERRP_GUARD();
5364 int ret;
5365 BlockDriverState *new_node_bs = NULL;
5366 const char *drvname, *node_name;
5367 BlockDriver *drv;
5369 drvname = qdict_get_try_str(options, "driver");
5370 if (!drvname) {
5371 error_setg(errp, "driver is not specified");
5372 goto fail;
5375 drv = bdrv_find_format(drvname);
5376 if (!drv) {
5377 error_setg(errp, "Unknown driver: '%s'", drvname);
5378 goto fail;
5381 node_name = qdict_get_try_str(options, "node-name");
5383 GLOBAL_STATE_CODE();
5385 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5386 errp);
5387 options = NULL; /* bdrv_new_open_driver() eats options */
5388 if (!new_node_bs) {
5389 error_prepend(errp, "Could not create node: ");
5390 goto fail;
5393 bdrv_drained_begin(bs);
5394 ret = bdrv_replace_node(bs, new_node_bs, errp);
5395 bdrv_drained_end(bs);
5397 if (ret < 0) {
5398 error_prepend(errp, "Could not replace node: ");
5399 goto fail;
5402 return new_node_bs;
5404 fail:
5405 qobject_unref(options);
5406 bdrv_unref(new_node_bs);
5407 return NULL;
5411 * Run consistency checks on an image
5413 * Returns 0 if the check could be completed (it doesn't mean that the image is
5414 * free of errors) or -errno when an internal error occurred. The results of the
5415 * check are stored in res.
5417 int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5418 BdrvCheckResult *res, BdrvCheckMode fix)
5420 IO_CODE();
5421 assert_bdrv_graph_readable();
5422 if (bs->drv == NULL) {
5423 return -ENOMEDIUM;
5425 if (bs->drv->bdrv_co_check == NULL) {
5426 return -ENOTSUP;
5429 memset(res, 0, sizeof(*res));
5430 return bs->drv->bdrv_co_check(bs, res, fix);
5434 * Return values:
5435 * 0 - success
5436 * -EINVAL - backing format specified, but no file
5437 * -ENOSPC - can't update the backing file because no space is left in the
5438 * image file header
5439 * -ENOTSUP - format driver doesn't support changing the backing file
5441 int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
5442 const char *backing_fmt, bool require)
5444 BlockDriver *drv = bs->drv;
5445 int ret;
5447 GLOBAL_STATE_CODE();
5449 if (!drv) {
5450 return -ENOMEDIUM;
5453 /* Backing file format doesn't make sense without a backing file */
5454 if (backing_fmt && !backing_file) {
5455 return -EINVAL;
5458 if (require && backing_file && !backing_fmt) {
5459 return -EINVAL;
5462 if (drv->bdrv_change_backing_file != NULL) {
5463 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
5464 } else {
5465 ret = -ENOTSUP;
5468 if (ret == 0) {
5469 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5470 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
5471 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5472 backing_file ?: "");
5474 return ret;
5478 * Finds the first non-filter node above bs in the chain between
5479 * active and bs. The returned node is either an immediate parent of
5480 * bs, or there are only filter nodes between the two.
5482 * Returns NULL if bs is not found in active's image chain,
5483 * or if active == bs.
5485 * Returns the bottommost base image if bs == NULL.
5487 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5488 BlockDriverState *bs)
5491 GLOBAL_STATE_CODE();
5493 bs = bdrv_skip_filters(bs);
5494 active = bdrv_skip_filters(active);
5496 while (active) {
5497 BlockDriverState *next = bdrv_backing_chain_next(active);
5498 if (bs == next) {
5499 return active;
5501 active = next;
5504 return NULL;
5507 /* Given a BDS, searches for the base layer. */
5508 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5510 GLOBAL_STATE_CODE();
5512 return bdrv_find_overlay(bs, NULL);
5516 * Return true if at least one of the COW (backing) and filter links
5517 * between @bs and @base is frozen. @errp is set if that's the case.
5518 * @base must be reachable from @bs, or NULL.
5520 bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5521 Error **errp)
5523 BlockDriverState *i;
5524 BdrvChild *child;
5526 GLOBAL_STATE_CODE();
5528 for (i = bs; i != base; i = child_bs(child)) {
5529 child = bdrv_filter_or_cow_child(i);
5531 if (child && child->frozen) {
5532 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
5533 child->name, i->node_name, child->bs->node_name);
5534 return true;
5538 return false;
5542 * Freeze all COW (backing) and filter links between @bs and @base.
5543 * If any of the links is already frozen the operation is aborted and
5544 * none of the links are modified.
5545 * @base must be reachable from @bs, or NULL.
5546 * Returns 0 on success. On failure returns < 0 and sets @errp.
5548 int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5549 Error **errp)
5551 BlockDriverState *i;
5552 BdrvChild *child;
5554 GLOBAL_STATE_CODE();
5556 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5557 return -EPERM;
5560 for (i = bs; i != base; i = child_bs(child)) {
5561 child = bdrv_filter_or_cow_child(i);
5562 if (child && child->bs->never_freeze) {
5563 error_setg(errp, "Cannot freeze '%s' link to '%s'",
5564 child->name, child->bs->node_name);
5565 return -EPERM;
5569 for (i = bs; i != base; i = child_bs(child)) {
5570 child = bdrv_filter_or_cow_child(i);
5571 if (child) {
5572 child->frozen = true;
5576 return 0;
5580 * Unfreeze all COW (backing) and filter links between @bs and @base.
5581 * The caller must ensure that all links are frozen before using this
5582 * function.
5583 * @base must be reachable from @bs, or NULL.
5585 void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5587 BlockDriverState *i;
5588 BdrvChild *child;
5590 GLOBAL_STATE_CODE();
5592 for (i = bs; i != base; i = child_bs(child)) {
5593 child = bdrv_filter_or_cow_child(i);
5594 if (child) {
5595 assert(child->frozen);
5596 child->frozen = false;
5602 * Drops images above 'base' up to and including 'top', and sets the image
5603 * above 'top' to have base as its backing file.
5605 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5606 * information in 'bs' can be properly updated.
5608 * E.g., this will convert the following chain:
5609 * bottom <- base <- intermediate <- top <- active
5611 * to
5613 * bottom <- base <- active
5615 * It is allowed for bottom==base, in which case it converts:
5617 * base <- intermediate <- top <- active
5619 * to
5621 * base <- active
5623 * If backing_file_str is non-NULL, it will be used when modifying top's
5624 * overlay image metadata.
5626 * Error conditions:
5627 * if active == top, that is considered an error
5630 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5631 const char *backing_file_str)
5633 BlockDriverState *explicit_top = top;
5634 bool update_inherits_from;
5635 BdrvChild *c;
5636 Error *local_err = NULL;
5637 int ret = -EIO;
5638 g_autoptr(GSList) updated_children = NULL;
5639 GSList *p;
5641 GLOBAL_STATE_CODE();
5643 bdrv_ref(top);
5644 bdrv_drained_begin(base);
5646 if (!top->drv || !base->drv) {
5647 goto exit;
5650 /* Make sure that base is in the backing chain of top */
5651 if (!bdrv_chain_contains(top, base)) {
5652 goto exit;
5655 /* If 'base' recursively inherits from 'top' then we should set
5656 * base->inherits_from to top->inherits_from after 'top' and all
5657 * other intermediate nodes have been dropped.
5658 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5659 * it because no one inherits from it. We use explicit_top for that. */
5660 explicit_top = bdrv_skip_implicit_filters(explicit_top);
5661 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5663 /* success - we can delete the intermediate states, and link top->base */
5664 if (!backing_file_str) {
5665 bdrv_refresh_filename(base);
5666 backing_file_str = base->filename;
5669 QLIST_FOREACH(c, &top->parents, next_parent) {
5670 updated_children = g_slist_prepend(updated_children, c);
5674 * It seems correct to pass detach_subchain=true here, but it triggers
5675 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5676 * another drained section, which modify the graph (for example, removing
5677 * the child, which we keep in updated_children list). So, it's a TODO.
5679 * Note, bug triggered if pass detach_subchain=true here and run
5680 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5681 * That's a FIXME.
5683 bdrv_replace_node_common(top, base, false, false, &local_err);
5684 if (local_err) {
5685 error_report_err(local_err);
5686 goto exit;
5689 for (p = updated_children; p; p = p->next) {
5690 c = p->data;
5692 if (c->klass->update_filename) {
5693 ret = c->klass->update_filename(c, base, backing_file_str,
5694 &local_err);
5695 if (ret < 0) {
5697 * TODO: Actually, we want to rollback all previous iterations
5698 * of this loop, and (which is almost impossible) previous
5699 * bdrv_replace_node()...
5701 * Note, that c->klass->update_filename may lead to permission
5702 * update, so it's a bad idea to call it inside permission
5703 * update transaction of bdrv_replace_node.
5705 error_report_err(local_err);
5706 goto exit;
5711 if (update_inherits_from) {
5712 base->inherits_from = explicit_top->inherits_from;
5715 ret = 0;
5716 exit:
5717 bdrv_drained_end(base);
5718 bdrv_unref(top);
5719 return ret;
5723 * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that
5724 * sums the size of all data-bearing children. (This excludes backing
5725 * children.)
5727 static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5729 BdrvChild *child;
5730 int64_t child_size, sum = 0;
5732 QLIST_FOREACH(child, &bs->children, next) {
5733 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5734 BDRV_CHILD_FILTERED))
5736 child_size = bdrv_co_get_allocated_file_size(child->bs);
5737 if (child_size < 0) {
5738 return child_size;
5740 sum += child_size;
5744 return sum;
5748 * Length of a allocated file in bytes. Sparse files are counted by actual
5749 * allocated space. Return < 0 if error or unknown.
5751 int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs)
5753 BlockDriver *drv = bs->drv;
5754 IO_CODE();
5756 if (!drv) {
5757 return -ENOMEDIUM;
5759 if (drv->bdrv_co_get_allocated_file_size) {
5760 return drv->bdrv_co_get_allocated_file_size(bs);
5763 if (drv->bdrv_file_open) {
5765 * Protocol drivers default to -ENOTSUP (most of their data is
5766 * not stored in any of their children (if they even have any),
5767 * so there is no generic way to figure it out).
5769 return -ENOTSUP;
5770 } else if (drv->is_filter) {
5771 /* Filter drivers default to the size of their filtered child */
5772 return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs));
5773 } else {
5774 /* Other drivers default to summing their children's sizes */
5775 return bdrv_sum_allocated_file_size(bs);
5780 * bdrv_measure:
5781 * @drv: Format driver
5782 * @opts: Creation options for new image
5783 * @in_bs: Existing image containing data for new image (may be NULL)
5784 * @errp: Error object
5785 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5786 * or NULL on error
5788 * Calculate file size required to create a new image.
5790 * If @in_bs is given then space for allocated clusters and zero clusters
5791 * from that image are included in the calculation. If @opts contains a
5792 * backing file that is shared by @in_bs then backing clusters may be omitted
5793 * from the calculation.
5795 * If @in_bs is NULL then the calculation includes no allocated clusters
5796 * unless a preallocation option is given in @opts.
5798 * Note that @in_bs may use a different BlockDriver from @drv.
5800 * If an error occurs the @errp pointer is set.
5802 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5803 BlockDriverState *in_bs, Error **errp)
5805 IO_CODE();
5806 if (!drv->bdrv_measure) {
5807 error_setg(errp, "Block driver '%s' does not support size measurement",
5808 drv->format_name);
5809 return NULL;
5812 return drv->bdrv_measure(opts, in_bs, errp);
5816 * Return number of sectors on success, -errno on error.
5818 int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs)
5820 BlockDriver *drv = bs->drv;
5821 IO_CODE();
5823 if (!drv)
5824 return -ENOMEDIUM;
5826 if (drv->has_variable_length) {
5827 int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors);
5828 if (ret < 0) {
5829 return ret;
5832 return bs->total_sectors;
5836 * Return length in bytes on success, -errno on error.
5837 * The length is always a multiple of BDRV_SECTOR_SIZE.
5839 int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs)
5841 int64_t ret;
5842 IO_CODE();
5844 ret = bdrv_co_nb_sectors(bs);
5845 if (ret < 0) {
5846 return ret;
5848 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5849 return -EFBIG;
5851 return ret * BDRV_SECTOR_SIZE;
5854 /* return 0 as number of sectors if no device present or error */
5855 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
5857 int64_t nb_sectors = bdrv_nb_sectors(bs);
5858 IO_CODE();
5860 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
5863 bool bdrv_is_sg(BlockDriverState *bs)
5865 IO_CODE();
5866 return bs->sg;
5870 * Return whether the given node supports compressed writes.
5872 bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5874 BlockDriverState *filtered;
5875 IO_CODE();
5877 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5878 return false;
5881 filtered = bdrv_filter_bs(bs);
5882 if (filtered) {
5884 * Filters can only forward compressed writes, so we have to
5885 * check the child.
5887 return bdrv_supports_compressed_writes(filtered);
5890 return true;
5893 const char *bdrv_get_format_name(BlockDriverState *bs)
5895 IO_CODE();
5896 return bs->drv ? bs->drv->format_name : NULL;
5899 static int qsort_strcmp(const void *a, const void *b)
5901 return strcmp(*(char *const *)a, *(char *const *)b);
5904 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
5905 void *opaque, bool read_only)
5907 BlockDriver *drv;
5908 int count = 0;
5909 int i;
5910 const char **formats = NULL;
5912 GLOBAL_STATE_CODE();
5914 QLIST_FOREACH(drv, &bdrv_drivers, list) {
5915 if (drv->format_name) {
5916 bool found = false;
5917 int i = count;
5919 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5920 continue;
5923 while (formats && i && !found) {
5924 found = !strcmp(formats[--i], drv->format_name);
5927 if (!found) {
5928 formats = g_renew(const char *, formats, count + 1);
5929 formats[count++] = drv->format_name;
5934 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5935 const char *format_name = block_driver_modules[i].format_name;
5937 if (format_name) {
5938 bool found = false;
5939 int j = count;
5941 if (use_bdrv_whitelist &&
5942 !bdrv_format_is_whitelisted(format_name, read_only)) {
5943 continue;
5946 while (formats && j && !found) {
5947 found = !strcmp(formats[--j], format_name);
5950 if (!found) {
5951 formats = g_renew(const char *, formats, count + 1);
5952 formats[count++] = format_name;
5957 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5959 for (i = 0; i < count; i++) {
5960 it(opaque, formats[i]);
5963 g_free(formats);
5966 /* This function is to find a node in the bs graph */
5967 BlockDriverState *bdrv_find_node(const char *node_name)
5969 BlockDriverState *bs;
5971 assert(node_name);
5972 GLOBAL_STATE_CODE();
5974 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5975 if (!strcmp(node_name, bs->node_name)) {
5976 return bs;
5979 return NULL;
5982 /* Put this QMP function here so it can access the static graph_bdrv_states. */
5983 BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5984 Error **errp)
5986 BlockDeviceInfoList *list;
5987 BlockDriverState *bs;
5989 GLOBAL_STATE_CODE();
5991 list = NULL;
5992 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5993 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
5994 if (!info) {
5995 qapi_free_BlockDeviceInfoList(list);
5996 return NULL;
5998 QAPI_LIST_PREPEND(list, info);
6001 return list;
6004 typedef struct XDbgBlockGraphConstructor {
6005 XDbgBlockGraph *graph;
6006 GHashTable *graph_nodes;
6007 } XDbgBlockGraphConstructor;
6009 static XDbgBlockGraphConstructor *xdbg_graph_new(void)
6011 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
6013 gr->graph = g_new0(XDbgBlockGraph, 1);
6014 gr->graph_nodes = g_hash_table_new(NULL, NULL);
6016 return gr;
6019 static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
6021 XDbgBlockGraph *graph = gr->graph;
6023 g_hash_table_destroy(gr->graph_nodes);
6024 g_free(gr);
6026 return graph;
6029 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
6031 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
6033 if (ret != 0) {
6034 return ret;
6038 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6039 * answer of g_hash_table_lookup.
6041 ret = g_hash_table_size(gr->graph_nodes) + 1;
6042 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
6044 return ret;
6047 static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
6048 XDbgBlockGraphNodeType type, const char *name)
6050 XDbgBlockGraphNode *n;
6052 n = g_new0(XDbgBlockGraphNode, 1);
6054 n->id = xdbg_graph_node_num(gr, node);
6055 n->type = type;
6056 n->name = g_strdup(name);
6058 QAPI_LIST_PREPEND(gr->graph->nodes, n);
6061 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
6062 const BdrvChild *child)
6064 BlockPermission qapi_perm;
6065 XDbgBlockGraphEdge *edge;
6066 GLOBAL_STATE_CODE();
6068 edge = g_new0(XDbgBlockGraphEdge, 1);
6070 edge->parent = xdbg_graph_node_num(gr, parent);
6071 edge->child = xdbg_graph_node_num(gr, child->bs);
6072 edge->name = g_strdup(child->name);
6074 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
6075 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
6077 if (flag & child->perm) {
6078 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
6080 if (flag & child->shared_perm) {
6081 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
6085 QAPI_LIST_PREPEND(gr->graph->edges, edge);
6089 XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
6091 BlockBackend *blk;
6092 BlockJob *job;
6093 BlockDriverState *bs;
6094 BdrvChild *child;
6095 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
6097 GLOBAL_STATE_CODE();
6099 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
6100 char *allocated_name = NULL;
6101 const char *name = blk_name(blk);
6103 if (!*name) {
6104 name = allocated_name = blk_get_attached_dev_id(blk);
6106 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
6107 name);
6108 g_free(allocated_name);
6109 if (blk_root(blk)) {
6110 xdbg_graph_add_edge(gr, blk, blk_root(blk));
6114 WITH_JOB_LOCK_GUARD() {
6115 for (job = block_job_next_locked(NULL); job;
6116 job = block_job_next_locked(job)) {
6117 GSList *el;
6119 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
6120 job->job.id);
6121 for (el = job->nodes; el; el = el->next) {
6122 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
6127 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6128 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
6129 bs->node_name);
6130 QLIST_FOREACH(child, &bs->children, next) {
6131 xdbg_graph_add_edge(gr, bs, child);
6135 return xdbg_graph_finalize(gr);
6138 BlockDriverState *bdrv_lookup_bs(const char *device,
6139 const char *node_name,
6140 Error **errp)
6142 BlockBackend *blk;
6143 BlockDriverState *bs;
6145 GLOBAL_STATE_CODE();
6147 if (device) {
6148 blk = blk_by_name(device);
6150 if (blk) {
6151 bs = blk_bs(blk);
6152 if (!bs) {
6153 error_setg(errp, "Device '%s' has no medium", device);
6156 return bs;
6160 if (node_name) {
6161 bs = bdrv_find_node(node_name);
6163 if (bs) {
6164 return bs;
6168 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
6169 device ? device : "",
6170 node_name ? node_name : "");
6171 return NULL;
6174 /* If 'base' is in the same chain as 'top', return true. Otherwise,
6175 * return false. If either argument is NULL, return false. */
6176 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6179 GLOBAL_STATE_CODE();
6181 while (top && top != base) {
6182 top = bdrv_filter_or_cow_bs(top);
6185 return top != NULL;
6188 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6190 GLOBAL_STATE_CODE();
6191 if (!bs) {
6192 return QTAILQ_FIRST(&graph_bdrv_states);
6194 return QTAILQ_NEXT(bs, node_list);
6197 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6199 GLOBAL_STATE_CODE();
6200 if (!bs) {
6201 return QTAILQ_FIRST(&all_bdrv_states);
6203 return QTAILQ_NEXT(bs, bs_list);
6206 const char *bdrv_get_node_name(const BlockDriverState *bs)
6208 IO_CODE();
6209 return bs->node_name;
6212 const char *bdrv_get_parent_name(const BlockDriverState *bs)
6214 BdrvChild *c;
6215 const char *name;
6216 IO_CODE();
6218 /* If multiple parents have a name, just pick the first one. */
6219 QLIST_FOREACH(c, &bs->parents, next_parent) {
6220 if (c->klass->get_name) {
6221 name = c->klass->get_name(c);
6222 if (name && *name) {
6223 return name;
6228 return NULL;
6231 /* TODO check what callers really want: bs->node_name or blk_name() */
6232 const char *bdrv_get_device_name(const BlockDriverState *bs)
6234 IO_CODE();
6235 return bdrv_get_parent_name(bs) ?: "";
6238 /* This can be used to identify nodes that might not have a device
6239 * name associated. Since node and device names live in the same
6240 * namespace, the result is unambiguous. The exception is if both are
6241 * absent, then this returns an empty (non-null) string. */
6242 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6244 IO_CODE();
6245 return bdrv_get_parent_name(bs) ?: bs->node_name;
6248 int bdrv_get_flags(BlockDriverState *bs)
6250 IO_CODE();
6251 return bs->open_flags;
6254 int bdrv_has_zero_init_1(BlockDriverState *bs)
6256 GLOBAL_STATE_CODE();
6257 return 1;
6260 int bdrv_has_zero_init(BlockDriverState *bs)
6262 BlockDriverState *filtered;
6263 GLOBAL_STATE_CODE();
6265 if (!bs->drv) {
6266 return 0;
6269 /* If BS is a copy on write image, it is initialized to
6270 the contents of the base image, which may not be zeroes. */
6271 if (bdrv_cow_child(bs)) {
6272 return 0;
6274 if (bs->drv->bdrv_has_zero_init) {
6275 return bs->drv->bdrv_has_zero_init(bs);
6278 filtered = bdrv_filter_bs(bs);
6279 if (filtered) {
6280 return bdrv_has_zero_init(filtered);
6283 /* safe default */
6284 return 0;
6287 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6289 IO_CODE();
6290 if (!(bs->open_flags & BDRV_O_UNMAP)) {
6291 return false;
6294 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
6297 void bdrv_get_backing_filename(BlockDriverState *bs,
6298 char *filename, int filename_size)
6300 IO_CODE();
6301 pstrcpy(filename, filename_size, bs->backing_file);
6304 int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
6306 int ret;
6307 BlockDriver *drv = bs->drv;
6308 IO_CODE();
6309 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6310 if (!drv) {
6311 return -ENOMEDIUM;
6313 if (!drv->bdrv_co_get_info) {
6314 BlockDriverState *filtered = bdrv_filter_bs(bs);
6315 if (filtered) {
6316 return bdrv_co_get_info(filtered, bdi);
6318 return -ENOTSUP;
6320 memset(bdi, 0, sizeof(*bdi));
6321 ret = drv->bdrv_co_get_info(bs, bdi);
6322 if (ret < 0) {
6323 return ret;
6326 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6327 return -EINVAL;
6330 return 0;
6333 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6334 Error **errp)
6336 BlockDriver *drv = bs->drv;
6337 IO_CODE();
6338 if (drv && drv->bdrv_get_specific_info) {
6339 return drv->bdrv_get_specific_info(bs, errp);
6341 return NULL;
6344 BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6346 BlockDriver *drv = bs->drv;
6347 IO_CODE();
6348 if (!drv || !drv->bdrv_get_specific_stats) {
6349 return NULL;
6351 return drv->bdrv_get_specific_stats(bs);
6354 void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event)
6356 IO_CODE();
6357 if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) {
6358 return;
6361 bs->drv->bdrv_co_debug_event(bs, event);
6364 static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
6366 GLOBAL_STATE_CODE();
6367 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
6368 bs = bdrv_primary_bs(bs);
6371 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
6372 assert(bs->drv->bdrv_debug_remove_breakpoint);
6373 return bs;
6376 return NULL;
6379 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6380 const char *tag)
6382 GLOBAL_STATE_CODE();
6383 bs = bdrv_find_debug_node(bs);
6384 if (bs) {
6385 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6388 return -ENOTSUP;
6391 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6393 GLOBAL_STATE_CODE();
6394 bs = bdrv_find_debug_node(bs);
6395 if (bs) {
6396 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6399 return -ENOTSUP;
6402 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6404 GLOBAL_STATE_CODE();
6405 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
6406 bs = bdrv_primary_bs(bs);
6409 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6410 return bs->drv->bdrv_debug_resume(bs, tag);
6413 return -ENOTSUP;
6416 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6418 GLOBAL_STATE_CODE();
6419 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
6420 bs = bdrv_primary_bs(bs);
6423 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6424 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6427 return false;
6430 /* backing_file can either be relative, or absolute, or a protocol. If it is
6431 * relative, it must be relative to the chain. So, passing in bs->filename
6432 * from a BDS as backing_file should not be done, as that may be relative to
6433 * the CWD rather than the chain. */
6434 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6435 const char *backing_file)
6437 char *filename_full = NULL;
6438 char *backing_file_full = NULL;
6439 char *filename_tmp = NULL;
6440 int is_protocol = 0;
6441 bool filenames_refreshed = false;
6442 BlockDriverState *curr_bs = NULL;
6443 BlockDriverState *retval = NULL;
6444 BlockDriverState *bs_below;
6446 GLOBAL_STATE_CODE();
6448 if (!bs || !bs->drv || !backing_file) {
6449 return NULL;
6452 filename_full = g_malloc(PATH_MAX);
6453 backing_file_full = g_malloc(PATH_MAX);
6455 is_protocol = path_has_protocol(backing_file);
6458 * Being largely a legacy function, skip any filters here
6459 * (because filters do not have normal filenames, so they cannot
6460 * match anyway; and allowing json:{} filenames is a bit out of
6461 * scope).
6463 for (curr_bs = bdrv_skip_filters(bs);
6464 bdrv_cow_child(curr_bs) != NULL;
6465 curr_bs = bs_below)
6467 bs_below = bdrv_backing_chain_next(curr_bs);
6469 if (bdrv_backing_overridden(curr_bs)) {
6471 * If the backing file was overridden, we can only compare
6472 * directly against the backing node's filename.
6475 if (!filenames_refreshed) {
6477 * This will automatically refresh all of the
6478 * filenames in the rest of the backing chain, so we
6479 * only need to do this once.
6481 bdrv_refresh_filename(bs_below);
6482 filenames_refreshed = true;
6485 if (strcmp(backing_file, bs_below->filename) == 0) {
6486 retval = bs_below;
6487 break;
6489 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6491 * If either of the filename paths is actually a protocol, then
6492 * compare unmodified paths; otherwise make paths relative.
6494 char *backing_file_full_ret;
6496 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
6497 retval = bs_below;
6498 break;
6500 /* Also check against the full backing filename for the image */
6501 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6502 NULL);
6503 if (backing_file_full_ret) {
6504 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6505 g_free(backing_file_full_ret);
6506 if (equal) {
6507 retval = bs_below;
6508 break;
6511 } else {
6512 /* If not an absolute filename path, make it relative to the current
6513 * image's filename path */
6514 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6515 NULL);
6516 /* We are going to compare canonicalized absolute pathnames */
6517 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6518 g_free(filename_tmp);
6519 continue;
6521 g_free(filename_tmp);
6523 /* We need to make sure the backing filename we are comparing against
6524 * is relative to the current image filename (or absolute) */
6525 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6526 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6527 g_free(filename_tmp);
6528 continue;
6530 g_free(filename_tmp);
6532 if (strcmp(backing_file_full, filename_full) == 0) {
6533 retval = bs_below;
6534 break;
6539 g_free(filename_full);
6540 g_free(backing_file_full);
6541 return retval;
6544 void bdrv_init(void)
6546 #ifdef CONFIG_BDRV_WHITELIST_TOOLS
6547 use_bdrv_whitelist = 1;
6548 #endif
6549 module_call_init(MODULE_INIT_BLOCK);
6552 void bdrv_init_with_whitelist(void)
6554 use_bdrv_whitelist = 1;
6555 bdrv_init();
6558 int bdrv_activate(BlockDriverState *bs, Error **errp)
6560 BdrvChild *child, *parent;
6561 Error *local_err = NULL;
6562 int ret;
6563 BdrvDirtyBitmap *bm;
6565 GLOBAL_STATE_CODE();
6567 if (!bs->drv) {
6568 return -ENOMEDIUM;
6571 QLIST_FOREACH(child, &bs->children, next) {
6572 bdrv_activate(child->bs, &local_err);
6573 if (local_err) {
6574 error_propagate(errp, local_err);
6575 return -EINVAL;
6580 * Update permissions, they may differ for inactive nodes.
6582 * Note that the required permissions of inactive images are always a
6583 * subset of the permissions required after activating the image. This
6584 * allows us to just get the permissions upfront without restricting
6585 * bdrv_co_invalidate_cache().
6587 * It also means that in error cases, we don't have to try and revert to
6588 * the old permissions (which is an operation that could fail, too). We can
6589 * just keep the extended permissions for the next time that an activation
6590 * of the image is tried.
6592 if (bs->open_flags & BDRV_O_INACTIVE) {
6593 bs->open_flags &= ~BDRV_O_INACTIVE;
6594 ret = bdrv_refresh_perms(bs, NULL, errp);
6595 if (ret < 0) {
6596 bs->open_flags |= BDRV_O_INACTIVE;
6597 return ret;
6600 ret = bdrv_invalidate_cache(bs, errp);
6601 if (ret < 0) {
6602 bs->open_flags |= BDRV_O_INACTIVE;
6603 return ret;
6606 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6607 bdrv_dirty_bitmap_skip_store(bm, false);
6610 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
6611 if (ret < 0) {
6612 bs->open_flags |= BDRV_O_INACTIVE;
6613 error_setg_errno(errp, -ret, "Could not refresh total sector count");
6614 return ret;
6618 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6619 if (parent->klass->activate) {
6620 parent->klass->activate(parent, &local_err);
6621 if (local_err) {
6622 bs->open_flags |= BDRV_O_INACTIVE;
6623 error_propagate(errp, local_err);
6624 return -EINVAL;
6629 return 0;
6632 int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
6634 Error *local_err = NULL;
6635 IO_CODE();
6637 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6638 assert_bdrv_graph_readable();
6640 if (bs->drv->bdrv_co_invalidate_cache) {
6641 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6642 if (local_err) {
6643 error_propagate(errp, local_err);
6644 return -EINVAL;
6648 return 0;
6651 void bdrv_activate_all(Error **errp)
6653 BlockDriverState *bs;
6654 BdrvNextIterator it;
6656 GLOBAL_STATE_CODE();
6658 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6659 AioContext *aio_context = bdrv_get_aio_context(bs);
6660 int ret;
6662 aio_context_acquire(aio_context);
6663 ret = bdrv_activate(bs, errp);
6664 aio_context_release(aio_context);
6665 if (ret < 0) {
6666 bdrv_next_cleanup(&it);
6667 return;
6672 static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6674 BdrvChild *parent;
6675 GLOBAL_STATE_CODE();
6677 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6678 if (parent->klass->parent_is_bds) {
6679 BlockDriverState *parent_bs = parent->opaque;
6680 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6681 return true;
6686 return false;
6689 static int bdrv_inactivate_recurse(BlockDriverState *bs)
6691 BdrvChild *child, *parent;
6692 int ret;
6693 uint64_t cumulative_perms, cumulative_shared_perms;
6695 GLOBAL_STATE_CODE();
6697 if (!bs->drv) {
6698 return -ENOMEDIUM;
6701 /* Make sure that we don't inactivate a child before its parent.
6702 * It will be covered by recursion from the yet active parent. */
6703 if (bdrv_has_bds_parent(bs, true)) {
6704 return 0;
6707 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6709 /* Inactivate this node */
6710 if (bs->drv->bdrv_inactivate) {
6711 ret = bs->drv->bdrv_inactivate(bs);
6712 if (ret < 0) {
6713 return ret;
6717 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6718 if (parent->klass->inactivate) {
6719 ret = parent->klass->inactivate(parent);
6720 if (ret < 0) {
6721 return ret;
6726 bdrv_get_cumulative_perm(bs, &cumulative_perms,
6727 &cumulative_shared_perms);
6728 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
6729 /* Our inactive parents still need write access. Inactivation failed. */
6730 return -EPERM;
6733 bs->open_flags |= BDRV_O_INACTIVE;
6736 * Update permissions, they may differ for inactive nodes.
6737 * We only tried to loosen restrictions, so errors are not fatal, ignore
6738 * them.
6740 bdrv_refresh_perms(bs, NULL, NULL);
6742 /* Recursively inactivate children */
6743 QLIST_FOREACH(child, &bs->children, next) {
6744 ret = bdrv_inactivate_recurse(child->bs);
6745 if (ret < 0) {
6746 return ret;
6750 return 0;
6753 int bdrv_inactivate_all(void)
6755 BlockDriverState *bs = NULL;
6756 BdrvNextIterator it;
6757 int ret = 0;
6758 GSList *aio_ctxs = NULL, *ctx;
6760 GLOBAL_STATE_CODE();
6762 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6763 AioContext *aio_context = bdrv_get_aio_context(bs);
6765 if (!g_slist_find(aio_ctxs, aio_context)) {
6766 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6767 aio_context_acquire(aio_context);
6771 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6772 /* Nodes with BDS parents are covered by recursion from the last
6773 * parent that gets inactivated. Don't inactivate them a second
6774 * time if that has already happened. */
6775 if (bdrv_has_bds_parent(bs, false)) {
6776 continue;
6778 ret = bdrv_inactivate_recurse(bs);
6779 if (ret < 0) {
6780 bdrv_next_cleanup(&it);
6781 goto out;
6785 out:
6786 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6787 AioContext *aio_context = ctx->data;
6788 aio_context_release(aio_context);
6790 g_slist_free(aio_ctxs);
6792 return ret;
6795 /**************************************************************/
6796 /* removable device support */
6799 * Return TRUE if the media is present
6801 bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs)
6803 BlockDriver *drv = bs->drv;
6804 BdrvChild *child;
6805 IO_CODE();
6807 if (!drv) {
6808 return false;
6810 if (drv->bdrv_co_is_inserted) {
6811 return drv->bdrv_co_is_inserted(bs);
6813 QLIST_FOREACH(child, &bs->children, next) {
6814 if (!bdrv_co_is_inserted(child->bs)) {
6815 return false;
6818 return true;
6822 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6824 void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag)
6826 BlockDriver *drv = bs->drv;
6827 IO_CODE();
6829 if (drv && drv->bdrv_co_eject) {
6830 drv->bdrv_co_eject(bs, eject_flag);
6835 * Lock or unlock the media (if it is locked, the user won't be able
6836 * to eject it manually).
6838 void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked)
6840 BlockDriver *drv = bs->drv;
6841 IO_CODE();
6842 trace_bdrv_lock_medium(bs, locked);
6844 if (drv && drv->bdrv_co_lock_medium) {
6845 drv->bdrv_co_lock_medium(bs, locked);
6849 /* Get a reference to bs */
6850 void bdrv_ref(BlockDriverState *bs)
6852 GLOBAL_STATE_CODE();
6853 bs->refcnt++;
6856 /* Release a previously grabbed reference to bs.
6857 * If after releasing, reference count is zero, the BlockDriverState is
6858 * deleted. */
6859 void bdrv_unref(BlockDriverState *bs)
6861 GLOBAL_STATE_CODE();
6862 if (!bs) {
6863 return;
6865 assert(bs->refcnt > 0);
6866 if (--bs->refcnt == 0) {
6867 bdrv_delete(bs);
6871 struct BdrvOpBlocker {
6872 Error *reason;
6873 QLIST_ENTRY(BdrvOpBlocker) list;
6876 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6878 BdrvOpBlocker *blocker;
6879 GLOBAL_STATE_CODE();
6880 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6881 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6882 blocker = QLIST_FIRST(&bs->op_blockers[op]);
6883 error_propagate_prepend(errp, error_copy(blocker->reason),
6884 "Node '%s' is busy: ",
6885 bdrv_get_device_or_node_name(bs));
6886 return true;
6888 return false;
6891 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6893 BdrvOpBlocker *blocker;
6894 GLOBAL_STATE_CODE();
6895 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6897 blocker = g_new0(BdrvOpBlocker, 1);
6898 blocker->reason = reason;
6899 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6902 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6904 BdrvOpBlocker *blocker, *next;
6905 GLOBAL_STATE_CODE();
6906 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6907 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6908 if (blocker->reason == reason) {
6909 QLIST_REMOVE(blocker, list);
6910 g_free(blocker);
6915 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6917 int i;
6918 GLOBAL_STATE_CODE();
6919 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6920 bdrv_op_block(bs, i, reason);
6924 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6926 int i;
6927 GLOBAL_STATE_CODE();
6928 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6929 bdrv_op_unblock(bs, i, reason);
6933 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6935 int i;
6936 GLOBAL_STATE_CODE();
6937 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6938 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6939 return false;
6942 return true;
6946 * Must not be called while holding the lock of an AioContext other than the
6947 * current one.
6949 void bdrv_img_create(const char *filename, const char *fmt,
6950 const char *base_filename, const char *base_fmt,
6951 char *options, uint64_t img_size, int flags, bool quiet,
6952 Error **errp)
6954 QemuOptsList *create_opts = NULL;
6955 QemuOpts *opts = NULL;
6956 const char *backing_fmt, *backing_file;
6957 int64_t size;
6958 BlockDriver *drv, *proto_drv;
6959 Error *local_err = NULL;
6960 int ret = 0;
6962 GLOBAL_STATE_CODE();
6964 /* Find driver and parse its options */
6965 drv = bdrv_find_format(fmt);
6966 if (!drv) {
6967 error_setg(errp, "Unknown file format '%s'", fmt);
6968 return;
6971 proto_drv = bdrv_find_protocol(filename, true, errp);
6972 if (!proto_drv) {
6973 return;
6976 if (!drv->create_opts) {
6977 error_setg(errp, "Format driver '%s' does not support image creation",
6978 drv->format_name);
6979 return;
6982 if (!proto_drv->create_opts) {
6983 error_setg(errp, "Protocol driver '%s' does not support image creation",
6984 proto_drv->format_name);
6985 return;
6988 /* Create parameter list */
6989 create_opts = qemu_opts_append(create_opts, drv->create_opts);
6990 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
6992 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
6994 /* Parse -o options */
6995 if (options) {
6996 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
6997 goto out;
7001 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
7002 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
7003 } else if (img_size != UINT64_C(-1)) {
7004 error_setg(errp, "The image size must be specified only once");
7005 goto out;
7008 if (base_filename) {
7009 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
7010 NULL)) {
7011 error_setg(errp, "Backing file not supported for file format '%s'",
7012 fmt);
7013 goto out;
7017 if (base_fmt) {
7018 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
7019 error_setg(errp, "Backing file format not supported for file "
7020 "format '%s'", fmt);
7021 goto out;
7025 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
7026 if (backing_file) {
7027 if (!strcmp(filename, backing_file)) {
7028 error_setg(errp, "Error: Trying to create an image with the "
7029 "same filename as the backing file");
7030 goto out;
7032 if (backing_file[0] == '\0') {
7033 error_setg(errp, "Expected backing file name, got empty string");
7034 goto out;
7038 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
7040 /* The size for the image must always be specified, unless we have a backing
7041 * file and we have not been forbidden from opening it. */
7042 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
7043 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
7044 BlockDriverState *bs;
7045 char *full_backing;
7046 int back_flags;
7047 QDict *backing_options = NULL;
7049 full_backing =
7050 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
7051 &local_err);
7052 if (local_err) {
7053 goto out;
7055 assert(full_backing);
7058 * No need to do I/O here, which allows us to open encrypted
7059 * backing images without needing the secret
7061 back_flags = flags;
7062 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
7063 back_flags |= BDRV_O_NO_IO;
7065 backing_options = qdict_new();
7066 if (backing_fmt) {
7067 qdict_put_str(backing_options, "driver", backing_fmt);
7069 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
7071 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
7072 &local_err);
7073 g_free(full_backing);
7074 if (!bs) {
7075 error_append_hint(&local_err, "Could not open backing image.\n");
7076 goto out;
7077 } else {
7078 if (!backing_fmt) {
7079 error_setg(&local_err,
7080 "Backing file specified without backing format");
7081 error_append_hint(&local_err, "Detected format of %s.",
7082 bs->drv->format_name);
7083 goto out;
7085 if (size == -1) {
7086 /* Opened BS, have no size */
7087 size = bdrv_getlength(bs);
7088 if (size < 0) {
7089 error_setg_errno(errp, -size, "Could not get size of '%s'",
7090 backing_file);
7091 bdrv_unref(bs);
7092 goto out;
7094 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
7096 bdrv_unref(bs);
7098 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7099 } else if (backing_file && !backing_fmt) {
7100 error_setg(&local_err,
7101 "Backing file specified without backing format");
7102 goto out;
7105 if (size == -1) {
7106 error_setg(errp, "Image creation needs a size parameter");
7107 goto out;
7110 if (!quiet) {
7111 printf("Formatting '%s', fmt=%s ", filename, fmt);
7112 qemu_opts_print(opts, " ");
7113 puts("");
7114 fflush(stdout);
7117 ret = bdrv_create(drv, filename, opts, &local_err);
7119 if (ret == -EFBIG) {
7120 /* This is generally a better message than whatever the driver would
7121 * deliver (especially because of the cluster_size_hint), since that
7122 * is most probably not much different from "image too large". */
7123 const char *cluster_size_hint = "";
7124 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
7125 cluster_size_hint = " (try using a larger cluster size)";
7127 error_setg(errp, "The image size is too large for file format '%s'"
7128 "%s", fmt, cluster_size_hint);
7129 error_free(local_err);
7130 local_err = NULL;
7133 out:
7134 qemu_opts_del(opts);
7135 qemu_opts_free(create_opts);
7136 error_propagate(errp, local_err);
7139 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
7141 IO_CODE();
7142 return bs ? bs->aio_context : qemu_get_aio_context();
7145 AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
7147 Coroutine *self = qemu_coroutine_self();
7148 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
7149 AioContext *new_ctx;
7150 IO_CODE();
7153 * Increase bs->in_flight to ensure that this operation is completed before
7154 * moving the node to a different AioContext. Read new_ctx only afterwards.
7156 bdrv_inc_in_flight(bs);
7158 new_ctx = bdrv_get_aio_context(bs);
7159 aio_co_reschedule_self(new_ctx);
7160 return old_ctx;
7163 void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
7165 IO_CODE();
7166 aio_co_reschedule_self(old_ctx);
7167 bdrv_dec_in_flight(bs);
7170 void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
7172 AioContext *ctx = bdrv_get_aio_context(bs);
7174 /* In the main thread, bs->aio_context won't change concurrently */
7175 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7178 * We're in coroutine context, so we already hold the lock of the main
7179 * loop AioContext. Don't lock it twice to avoid deadlocks.
7181 assert(qemu_in_coroutine());
7182 if (ctx != qemu_get_aio_context()) {
7183 aio_context_acquire(ctx);
7187 void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
7189 AioContext *ctx = bdrv_get_aio_context(bs);
7191 assert(qemu_in_coroutine());
7192 if (ctx != qemu_get_aio_context()) {
7193 aio_context_release(ctx);
7197 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
7199 GLOBAL_STATE_CODE();
7200 QLIST_REMOVE(ban, list);
7201 g_free(ban);
7204 static void bdrv_detach_aio_context(BlockDriverState *bs)
7206 BdrvAioNotifier *baf, *baf_tmp;
7208 assert(!bs->walking_aio_notifiers);
7209 GLOBAL_STATE_CODE();
7210 bs->walking_aio_notifiers = true;
7211 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7212 if (baf->deleted) {
7213 bdrv_do_remove_aio_context_notifier(baf);
7214 } else {
7215 baf->detach_aio_context(baf->opaque);
7218 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7219 * remove remaining aio notifiers if we aren't called again.
7221 bs->walking_aio_notifiers = false;
7223 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
7224 bs->drv->bdrv_detach_aio_context(bs);
7227 if (bs->quiesce_counter) {
7228 aio_enable_external(bs->aio_context);
7230 bs->aio_context = NULL;
7233 static void bdrv_attach_aio_context(BlockDriverState *bs,
7234 AioContext *new_context)
7236 BdrvAioNotifier *ban, *ban_tmp;
7237 GLOBAL_STATE_CODE();
7239 if (bs->quiesce_counter) {
7240 aio_disable_external(new_context);
7243 bs->aio_context = new_context;
7245 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
7246 bs->drv->bdrv_attach_aio_context(bs, new_context);
7249 assert(!bs->walking_aio_notifiers);
7250 bs->walking_aio_notifiers = true;
7251 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7252 if (ban->deleted) {
7253 bdrv_do_remove_aio_context_notifier(ban);
7254 } else {
7255 ban->attached_aio_context(new_context, ban->opaque);
7258 bs->walking_aio_notifiers = false;
7261 typedef struct BdrvStateSetAioContext {
7262 AioContext *new_ctx;
7263 BlockDriverState *bs;
7264 } BdrvStateSetAioContext;
7266 static bool bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx,
7267 GHashTable *visited,
7268 Transaction *tran,
7269 Error **errp)
7271 GLOBAL_STATE_CODE();
7272 if (g_hash_table_contains(visited, c)) {
7273 return true;
7275 g_hash_table_add(visited, c);
7278 * A BdrvChildClass that doesn't handle AioContext changes cannot
7279 * tolerate any AioContext changes
7281 if (!c->klass->change_aio_ctx) {
7282 char *user = bdrv_child_user_desc(c);
7283 error_setg(errp, "Changing iothreads is not supported by %s", user);
7284 g_free(user);
7285 return false;
7287 if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) {
7288 assert(!errp || *errp);
7289 return false;
7291 return true;
7294 bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx,
7295 GHashTable *visited, Transaction *tran,
7296 Error **errp)
7298 GLOBAL_STATE_CODE();
7299 if (g_hash_table_contains(visited, c)) {
7300 return true;
7302 g_hash_table_add(visited, c);
7303 return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp);
7306 static void bdrv_set_aio_context_clean(void *opaque)
7308 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7309 BlockDriverState *bs = (BlockDriverState *) state->bs;
7311 /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */
7312 bdrv_drained_end(bs);
7314 g_free(state);
7317 static void bdrv_set_aio_context_commit(void *opaque)
7319 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7320 BlockDriverState *bs = (BlockDriverState *) state->bs;
7321 AioContext *new_context = state->new_ctx;
7322 AioContext *old_context = bdrv_get_aio_context(bs);
7325 * Take the old AioContex when detaching it from bs.
7326 * At this point, new_context lock is already acquired, and we are now
7327 * also taking old_context. This is safe as long as bdrv_detach_aio_context
7328 * does not call AIO_POLL_WHILE().
7330 if (old_context != qemu_get_aio_context()) {
7331 aio_context_acquire(old_context);
7333 bdrv_detach_aio_context(bs);
7334 if (old_context != qemu_get_aio_context()) {
7335 aio_context_release(old_context);
7337 bdrv_attach_aio_context(bs, new_context);
7340 static TransactionActionDrv set_aio_context = {
7341 .commit = bdrv_set_aio_context_commit,
7342 .clean = bdrv_set_aio_context_clean,
7346 * Changes the AioContext used for fd handlers, timers, and BHs by this
7347 * BlockDriverState and all its children and parents.
7349 * Must be called from the main AioContext.
7351 * The caller must own the AioContext lock for the old AioContext of bs, but it
7352 * must not own the AioContext lock for new_context (unless new_context is the
7353 * same as the current context of bs).
7355 * @visited will accumulate all visited BdrvChild objects. The caller is
7356 * responsible for freeing the list afterwards.
7358 static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7359 GHashTable *visited, Transaction *tran,
7360 Error **errp)
7362 BdrvChild *c;
7363 BdrvStateSetAioContext *state;
7365 GLOBAL_STATE_CODE();
7367 if (bdrv_get_aio_context(bs) == ctx) {
7368 return true;
7371 QLIST_FOREACH(c, &bs->parents, next_parent) {
7372 if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) {
7373 return false;
7377 QLIST_FOREACH(c, &bs->children, next) {
7378 if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) {
7379 return false;
7383 state = g_new(BdrvStateSetAioContext, 1);
7384 *state = (BdrvStateSetAioContext) {
7385 .new_ctx = ctx,
7386 .bs = bs,
7389 /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */
7390 bdrv_drained_begin(bs);
7392 tran_add(tran, &set_aio_context, state);
7394 return true;
7398 * Change bs's and recursively all of its parents' and children's AioContext
7399 * to the given new context, returning an error if that isn't possible.
7401 * If ignore_child is not NULL, that child (and its subgraph) will not
7402 * be touched.
7404 * This function still requires the caller to take the bs current
7405 * AioContext lock, otherwise draining will fail since AIO_WAIT_WHILE
7406 * assumes the lock is always held if bs is in another AioContext.
7407 * For the same reason, it temporarily also holds the new AioContext, since
7408 * bdrv_drained_end calls BDRV_POLL_WHILE that assumes the lock is taken too.
7409 * Therefore the new AioContext lock must not be taken by the caller.
7411 int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7412 BdrvChild *ignore_child, Error **errp)
7414 Transaction *tran;
7415 GHashTable *visited;
7416 int ret;
7417 AioContext *old_context = bdrv_get_aio_context(bs);
7418 GLOBAL_STATE_CODE();
7421 * Recursion phase: go through all nodes of the graph.
7422 * Take care of checking that all nodes support changing AioContext
7423 * and drain them, builing a linear list of callbacks to run if everything
7424 * is successful (the transaction itself).
7426 tran = tran_new();
7427 visited = g_hash_table_new(NULL, NULL);
7428 if (ignore_child) {
7429 g_hash_table_add(visited, ignore_child);
7431 ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp);
7432 g_hash_table_destroy(visited);
7435 * Linear phase: go through all callbacks collected in the transaction.
7436 * Run all callbacks collected in the recursion to switch all nodes
7437 * AioContext lock (transaction commit), or undo all changes done in the
7438 * recursion (transaction abort).
7441 if (!ret) {
7442 /* Just run clean() callbacks. No AioContext changed. */
7443 tran_abort(tran);
7444 return -EPERM;
7448 * Release old AioContext, it won't be needed anymore, as all
7449 * bdrv_drained_begin() have been called already.
7451 if (qemu_get_aio_context() != old_context) {
7452 aio_context_release(old_context);
7456 * Acquire new AioContext since bdrv_drained_end() is going to be called
7457 * after we switched all nodes in the new AioContext, and the function
7458 * assumes that the lock of the bs is always taken.
7460 if (qemu_get_aio_context() != ctx) {
7461 aio_context_acquire(ctx);
7464 tran_commit(tran);
7466 if (qemu_get_aio_context() != ctx) {
7467 aio_context_release(ctx);
7470 /* Re-acquire the old AioContext, since the caller takes and releases it. */
7471 if (qemu_get_aio_context() != old_context) {
7472 aio_context_acquire(old_context);
7475 return 0;
7478 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7479 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7480 void (*detach_aio_context)(void *opaque), void *opaque)
7482 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7483 *ban = (BdrvAioNotifier){
7484 .attached_aio_context = attached_aio_context,
7485 .detach_aio_context = detach_aio_context,
7486 .opaque = opaque
7488 GLOBAL_STATE_CODE();
7490 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7493 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7494 void (*attached_aio_context)(AioContext *,
7495 void *),
7496 void (*detach_aio_context)(void *),
7497 void *opaque)
7499 BdrvAioNotifier *ban, *ban_next;
7500 GLOBAL_STATE_CODE();
7502 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7503 if (ban->attached_aio_context == attached_aio_context &&
7504 ban->detach_aio_context == detach_aio_context &&
7505 ban->opaque == opaque &&
7506 ban->deleted == false)
7508 if (bs->walking_aio_notifiers) {
7509 ban->deleted = true;
7510 } else {
7511 bdrv_do_remove_aio_context_notifier(ban);
7513 return;
7517 abort();
7520 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
7521 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
7522 bool force,
7523 Error **errp)
7525 GLOBAL_STATE_CODE();
7526 if (!bs->drv) {
7527 error_setg(errp, "Node is ejected");
7528 return -ENOMEDIUM;
7530 if (!bs->drv->bdrv_amend_options) {
7531 error_setg(errp, "Block driver '%s' does not support option amendment",
7532 bs->drv->format_name);
7533 return -ENOTSUP;
7535 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7536 cb_opaque, force, errp);
7540 * This function checks whether the given @to_replace is allowed to be
7541 * replaced by a node that always shows the same data as @bs. This is
7542 * used for example to verify whether the mirror job can replace
7543 * @to_replace by the target mirrored from @bs.
7544 * To be replaceable, @bs and @to_replace may either be guaranteed to
7545 * always show the same data (because they are only connected through
7546 * filters), or some driver may allow replacing one of its children
7547 * because it can guarantee that this child's data is not visible at
7548 * all (for example, for dissenting quorum children that have no other
7549 * parents).
7551 bool bdrv_recurse_can_replace(BlockDriverState *bs,
7552 BlockDriverState *to_replace)
7554 BlockDriverState *filtered;
7556 GLOBAL_STATE_CODE();
7558 if (!bs || !bs->drv) {
7559 return false;
7562 if (bs == to_replace) {
7563 return true;
7566 /* See what the driver can do */
7567 if (bs->drv->bdrv_recurse_can_replace) {
7568 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7571 /* For filters without an own implementation, we can recurse on our own */
7572 filtered = bdrv_filter_bs(bs);
7573 if (filtered) {
7574 return bdrv_recurse_can_replace(filtered, to_replace);
7577 /* Safe default */
7578 return false;
7582 * Check whether the given @node_name can be replaced by a node that
7583 * has the same data as @parent_bs. If so, return @node_name's BDS;
7584 * NULL otherwise.
7586 * @node_name must be a (recursive) *child of @parent_bs (or this
7587 * function will return NULL).
7589 * The result (whether the node can be replaced or not) is only valid
7590 * for as long as no graph or permission changes occur.
7592 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7593 const char *node_name, Error **errp)
7595 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
7596 AioContext *aio_context;
7598 GLOBAL_STATE_CODE();
7600 if (!to_replace_bs) {
7601 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
7602 return NULL;
7605 aio_context = bdrv_get_aio_context(to_replace_bs);
7606 aio_context_acquire(aio_context);
7608 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
7609 to_replace_bs = NULL;
7610 goto out;
7613 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7614 * most non filter in order to prevent data corruption.
7615 * Another benefit is that this tests exclude backing files which are
7616 * blocked by the backing blockers.
7618 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7619 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7620 "because it cannot be guaranteed that doing so would not "
7621 "lead to an abrupt change of visible data",
7622 node_name, parent_bs->node_name);
7623 to_replace_bs = NULL;
7624 goto out;
7627 out:
7628 aio_context_release(aio_context);
7629 return to_replace_bs;
7633 * Iterates through the list of runtime option keys that are said to
7634 * be "strong" for a BDS. An option is called "strong" if it changes
7635 * a BDS's data. For example, the null block driver's "size" and
7636 * "read-zeroes" options are strong, but its "latency-ns" option is
7637 * not.
7639 * If a key returned by this function ends with a dot, all options
7640 * starting with that prefix are strong.
7642 static const char *const *strong_options(BlockDriverState *bs,
7643 const char *const *curopt)
7645 static const char *const global_options[] = {
7646 "driver", "filename", NULL
7649 if (!curopt) {
7650 return &global_options[0];
7653 curopt++;
7654 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7655 curopt = bs->drv->strong_runtime_opts;
7658 return (curopt && *curopt) ? curopt : NULL;
7662 * Copies all strong runtime options from bs->options to the given
7663 * QDict. The set of strong option keys is determined by invoking
7664 * strong_options().
7666 * Returns true iff any strong option was present in bs->options (and
7667 * thus copied to the target QDict) with the exception of "filename"
7668 * and "driver". The caller is expected to use this value to decide
7669 * whether the existence of strong options prevents the generation of
7670 * a plain filename.
7672 static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7674 bool found_any = false;
7675 const char *const *option_name = NULL;
7677 if (!bs->drv) {
7678 return false;
7681 while ((option_name = strong_options(bs, option_name))) {
7682 bool option_given = false;
7684 assert(strlen(*option_name) > 0);
7685 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7686 QObject *entry = qdict_get(bs->options, *option_name);
7687 if (!entry) {
7688 continue;
7691 qdict_put_obj(d, *option_name, qobject_ref(entry));
7692 option_given = true;
7693 } else {
7694 const QDictEntry *entry;
7695 for (entry = qdict_first(bs->options); entry;
7696 entry = qdict_next(bs->options, entry))
7698 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7699 qdict_put_obj(d, qdict_entry_key(entry),
7700 qobject_ref(qdict_entry_value(entry)));
7701 option_given = true;
7706 /* While "driver" and "filename" need to be included in a JSON filename,
7707 * their existence does not prohibit generation of a plain filename. */
7708 if (!found_any && option_given &&
7709 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7711 found_any = true;
7715 if (!qdict_haskey(d, "driver")) {
7716 /* Drivers created with bdrv_new_open_driver() may not have a
7717 * @driver option. Add it here. */
7718 qdict_put_str(d, "driver", bs->drv->format_name);
7721 return found_any;
7724 /* Note: This function may return false positives; it may return true
7725 * even if opening the backing file specified by bs's image header
7726 * would result in exactly bs->backing. */
7727 static bool bdrv_backing_overridden(BlockDriverState *bs)
7729 GLOBAL_STATE_CODE();
7730 if (bs->backing) {
7731 return strcmp(bs->auto_backing_file,
7732 bs->backing->bs->filename);
7733 } else {
7734 /* No backing BDS, so if the image header reports any backing
7735 * file, it must have been suppressed */
7736 return bs->auto_backing_file[0] != '\0';
7740 /* Updates the following BDS fields:
7741 * - exact_filename: A filename which may be used for opening a block device
7742 * which (mostly) equals the given BDS (even without any
7743 * other options; so reading and writing must return the same
7744 * results, but caching etc. may be different)
7745 * - full_open_options: Options which, when given when opening a block device
7746 * (without a filename), result in a BDS (mostly)
7747 * equalling the given one
7748 * - filename: If exact_filename is set, it is copied here. Otherwise,
7749 * full_open_options is converted to a JSON object, prefixed with
7750 * "json:" (for use through the JSON pseudo protocol) and put here.
7752 void bdrv_refresh_filename(BlockDriverState *bs)
7754 BlockDriver *drv = bs->drv;
7755 BdrvChild *child;
7756 BlockDriverState *primary_child_bs;
7757 QDict *opts;
7758 bool backing_overridden;
7759 bool generate_json_filename; /* Whether our default implementation should
7760 fill exact_filename (false) or not (true) */
7762 GLOBAL_STATE_CODE();
7764 if (!drv) {
7765 return;
7768 /* This BDS's file name may depend on any of its children's file names, so
7769 * refresh those first */
7770 QLIST_FOREACH(child, &bs->children, next) {
7771 bdrv_refresh_filename(child->bs);
7774 if (bs->implicit) {
7775 /* For implicit nodes, just copy everything from the single child */
7776 child = QLIST_FIRST(&bs->children);
7777 assert(QLIST_NEXT(child, next) == NULL);
7779 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7780 child->bs->exact_filename);
7781 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7783 qobject_unref(bs->full_open_options);
7784 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7786 return;
7789 backing_overridden = bdrv_backing_overridden(bs);
7791 if (bs->open_flags & BDRV_O_NO_IO) {
7792 /* Without I/O, the backing file does not change anything.
7793 * Therefore, in such a case (primarily qemu-img), we can
7794 * pretend the backing file has not been overridden even if
7795 * it technically has been. */
7796 backing_overridden = false;
7799 /* Gather the options QDict */
7800 opts = qdict_new();
7801 generate_json_filename = append_strong_runtime_options(opts, bs);
7802 generate_json_filename |= backing_overridden;
7804 if (drv->bdrv_gather_child_options) {
7805 /* Some block drivers may not want to present all of their children's
7806 * options, or name them differently from BdrvChild.name */
7807 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7808 } else {
7809 QLIST_FOREACH(child, &bs->children, next) {
7810 if (child == bs->backing && !backing_overridden) {
7811 /* We can skip the backing BDS if it has not been overridden */
7812 continue;
7815 qdict_put(opts, child->name,
7816 qobject_ref(child->bs->full_open_options));
7819 if (backing_overridden && !bs->backing) {
7820 /* Force no backing file */
7821 qdict_put_null(opts, "backing");
7825 qobject_unref(bs->full_open_options);
7826 bs->full_open_options = opts;
7828 primary_child_bs = bdrv_primary_bs(bs);
7830 if (drv->bdrv_refresh_filename) {
7831 /* Obsolete information is of no use here, so drop the old file name
7832 * information before refreshing it */
7833 bs->exact_filename[0] = '\0';
7835 drv->bdrv_refresh_filename(bs);
7836 } else if (primary_child_bs) {
7838 * Try to reconstruct valid information from the underlying
7839 * file -- this only works for format nodes (filter nodes
7840 * cannot be probed and as such must be selected by the user
7841 * either through an options dict, or through a special
7842 * filename which the filter driver must construct in its
7843 * .bdrv_refresh_filename() implementation).
7846 bs->exact_filename[0] = '\0';
7849 * We can use the underlying file's filename if:
7850 * - it has a filename,
7851 * - the current BDS is not a filter,
7852 * - the file is a protocol BDS, and
7853 * - opening that file (as this BDS's format) will automatically create
7854 * the BDS tree we have right now, that is:
7855 * - the user did not significantly change this BDS's behavior with
7856 * some explicit (strong) options
7857 * - no non-file child of this BDS has been overridden by the user
7858 * Both of these conditions are represented by generate_json_filename.
7860 if (primary_child_bs->exact_filename[0] &&
7861 primary_child_bs->drv->bdrv_file_open &&
7862 !drv->is_filter && !generate_json_filename)
7864 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
7868 if (bs->exact_filename[0]) {
7869 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
7870 } else {
7871 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
7872 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
7873 json->str) >= sizeof(bs->filename)) {
7874 /* Give user a hint if we truncated things. */
7875 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7877 g_string_free(json, true);
7881 char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7883 BlockDriver *drv = bs->drv;
7884 BlockDriverState *child_bs;
7886 GLOBAL_STATE_CODE();
7888 if (!drv) {
7889 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7890 return NULL;
7893 if (drv->bdrv_dirname) {
7894 return drv->bdrv_dirname(bs, errp);
7897 child_bs = bdrv_primary_bs(bs);
7898 if (child_bs) {
7899 return bdrv_dirname(child_bs, errp);
7902 bdrv_refresh_filename(bs);
7903 if (bs->exact_filename[0] != '\0') {
7904 return path_combine(bs->exact_filename, "");
7907 error_setg(errp, "Cannot generate a base directory for %s nodes",
7908 drv->format_name);
7909 return NULL;
7913 * Hot add/remove a BDS's child. So the user can take a child offline when
7914 * it is broken and take a new child online
7916 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7917 Error **errp)
7919 GLOBAL_STATE_CODE();
7920 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7921 error_setg(errp, "The node %s does not support adding a child",
7922 bdrv_get_device_or_node_name(parent_bs));
7923 return;
7926 if (!QLIST_EMPTY(&child_bs->parents)) {
7927 error_setg(errp, "The node %s already has a parent",
7928 child_bs->node_name);
7929 return;
7932 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7935 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7937 BdrvChild *tmp;
7939 GLOBAL_STATE_CODE();
7940 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7941 error_setg(errp, "The node %s does not support removing a child",
7942 bdrv_get_device_or_node_name(parent_bs));
7943 return;
7946 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7947 if (tmp == child) {
7948 break;
7952 if (!tmp) {
7953 error_setg(errp, "The node %s does not have a child named %s",
7954 bdrv_get_device_or_node_name(parent_bs),
7955 bdrv_get_device_or_node_name(child->bs));
7956 return;
7959 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7962 int bdrv_make_empty(BdrvChild *c, Error **errp)
7964 BlockDriver *drv = c->bs->drv;
7965 int ret;
7967 GLOBAL_STATE_CODE();
7968 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7970 if (!drv->bdrv_make_empty) {
7971 error_setg(errp, "%s does not support emptying nodes",
7972 drv->format_name);
7973 return -ENOTSUP;
7976 ret = drv->bdrv_make_empty(c->bs);
7977 if (ret < 0) {
7978 error_setg_errno(errp, -ret, "Failed to empty %s",
7979 c->bs->filename);
7980 return ret;
7983 return 0;
7987 * Return the child that @bs acts as an overlay for, and from which data may be
7988 * copied in COW or COR operations. Usually this is the backing file.
7990 BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7992 IO_CODE();
7994 if (!bs || !bs->drv) {
7995 return NULL;
7998 if (bs->drv->is_filter) {
7999 return NULL;
8002 if (!bs->backing) {
8003 return NULL;
8006 assert(bs->backing->role & BDRV_CHILD_COW);
8007 return bs->backing;
8011 * If @bs acts as a filter for exactly one of its children, return
8012 * that child.
8014 BdrvChild *bdrv_filter_child(BlockDriverState *bs)
8016 BdrvChild *c;
8017 IO_CODE();
8019 if (!bs || !bs->drv) {
8020 return NULL;
8023 if (!bs->drv->is_filter) {
8024 return NULL;
8027 /* Only one of @backing or @file may be used */
8028 assert(!(bs->backing && bs->file));
8030 c = bs->backing ?: bs->file;
8031 if (!c) {
8032 return NULL;
8035 assert(c->role & BDRV_CHILD_FILTERED);
8036 return c;
8040 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8041 * whichever is non-NULL.
8043 * Return NULL if both are NULL.
8045 BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
8047 BdrvChild *cow_child = bdrv_cow_child(bs);
8048 BdrvChild *filter_child = bdrv_filter_child(bs);
8049 IO_CODE();
8051 /* Filter nodes cannot have COW backing files */
8052 assert(!(cow_child && filter_child));
8054 return cow_child ?: filter_child;
8058 * Return the primary child of this node: For filters, that is the
8059 * filtered child. For other nodes, that is usually the child storing
8060 * metadata.
8061 * (A generally more helpful description is that this is (usually) the
8062 * child that has the same filename as @bs.)
8064 * Drivers do not necessarily have a primary child; for example quorum
8065 * does not.
8067 BdrvChild *bdrv_primary_child(BlockDriverState *bs)
8069 BdrvChild *c, *found = NULL;
8070 IO_CODE();
8072 QLIST_FOREACH(c, &bs->children, next) {
8073 if (c->role & BDRV_CHILD_PRIMARY) {
8074 assert(!found);
8075 found = c;
8079 return found;
8082 static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
8083 bool stop_on_explicit_filter)
8085 BdrvChild *c;
8087 if (!bs) {
8088 return NULL;
8091 while (!(stop_on_explicit_filter && !bs->implicit)) {
8092 c = bdrv_filter_child(bs);
8093 if (!c) {
8095 * A filter that is embedded in a working block graph must
8096 * have a child. Assert this here so this function does
8097 * not return a filter node that is not expected by the
8098 * caller.
8100 assert(!bs->drv || !bs->drv->is_filter);
8101 break;
8103 bs = c->bs;
8106 * Note that this treats nodes with bs->drv == NULL as not being
8107 * filters (bs->drv == NULL should be replaced by something else
8108 * anyway).
8109 * The advantage of this behavior is that this function will thus
8110 * always return a non-NULL value (given a non-NULL @bs).
8113 return bs;
8117 * Return the first BDS that has not been added implicitly or that
8118 * does not have a filtered child down the chain starting from @bs
8119 * (including @bs itself).
8121 BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
8123 GLOBAL_STATE_CODE();
8124 return bdrv_do_skip_filters(bs, true);
8128 * Return the first BDS that does not have a filtered child down the
8129 * chain starting from @bs (including @bs itself).
8131 BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
8133 IO_CODE();
8134 return bdrv_do_skip_filters(bs, false);
8138 * For a backing chain, return the first non-filter backing image of
8139 * the first non-filter image.
8141 BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
8143 IO_CODE();
8144 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
8148 * Check whether [offset, offset + bytes) overlaps with the cached
8149 * block-status data region.
8151 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8152 * which is what bdrv_bsc_is_data()'s interface needs.
8153 * Otherwise, *pnum is not touched.
8155 static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
8156 int64_t offset, int64_t bytes,
8157 int64_t *pnum)
8159 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
8160 bool overlaps;
8162 overlaps =
8163 qatomic_read(&bsc->valid) &&
8164 ranges_overlap(offset, bytes, bsc->data_start,
8165 bsc->data_end - bsc->data_start);
8167 if (overlaps && pnum) {
8168 *pnum = bsc->data_end - offset;
8171 return overlaps;
8175 * See block_int.h for this function's documentation.
8177 bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
8179 IO_CODE();
8180 RCU_READ_LOCK_GUARD();
8181 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
8185 * See block_int.h for this function's documentation.
8187 void bdrv_bsc_invalidate_range(BlockDriverState *bs,
8188 int64_t offset, int64_t bytes)
8190 IO_CODE();
8191 RCU_READ_LOCK_GUARD();
8193 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
8194 qatomic_set(&bs->block_status_cache->valid, false);
8199 * See block_int.h for this function's documentation.
8201 void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
8203 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
8204 BdrvBlockStatusCache *old_bsc;
8205 IO_CODE();
8207 *new_bsc = (BdrvBlockStatusCache) {
8208 .valid = true,
8209 .data_start = offset,
8210 .data_end = offset + bytes,
8213 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
8215 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
8216 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
8217 if (old_bsc) {
8218 g_free_rcu(old_bsc, rcu);