block: Mark bdrv_replace_child_tran() GRAPH_WRLOCK
[qemu/kevin.git] / block.c
blob0973b91d9832420c94236955d96c4d77a32d5445
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 GRAPH_WRLOCK
95 bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs);
97 static void GRAPH_WRLOCK
98 bdrv_remove_child(BdrvChild *child, Transaction *tran);
100 static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
101 BlockReopenQueue *queue,
102 Transaction *change_child_tran, Error **errp);
103 static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
104 static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
106 static bool bdrv_backing_overridden(BlockDriverState *bs);
108 static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
109 GHashTable *visited, Transaction *tran,
110 Error **errp);
112 /* If non-zero, use only whitelisted block drivers */
113 static int use_bdrv_whitelist;
115 #ifdef _WIN32
116 static int is_windows_drive_prefix(const char *filename)
118 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
119 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
120 filename[1] == ':');
123 int is_windows_drive(const char *filename)
125 if (is_windows_drive_prefix(filename) &&
126 filename[2] == '\0')
127 return 1;
128 if (strstart(filename, "\\\\.\\", NULL) ||
129 strstart(filename, "//./", NULL))
130 return 1;
131 return 0;
133 #endif
135 size_t bdrv_opt_mem_align(BlockDriverState *bs)
137 if (!bs || !bs->drv) {
138 /* page size or 4k (hdd sector size) should be on the safe side */
139 return MAX(4096, qemu_real_host_page_size());
141 IO_CODE();
143 return bs->bl.opt_mem_alignment;
146 size_t bdrv_min_mem_align(BlockDriverState *bs)
148 if (!bs || !bs->drv) {
149 /* page size or 4k (hdd sector size) should be on the safe side */
150 return MAX(4096, qemu_real_host_page_size());
152 IO_CODE();
154 return bs->bl.min_mem_alignment;
157 /* check if the path starts with "<protocol>:" */
158 int path_has_protocol(const char *path)
160 const char *p;
162 #ifdef _WIN32
163 if (is_windows_drive(path) ||
164 is_windows_drive_prefix(path)) {
165 return 0;
167 p = path + strcspn(path, ":/\\");
168 #else
169 p = path + strcspn(path, ":/");
170 #endif
172 return *p == ':';
175 int path_is_absolute(const char *path)
177 #ifdef _WIN32
178 /* specific case for names like: "\\.\d:" */
179 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
180 return 1;
182 return (*path == '/' || *path == '\\');
183 #else
184 return (*path == '/');
185 #endif
188 /* if filename is absolute, just return its duplicate. Otherwise, build a
189 path to it by considering it is relative to base_path. URL are
190 supported. */
191 char *path_combine(const char *base_path, const char *filename)
193 const char *protocol_stripped = NULL;
194 const char *p, *p1;
195 char *result;
196 int len;
198 if (path_is_absolute(filename)) {
199 return g_strdup(filename);
202 if (path_has_protocol(base_path)) {
203 protocol_stripped = strchr(base_path, ':');
204 if (protocol_stripped) {
205 protocol_stripped++;
208 p = protocol_stripped ?: base_path;
210 p1 = strrchr(base_path, '/');
211 #ifdef _WIN32
213 const char *p2;
214 p2 = strrchr(base_path, '\\');
215 if (!p1 || p2 > p1) {
216 p1 = p2;
219 #endif
220 if (p1) {
221 p1++;
222 } else {
223 p1 = base_path;
225 if (p1 > p) {
226 p = p1;
228 len = p - base_path;
230 result = g_malloc(len + strlen(filename) + 1);
231 memcpy(result, base_path, len);
232 strcpy(result + len, filename);
234 return result;
238 * Helper function for bdrv_parse_filename() implementations to remove optional
239 * protocol prefixes (especially "file:") from a filename and for putting the
240 * stripped filename into the options QDict if there is such a prefix.
242 void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
243 QDict *options)
245 if (strstart(filename, prefix, &filename)) {
246 /* Stripping the explicit protocol prefix may result in a protocol
247 * prefix being (wrongly) detected (if the filename contains a colon) */
248 if (path_has_protocol(filename)) {
249 GString *fat_filename;
251 /* This means there is some colon before the first slash; therefore,
252 * this cannot be an absolute path */
253 assert(!path_is_absolute(filename));
255 /* And we can thus fix the protocol detection issue by prefixing it
256 * by "./" */
257 fat_filename = g_string_new("./");
258 g_string_append(fat_filename, filename);
260 assert(!path_has_protocol(fat_filename->str));
262 qdict_put(options, "filename",
263 qstring_from_gstring(fat_filename));
264 } else {
265 /* If no protocol prefix was detected, we can use the shortened
266 * filename as-is */
267 qdict_put_str(options, "filename", filename);
273 /* Returns whether the image file is opened as read-only. Note that this can
274 * return false and writing to the image file is still not possible because the
275 * image is inactivated. */
276 bool bdrv_is_read_only(BlockDriverState *bs)
278 IO_CODE();
279 return !(bs->open_flags & BDRV_O_RDWR);
282 static int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
283 bool ignore_allow_rdw, Error **errp)
285 IO_CODE();
287 /* Do not set read_only if copy_on_read is enabled */
288 if (bs->copy_on_read && read_only) {
289 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
290 bdrv_get_device_or_node_name(bs));
291 return -EINVAL;
294 /* Do not clear read_only if it is prohibited */
295 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
296 !ignore_allow_rdw)
298 error_setg(errp, "Node '%s' is read only",
299 bdrv_get_device_or_node_name(bs));
300 return -EPERM;
303 return 0;
307 * Called by a driver that can only provide a read-only image.
309 * Returns 0 if the node is already read-only or it could switch the node to
310 * read-only because BDRV_O_AUTO_RDONLY is set.
312 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
313 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
314 * is not NULL, it is used as the error message for the Error object.
316 int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
317 Error **errp)
319 int ret = 0;
320 IO_CODE();
322 if (!(bs->open_flags & BDRV_O_RDWR)) {
323 return 0;
325 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
326 goto fail;
329 ret = bdrv_can_set_read_only(bs, true, false, NULL);
330 if (ret < 0) {
331 goto fail;
334 bs->open_flags &= ~BDRV_O_RDWR;
336 return 0;
338 fail:
339 error_setg(errp, "%s", errmsg ?: "Image is read-only");
340 return -EACCES;
344 * If @backing is empty, this function returns NULL without setting
345 * @errp. In all other cases, NULL will only be returned with @errp
346 * set.
348 * Therefore, a return value of NULL without @errp set means that
349 * there is no backing file; if @errp is set, there is one but its
350 * absolute filename cannot be generated.
352 char *bdrv_get_full_backing_filename_from_filename(const char *backed,
353 const char *backing,
354 Error **errp)
356 if (backing[0] == '\0') {
357 return NULL;
358 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
359 return g_strdup(backing);
360 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
361 error_setg(errp, "Cannot use relative backing file names for '%s'",
362 backed);
363 return NULL;
364 } else {
365 return path_combine(backed, backing);
370 * If @filename is empty or NULL, this function returns NULL without
371 * setting @errp. In all other cases, NULL will only be returned with
372 * @errp set.
374 static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
375 const char *filename, Error **errp)
377 char *dir, *full_name;
379 if (!filename || filename[0] == '\0') {
380 return NULL;
381 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
382 return g_strdup(filename);
385 dir = bdrv_dirname(relative_to, errp);
386 if (!dir) {
387 return NULL;
390 full_name = g_strconcat(dir, filename, NULL);
391 g_free(dir);
392 return full_name;
395 char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
397 GLOBAL_STATE_CODE();
398 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
401 void bdrv_register(BlockDriver *bdrv)
403 assert(bdrv->format_name);
404 GLOBAL_STATE_CODE();
405 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
408 BlockDriverState *bdrv_new(void)
410 BlockDriverState *bs;
411 int i;
413 GLOBAL_STATE_CODE();
415 bs = g_new0(BlockDriverState, 1);
416 QLIST_INIT(&bs->dirty_bitmaps);
417 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
418 QLIST_INIT(&bs->op_blockers[i]);
420 qemu_mutex_init(&bs->reqs_lock);
421 qemu_mutex_init(&bs->dirty_bitmap_mutex);
422 bs->refcnt = 1;
423 bs->aio_context = qemu_get_aio_context();
425 qemu_co_queue_init(&bs->flush_queue);
427 qemu_co_mutex_init(&bs->bsc_modify_lock);
428 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
430 for (i = 0; i < bdrv_drain_all_count; i++) {
431 bdrv_drained_begin(bs);
434 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
436 return bs;
439 static BlockDriver *bdrv_do_find_format(const char *format_name)
441 BlockDriver *drv1;
442 GLOBAL_STATE_CODE();
444 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
445 if (!strcmp(drv1->format_name, format_name)) {
446 return drv1;
450 return NULL;
453 BlockDriver *bdrv_find_format(const char *format_name)
455 BlockDriver *drv1;
456 int i;
458 GLOBAL_STATE_CODE();
460 drv1 = bdrv_do_find_format(format_name);
461 if (drv1) {
462 return drv1;
465 /* The driver isn't registered, maybe we need to load a module */
466 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
467 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
468 Error *local_err = NULL;
469 int rv = block_module_load(block_driver_modules[i].library_name,
470 &local_err);
471 if (rv > 0) {
472 return bdrv_do_find_format(format_name);
473 } else if (rv < 0) {
474 error_report_err(local_err);
476 break;
479 return NULL;
482 static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
484 static const char *whitelist_rw[] = {
485 CONFIG_BDRV_RW_WHITELIST
486 NULL
488 static const char *whitelist_ro[] = {
489 CONFIG_BDRV_RO_WHITELIST
490 NULL
492 const char **p;
494 if (!whitelist_rw[0] && !whitelist_ro[0]) {
495 return 1; /* no whitelist, anything goes */
498 for (p = whitelist_rw; *p; p++) {
499 if (!strcmp(format_name, *p)) {
500 return 1;
503 if (read_only) {
504 for (p = whitelist_ro; *p; p++) {
505 if (!strcmp(format_name, *p)) {
506 return 1;
510 return 0;
513 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
515 GLOBAL_STATE_CODE();
516 return bdrv_format_is_whitelisted(drv->format_name, read_only);
519 bool bdrv_uses_whitelist(void)
521 return use_bdrv_whitelist;
524 typedef struct CreateCo {
525 BlockDriver *drv;
526 char *filename;
527 QemuOpts *opts;
528 int ret;
529 Error *err;
530 } CreateCo;
532 int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename,
533 QemuOpts *opts, Error **errp)
535 int ret;
536 GLOBAL_STATE_CODE();
537 ERRP_GUARD();
539 if (!drv->bdrv_co_create_opts) {
540 error_setg(errp, "Driver '%s' does not support image creation",
541 drv->format_name);
542 return -ENOTSUP;
545 ret = drv->bdrv_co_create_opts(drv, filename, opts, errp);
546 if (ret < 0 && !*errp) {
547 error_setg_errno(errp, -ret, "Could not create image");
550 return ret;
554 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
555 * least the given @minimum_size.
557 * On success, return @blk's actual length.
558 * Otherwise, return -errno.
560 static int64_t coroutine_fn GRAPH_UNLOCKED
561 create_file_fallback_truncate(BlockBackend *blk, int64_t minimum_size,
562 Error **errp)
564 Error *local_err = NULL;
565 int64_t size;
566 int ret;
568 GLOBAL_STATE_CODE();
570 ret = blk_co_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
571 &local_err);
572 if (ret < 0 && ret != -ENOTSUP) {
573 error_propagate(errp, local_err);
574 return ret;
577 size = blk_co_getlength(blk);
578 if (size < 0) {
579 error_free(local_err);
580 error_setg_errno(errp, -size,
581 "Failed to inquire the new image file's length");
582 return size;
585 if (size < minimum_size) {
586 /* Need to grow the image, but we failed to do that */
587 error_propagate(errp, local_err);
588 return -ENOTSUP;
591 error_free(local_err);
592 local_err = NULL;
594 return size;
598 * Helper function for bdrv_create_file_fallback(): Zero the first
599 * sector to remove any potentially pre-existing image header.
601 static int coroutine_fn
602 create_file_fallback_zero_first_sector(BlockBackend *blk,
603 int64_t current_size,
604 Error **errp)
606 int64_t bytes_to_clear;
607 int ret;
609 GLOBAL_STATE_CODE();
611 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
612 if (bytes_to_clear) {
613 ret = blk_co_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
614 if (ret < 0) {
615 error_setg_errno(errp, -ret,
616 "Failed to clear the new image's first sector");
617 return ret;
621 return 0;
625 * Simple implementation of bdrv_co_create_opts for protocol drivers
626 * which only support creation via opening a file
627 * (usually existing raw storage device)
629 int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
630 const char *filename,
631 QemuOpts *opts,
632 Error **errp)
634 BlockBackend *blk;
635 QDict *options;
636 int64_t size = 0;
637 char *buf = NULL;
638 PreallocMode prealloc;
639 Error *local_err = NULL;
640 int ret;
642 GLOBAL_STATE_CODE();
644 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
645 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
646 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
647 PREALLOC_MODE_OFF, &local_err);
648 g_free(buf);
649 if (local_err) {
650 error_propagate(errp, local_err);
651 return -EINVAL;
654 if (prealloc != PREALLOC_MODE_OFF) {
655 error_setg(errp, "Unsupported preallocation mode '%s'",
656 PreallocMode_str(prealloc));
657 return -ENOTSUP;
660 options = qdict_new();
661 qdict_put_str(options, "driver", drv->format_name);
663 blk = blk_co_new_open(filename, NULL, options,
664 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
665 if (!blk) {
666 error_prepend(errp, "Protocol driver '%s' does not support creating "
667 "new images, so an existing image must be selected as "
668 "the target; however, opening the given target as an "
669 "existing image failed: ",
670 drv->format_name);
671 return -EINVAL;
674 size = create_file_fallback_truncate(blk, size, errp);
675 if (size < 0) {
676 ret = size;
677 goto out;
680 ret = create_file_fallback_zero_first_sector(blk, size, errp);
681 if (ret < 0) {
682 goto out;
685 ret = 0;
686 out:
687 blk_co_unref(blk);
688 return ret;
691 int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts,
692 Error **errp)
694 QemuOpts *protocol_opts;
695 BlockDriver *drv;
696 QDict *qdict;
697 int ret;
699 GLOBAL_STATE_CODE();
701 drv = bdrv_find_protocol(filename, true, errp);
702 if (drv == NULL) {
703 return -ENOENT;
706 if (!drv->create_opts) {
707 error_setg(errp, "Driver '%s' does not support image creation",
708 drv->format_name);
709 return -ENOTSUP;
713 * 'opts' contains a QemuOptsList with a combination of format and protocol
714 * default values.
716 * The format properly removes its options, but the default values remain
717 * in 'opts->list'. So if the protocol has options with the same name
718 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
719 * of the format, since for overlapping options, the format wins.
721 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
722 * only the set options, and then convert it back to QemuOpts, using the
723 * create_opts of the protocol. So the new QemuOpts, will contain only the
724 * protocol defaults.
726 qdict = qemu_opts_to_qdict(opts, NULL);
727 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
728 if (protocol_opts == NULL) {
729 ret = -EINVAL;
730 goto out;
733 ret = bdrv_co_create(drv, filename, protocol_opts, errp);
734 out:
735 qemu_opts_del(protocol_opts);
736 qobject_unref(qdict);
737 return ret;
740 int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
742 Error *local_err = NULL;
743 int ret;
745 IO_CODE();
746 assert(bs != NULL);
747 assert_bdrv_graph_readable();
749 if (!bs->drv) {
750 error_setg(errp, "Block node '%s' is not opened", bs->filename);
751 return -ENOMEDIUM;
754 if (!bs->drv->bdrv_co_delete_file) {
755 error_setg(errp, "Driver '%s' does not support image deletion",
756 bs->drv->format_name);
757 return -ENOTSUP;
760 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
761 if (ret < 0) {
762 error_propagate(errp, local_err);
765 return ret;
768 void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
770 Error *local_err = NULL;
771 int ret;
772 IO_CODE();
774 if (!bs) {
775 return;
778 ret = bdrv_co_delete_file(bs, &local_err);
780 * ENOTSUP will happen if the block driver doesn't support
781 * the 'bdrv_co_delete_file' interface. This is a predictable
782 * scenario and shouldn't be reported back to the user.
784 if (ret == -ENOTSUP) {
785 error_free(local_err);
786 } else if (ret < 0) {
787 error_report_err(local_err);
792 * Try to get @bs's logical and physical block size.
793 * On success, store them in @bsz struct and return 0.
794 * On failure return -errno.
795 * @bs must not be empty.
797 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
799 BlockDriver *drv = bs->drv;
800 BlockDriverState *filtered = bdrv_filter_bs(bs);
801 GLOBAL_STATE_CODE();
803 if (drv && drv->bdrv_probe_blocksizes) {
804 return drv->bdrv_probe_blocksizes(bs, bsz);
805 } else if (filtered) {
806 return bdrv_probe_blocksizes(filtered, bsz);
809 return -ENOTSUP;
813 * Try to get @bs's geometry (cyls, heads, sectors).
814 * On success, store them in @geo struct and return 0.
815 * On failure return -errno.
816 * @bs must not be empty.
818 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
820 BlockDriver *drv = bs->drv;
821 BlockDriverState *filtered = bdrv_filter_bs(bs);
822 GLOBAL_STATE_CODE();
824 if (drv && drv->bdrv_probe_geometry) {
825 return drv->bdrv_probe_geometry(bs, geo);
826 } else if (filtered) {
827 return bdrv_probe_geometry(filtered, geo);
830 return -ENOTSUP;
834 * Create a uniquely-named empty temporary file.
835 * Return the actual file name used upon success, otherwise NULL.
836 * This string should be freed with g_free() when not needed any longer.
838 * Note: creating a temporary file for the caller to (re)open is
839 * inherently racy. Use g_file_open_tmp() instead whenever practical.
841 char *create_tmp_file(Error **errp)
843 int fd;
844 const char *tmpdir;
845 g_autofree char *filename = NULL;
847 tmpdir = g_get_tmp_dir();
848 #ifndef _WIN32
850 * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot")
852 * This function is used to create temporary disk images (like -snapshot),
853 * so the files can become very large. /tmp is often a tmpfs where as
854 * /var/tmp is usually on a disk, so more appropriate for disk images.
856 if (!g_strcmp0(tmpdir, "/tmp")) {
857 tmpdir = "/var/tmp";
859 #endif
861 filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir);
862 fd = g_mkstemp(filename);
863 if (fd < 0) {
864 error_setg_errno(errp, errno, "Could not open temporary file '%s'",
865 filename);
866 return NULL;
868 close(fd);
870 return g_steal_pointer(&filename);
874 * Detect host devices. By convention, /dev/cdrom[N] is always
875 * recognized as a host CDROM.
877 static BlockDriver *find_hdev_driver(const char *filename)
879 int score_max = 0, score;
880 BlockDriver *drv = NULL, *d;
881 GLOBAL_STATE_CODE();
883 QLIST_FOREACH(d, &bdrv_drivers, list) {
884 if (d->bdrv_probe_device) {
885 score = d->bdrv_probe_device(filename);
886 if (score > score_max) {
887 score_max = score;
888 drv = d;
893 return drv;
896 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
898 BlockDriver *drv1;
899 GLOBAL_STATE_CODE();
901 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
902 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
903 return drv1;
907 return NULL;
910 BlockDriver *bdrv_find_protocol(const char *filename,
911 bool allow_protocol_prefix,
912 Error **errp)
914 BlockDriver *drv1;
915 char protocol[128];
916 int len;
917 const char *p;
918 int i;
920 GLOBAL_STATE_CODE();
921 /* TODO Drivers without bdrv_file_open must be specified explicitly */
924 * XXX(hch): we really should not let host device detection
925 * override an explicit protocol specification, but moving this
926 * later breaks access to device names with colons in them.
927 * Thanks to the brain-dead persistent naming schemes on udev-
928 * based Linux systems those actually are quite common.
930 drv1 = find_hdev_driver(filename);
931 if (drv1) {
932 return drv1;
935 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
936 return &bdrv_file;
939 p = strchr(filename, ':');
940 assert(p != NULL);
941 len = p - filename;
942 if (len > sizeof(protocol) - 1)
943 len = sizeof(protocol) - 1;
944 memcpy(protocol, filename, len);
945 protocol[len] = '\0';
947 drv1 = bdrv_do_find_protocol(protocol);
948 if (drv1) {
949 return drv1;
952 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
953 if (block_driver_modules[i].protocol_name &&
954 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
955 int rv = block_module_load(block_driver_modules[i].library_name, errp);
956 if (rv > 0) {
957 drv1 = bdrv_do_find_protocol(protocol);
958 } else if (rv < 0) {
959 return NULL;
961 break;
965 if (!drv1) {
966 error_setg(errp, "Unknown protocol '%s'", protocol);
968 return drv1;
972 * Guess image format by probing its contents.
973 * This is not a good idea when your image is raw (CVE-2008-2004), but
974 * we do it anyway for backward compatibility.
976 * @buf contains the image's first @buf_size bytes.
977 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
978 * but can be smaller if the image file is smaller)
979 * @filename is its filename.
981 * For all block drivers, call the bdrv_probe() method to get its
982 * probing score.
983 * Return the first block driver with the highest probing score.
985 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
986 const char *filename)
988 int score_max = 0, score;
989 BlockDriver *drv = NULL, *d;
990 IO_CODE();
992 QLIST_FOREACH(d, &bdrv_drivers, list) {
993 if (d->bdrv_probe) {
994 score = d->bdrv_probe(buf, buf_size, filename);
995 if (score > score_max) {
996 score_max = score;
997 drv = d;
1002 return drv;
1005 static int find_image_format(BlockBackend *file, const char *filename,
1006 BlockDriver **pdrv, Error **errp)
1008 BlockDriver *drv;
1009 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
1010 int ret = 0;
1012 GLOBAL_STATE_CODE();
1014 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
1015 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
1016 *pdrv = &bdrv_raw;
1017 return ret;
1020 ret = blk_pread(file, 0, sizeof(buf), buf, 0);
1021 if (ret < 0) {
1022 error_setg_errno(errp, -ret, "Could not read image for determining its "
1023 "format");
1024 *pdrv = NULL;
1025 return ret;
1028 drv = bdrv_probe_all(buf, sizeof(buf), filename);
1029 if (!drv) {
1030 error_setg(errp, "Could not determine image format: No compatible "
1031 "driver found");
1032 *pdrv = NULL;
1033 return -ENOENT;
1036 *pdrv = drv;
1037 return 0;
1041 * Set the current 'total_sectors' value
1042 * Return 0 on success, -errno on error.
1044 int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs,
1045 int64_t hint)
1047 BlockDriver *drv = bs->drv;
1048 IO_CODE();
1049 assert_bdrv_graph_readable();
1051 if (!drv) {
1052 return -ENOMEDIUM;
1055 /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */
1056 if (bdrv_is_sg(bs))
1057 return 0;
1059 /* query actual device if possible, otherwise just trust the hint */
1060 if (drv->bdrv_co_getlength) {
1061 int64_t length = drv->bdrv_co_getlength(bs);
1062 if (length < 0) {
1063 return length;
1065 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
1068 bs->total_sectors = hint;
1070 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1071 return -EFBIG;
1074 return 0;
1078 * Combines a QDict of new block driver @options with any missing options taken
1079 * from @old_options, so that leaving out an option defaults to its old value.
1081 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1082 QDict *old_options)
1084 GLOBAL_STATE_CODE();
1085 if (bs->drv && bs->drv->bdrv_join_options) {
1086 bs->drv->bdrv_join_options(options, old_options);
1087 } else {
1088 qdict_join(options, old_options, false);
1092 static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1093 int open_flags,
1094 Error **errp)
1096 Error *local_err = NULL;
1097 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1098 BlockdevDetectZeroesOptions detect_zeroes =
1099 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1100 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
1101 GLOBAL_STATE_CODE();
1102 g_free(value);
1103 if (local_err) {
1104 error_propagate(errp, local_err);
1105 return detect_zeroes;
1108 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1109 !(open_flags & BDRV_O_UNMAP))
1111 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1112 "without setting discard operation to unmap");
1115 return detect_zeroes;
1119 * Set open flags for aio engine
1121 * Return 0 on success, -1 if the engine specified is invalid
1123 int bdrv_parse_aio(const char *mode, int *flags)
1125 if (!strcmp(mode, "threads")) {
1126 /* do nothing, default */
1127 } else if (!strcmp(mode, "native")) {
1128 *flags |= BDRV_O_NATIVE_AIO;
1129 #ifdef CONFIG_LINUX_IO_URING
1130 } else if (!strcmp(mode, "io_uring")) {
1131 *flags |= BDRV_O_IO_URING;
1132 #endif
1133 } else {
1134 return -1;
1137 return 0;
1141 * Set open flags for a given discard mode
1143 * Return 0 on success, -1 if the discard mode was invalid.
1145 int bdrv_parse_discard_flags(const char *mode, int *flags)
1147 *flags &= ~BDRV_O_UNMAP;
1149 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1150 /* do nothing */
1151 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1152 *flags |= BDRV_O_UNMAP;
1153 } else {
1154 return -1;
1157 return 0;
1161 * Set open flags for a given cache mode
1163 * Return 0 on success, -1 if the cache mode was invalid.
1165 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
1167 *flags &= ~BDRV_O_CACHE_MASK;
1169 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
1170 *writethrough = false;
1171 *flags |= BDRV_O_NOCACHE;
1172 } else if (!strcmp(mode, "directsync")) {
1173 *writethrough = true;
1174 *flags |= BDRV_O_NOCACHE;
1175 } else if (!strcmp(mode, "writeback")) {
1176 *writethrough = false;
1177 } else if (!strcmp(mode, "unsafe")) {
1178 *writethrough = false;
1179 *flags |= BDRV_O_NO_FLUSH;
1180 } else if (!strcmp(mode, "writethrough")) {
1181 *writethrough = true;
1182 } else {
1183 return -1;
1186 return 0;
1189 static char *bdrv_child_get_parent_desc(BdrvChild *c)
1191 BlockDriverState *parent = c->opaque;
1192 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
1195 static void bdrv_child_cb_drained_begin(BdrvChild *child)
1197 BlockDriverState *bs = child->opaque;
1198 bdrv_do_drained_begin_quiesce(bs, NULL);
1201 static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1203 BlockDriverState *bs = child->opaque;
1204 return bdrv_drain_poll(bs, NULL, false);
1207 static void bdrv_child_cb_drained_end(BdrvChild *child)
1209 BlockDriverState *bs = child->opaque;
1210 bdrv_drained_end(bs);
1213 static int bdrv_child_cb_inactivate(BdrvChild *child)
1215 BlockDriverState *bs = child->opaque;
1216 GLOBAL_STATE_CODE();
1217 assert(bs->open_flags & BDRV_O_INACTIVE);
1218 return 0;
1221 static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx,
1222 GHashTable *visited, Transaction *tran,
1223 Error **errp)
1225 BlockDriverState *bs = child->opaque;
1226 return bdrv_change_aio_context(bs, ctx, visited, tran, errp);
1230 * Returns the options and flags that a temporary snapshot should get, based on
1231 * the originally requested flags (the originally requested image will have
1232 * flags like a backing file)
1234 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1235 int parent_flags, QDict *parent_options)
1237 GLOBAL_STATE_CODE();
1238 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1240 /* For temporary files, unconditional cache=unsafe is fine */
1241 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1242 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
1244 /* Copy the read-only and discard options from the parent */
1245 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1246 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
1248 /* aio=native doesn't work for cache.direct=off, so disable it for the
1249 * temporary snapshot */
1250 *child_flags &= ~BDRV_O_NATIVE_AIO;
1253 static void bdrv_backing_attach(BdrvChild *c)
1255 BlockDriverState *parent = c->opaque;
1256 BlockDriverState *backing_hd = c->bs;
1258 GLOBAL_STATE_CODE();
1259 assert(!parent->backing_blocker);
1260 error_setg(&parent->backing_blocker,
1261 "node is used as backing hd of '%s'",
1262 bdrv_get_device_or_node_name(parent));
1264 bdrv_refresh_filename(backing_hd);
1266 parent->open_flags &= ~BDRV_O_NO_BACKING;
1268 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1269 /* Otherwise we won't be able to commit or stream */
1270 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1271 parent->backing_blocker);
1272 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1273 parent->backing_blocker);
1275 * We do backup in 3 ways:
1276 * 1. drive backup
1277 * The target bs is new opened, and the source is top BDS
1278 * 2. blockdev backup
1279 * Both the source and the target are top BDSes.
1280 * 3. internal backup(used for block replication)
1281 * Both the source and the target are backing file
1283 * In case 1 and 2, neither the source nor the target is the backing file.
1284 * In case 3, we will block the top BDS, so there is only one block job
1285 * for the top BDS and its backing chain.
1287 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1288 parent->backing_blocker);
1289 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1290 parent->backing_blocker);
1293 static void bdrv_backing_detach(BdrvChild *c)
1295 BlockDriverState *parent = c->opaque;
1297 GLOBAL_STATE_CODE();
1298 assert(parent->backing_blocker);
1299 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1300 error_free(parent->backing_blocker);
1301 parent->backing_blocker = NULL;
1304 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1305 const char *filename, Error **errp)
1307 BlockDriverState *parent = c->opaque;
1308 bool read_only = bdrv_is_read_only(parent);
1309 int ret;
1310 GLOBAL_STATE_CODE();
1312 if (read_only) {
1313 ret = bdrv_reopen_set_read_only(parent, false, errp);
1314 if (ret < 0) {
1315 return ret;
1319 ret = bdrv_change_backing_file(parent, filename,
1320 base->drv ? base->drv->format_name : "",
1321 false);
1322 if (ret < 0) {
1323 error_setg_errno(errp, -ret, "Could not update backing file link");
1326 if (read_only) {
1327 bdrv_reopen_set_read_only(parent, true, NULL);
1330 return ret;
1334 * Returns the options and flags that a generic child of a BDS should
1335 * get, based on the given options and flags for the parent BDS.
1337 static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1338 int *child_flags, QDict *child_options,
1339 int parent_flags, QDict *parent_options)
1341 int flags = parent_flags;
1342 GLOBAL_STATE_CODE();
1345 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1346 * Generally, the question to answer is: Should this child be
1347 * format-probed by default?
1351 * Pure and non-filtered data children of non-format nodes should
1352 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1353 * set). This only affects a very limited set of drivers (namely
1354 * quorum and blkverify when this comment was written).
1355 * Force-clear BDRV_O_PROTOCOL then.
1357 if (!parent_is_format &&
1358 (role & BDRV_CHILD_DATA) &&
1359 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1361 flags &= ~BDRV_O_PROTOCOL;
1365 * All children of format nodes (except for COW children) and all
1366 * metadata children in general should never be format-probed.
1367 * Force-set BDRV_O_PROTOCOL then.
1369 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1370 (role & BDRV_CHILD_METADATA))
1372 flags |= BDRV_O_PROTOCOL;
1376 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1377 * the parent.
1379 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1380 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1381 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1383 if (role & BDRV_CHILD_COW) {
1384 /* backing files are opened read-only by default */
1385 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1386 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1387 } else {
1388 /* Inherit the read-only option from the parent if it's not set */
1389 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1390 qdict_copy_default(child_options, parent_options,
1391 BDRV_OPT_AUTO_READ_ONLY);
1395 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1396 * can default to enable it on lower layers regardless of the
1397 * parent option.
1399 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1401 /* Clear flags that only apply to the top layer */
1402 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1404 if (role & BDRV_CHILD_METADATA) {
1405 flags &= ~BDRV_O_NO_IO;
1407 if (role & BDRV_CHILD_COW) {
1408 flags &= ~BDRV_O_TEMPORARY;
1411 *child_flags = flags;
1414 static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child)
1416 BlockDriverState *bs = child->opaque;
1418 assert_bdrv_graph_writable();
1419 QLIST_INSERT_HEAD(&bs->children, child, next);
1420 if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) {
1422 * Here we handle filters and block/raw-format.c when it behave like
1423 * filter. They generally have a single PRIMARY child, which is also the
1424 * FILTERED child, and that they may have multiple more children, which
1425 * are neither PRIMARY nor FILTERED. And never we have a COW child here.
1426 * So bs->file will be the PRIMARY child, unless the PRIMARY child goes
1427 * into bs->backing on exceptional cases; and bs->backing will be
1428 * nothing else.
1430 assert(!(child->role & BDRV_CHILD_COW));
1431 if (child->role & BDRV_CHILD_PRIMARY) {
1432 assert(child->role & BDRV_CHILD_FILTERED);
1433 assert(!bs->backing);
1434 assert(!bs->file);
1436 if (bs->drv->filtered_child_is_backing) {
1437 bs->backing = child;
1438 } else {
1439 bs->file = child;
1441 } else {
1442 assert(!(child->role & BDRV_CHILD_FILTERED));
1444 } else if (child->role & BDRV_CHILD_COW) {
1445 assert(bs->drv->supports_backing);
1446 assert(!(child->role & BDRV_CHILD_PRIMARY));
1447 assert(!bs->backing);
1448 bs->backing = child;
1449 bdrv_backing_attach(child);
1450 } else if (child->role & BDRV_CHILD_PRIMARY) {
1451 assert(!bs->file);
1452 bs->file = child;
1456 static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child)
1458 BlockDriverState *bs = child->opaque;
1460 if (child->role & BDRV_CHILD_COW) {
1461 bdrv_backing_detach(child);
1464 assert_bdrv_graph_writable();
1465 QLIST_REMOVE(child, next);
1466 if (child == bs->backing) {
1467 assert(child != bs->file);
1468 bs->backing = NULL;
1469 } else if (child == bs->file) {
1470 bs->file = NULL;
1474 static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1475 const char *filename, Error **errp)
1477 if (c->role & BDRV_CHILD_COW) {
1478 return bdrv_backing_update_filename(c, base, filename, errp);
1480 return 0;
1483 AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
1485 BlockDriverState *bs = c->opaque;
1486 IO_CODE();
1488 return bdrv_get_aio_context(bs);
1491 const BdrvChildClass child_of_bds = {
1492 .parent_is_bds = true,
1493 .get_parent_desc = bdrv_child_get_parent_desc,
1494 .inherit_options = bdrv_inherited_options,
1495 .drained_begin = bdrv_child_cb_drained_begin,
1496 .drained_poll = bdrv_child_cb_drained_poll,
1497 .drained_end = bdrv_child_cb_drained_end,
1498 .attach = bdrv_child_cb_attach,
1499 .detach = bdrv_child_cb_detach,
1500 .inactivate = bdrv_child_cb_inactivate,
1501 .change_aio_ctx = bdrv_child_cb_change_aio_ctx,
1502 .update_filename = bdrv_child_cb_update_filename,
1503 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
1506 AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1508 IO_CODE();
1509 return c->klass->get_parent_aio_context(c);
1512 static int bdrv_open_flags(BlockDriverState *bs, int flags)
1514 int open_flags = flags;
1515 GLOBAL_STATE_CODE();
1518 * Clear flags that are internal to the block layer before opening the
1519 * image.
1521 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1523 return open_flags;
1526 static void update_flags_from_options(int *flags, QemuOpts *opts)
1528 GLOBAL_STATE_CODE();
1530 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
1532 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1533 *flags |= BDRV_O_NO_FLUSH;
1536 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1537 *flags |= BDRV_O_NOCACHE;
1540 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
1541 *flags |= BDRV_O_RDWR;
1544 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1545 *flags |= BDRV_O_AUTO_RDONLY;
1549 static void update_options_from_flags(QDict *options, int flags)
1551 GLOBAL_STATE_CODE();
1552 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1553 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1555 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
1556 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1557 flags & BDRV_O_NO_FLUSH);
1559 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1560 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1562 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1563 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1564 flags & BDRV_O_AUTO_RDONLY);
1568 static void bdrv_assign_node_name(BlockDriverState *bs,
1569 const char *node_name,
1570 Error **errp)
1572 char *gen_node_name = NULL;
1573 GLOBAL_STATE_CODE();
1575 if (!node_name) {
1576 node_name = gen_node_name = id_generate(ID_BLOCK);
1577 } else if (!id_wellformed(node_name)) {
1579 * Check for empty string or invalid characters, but not if it is
1580 * generated (generated names use characters not available to the user)
1582 error_setg(errp, "Invalid node-name: '%s'", node_name);
1583 return;
1586 /* takes care of avoiding namespaces collisions */
1587 if (blk_by_name(node_name)) {
1588 error_setg(errp, "node-name=%s is conflicting with a device id",
1589 node_name);
1590 goto out;
1593 /* takes care of avoiding duplicates node names */
1594 if (bdrv_find_node(node_name)) {
1595 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
1596 goto out;
1599 /* Make sure that the node name isn't truncated */
1600 if (strlen(node_name) >= sizeof(bs->node_name)) {
1601 error_setg(errp, "Node name too long");
1602 goto out;
1605 /* copy node name into the bs and insert it into the graph list */
1606 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1607 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
1608 out:
1609 g_free(gen_node_name);
1613 * The caller must always hold @bs AioContext lock, because this function calls
1614 * bdrv_refresh_total_sectors() which polls when called from non-coroutine
1615 * context.
1617 static int no_coroutine_fn GRAPH_UNLOCKED
1618 bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, const char *node_name,
1619 QDict *options, int open_flags, Error **errp)
1621 AioContext *ctx;
1622 Error *local_err = NULL;
1623 int i, ret;
1624 GLOBAL_STATE_CODE();
1626 bdrv_assign_node_name(bs, node_name, &local_err);
1627 if (local_err) {
1628 error_propagate(errp, local_err);
1629 return -EINVAL;
1632 bs->drv = drv;
1633 bs->opaque = g_malloc0(drv->instance_size);
1635 if (drv->bdrv_file_open) {
1636 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1637 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1638 } else if (drv->bdrv_open) {
1639 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1640 } else {
1641 ret = 0;
1644 if (ret < 0) {
1645 if (local_err) {
1646 error_propagate(errp, local_err);
1647 } else if (bs->filename[0]) {
1648 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1649 } else {
1650 error_setg_errno(errp, -ret, "Could not open image");
1652 goto open_failed;
1655 assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK));
1656 assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK));
1659 * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves
1660 * drivers that pass read/write requests through to a child the trouble of
1661 * declaring support explicitly.
1663 * Drivers must not propagate this flag accidentally when they initiate I/O
1664 * to a bounce buffer. That case should be rare though.
1666 bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF;
1667 bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF;
1669 /* Get the context after .bdrv_open, it can change the context */
1670 ctx = bdrv_get_aio_context(bs);
1671 aio_context_acquire(ctx);
1673 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
1674 if (ret < 0) {
1675 error_setg_errno(errp, -ret, "Could not refresh total sector count");
1676 aio_context_release(ctx);
1677 return ret;
1680 bdrv_graph_rdlock_main_loop();
1681 bdrv_refresh_limits(bs, NULL, &local_err);
1682 bdrv_graph_rdunlock_main_loop();
1683 aio_context_release(ctx);
1685 if (local_err) {
1686 error_propagate(errp, local_err);
1687 return -EINVAL;
1690 assert(bdrv_opt_mem_align(bs) != 0);
1691 assert(bdrv_min_mem_align(bs) != 0);
1692 assert(is_power_of_2(bs->bl.request_alignment));
1694 for (i = 0; i < bs->quiesce_counter; i++) {
1695 if (drv->bdrv_drain_begin) {
1696 drv->bdrv_drain_begin(bs);
1700 return 0;
1701 open_failed:
1702 bs->drv = NULL;
1703 if (bs->file != NULL) {
1704 bdrv_unref_child(bs, bs->file);
1705 assert(!bs->file);
1707 g_free(bs->opaque);
1708 bs->opaque = NULL;
1709 return ret;
1713 * Create and open a block node.
1715 * @options is a QDict of options to pass to the block drivers, or NULL for an
1716 * empty set of options. The reference to the QDict belongs to the block layer
1717 * after the call (even on failure), so if the caller intends to reuse the
1718 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1720 BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1721 const char *node_name,
1722 QDict *options, int flags,
1723 Error **errp)
1725 BlockDriverState *bs;
1726 int ret;
1728 GLOBAL_STATE_CODE();
1730 bs = bdrv_new();
1731 bs->open_flags = flags;
1732 bs->options = options ?: qdict_new();
1733 bs->explicit_options = qdict_clone_shallow(bs->options);
1734 bs->opaque = NULL;
1736 update_options_from_flags(bs->options, flags);
1738 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1739 if (ret < 0) {
1740 qobject_unref(bs->explicit_options);
1741 bs->explicit_options = NULL;
1742 qobject_unref(bs->options);
1743 bs->options = NULL;
1744 bdrv_unref(bs);
1745 return NULL;
1748 return bs;
1751 /* Create and open a block node. */
1752 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1753 int flags, Error **errp)
1755 GLOBAL_STATE_CODE();
1756 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1759 QemuOptsList bdrv_runtime_opts = {
1760 .name = "bdrv_common",
1761 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1762 .desc = {
1764 .name = "node-name",
1765 .type = QEMU_OPT_STRING,
1766 .help = "Node name of the block device node",
1769 .name = "driver",
1770 .type = QEMU_OPT_STRING,
1771 .help = "Block driver to use for the node",
1774 .name = BDRV_OPT_CACHE_DIRECT,
1775 .type = QEMU_OPT_BOOL,
1776 .help = "Bypass software writeback cache on the host",
1779 .name = BDRV_OPT_CACHE_NO_FLUSH,
1780 .type = QEMU_OPT_BOOL,
1781 .help = "Ignore flush requests",
1784 .name = BDRV_OPT_READ_ONLY,
1785 .type = QEMU_OPT_BOOL,
1786 .help = "Node is opened in read-only mode",
1789 .name = BDRV_OPT_AUTO_READ_ONLY,
1790 .type = QEMU_OPT_BOOL,
1791 .help = "Node can become read-only if opening read-write fails",
1794 .name = "detect-zeroes",
1795 .type = QEMU_OPT_STRING,
1796 .help = "try to optimize zero writes (off, on, unmap)",
1799 .name = BDRV_OPT_DISCARD,
1800 .type = QEMU_OPT_STRING,
1801 .help = "discard operation (ignore/off, unmap/on)",
1804 .name = BDRV_OPT_FORCE_SHARE,
1805 .type = QEMU_OPT_BOOL,
1806 .help = "always accept other writers (default: off)",
1808 { /* end of list */ }
1812 QemuOptsList bdrv_create_opts_simple = {
1813 .name = "simple-create-opts",
1814 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
1815 .desc = {
1817 .name = BLOCK_OPT_SIZE,
1818 .type = QEMU_OPT_SIZE,
1819 .help = "Virtual disk size"
1822 .name = BLOCK_OPT_PREALLOC,
1823 .type = QEMU_OPT_STRING,
1824 .help = "Preallocation mode (allowed values: off)"
1826 { /* end of list */ }
1831 * Common part for opening disk images and files
1833 * Removes all processed options from *options.
1835 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1836 QDict *options, Error **errp)
1838 int ret, open_flags;
1839 const char *filename;
1840 const char *driver_name = NULL;
1841 const char *node_name = NULL;
1842 const char *discard;
1843 QemuOpts *opts;
1844 BlockDriver *drv;
1845 Error *local_err = NULL;
1846 bool ro;
1848 assert(bs->file == NULL);
1849 assert(options != NULL && bs->options != options);
1850 GLOBAL_STATE_CODE();
1852 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1853 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
1854 ret = -EINVAL;
1855 goto fail_opts;
1858 update_flags_from_options(&bs->open_flags, opts);
1860 driver_name = qemu_opt_get(opts, "driver");
1861 drv = bdrv_find_format(driver_name);
1862 assert(drv != NULL);
1864 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1866 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1867 error_setg(errp,
1868 BDRV_OPT_FORCE_SHARE
1869 "=on can only be used with read-only images");
1870 ret = -EINVAL;
1871 goto fail_opts;
1874 if (file != NULL) {
1875 bdrv_refresh_filename(blk_bs(file));
1876 filename = blk_bs(file)->filename;
1877 } else {
1879 * Caution: while qdict_get_try_str() is fine, getting
1880 * non-string types would require more care. When @options
1881 * come from -blockdev or blockdev_add, its members are typed
1882 * according to the QAPI schema, but when they come from
1883 * -drive, they're all QString.
1885 filename = qdict_get_try_str(options, "filename");
1888 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1889 error_setg(errp, "The '%s' block driver requires a file name",
1890 drv->format_name);
1891 ret = -EINVAL;
1892 goto fail_opts;
1895 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1896 drv->format_name);
1898 ro = bdrv_is_read_only(bs);
1900 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1901 if (!ro && bdrv_is_whitelisted(drv, true)) {
1902 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1903 } else {
1904 ret = -ENOTSUP;
1906 if (ret < 0) {
1907 error_setg(errp,
1908 !ro && bdrv_is_whitelisted(drv, true)
1909 ? "Driver '%s' can only be used for read-only devices"
1910 : "Driver '%s' is not whitelisted",
1911 drv->format_name);
1912 goto fail_opts;
1916 /* bdrv_new() and bdrv_close() make it so */
1917 assert(qatomic_read(&bs->copy_on_read) == 0);
1919 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1920 if (!ro) {
1921 bdrv_enable_copy_on_read(bs);
1922 } else {
1923 error_setg(errp, "Can't use copy-on-read on read-only device");
1924 ret = -EINVAL;
1925 goto fail_opts;
1929 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
1930 if (discard != NULL) {
1931 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1932 error_setg(errp, "Invalid discard option");
1933 ret = -EINVAL;
1934 goto fail_opts;
1938 bs->detect_zeroes =
1939 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1940 if (local_err) {
1941 error_propagate(errp, local_err);
1942 ret = -EINVAL;
1943 goto fail_opts;
1946 if (filename != NULL) {
1947 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1948 } else {
1949 bs->filename[0] = '\0';
1951 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1953 /* Open the image, either directly or using a protocol */
1954 open_flags = bdrv_open_flags(bs, bs->open_flags);
1955 node_name = qemu_opt_get(opts, "node-name");
1957 assert(!drv->bdrv_file_open || file == NULL);
1958 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1959 if (ret < 0) {
1960 goto fail_opts;
1963 qemu_opts_del(opts);
1964 return 0;
1966 fail_opts:
1967 qemu_opts_del(opts);
1968 return ret;
1971 static QDict *parse_json_filename(const char *filename, Error **errp)
1973 QObject *options_obj;
1974 QDict *options;
1975 int ret;
1976 GLOBAL_STATE_CODE();
1978 ret = strstart(filename, "json:", &filename);
1979 assert(ret);
1981 options_obj = qobject_from_json(filename, errp);
1982 if (!options_obj) {
1983 error_prepend(errp, "Could not parse the JSON options: ");
1984 return NULL;
1987 options = qobject_to(QDict, options_obj);
1988 if (!options) {
1989 qobject_unref(options_obj);
1990 error_setg(errp, "Invalid JSON object given");
1991 return NULL;
1994 qdict_flatten(options);
1996 return options;
1999 static void parse_json_protocol(QDict *options, const char **pfilename,
2000 Error **errp)
2002 QDict *json_options;
2003 Error *local_err = NULL;
2004 GLOBAL_STATE_CODE();
2006 /* Parse json: pseudo-protocol */
2007 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
2008 return;
2011 json_options = parse_json_filename(*pfilename, &local_err);
2012 if (local_err) {
2013 error_propagate(errp, local_err);
2014 return;
2017 /* Options given in the filename have lower priority than options
2018 * specified directly */
2019 qdict_join(options, json_options, false);
2020 qobject_unref(json_options);
2021 *pfilename = NULL;
2025 * Fills in default options for opening images and converts the legacy
2026 * filename/flags pair to option QDict entries.
2027 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
2028 * block driver has been specified explicitly.
2030 static int bdrv_fill_options(QDict **options, const char *filename,
2031 int *flags, Error **errp)
2033 const char *drvname;
2034 bool protocol = *flags & BDRV_O_PROTOCOL;
2035 bool parse_filename = false;
2036 BlockDriver *drv = NULL;
2037 Error *local_err = NULL;
2039 GLOBAL_STATE_CODE();
2042 * Caution: while qdict_get_try_str() is fine, getting non-string
2043 * types would require more care. When @options come from
2044 * -blockdev or blockdev_add, its members are typed according to
2045 * the QAPI schema, but when they come from -drive, they're all
2046 * QString.
2048 drvname = qdict_get_try_str(*options, "driver");
2049 if (drvname) {
2050 drv = bdrv_find_format(drvname);
2051 if (!drv) {
2052 error_setg(errp, "Unknown driver '%s'", drvname);
2053 return -ENOENT;
2055 /* If the user has explicitly specified the driver, this choice should
2056 * override the BDRV_O_PROTOCOL flag */
2057 protocol = drv->bdrv_file_open;
2060 if (protocol) {
2061 *flags |= BDRV_O_PROTOCOL;
2062 } else {
2063 *flags &= ~BDRV_O_PROTOCOL;
2066 /* Translate cache options from flags into options */
2067 update_options_from_flags(*options, *flags);
2069 /* Fetch the file name from the options QDict if necessary */
2070 if (protocol && filename) {
2071 if (!qdict_haskey(*options, "filename")) {
2072 qdict_put_str(*options, "filename", filename);
2073 parse_filename = true;
2074 } else {
2075 error_setg(errp, "Can't specify 'file' and 'filename' options at "
2076 "the same time");
2077 return -EINVAL;
2081 /* Find the right block driver */
2082 /* See cautionary note on accessing @options above */
2083 filename = qdict_get_try_str(*options, "filename");
2085 if (!drvname && protocol) {
2086 if (filename) {
2087 drv = bdrv_find_protocol(filename, parse_filename, errp);
2088 if (!drv) {
2089 return -EINVAL;
2092 drvname = drv->format_name;
2093 qdict_put_str(*options, "driver", drvname);
2094 } else {
2095 error_setg(errp, "Must specify either driver or file");
2096 return -EINVAL;
2100 assert(drv || !protocol);
2102 /* Driver-specific filename parsing */
2103 if (drv && drv->bdrv_parse_filename && parse_filename) {
2104 drv->bdrv_parse_filename(filename, *options, &local_err);
2105 if (local_err) {
2106 error_propagate(errp, local_err);
2107 return -EINVAL;
2110 if (!drv->bdrv_needs_filename) {
2111 qdict_del(*options, "filename");
2115 return 0;
2118 typedef struct BlockReopenQueueEntry {
2119 bool prepared;
2120 BDRVReopenState state;
2121 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
2122 } BlockReopenQueueEntry;
2125 * Return the flags that @bs will have after the reopens in @q have
2126 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2127 * return the current flags.
2129 static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2131 BlockReopenQueueEntry *entry;
2133 if (q != NULL) {
2134 QTAILQ_FOREACH(entry, q, entry) {
2135 if (entry->state.bs == bs) {
2136 return entry->state.flags;
2141 return bs->open_flags;
2144 /* Returns whether the image file can be written to after the reopen queue @q
2145 * has been successfully applied, or right now if @q is NULL. */
2146 static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2147 BlockReopenQueue *q)
2149 int flags = bdrv_reopen_get_flags(q, bs);
2151 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2155 * Return whether the BDS can be written to. This is not necessarily
2156 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2157 * be written to but do not count as read-only images.
2159 bool bdrv_is_writable(BlockDriverState *bs)
2161 IO_CODE();
2162 return bdrv_is_writable_after_reopen(bs, NULL);
2165 static char *bdrv_child_user_desc(BdrvChild *c)
2167 GLOBAL_STATE_CODE();
2168 return c->klass->get_parent_desc(c);
2172 * Check that @a allows everything that @b needs. @a and @b must reference same
2173 * child node.
2175 static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2177 const char *child_bs_name;
2178 g_autofree char *a_user = NULL;
2179 g_autofree char *b_user = NULL;
2180 g_autofree char *perms = NULL;
2182 assert(a->bs);
2183 assert(a->bs == b->bs);
2184 GLOBAL_STATE_CODE();
2186 if ((b->perm & a->shared_perm) == b->perm) {
2187 return true;
2190 child_bs_name = bdrv_get_node_name(b->bs);
2191 a_user = bdrv_child_user_desc(a);
2192 b_user = bdrv_child_user_desc(b);
2193 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2195 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2196 "both required by %s (uses node '%s' as '%s' child) and "
2197 "unshared by %s (uses node '%s' as '%s' child).",
2198 child_bs_name, perms,
2199 b_user, child_bs_name, b->name,
2200 a_user, child_bs_name, a->name);
2202 return false;
2205 static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
2207 BdrvChild *a, *b;
2208 GLOBAL_STATE_CODE();
2211 * During the loop we'll look at each pair twice. That's correct because
2212 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2213 * directions.
2215 QLIST_FOREACH(a, &bs->parents, next_parent) {
2216 QLIST_FOREACH(b, &bs->parents, next_parent) {
2217 if (a == b) {
2218 continue;
2221 if (!bdrv_a_allow_b(a, b, errp)) {
2222 return true;
2227 return false;
2230 static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
2231 BdrvChild *c, BdrvChildRole role,
2232 BlockReopenQueue *reopen_queue,
2233 uint64_t parent_perm, uint64_t parent_shared,
2234 uint64_t *nperm, uint64_t *nshared)
2236 assert(bs->drv && bs->drv->bdrv_child_perm);
2237 GLOBAL_STATE_CODE();
2238 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
2239 parent_perm, parent_shared,
2240 nperm, nshared);
2241 /* TODO Take force_share from reopen_queue */
2242 if (child_bs && child_bs->force_share) {
2243 *nshared = BLK_PERM_ALL;
2248 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2249 * nodes that are already in the @list, of course) so that final list is
2250 * topologically sorted. Return the result (GSList @list object is updated, so
2251 * don't use old reference after function call).
2253 * On function start @list must be already topologically sorted and for any node
2254 * in the @list the whole subtree of the node must be in the @list as well. The
2255 * simplest way to satisfy this criteria: use only result of
2256 * bdrv_topological_dfs() or NULL as @list parameter.
2258 static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2259 BlockDriverState *bs)
2261 BdrvChild *child;
2262 g_autoptr(GHashTable) local_found = NULL;
2264 GLOBAL_STATE_CODE();
2266 if (!found) {
2267 assert(!list);
2268 found = local_found = g_hash_table_new(NULL, NULL);
2271 if (g_hash_table_contains(found, bs)) {
2272 return list;
2274 g_hash_table_add(found, bs);
2276 QLIST_FOREACH(child, &bs->children, next) {
2277 list = bdrv_topological_dfs(list, found, child->bs);
2280 return g_slist_prepend(list, bs);
2283 typedef struct BdrvChildSetPermState {
2284 BdrvChild *child;
2285 uint64_t old_perm;
2286 uint64_t old_shared_perm;
2287 } BdrvChildSetPermState;
2289 static void bdrv_child_set_perm_abort(void *opaque)
2291 BdrvChildSetPermState *s = opaque;
2293 GLOBAL_STATE_CODE();
2295 s->child->perm = s->old_perm;
2296 s->child->shared_perm = s->old_shared_perm;
2299 static TransactionActionDrv bdrv_child_set_pem_drv = {
2300 .abort = bdrv_child_set_perm_abort,
2301 .clean = g_free,
2304 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2305 uint64_t shared, Transaction *tran)
2307 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
2308 GLOBAL_STATE_CODE();
2310 *s = (BdrvChildSetPermState) {
2311 .child = c,
2312 .old_perm = c->perm,
2313 .old_shared_perm = c->shared_perm,
2316 c->perm = perm;
2317 c->shared_perm = shared;
2319 tran_add(tran, &bdrv_child_set_pem_drv, s);
2322 static void bdrv_drv_set_perm_commit(void *opaque)
2324 BlockDriverState *bs = opaque;
2325 uint64_t cumulative_perms, cumulative_shared_perms;
2326 GLOBAL_STATE_CODE();
2328 if (bs->drv->bdrv_set_perm) {
2329 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2330 &cumulative_shared_perms);
2331 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2335 static void bdrv_drv_set_perm_abort(void *opaque)
2337 BlockDriverState *bs = opaque;
2338 GLOBAL_STATE_CODE();
2340 if (bs->drv->bdrv_abort_perm_update) {
2341 bs->drv->bdrv_abort_perm_update(bs);
2345 TransactionActionDrv bdrv_drv_set_perm_drv = {
2346 .abort = bdrv_drv_set_perm_abort,
2347 .commit = bdrv_drv_set_perm_commit,
2350 static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2351 uint64_t shared_perm, Transaction *tran,
2352 Error **errp)
2354 GLOBAL_STATE_CODE();
2355 if (!bs->drv) {
2356 return 0;
2359 if (bs->drv->bdrv_check_perm) {
2360 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2361 if (ret < 0) {
2362 return ret;
2366 if (tran) {
2367 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2370 return 0;
2373 typedef struct BdrvReplaceChildState {
2374 BdrvChild *child;
2375 BlockDriverState *old_bs;
2376 } BdrvReplaceChildState;
2378 static void bdrv_replace_child_commit(void *opaque)
2380 BdrvReplaceChildState *s = opaque;
2381 GLOBAL_STATE_CODE();
2383 bdrv_unref(s->old_bs);
2386 static void bdrv_replace_child_abort(void *opaque)
2388 BdrvReplaceChildState *s = opaque;
2389 BlockDriverState *new_bs = s->child->bs;
2391 GLOBAL_STATE_CODE();
2392 bdrv_graph_wrlock(s->old_bs);
2394 /* old_bs reference is transparently moved from @s to @s->child */
2395 if (!s->child->bs) {
2397 * The parents were undrained when removing old_bs from the child. New
2398 * requests can't have been made, though, because the child was empty.
2400 * TODO Make bdrv_replace_child_noperm() transactionable to avoid
2401 * undraining the parent in the first place. Once this is done, having
2402 * new_bs drained when calling bdrv_replace_child_tran() is not a
2403 * requirement any more.
2405 bdrv_parent_drained_begin_single(s->child);
2406 assert(!bdrv_parent_drained_poll_single(s->child));
2408 assert(s->child->quiesced_parent);
2409 bdrv_replace_child_noperm(s->child, s->old_bs);
2411 bdrv_graph_wrunlock();
2412 bdrv_unref(new_bs);
2415 static TransactionActionDrv bdrv_replace_child_drv = {
2416 .commit = bdrv_replace_child_commit,
2417 .abort = bdrv_replace_child_abort,
2418 .clean = g_free,
2422 * bdrv_replace_child_tran
2424 * Note: real unref of old_bs is done only on commit.
2426 * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be
2427 * kept drained until the transaction is completed.
2429 * The function doesn't update permissions, caller is responsible for this.
2431 static void GRAPH_WRLOCK
2432 bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs,
2433 Transaction *tran)
2435 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2437 assert(child->quiesced_parent);
2438 assert(!new_bs || new_bs->quiesce_counter);
2440 *s = (BdrvReplaceChildState) {
2441 .child = child,
2442 .old_bs = child->bs,
2444 tran_add(tran, &bdrv_replace_child_drv, s);
2446 if (new_bs) {
2447 bdrv_ref(new_bs);
2450 bdrv_replace_child_noperm(child, new_bs);
2451 /* old_bs reference is transparently moved from @child to @s */
2455 * Refresh permissions in @bs subtree. The function is intended to be called
2456 * after some graph modification that was done without permission update.
2458 static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2459 Transaction *tran, Error **errp)
2461 BlockDriver *drv = bs->drv;
2462 BdrvChild *c;
2463 int ret;
2464 uint64_t cumulative_perms, cumulative_shared_perms;
2465 GLOBAL_STATE_CODE();
2467 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
2469 /* Write permissions never work with read-only images */
2470 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2471 !bdrv_is_writable_after_reopen(bs, q))
2473 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2474 error_setg(errp, "Block node is read-only");
2475 } else {
2476 error_setg(errp, "Read-only block node '%s' cannot support "
2477 "read-write users", bdrv_get_node_name(bs));
2480 return -EPERM;
2484 * Unaligned requests will automatically be aligned to bl.request_alignment
2485 * and without RESIZE we can't extend requests to write to space beyond the
2486 * end of the image, so it's required that the image size is aligned.
2488 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2489 !(cumulative_perms & BLK_PERM_RESIZE))
2491 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2492 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2493 "Image size is not a multiple of request "
2494 "alignment");
2495 return -EPERM;
2499 /* Check this node */
2500 if (!drv) {
2501 return 0;
2504 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
2505 errp);
2506 if (ret < 0) {
2507 return ret;
2510 /* Drivers that never have children can omit .bdrv_child_perm() */
2511 if (!drv->bdrv_child_perm) {
2512 assert(QLIST_EMPTY(&bs->children));
2513 return 0;
2516 /* Check all children */
2517 QLIST_FOREACH(c, &bs->children, next) {
2518 uint64_t cur_perm, cur_shared;
2520 bdrv_child_perm(bs, c->bs, c, c->role, q,
2521 cumulative_perms, cumulative_shared_perms,
2522 &cur_perm, &cur_shared);
2523 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
2526 return 0;
2530 * @list is a product of bdrv_topological_dfs() (may be called several times) -
2531 * a topologically sorted subgraph.
2533 static int bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q,
2534 Transaction *tran, Error **errp)
2536 int ret;
2537 BlockDriverState *bs;
2538 GLOBAL_STATE_CODE();
2540 for ( ; list; list = list->next) {
2541 bs = list->data;
2543 if (bdrv_parent_perms_conflict(bs, errp)) {
2544 return -EINVAL;
2547 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
2548 if (ret < 0) {
2549 return ret;
2553 return 0;
2557 * @list is any list of nodes. List is completed by all subtrees and
2558 * topologically sorted. It's not a problem if some node occurs in the @list
2559 * several times.
2561 static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2562 Transaction *tran, Error **errp)
2564 g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL);
2565 g_autoptr(GSList) refresh_list = NULL;
2567 for ( ; list; list = list->next) {
2568 refresh_list = bdrv_topological_dfs(refresh_list, found, list->data);
2571 return bdrv_do_refresh_perms(refresh_list, q, tran, errp);
2574 void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2575 uint64_t *shared_perm)
2577 BdrvChild *c;
2578 uint64_t cumulative_perms = 0;
2579 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2581 GLOBAL_STATE_CODE();
2583 QLIST_FOREACH(c, &bs->parents, next_parent) {
2584 cumulative_perms |= c->perm;
2585 cumulative_shared_perms &= c->shared_perm;
2588 *perm = cumulative_perms;
2589 *shared_perm = cumulative_shared_perms;
2592 char *bdrv_perm_names(uint64_t perm)
2594 struct perm_name {
2595 uint64_t perm;
2596 const char *name;
2597 } permissions[] = {
2598 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2599 { BLK_PERM_WRITE, "write" },
2600 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2601 { BLK_PERM_RESIZE, "resize" },
2602 { 0, NULL }
2605 GString *result = g_string_sized_new(30);
2606 struct perm_name *p;
2608 for (p = permissions; p->name; p++) {
2609 if (perm & p->perm) {
2610 if (result->len > 0) {
2611 g_string_append(result, ", ");
2613 g_string_append(result, p->name);
2617 return g_string_free(result, FALSE);
2621 /* @tran is allowed to be NULL. In this case no rollback is possible */
2622 static int bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran,
2623 Error **errp)
2625 int ret;
2626 Transaction *local_tran = NULL;
2627 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
2628 GLOBAL_STATE_CODE();
2630 if (!tran) {
2631 tran = local_tran = tran_new();
2634 ret = bdrv_do_refresh_perms(list, NULL, tran, errp);
2636 if (local_tran) {
2637 tran_finalize(local_tran, ret);
2640 return ret;
2643 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2644 Error **errp)
2646 Error *local_err = NULL;
2647 Transaction *tran = tran_new();
2648 int ret;
2650 GLOBAL_STATE_CODE();
2652 bdrv_child_set_perm(c, perm, shared, tran);
2654 ret = bdrv_refresh_perms(c->bs, tran, &local_err);
2656 tran_finalize(tran, ret);
2658 if (ret < 0) {
2659 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2660 /* tighten permissions */
2661 error_propagate(errp, local_err);
2662 } else {
2664 * Our caller may intend to only loosen restrictions and
2665 * does not expect this function to fail. Errors are not
2666 * fatal in such a case, so we can just hide them from our
2667 * caller.
2669 error_free(local_err);
2670 ret = 0;
2674 return ret;
2677 int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2679 uint64_t parent_perms, parent_shared;
2680 uint64_t perms, shared;
2682 GLOBAL_STATE_CODE();
2684 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
2685 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
2686 parent_perms, parent_shared, &perms, &shared);
2688 return bdrv_child_try_set_perm(c, perms, shared, errp);
2692 * Default implementation for .bdrv_child_perm() for block filters:
2693 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2694 * filtered child.
2696 static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
2697 BdrvChildRole role,
2698 BlockReopenQueue *reopen_queue,
2699 uint64_t perm, uint64_t shared,
2700 uint64_t *nperm, uint64_t *nshared)
2702 GLOBAL_STATE_CODE();
2703 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2704 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
2707 static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
2708 BdrvChildRole role,
2709 BlockReopenQueue *reopen_queue,
2710 uint64_t perm, uint64_t shared,
2711 uint64_t *nperm, uint64_t *nshared)
2713 assert(role & BDRV_CHILD_COW);
2714 GLOBAL_STATE_CODE();
2717 * We want consistent read from backing files if the parent needs it.
2718 * No other operations are performed on backing files.
2720 perm &= BLK_PERM_CONSISTENT_READ;
2723 * If the parent can deal with changing data, we're okay with a
2724 * writable and resizable backing file.
2725 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2727 if (shared & BLK_PERM_WRITE) {
2728 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2729 } else {
2730 shared = 0;
2733 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
2735 if (bs->open_flags & BDRV_O_INACTIVE) {
2736 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2739 *nperm = perm;
2740 *nshared = shared;
2743 static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
2744 BdrvChildRole role,
2745 BlockReopenQueue *reopen_queue,
2746 uint64_t perm, uint64_t shared,
2747 uint64_t *nperm, uint64_t *nshared)
2749 int flags;
2751 GLOBAL_STATE_CODE();
2752 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
2754 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2757 * Apart from the modifications below, the same permissions are
2758 * forwarded and left alone as for filters
2760 bdrv_filter_default_perms(bs, c, role, reopen_queue,
2761 perm, shared, &perm, &shared);
2763 if (role & BDRV_CHILD_METADATA) {
2764 /* Format drivers may touch metadata even if the guest doesn't write */
2765 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2766 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2770 * bs->file always needs to be consistent because of the
2771 * metadata. We can never allow other users to resize or write
2772 * to it.
2774 if (!(flags & BDRV_O_NO_IO)) {
2775 perm |= BLK_PERM_CONSISTENT_READ;
2777 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2780 if (role & BDRV_CHILD_DATA) {
2782 * Technically, everything in this block is a subset of the
2783 * BDRV_CHILD_METADATA path taken above, and so this could
2784 * be an "else if" branch. However, that is not obvious, and
2785 * this function is not performance critical, therefore we let
2786 * this be an independent "if".
2790 * We cannot allow other users to resize the file because the
2791 * format driver might have some assumptions about the size
2792 * (e.g. because it is stored in metadata, or because the file
2793 * is split into fixed-size data files).
2795 shared &= ~BLK_PERM_RESIZE;
2798 * WRITE_UNCHANGED often cannot be performed as such on the
2799 * data file. For example, the qcow2 driver may still need to
2800 * write copied clusters on copy-on-read.
2802 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2803 perm |= BLK_PERM_WRITE;
2807 * If the data file is written to, the format driver may
2808 * expect to be able to resize it by writing beyond the EOF.
2810 if (perm & BLK_PERM_WRITE) {
2811 perm |= BLK_PERM_RESIZE;
2815 if (bs->open_flags & BDRV_O_INACTIVE) {
2816 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2819 *nperm = perm;
2820 *nshared = shared;
2823 void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
2824 BdrvChildRole role, BlockReopenQueue *reopen_queue,
2825 uint64_t perm, uint64_t shared,
2826 uint64_t *nperm, uint64_t *nshared)
2828 GLOBAL_STATE_CODE();
2829 if (role & BDRV_CHILD_FILTERED) {
2830 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2831 BDRV_CHILD_COW)));
2832 bdrv_filter_default_perms(bs, c, role, reopen_queue,
2833 perm, shared, nperm, nshared);
2834 } else if (role & BDRV_CHILD_COW) {
2835 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
2836 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
2837 perm, shared, nperm, nshared);
2838 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
2839 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
2840 perm, shared, nperm, nshared);
2841 } else {
2842 g_assert_not_reached();
2846 uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2848 static const uint64_t permissions[] = {
2849 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2850 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2851 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2852 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2855 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2856 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2858 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2860 return permissions[qapi_perm];
2864 * Replaces the node that a BdrvChild points to without updating permissions.
2866 * If @new_bs is non-NULL, the parent of @child must already be drained through
2867 * @child and the caller must hold the AioContext lock for @new_bs.
2869 static void GRAPH_WRLOCK
2870 bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs)
2872 BlockDriverState *old_bs = child->bs;
2873 int new_bs_quiesce_counter;
2875 assert(!child->frozen);
2878 * If we want to change the BdrvChild to point to a drained node as its new
2879 * child->bs, we need to make sure that its new parent is drained, too. In
2880 * other words, either child->quiesce_parent must already be true or we must
2881 * be able to set it and keep the parent's quiesce_counter consistent with
2882 * that, but without polling or starting new requests (this function
2883 * guarantees that it doesn't poll, and starting new requests would be
2884 * against the invariants of drain sections).
2886 * To keep things simple, we pick the first option (child->quiesce_parent
2887 * must already be true). We also generalise the rule a bit to make it
2888 * easier to verify in callers and more likely to be covered in test cases:
2889 * The parent must be quiesced through this child even if new_bs isn't
2890 * currently drained.
2892 * The only exception is for callers that always pass new_bs == NULL. In
2893 * this case, we obviously never need to consider the case of a drained
2894 * new_bs, so we can keep the callers simpler by allowing them not to drain
2895 * the parent.
2897 assert(!new_bs || child->quiesced_parent);
2898 assert(old_bs != new_bs);
2899 GLOBAL_STATE_CODE();
2901 if (old_bs && new_bs) {
2902 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2905 if (old_bs) {
2906 if (child->klass->detach) {
2907 child->klass->detach(child);
2909 QLIST_REMOVE(child, next_parent);
2912 child->bs = new_bs;
2914 if (new_bs) {
2915 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2916 if (child->klass->attach) {
2917 child->klass->attach(child);
2922 * If the parent was drained through this BdrvChild previously, but new_bs
2923 * is not drained, allow requests to come in only after the new node has
2924 * been attached.
2926 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2927 if (!new_bs_quiesce_counter && child->quiesced_parent) {
2928 bdrv_parent_drained_end_single(child);
2933 * Free the given @child.
2935 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2936 * unused (i.e. not in a children list).
2938 static void bdrv_child_free(BdrvChild *child)
2940 assert(!child->bs);
2941 GLOBAL_STATE_CODE();
2942 assert(!child->next.le_prev); /* not in children list */
2944 g_free(child->name);
2945 g_free(child);
2948 typedef struct BdrvAttachChildCommonState {
2949 BdrvChild *child;
2950 AioContext *old_parent_ctx;
2951 AioContext *old_child_ctx;
2952 } BdrvAttachChildCommonState;
2954 static void bdrv_attach_child_common_abort(void *opaque)
2956 BdrvAttachChildCommonState *s = opaque;
2957 BlockDriverState *bs = s->child->bs;
2959 GLOBAL_STATE_CODE();
2961 bdrv_graph_wrlock(NULL);
2962 bdrv_replace_child_noperm(s->child, NULL);
2963 bdrv_graph_wrunlock();
2965 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
2966 bdrv_try_change_aio_context(bs, s->old_child_ctx, NULL, &error_abort);
2969 if (bdrv_child_get_parent_aio_context(s->child) != s->old_parent_ctx) {
2970 Transaction *tran;
2971 GHashTable *visited;
2972 bool ret;
2974 tran = tran_new();
2976 /* No need to visit `child`, because it has been detached already */
2977 visited = g_hash_table_new(NULL, NULL);
2978 ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx,
2979 visited, tran, &error_abort);
2980 g_hash_table_destroy(visited);
2982 /* transaction is supposed to always succeed */
2983 assert(ret == true);
2984 tran_commit(tran);
2987 bdrv_unref(bs);
2988 bdrv_child_free(s->child);
2991 static TransactionActionDrv bdrv_attach_child_common_drv = {
2992 .abort = bdrv_attach_child_common_abort,
2993 .clean = g_free,
2997 * Common part of attaching bdrv child to bs or to blk or to job
2999 * Function doesn't update permissions, caller is responsible for this.
3001 * Returns new created child.
3003 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3004 * @child_bs can move to a different AioContext in this function. Callers must
3005 * make sure that their AioContext locking is still correct after this.
3007 static BdrvChild *bdrv_attach_child_common(BlockDriverState *child_bs,
3008 const char *child_name,
3009 const BdrvChildClass *child_class,
3010 BdrvChildRole child_role,
3011 uint64_t perm, uint64_t shared_perm,
3012 void *opaque,
3013 Transaction *tran, Error **errp)
3015 BdrvChild *new_child;
3016 AioContext *parent_ctx, *new_child_ctx;
3017 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
3019 assert(child_class->get_parent_desc);
3020 GLOBAL_STATE_CODE();
3022 new_child = g_new(BdrvChild, 1);
3023 *new_child = (BdrvChild) {
3024 .bs = NULL,
3025 .name = g_strdup(child_name),
3026 .klass = child_class,
3027 .role = child_role,
3028 .perm = perm,
3029 .shared_perm = shared_perm,
3030 .opaque = opaque,
3034 * If the AioContexts don't match, first try to move the subtree of
3035 * child_bs into the AioContext of the new parent. If this doesn't work,
3036 * try moving the parent into the AioContext of child_bs instead.
3038 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3039 if (child_ctx != parent_ctx) {
3040 Error *local_err = NULL;
3041 int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL,
3042 &local_err);
3044 if (ret < 0 && child_class->change_aio_ctx) {
3045 Transaction *tran = tran_new();
3046 GHashTable *visited = g_hash_table_new(NULL, NULL);
3047 bool ret_child;
3049 g_hash_table_add(visited, new_child);
3050 ret_child = child_class->change_aio_ctx(new_child, child_ctx,
3051 visited, tran, NULL);
3052 if (ret_child == true) {
3053 error_free(local_err);
3054 ret = 0;
3056 tran_finalize(tran, ret_child == true ? 0 : -1);
3057 g_hash_table_destroy(visited);
3060 if (ret < 0) {
3061 error_propagate(errp, local_err);
3062 bdrv_child_free(new_child);
3063 return NULL;
3067 new_child_ctx = bdrv_get_aio_context(child_bs);
3068 if (new_child_ctx != child_ctx) {
3069 aio_context_release(child_ctx);
3070 aio_context_acquire(new_child_ctx);
3073 bdrv_ref(child_bs);
3075 * Let every new BdrvChild start with a drained parent. Inserting the child
3076 * in the graph with bdrv_replace_child_noperm() will undrain it if
3077 * @child_bs is not drained.
3079 * The child was only just created and is not yet visible in global state
3080 * until bdrv_replace_child_noperm() inserts it into the graph, so nobody
3081 * could have sent requests and polling is not necessary.
3083 * Note that this means that the parent isn't fully drained yet, we only
3084 * stop new requests from coming in. This is fine, we don't care about the
3085 * old requests here, they are not for this child. If another place enters a
3086 * drain section for the same parent, but wants it to be fully quiesced, it
3087 * will not run most of the the code in .drained_begin() again (which is not
3088 * a problem, we already did this), but it will still poll until the parent
3089 * is fully quiesced, so it will not be negatively affected either.
3091 bdrv_graph_wrlock(child_bs);
3092 bdrv_parent_drained_begin_single(new_child);
3093 bdrv_replace_child_noperm(new_child, child_bs);
3094 bdrv_graph_wrunlock();
3096 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3097 *s = (BdrvAttachChildCommonState) {
3098 .child = new_child,
3099 .old_parent_ctx = parent_ctx,
3100 .old_child_ctx = child_ctx,
3102 tran_add(tran, &bdrv_attach_child_common_drv, s);
3104 if (new_child_ctx != child_ctx) {
3105 aio_context_release(new_child_ctx);
3106 aio_context_acquire(child_ctx);
3109 return new_child;
3113 * Function doesn't update permissions, caller is responsible for this.
3115 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3116 * @child_bs can move to a different AioContext in this function. Callers must
3117 * make sure that their AioContext locking is still correct after this.
3119 static BdrvChild *bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3120 BlockDriverState *child_bs,
3121 const char *child_name,
3122 const BdrvChildClass *child_class,
3123 BdrvChildRole child_role,
3124 Transaction *tran,
3125 Error **errp)
3127 uint64_t perm, shared_perm;
3129 assert(parent_bs->drv);
3130 GLOBAL_STATE_CODE();
3132 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
3133 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
3134 child_bs->node_name, child_name, parent_bs->node_name);
3135 return NULL;
3138 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3139 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3140 perm, shared_perm, &perm, &shared_perm);
3142 return bdrv_attach_child_common(child_bs, child_name, child_class,
3143 child_role, perm, shared_perm, parent_bs,
3144 tran, errp);
3148 * This function steals the reference to child_bs from the caller.
3149 * That reference is later dropped by bdrv_root_unref_child().
3151 * On failure NULL is returned, errp is set and the reference to
3152 * child_bs is also dropped.
3154 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3155 * (unless @child_bs is already in @ctx).
3157 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3158 const char *child_name,
3159 const BdrvChildClass *child_class,
3160 BdrvChildRole child_role,
3161 uint64_t perm, uint64_t shared_perm,
3162 void *opaque, Error **errp)
3164 int ret;
3165 BdrvChild *child;
3166 Transaction *tran = tran_new();
3168 GLOBAL_STATE_CODE();
3170 child = bdrv_attach_child_common(child_bs, child_name, child_class,
3171 child_role, perm, shared_perm, opaque,
3172 tran, errp);
3173 if (!child) {
3174 ret = -EINVAL;
3175 goto out;
3178 ret = bdrv_refresh_perms(child_bs, tran, errp);
3180 out:
3181 tran_finalize(tran, ret);
3183 bdrv_unref(child_bs);
3185 return ret < 0 ? NULL : child;
3189 * This function transfers the reference to child_bs from the caller
3190 * to parent_bs. That reference is later dropped by parent_bs on
3191 * bdrv_close() or if someone calls bdrv_unref_child().
3193 * On failure NULL is returned, errp is set and the reference to
3194 * child_bs is also dropped.
3196 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3197 * hold the AioContext lock for @child_bs, but not for @parent_bs.
3199 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3200 BlockDriverState *child_bs,
3201 const char *child_name,
3202 const BdrvChildClass *child_class,
3203 BdrvChildRole child_role,
3204 Error **errp)
3206 int ret;
3207 BdrvChild *child;
3208 Transaction *tran = tran_new();
3210 GLOBAL_STATE_CODE();
3212 child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name,
3213 child_class, child_role, tran, errp);
3214 if (!child) {
3215 ret = -EINVAL;
3216 goto out;
3219 ret = bdrv_refresh_perms(parent_bs, tran, errp);
3220 if (ret < 0) {
3221 goto out;
3224 out:
3225 tran_finalize(tran, ret);
3227 bdrv_unref(child_bs);
3229 return ret < 0 ? NULL : child;
3232 /* Callers must ensure that child->frozen is false. */
3233 void bdrv_root_unref_child(BdrvChild *child)
3235 BlockDriverState *child_bs = child->bs;
3237 GLOBAL_STATE_CODE();
3238 bdrv_graph_wrlock(NULL);
3239 bdrv_replace_child_noperm(child, NULL);
3240 bdrv_graph_wrunlock();
3241 bdrv_child_free(child);
3243 if (child_bs) {
3245 * Update permissions for old node. We're just taking a parent away, so
3246 * we're loosening restrictions. Errors of permission update are not
3247 * fatal in this case, ignore them.
3249 bdrv_refresh_perms(child_bs, NULL, NULL);
3252 * When the parent requiring a non-default AioContext is removed, the
3253 * node moves back to the main AioContext
3255 bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL,
3256 NULL);
3259 bdrv_unref(child_bs);
3262 typedef struct BdrvSetInheritsFrom {
3263 BlockDriverState *bs;
3264 BlockDriverState *old_inherits_from;
3265 } BdrvSetInheritsFrom;
3267 static void bdrv_set_inherits_from_abort(void *opaque)
3269 BdrvSetInheritsFrom *s = opaque;
3271 s->bs->inherits_from = s->old_inherits_from;
3274 static TransactionActionDrv bdrv_set_inherits_from_drv = {
3275 .abort = bdrv_set_inherits_from_abort,
3276 .clean = g_free,
3279 /* @tran is allowed to be NULL. In this case no rollback is possible */
3280 static void bdrv_set_inherits_from(BlockDriverState *bs,
3281 BlockDriverState *new_inherits_from,
3282 Transaction *tran)
3284 if (tran) {
3285 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3287 *s = (BdrvSetInheritsFrom) {
3288 .bs = bs,
3289 .old_inherits_from = bs->inherits_from,
3292 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3295 bs->inherits_from = new_inherits_from;
3299 * Clear all inherits_from pointers from children and grandchildren of
3300 * @root that point to @root, where necessary.
3301 * @tran is allowed to be NULL. In this case no rollback is possible
3303 static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3304 Transaction *tran)
3306 BdrvChild *c;
3308 if (child->bs->inherits_from == root) {
3310 * Remove inherits_from only when the last reference between root and
3311 * child->bs goes away.
3313 QLIST_FOREACH(c, &root->children, next) {
3314 if (c != child && c->bs == child->bs) {
3315 break;
3318 if (c == NULL) {
3319 bdrv_set_inherits_from(child->bs, NULL, tran);
3323 QLIST_FOREACH(c, &child->bs->children, next) {
3324 bdrv_unset_inherits_from(root, c, tran);
3328 /* Callers must ensure that child->frozen is false. */
3329 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3331 GLOBAL_STATE_CODE();
3332 if (child == NULL) {
3333 return;
3336 bdrv_unset_inherits_from(parent, child, NULL);
3337 bdrv_root_unref_child(child);
3341 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3343 BdrvChild *c;
3344 GLOBAL_STATE_CODE();
3345 QLIST_FOREACH(c, &bs->parents, next_parent) {
3346 if (c->klass->change_media) {
3347 c->klass->change_media(c, load);
3352 /* Return true if you can reach parent going through child->inherits_from
3353 * recursively. If parent or child are NULL, return false */
3354 static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3355 BlockDriverState *parent)
3357 while (child && child != parent) {
3358 child = child->inherits_from;
3361 return child != NULL;
3365 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3366 * mostly used for COW backing children (role = COW), but also for
3367 * filtered children (role = FILTERED | PRIMARY).
3369 static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3371 if (bs->drv && bs->drv->is_filter) {
3372 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3373 } else {
3374 return BDRV_CHILD_COW;
3379 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3380 * callers which don't need their own reference any more must call bdrv_unref().
3382 * Function doesn't update permissions, caller is responsible for this.
3384 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3385 * @child_bs can move to a different AioContext in this function. Callers must
3386 * make sure that their AioContext locking is still correct after this.
3388 static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3389 BlockDriverState *child_bs,
3390 bool is_backing,
3391 Transaction *tran, Error **errp)
3393 bool update_inherits_from =
3394 bdrv_inherits_from_recursive(child_bs, parent_bs);
3395 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3396 BdrvChildRole role;
3398 GLOBAL_STATE_CODE();
3400 if (!parent_bs->drv) {
3402 * Node without drv is an object without a class :/. TODO: finally fix
3403 * qcow2 driver to never clear bs->drv and implement format corruption
3404 * handling in other way.
3406 error_setg(errp, "Node corrupted");
3407 return -EINVAL;
3410 if (child && child->frozen) {
3411 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3412 child->name, parent_bs->node_name, child->bs->node_name);
3413 return -EPERM;
3416 if (is_backing && !parent_bs->drv->is_filter &&
3417 !parent_bs->drv->supports_backing)
3419 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3420 "files", parent_bs->drv->format_name, parent_bs->node_name);
3421 return -EINVAL;
3424 if (parent_bs->drv->is_filter) {
3425 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3426 } else if (is_backing) {
3427 role = BDRV_CHILD_COW;
3428 } else {
3430 * We only can use same role as it is in existing child. We don't have
3431 * infrastructure to determine role of file child in generic way
3433 if (!child) {
3434 error_setg(errp, "Cannot set file child to format node without "
3435 "file child");
3436 return -EINVAL;
3438 role = child->role;
3441 if (child) {
3442 bdrv_drained_begin(child->bs);
3443 bdrv_graph_wrlock(NULL);
3445 bdrv_unset_inherits_from(parent_bs, child, tran);
3446 bdrv_remove_child(child, tran);
3448 bdrv_graph_wrunlock();
3449 bdrv_drained_end(child->bs);
3452 if (!child_bs) {
3453 goto out;
3456 child = bdrv_attach_child_noperm(parent_bs, child_bs,
3457 is_backing ? "backing" : "file",
3458 &child_of_bds, role,
3459 tran, errp);
3460 if (!child) {
3461 return -EINVAL;
3466 * If inherits_from pointed recursively to bs then let's update it to
3467 * point directly to bs (else it will become NULL).
3469 if (update_inherits_from) {
3470 bdrv_set_inherits_from(child_bs, parent_bs, tran);
3473 out:
3474 bdrv_graph_rdlock_main_loop();
3475 bdrv_refresh_limits(parent_bs, tran, NULL);
3476 bdrv_graph_rdunlock_main_loop();
3478 return 0;
3482 * The caller must hold the AioContext lock for @backing_hd. Both @bs and
3483 * @backing_hd can move to a different AioContext in this function. Callers must
3484 * make sure that their AioContext locking is still correct after this.
3486 static int bdrv_set_backing_noperm(BlockDriverState *bs,
3487 BlockDriverState *backing_hd,
3488 Transaction *tran, Error **errp)
3490 GLOBAL_STATE_CODE();
3491 return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3494 int bdrv_set_backing_hd_drained(BlockDriverState *bs,
3495 BlockDriverState *backing_hd,
3496 Error **errp)
3498 int ret;
3499 Transaction *tran = tran_new();
3501 GLOBAL_STATE_CODE();
3502 assert(bs->quiesce_counter > 0);
3504 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3505 if (ret < 0) {
3506 goto out;
3509 ret = bdrv_refresh_perms(bs, tran, errp);
3510 out:
3511 tran_finalize(tran, ret);
3512 return ret;
3515 int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3516 Error **errp)
3518 int ret;
3519 GLOBAL_STATE_CODE();
3521 bdrv_drained_begin(bs);
3522 ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp);
3523 bdrv_drained_end(bs);
3525 return ret;
3529 * Opens the backing file for a BlockDriverState if not yet open
3531 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3532 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3533 * itself, all options starting with "${bdref_key}." are considered part of the
3534 * BlockdevRef.
3536 * The caller must hold the main AioContext lock.
3538 * TODO Can this be unified with bdrv_open_image()?
3540 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3541 const char *bdref_key, Error **errp)
3543 char *backing_filename = NULL;
3544 char *bdref_key_dot;
3545 const char *reference = NULL;
3546 int ret = 0;
3547 bool implicit_backing = false;
3548 BlockDriverState *backing_hd;
3549 AioContext *backing_hd_ctx;
3550 QDict *options;
3551 QDict *tmp_parent_options = NULL;
3552 Error *local_err = NULL;
3554 GLOBAL_STATE_CODE();
3556 if (bs->backing != NULL) {
3557 goto free_exit;
3560 /* NULL means an empty set of options */
3561 if (parent_options == NULL) {
3562 tmp_parent_options = qdict_new();
3563 parent_options = tmp_parent_options;
3566 bs->open_flags &= ~BDRV_O_NO_BACKING;
3568 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3569 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3570 g_free(bdref_key_dot);
3573 * Caution: while qdict_get_try_str() is fine, getting non-string
3574 * types would require more care. When @parent_options come from
3575 * -blockdev or blockdev_add, its members are typed according to
3576 * the QAPI schema, but when they come from -drive, they're all
3577 * QString.
3579 reference = qdict_get_try_str(parent_options, bdref_key);
3580 if (reference || qdict_haskey(options, "file.filename")) {
3581 /* keep backing_filename NULL */
3582 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
3583 qobject_unref(options);
3584 goto free_exit;
3585 } else {
3586 if (qdict_size(options) == 0) {
3587 /* If the user specifies options that do not modify the
3588 * backing file's behavior, we might still consider it the
3589 * implicit backing file. But it's easier this way, and
3590 * just specifying some of the backing BDS's options is
3591 * only possible with -drive anyway (otherwise the QAPI
3592 * schema forces the user to specify everything). */
3593 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3596 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
3597 if (local_err) {
3598 ret = -EINVAL;
3599 error_propagate(errp, local_err);
3600 qobject_unref(options);
3601 goto free_exit;
3605 if (!bs->drv || !bs->drv->supports_backing) {
3606 ret = -EINVAL;
3607 error_setg(errp, "Driver doesn't support backing files");
3608 qobject_unref(options);
3609 goto free_exit;
3612 if (!reference &&
3613 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
3614 qdict_put_str(options, "driver", bs->backing_format);
3617 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
3618 &child_of_bds, bdrv_backing_role(bs), errp);
3619 if (!backing_hd) {
3620 bs->open_flags |= BDRV_O_NO_BACKING;
3621 error_prepend(errp, "Could not open backing file: ");
3622 ret = -EINVAL;
3623 goto free_exit;
3626 if (implicit_backing) {
3627 bdrv_refresh_filename(backing_hd);
3628 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3629 backing_hd->filename);
3632 /* Hook up the backing file link; drop our reference, bs owns the
3633 * backing_hd reference now */
3634 backing_hd_ctx = bdrv_get_aio_context(backing_hd);
3635 aio_context_acquire(backing_hd_ctx);
3636 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
3637 bdrv_unref(backing_hd);
3638 aio_context_release(backing_hd_ctx);
3640 if (ret < 0) {
3641 goto free_exit;
3644 qdict_del(parent_options, bdref_key);
3646 free_exit:
3647 g_free(backing_filename);
3648 qobject_unref(tmp_parent_options);
3649 return ret;
3652 static BlockDriverState *
3653 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
3654 BlockDriverState *parent, const BdrvChildClass *child_class,
3655 BdrvChildRole child_role, bool allow_none, Error **errp)
3657 BlockDriverState *bs = NULL;
3658 QDict *image_options;
3659 char *bdref_key_dot;
3660 const char *reference;
3662 assert(child_class != NULL);
3664 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3665 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3666 g_free(bdref_key_dot);
3669 * Caution: while qdict_get_try_str() is fine, getting non-string
3670 * types would require more care. When @options come from
3671 * -blockdev or blockdev_add, its members are typed according to
3672 * the QAPI schema, but when they come from -drive, they're all
3673 * QString.
3675 reference = qdict_get_try_str(options, bdref_key);
3676 if (!filename && !reference && !qdict_size(image_options)) {
3677 if (!allow_none) {
3678 error_setg(errp, "A block device must be specified for \"%s\"",
3679 bdref_key);
3681 qobject_unref(image_options);
3682 goto done;
3685 bs = bdrv_open_inherit(filename, reference, image_options, 0,
3686 parent, child_class, child_role, errp);
3687 if (!bs) {
3688 goto done;
3691 done:
3692 qdict_del(options, bdref_key);
3693 return bs;
3697 * Opens a disk image whose options are given as BlockdevRef in another block
3698 * device's options.
3700 * If allow_none is true, no image will be opened if filename is false and no
3701 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3703 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3704 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3705 * itself, all options starting with "${bdref_key}." are considered part of the
3706 * BlockdevRef.
3708 * The BlockdevRef will be removed from the options QDict.
3710 * The caller must hold the lock of the main AioContext and no other AioContext.
3711 * @parent can move to a different AioContext in this function. Callers must
3712 * make sure that their AioContext locking is still correct after this.
3714 BdrvChild *bdrv_open_child(const char *filename,
3715 QDict *options, const char *bdref_key,
3716 BlockDriverState *parent,
3717 const BdrvChildClass *child_class,
3718 BdrvChildRole child_role,
3719 bool allow_none, Error **errp)
3721 BlockDriverState *bs;
3722 BdrvChild *child;
3723 AioContext *ctx;
3725 GLOBAL_STATE_CODE();
3727 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
3728 child_role, allow_none, errp);
3729 if (bs == NULL) {
3730 return NULL;
3733 ctx = bdrv_get_aio_context(bs);
3734 aio_context_acquire(ctx);
3735 child = bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3736 errp);
3737 aio_context_release(ctx);
3739 return child;
3743 * Wrapper on bdrv_open_child() for most popular case: open primary child of bs.
3745 * The caller must hold the lock of the main AioContext and no other AioContext.
3746 * @parent can move to a different AioContext in this function. Callers must
3747 * make sure that their AioContext locking is still correct after this.
3749 int bdrv_open_file_child(const char *filename,
3750 QDict *options, const char *bdref_key,
3751 BlockDriverState *parent, Error **errp)
3753 BdrvChildRole role;
3755 /* commit_top and mirror_top don't use this function */
3756 assert(!parent->drv->filtered_child_is_backing);
3757 role = parent->drv->is_filter ?
3758 (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE;
3760 if (!bdrv_open_child(filename, options, bdref_key, parent,
3761 &child_of_bds, role, false, errp))
3763 return -EINVAL;
3766 return 0;
3770 * TODO Future callers may need to specify parent/child_class in order for
3771 * option inheritance to work. Existing callers use it for the root node.
3773 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3775 BlockDriverState *bs = NULL;
3776 QObject *obj = NULL;
3777 QDict *qdict = NULL;
3778 const char *reference = NULL;
3779 Visitor *v = NULL;
3781 GLOBAL_STATE_CODE();
3783 if (ref->type == QTYPE_QSTRING) {
3784 reference = ref->u.reference;
3785 } else {
3786 BlockdevOptions *options = &ref->u.definition;
3787 assert(ref->type == QTYPE_QDICT);
3789 v = qobject_output_visitor_new(&obj);
3790 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
3791 visit_complete(v, &obj);
3793 qdict = qobject_to(QDict, obj);
3794 qdict_flatten(qdict);
3796 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3797 * compatibility with other callers) rather than what we want as the
3798 * real defaults. Apply the defaults here instead. */
3799 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3800 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3801 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
3802 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3806 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
3807 obj = NULL;
3808 qobject_unref(obj);
3809 visit_free(v);
3810 return bs;
3813 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3814 int flags,
3815 QDict *snapshot_options,
3816 Error **errp)
3818 g_autofree char *tmp_filename = NULL;
3819 int64_t total_size;
3820 QemuOpts *opts = NULL;
3821 BlockDriverState *bs_snapshot = NULL;
3822 AioContext *ctx = bdrv_get_aio_context(bs);
3823 int ret;
3825 GLOBAL_STATE_CODE();
3827 /* if snapshot, we create a temporary backing file and open it
3828 instead of opening 'filename' directly */
3830 /* Get the required size from the image */
3831 aio_context_acquire(ctx);
3832 total_size = bdrv_getlength(bs);
3833 aio_context_release(ctx);
3835 if (total_size < 0) {
3836 error_setg_errno(errp, -total_size, "Could not get image size");
3837 goto out;
3840 /* Create the temporary image */
3841 tmp_filename = create_tmp_file(errp);
3842 if (!tmp_filename) {
3843 goto out;
3846 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
3847 &error_abort);
3848 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
3849 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
3850 qemu_opts_del(opts);
3851 if (ret < 0) {
3852 error_prepend(errp, "Could not create temporary overlay '%s': ",
3853 tmp_filename);
3854 goto out;
3857 /* Prepare options QDict for the temporary file */
3858 qdict_put_str(snapshot_options, "file.driver", "file");
3859 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3860 qdict_put_str(snapshot_options, "driver", "qcow2");
3862 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
3863 snapshot_options = NULL;
3864 if (!bs_snapshot) {
3865 goto out;
3868 aio_context_acquire(ctx);
3869 ret = bdrv_append(bs_snapshot, bs, errp);
3870 aio_context_release(ctx);
3872 if (ret < 0) {
3873 bs_snapshot = NULL;
3874 goto out;
3877 out:
3878 qobject_unref(snapshot_options);
3879 return bs_snapshot;
3883 * Opens a disk image (raw, qcow2, vmdk, ...)
3885 * options is a QDict of options to pass to the block drivers, or NULL for an
3886 * empty set of options. The reference to the QDict belongs to the block layer
3887 * after the call (even on failure), so if the caller intends to reuse the
3888 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
3890 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3891 * If it is not NULL, the referenced BDS will be reused.
3893 * The reference parameter may be used to specify an existing block device which
3894 * should be opened. If specified, neither options nor a filename may be given,
3895 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
3897 * The caller must always hold the main AioContext lock.
3899 static BlockDriverState * no_coroutine_fn
3900 bdrv_open_inherit(const char *filename, const char *reference, QDict *options,
3901 int flags, BlockDriverState *parent,
3902 const BdrvChildClass *child_class, BdrvChildRole child_role,
3903 Error **errp)
3905 int ret;
3906 BlockBackend *file = NULL;
3907 BlockDriverState *bs;
3908 BlockDriver *drv = NULL;
3909 BdrvChild *child;
3910 const char *drvname;
3911 const char *backing;
3912 Error *local_err = NULL;
3913 QDict *snapshot_options = NULL;
3914 int snapshot_flags = 0;
3915 AioContext *ctx = qemu_get_aio_context();
3917 assert(!child_class || !flags);
3918 assert(!child_class == !parent);
3919 GLOBAL_STATE_CODE();
3920 assert(!qemu_in_coroutine());
3922 if (reference) {
3923 bool options_non_empty = options ? qdict_size(options) : false;
3924 qobject_unref(options);
3926 if (filename || options_non_empty) {
3927 error_setg(errp, "Cannot reference an existing block device with "
3928 "additional options or a new filename");
3929 return NULL;
3932 bs = bdrv_lookup_bs(reference, reference, errp);
3933 if (!bs) {
3934 return NULL;
3937 bdrv_ref(bs);
3938 return bs;
3941 bs = bdrv_new();
3943 /* NULL means an empty set of options */
3944 if (options == NULL) {
3945 options = qdict_new();
3948 /* json: syntax counts as explicit options, as if in the QDict */
3949 parse_json_protocol(options, &filename, &local_err);
3950 if (local_err) {
3951 goto fail;
3954 bs->explicit_options = qdict_clone_shallow(options);
3956 if (child_class) {
3957 bool parent_is_format;
3959 if (parent->drv) {
3960 parent_is_format = parent->drv->is_format;
3961 } else {
3963 * parent->drv is not set yet because this node is opened for
3964 * (potential) format probing. That means that @parent is going
3965 * to be a format node.
3967 parent_is_format = true;
3970 bs->inherits_from = parent;
3971 child_class->inherit_options(child_role, parent_is_format,
3972 &flags, options,
3973 parent->open_flags, parent->options);
3976 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
3977 if (ret < 0) {
3978 goto fail;
3982 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3983 * Caution: getting a boolean member of @options requires care.
3984 * When @options come from -blockdev or blockdev_add, members are
3985 * typed according to the QAPI schema, but when they come from
3986 * -drive, they're all QString.
3988 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3989 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3990 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3991 } else {
3992 flags &= ~BDRV_O_RDWR;
3995 if (flags & BDRV_O_SNAPSHOT) {
3996 snapshot_options = qdict_new();
3997 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3998 flags, options);
3999 /* Let bdrv_backing_options() override "read-only" */
4000 qdict_del(options, BDRV_OPT_READ_ONLY);
4001 bdrv_inherited_options(BDRV_CHILD_COW, true,
4002 &flags, options, flags, options);
4005 bs->open_flags = flags;
4006 bs->options = options;
4007 options = qdict_clone_shallow(options);
4009 /* Find the right image format driver */
4010 /* See cautionary note on accessing @options above */
4011 drvname = qdict_get_try_str(options, "driver");
4012 if (drvname) {
4013 drv = bdrv_find_format(drvname);
4014 if (!drv) {
4015 error_setg(errp, "Unknown driver: '%s'", drvname);
4016 goto fail;
4020 assert(drvname || !(flags & BDRV_O_PROTOCOL));
4022 /* See cautionary note on accessing @options above */
4023 backing = qdict_get_try_str(options, "backing");
4024 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
4025 (backing && *backing == '\0'))
4027 if (backing) {
4028 warn_report("Use of \"backing\": \"\" is deprecated; "
4029 "use \"backing\": null instead");
4031 flags |= BDRV_O_NO_BACKING;
4032 qdict_del(bs->explicit_options, "backing");
4033 qdict_del(bs->options, "backing");
4034 qdict_del(options, "backing");
4037 /* Open image file without format layer. This BlockBackend is only used for
4038 * probing, the block drivers will do their own bdrv_open_child() for the
4039 * same BDS, which is why we put the node name back into options. */
4040 if ((flags & BDRV_O_PROTOCOL) == 0) {
4041 BlockDriverState *file_bs;
4043 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
4044 &child_of_bds, BDRV_CHILD_IMAGE,
4045 true, &local_err);
4046 if (local_err) {
4047 goto fail;
4049 if (file_bs != NULL) {
4050 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
4051 * looking at the header to guess the image format. This works even
4052 * in cases where a guest would not see a consistent state. */
4053 ctx = bdrv_get_aio_context(file_bs);
4054 aio_context_acquire(ctx);
4055 file = blk_new(ctx, 0, BLK_PERM_ALL);
4056 blk_insert_bs(file, file_bs, &local_err);
4057 bdrv_unref(file_bs);
4058 aio_context_release(ctx);
4060 if (local_err) {
4061 goto fail;
4064 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
4068 /* Image format probing */
4069 bs->probed = !drv;
4070 if (!drv && file) {
4071 ret = find_image_format(file, filename, &drv, &local_err);
4072 if (ret < 0) {
4073 goto fail;
4076 * This option update would logically belong in bdrv_fill_options(),
4077 * but we first need to open bs->file for the probing to work, while
4078 * opening bs->file already requires the (mostly) final set of options
4079 * so that cache mode etc. can be inherited.
4081 * Adding the driver later is somewhat ugly, but it's not an option
4082 * that would ever be inherited, so it's correct. We just need to make
4083 * sure to update both bs->options (which has the full effective
4084 * options for bs) and options (which has file.* already removed).
4086 qdict_put_str(bs->options, "driver", drv->format_name);
4087 qdict_put_str(options, "driver", drv->format_name);
4088 } else if (!drv) {
4089 error_setg(errp, "Must specify either driver or file");
4090 goto fail;
4093 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
4094 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
4095 /* file must be NULL if a protocol BDS is about to be created
4096 * (the inverse results in an error message from bdrv_open_common()) */
4097 assert(!(flags & BDRV_O_PROTOCOL) || !file);
4099 /* Open the image */
4100 ret = bdrv_open_common(bs, file, options, &local_err);
4101 if (ret < 0) {
4102 goto fail;
4105 /* The AioContext could have changed during bdrv_open_common() */
4106 ctx = bdrv_get_aio_context(bs);
4108 if (file) {
4109 aio_context_acquire(ctx);
4110 blk_unref(file);
4111 aio_context_release(ctx);
4112 file = NULL;
4115 /* If there is a backing file, use it */
4116 if ((flags & BDRV_O_NO_BACKING) == 0) {
4117 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
4118 if (ret < 0) {
4119 goto close_and_fail;
4123 /* Remove all children options and references
4124 * from bs->options and bs->explicit_options */
4125 QLIST_FOREACH(child, &bs->children, next) {
4126 char *child_key_dot;
4127 child_key_dot = g_strdup_printf("%s.", child->name);
4128 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
4129 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
4130 qdict_del(bs->explicit_options, child->name);
4131 qdict_del(bs->options, child->name);
4132 g_free(child_key_dot);
4135 /* Check if any unknown options were used */
4136 if (qdict_size(options) != 0) {
4137 const QDictEntry *entry = qdict_first(options);
4138 if (flags & BDRV_O_PROTOCOL) {
4139 error_setg(errp, "Block protocol '%s' doesn't support the option "
4140 "'%s'", drv->format_name, entry->key);
4141 } else {
4142 error_setg(errp,
4143 "Block format '%s' does not support the option '%s'",
4144 drv->format_name, entry->key);
4147 goto close_and_fail;
4150 bdrv_parent_cb_change_media(bs, true);
4152 qobject_unref(options);
4153 options = NULL;
4155 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4156 * temporary snapshot afterwards. */
4157 if (snapshot_flags) {
4158 BlockDriverState *snapshot_bs;
4159 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
4160 snapshot_options, &local_err);
4161 snapshot_options = NULL;
4162 if (local_err) {
4163 goto close_and_fail;
4165 /* We are not going to return bs but the overlay on top of it
4166 * (snapshot_bs); thus, we have to drop the strong reference to bs
4167 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4168 * though, because the overlay still has a reference to it. */
4169 aio_context_acquire(ctx);
4170 bdrv_unref(bs);
4171 aio_context_release(ctx);
4172 bs = snapshot_bs;
4175 return bs;
4177 fail:
4178 aio_context_acquire(ctx);
4179 blk_unref(file);
4180 qobject_unref(snapshot_options);
4181 qobject_unref(bs->explicit_options);
4182 qobject_unref(bs->options);
4183 qobject_unref(options);
4184 bs->options = NULL;
4185 bs->explicit_options = NULL;
4186 bdrv_unref(bs);
4187 aio_context_release(ctx);
4188 error_propagate(errp, local_err);
4189 return NULL;
4191 close_and_fail:
4192 aio_context_acquire(ctx);
4193 bdrv_unref(bs);
4194 aio_context_release(ctx);
4195 qobject_unref(snapshot_options);
4196 qobject_unref(options);
4197 error_propagate(errp, local_err);
4198 return NULL;
4201 /* The caller must always hold the main AioContext lock. */
4202 BlockDriverState *bdrv_open(const char *filename, const char *reference,
4203 QDict *options, int flags, Error **errp)
4205 GLOBAL_STATE_CODE();
4207 return bdrv_open_inherit(filename, reference, options, flags, NULL,
4208 NULL, 0, errp);
4211 /* Return true if the NULL-terminated @list contains @str */
4212 static bool is_str_in_list(const char *str, const char *const *list)
4214 if (str && list) {
4215 int i;
4216 for (i = 0; list[i] != NULL; i++) {
4217 if (!strcmp(str, list[i])) {
4218 return true;
4222 return false;
4226 * Check that every option set in @bs->options is also set in
4227 * @new_opts.
4229 * Options listed in the common_options list and in
4230 * @bs->drv->mutable_opts are skipped.
4232 * Return 0 on success, otherwise return -EINVAL and set @errp.
4234 static int bdrv_reset_options_allowed(BlockDriverState *bs,
4235 const QDict *new_opts, Error **errp)
4237 const QDictEntry *e;
4238 /* These options are common to all block drivers and are handled
4239 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4240 const char *const common_options[] = {
4241 "node-name", "discard", "cache.direct", "cache.no-flush",
4242 "read-only", "auto-read-only", "detect-zeroes", NULL
4245 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4246 if (!qdict_haskey(new_opts, e->key) &&
4247 !is_str_in_list(e->key, common_options) &&
4248 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4249 error_setg(errp, "Option '%s' cannot be reset "
4250 "to its default value", e->key);
4251 return -EINVAL;
4255 return 0;
4259 * Returns true if @child can be reached recursively from @bs
4261 static bool bdrv_recurse_has_child(BlockDriverState *bs,
4262 BlockDriverState *child)
4264 BdrvChild *c;
4266 if (bs == child) {
4267 return true;
4270 QLIST_FOREACH(c, &bs->children, next) {
4271 if (bdrv_recurse_has_child(c->bs, child)) {
4272 return true;
4276 return false;
4280 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4281 * reopen of multiple devices.
4283 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
4284 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4285 * be created and initialized. This newly created BlockReopenQueue should be
4286 * passed back in for subsequent calls that are intended to be of the same
4287 * atomic 'set'.
4289 * bs is the BlockDriverState to add to the reopen queue.
4291 * options contains the changed options for the associated bs
4292 * (the BlockReopenQueue takes ownership)
4294 * flags contains the open flags for the associated bs
4296 * returns a pointer to bs_queue, which is either the newly allocated
4297 * bs_queue, or the existing bs_queue being used.
4299 * bs is drained here and undrained by bdrv_reopen_queue_free().
4301 * To be called with bs->aio_context locked.
4303 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
4304 BlockDriverState *bs,
4305 QDict *options,
4306 const BdrvChildClass *klass,
4307 BdrvChildRole role,
4308 bool parent_is_format,
4309 QDict *parent_options,
4310 int parent_flags,
4311 bool keep_old_opts)
4313 assert(bs != NULL);
4315 BlockReopenQueueEntry *bs_entry;
4316 BdrvChild *child;
4317 QDict *old_options, *explicit_options, *options_copy;
4318 int flags;
4319 QemuOpts *opts;
4321 GLOBAL_STATE_CODE();
4323 bdrv_drained_begin(bs);
4325 if (bs_queue == NULL) {
4326 bs_queue = g_new0(BlockReopenQueue, 1);
4327 QTAILQ_INIT(bs_queue);
4330 if (!options) {
4331 options = qdict_new();
4334 /* Check if this BlockDriverState is already in the queue */
4335 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4336 if (bs == bs_entry->state.bs) {
4337 break;
4342 * Precedence of options:
4343 * 1. Explicitly passed in options (highest)
4344 * 2. Retained from explicitly set options of bs
4345 * 3. Inherited from parent node
4346 * 4. Retained from effective options of bs
4349 /* Old explicitly set values (don't overwrite by inherited value) */
4350 if (bs_entry || keep_old_opts) {
4351 old_options = qdict_clone_shallow(bs_entry ?
4352 bs_entry->state.explicit_options :
4353 bs->explicit_options);
4354 bdrv_join_options(bs, options, old_options);
4355 qobject_unref(old_options);
4358 explicit_options = qdict_clone_shallow(options);
4360 /* Inherit from parent node */
4361 if (parent_options) {
4362 flags = 0;
4363 klass->inherit_options(role, parent_is_format, &flags, options,
4364 parent_flags, parent_options);
4365 } else {
4366 flags = bdrv_get_flags(bs);
4369 if (keep_old_opts) {
4370 /* Old values are used for options that aren't set yet */
4371 old_options = qdict_clone_shallow(bs->options);
4372 bdrv_join_options(bs, options, old_options);
4373 qobject_unref(old_options);
4376 /* We have the final set of options so let's update the flags */
4377 options_copy = qdict_clone_shallow(options);
4378 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4379 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4380 update_flags_from_options(&flags, opts);
4381 qemu_opts_del(opts);
4382 qobject_unref(options_copy);
4384 /* bdrv_open_inherit() sets and clears some additional flags internally */
4385 flags &= ~BDRV_O_PROTOCOL;
4386 if (flags & BDRV_O_RDWR) {
4387 flags |= BDRV_O_ALLOW_RDWR;
4390 if (!bs_entry) {
4391 bs_entry = g_new0(BlockReopenQueueEntry, 1);
4392 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
4393 } else {
4394 qobject_unref(bs_entry->state.options);
4395 qobject_unref(bs_entry->state.explicit_options);
4398 bs_entry->state.bs = bs;
4399 bs_entry->state.options = options;
4400 bs_entry->state.explicit_options = explicit_options;
4401 bs_entry->state.flags = flags;
4404 * If keep_old_opts is false then it means that unspecified
4405 * options must be reset to their original value. We don't allow
4406 * resetting 'backing' but we need to know if the option is
4407 * missing in order to decide if we have to return an error.
4409 if (!keep_old_opts) {
4410 bs_entry->state.backing_missing =
4411 !qdict_haskey(options, "backing") &&
4412 !qdict_haskey(options, "backing.driver");
4415 QLIST_FOREACH(child, &bs->children, next) {
4416 QDict *new_child_options = NULL;
4417 bool child_keep_old = keep_old_opts;
4419 /* reopen can only change the options of block devices that were
4420 * implicitly created and inherited options. For other (referenced)
4421 * block devices, a syntax like "backing.foo" results in an error. */
4422 if (child->bs->inherits_from != bs) {
4423 continue;
4426 /* Check if the options contain a child reference */
4427 if (qdict_haskey(options, child->name)) {
4428 const char *childref = qdict_get_try_str(options, child->name);
4430 * The current child must not be reopened if the child
4431 * reference is null or points to a different node.
4433 if (g_strcmp0(childref, child->bs->node_name)) {
4434 continue;
4437 * If the child reference points to the current child then
4438 * reopen it with its existing set of options (note that
4439 * it can still inherit new options from the parent).
4441 child_keep_old = true;
4442 } else {
4443 /* Extract child options ("child-name.*") */
4444 char *child_key_dot = g_strdup_printf("%s.", child->name);
4445 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4446 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4447 g_free(child_key_dot);
4450 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
4451 child->klass, child->role, bs->drv->is_format,
4452 options, flags, child_keep_old);
4455 return bs_queue;
4458 /* To be called with bs->aio_context locked */
4459 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4460 BlockDriverState *bs,
4461 QDict *options, bool keep_old_opts)
4463 GLOBAL_STATE_CODE();
4465 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4466 NULL, 0, keep_old_opts);
4469 void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4471 GLOBAL_STATE_CODE();
4472 if (bs_queue) {
4473 BlockReopenQueueEntry *bs_entry, *next;
4474 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4475 AioContext *ctx = bdrv_get_aio_context(bs_entry->state.bs);
4477 aio_context_acquire(ctx);
4478 bdrv_drained_end(bs_entry->state.bs);
4479 aio_context_release(ctx);
4481 qobject_unref(bs_entry->state.explicit_options);
4482 qobject_unref(bs_entry->state.options);
4483 g_free(bs_entry);
4485 g_free(bs_queue);
4490 * Reopen multiple BlockDriverStates atomically & transactionally.
4492 * The queue passed in (bs_queue) must have been built up previous
4493 * via bdrv_reopen_queue().
4495 * Reopens all BDS specified in the queue, with the appropriate
4496 * flags. All devices are prepared for reopen, and failure of any
4497 * device will cause all device changes to be abandoned, and intermediate
4498 * data cleaned up.
4500 * If all devices prepare successfully, then the changes are committed
4501 * to all devices.
4503 * All affected nodes must be drained between bdrv_reopen_queue() and
4504 * bdrv_reopen_multiple().
4506 * To be called from the main thread, with all other AioContexts unlocked.
4508 int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
4510 int ret = -1;
4511 BlockReopenQueueEntry *bs_entry, *next;
4512 AioContext *ctx;
4513 Transaction *tran = tran_new();
4514 g_autoptr(GSList) refresh_list = NULL;
4516 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
4517 assert(bs_queue != NULL);
4518 GLOBAL_STATE_CODE();
4520 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4521 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4522 aio_context_acquire(ctx);
4523 ret = bdrv_flush(bs_entry->state.bs);
4524 aio_context_release(ctx);
4525 if (ret < 0) {
4526 error_setg_errno(errp, -ret, "Error flushing drive");
4527 goto abort;
4531 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4532 assert(bs_entry->state.bs->quiesce_counter > 0);
4533 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4534 aio_context_acquire(ctx);
4535 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
4536 aio_context_release(ctx);
4537 if (ret < 0) {
4538 goto abort;
4540 bs_entry->prepared = true;
4543 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4544 BDRVReopenState *state = &bs_entry->state;
4546 refresh_list = g_slist_prepend(refresh_list, state->bs);
4547 if (state->old_backing_bs) {
4548 refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs);
4550 if (state->old_file_bs) {
4551 refresh_list = g_slist_prepend(refresh_list, state->old_file_bs);
4556 * Note that file-posix driver rely on permission update done during reopen
4557 * (even if no permission changed), because it wants "new" permissions for
4558 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4559 * in raw_reopen_prepare() which is called with "old" permissions.
4561 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4562 if (ret < 0) {
4563 goto abort;
4567 * If we reach this point, we have success and just need to apply the
4568 * changes.
4570 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4571 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4572 * children are usually goes after parents in reopen-queue, so go from last
4573 * to first element.
4575 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4576 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4577 aio_context_acquire(ctx);
4578 bdrv_reopen_commit(&bs_entry->state);
4579 aio_context_release(ctx);
4582 tran_commit(tran);
4584 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4585 BlockDriverState *bs = bs_entry->state.bs;
4587 if (bs->drv->bdrv_reopen_commit_post) {
4588 ctx = bdrv_get_aio_context(bs);
4589 aio_context_acquire(ctx);
4590 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
4591 aio_context_release(ctx);
4595 ret = 0;
4596 goto cleanup;
4598 abort:
4599 tran_abort(tran);
4600 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4601 if (bs_entry->prepared) {
4602 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4603 aio_context_acquire(ctx);
4604 bdrv_reopen_abort(&bs_entry->state);
4605 aio_context_release(ctx);
4609 cleanup:
4610 bdrv_reopen_queue_free(bs_queue);
4612 return ret;
4615 int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4616 Error **errp)
4618 AioContext *ctx = bdrv_get_aio_context(bs);
4619 BlockReopenQueue *queue;
4620 int ret;
4622 GLOBAL_STATE_CODE();
4624 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4626 if (ctx != qemu_get_aio_context()) {
4627 aio_context_release(ctx);
4629 ret = bdrv_reopen_multiple(queue, errp);
4631 if (ctx != qemu_get_aio_context()) {
4632 aio_context_acquire(ctx);
4635 return ret;
4638 int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4639 Error **errp)
4641 QDict *opts = qdict_new();
4643 GLOBAL_STATE_CODE();
4645 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4647 return bdrv_reopen(bs, opts, true, errp);
4651 * Take a BDRVReopenState and check if the value of 'backing' in the
4652 * reopen_state->options QDict is valid or not.
4654 * If 'backing' is missing from the QDict then return 0.
4656 * If 'backing' contains the node name of the backing file of
4657 * reopen_state->bs then return 0.
4659 * If 'backing' contains a different node name (or is null) then check
4660 * whether the current backing file can be replaced with the new one.
4661 * If that's the case then reopen_state->replace_backing_bs is set to
4662 * true and reopen_state->new_backing_bs contains a pointer to the new
4663 * backing BlockDriverState (or NULL).
4665 * Return 0 on success, otherwise return < 0 and set @errp.
4667 * The caller must hold the AioContext lock of @reopen_state->bs.
4668 * @reopen_state->bs can move to a different AioContext in this function.
4669 * Callers must make sure that their AioContext locking is still correct after
4670 * this.
4672 static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4673 bool is_backing, Transaction *tran,
4674 Error **errp)
4676 BlockDriverState *bs = reopen_state->bs;
4677 BlockDriverState *new_child_bs;
4678 BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) :
4679 child_bs(bs->file);
4680 const char *child_name = is_backing ? "backing" : "file";
4681 QObject *value;
4682 const char *str;
4683 AioContext *ctx, *old_ctx;
4684 int ret;
4686 GLOBAL_STATE_CODE();
4688 value = qdict_get(reopen_state->options, child_name);
4689 if (value == NULL) {
4690 return 0;
4693 switch (qobject_type(value)) {
4694 case QTYPE_QNULL:
4695 assert(is_backing); /* The 'file' option does not allow a null value */
4696 new_child_bs = NULL;
4697 break;
4698 case QTYPE_QSTRING:
4699 str = qstring_get_str(qobject_to(QString, value));
4700 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4701 if (new_child_bs == NULL) {
4702 return -EINVAL;
4703 } else if (bdrv_recurse_has_child(new_child_bs, bs)) {
4704 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4705 "cycle", str, child_name, bs->node_name);
4706 return -EINVAL;
4708 break;
4709 default:
4711 * The options QDict has been flattened, so 'backing' and 'file'
4712 * do not allow any other data type here.
4714 g_assert_not_reached();
4717 if (old_child_bs == new_child_bs) {
4718 return 0;
4721 if (old_child_bs) {
4722 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
4723 return 0;
4726 if (old_child_bs->implicit) {
4727 error_setg(errp, "Cannot replace implicit %s child of %s",
4728 child_name, bs->node_name);
4729 return -EPERM;
4733 if (bs->drv->is_filter && !old_child_bs) {
4735 * Filters always have a file or a backing child, so we are trying to
4736 * change wrong child
4738 error_setg(errp, "'%s' is a %s filter node that does not support a "
4739 "%s child", bs->node_name, bs->drv->format_name, child_name);
4740 return -EINVAL;
4743 if (is_backing) {
4744 reopen_state->old_backing_bs = old_child_bs;
4745 } else {
4746 reopen_state->old_file_bs = old_child_bs;
4749 old_ctx = bdrv_get_aio_context(bs);
4750 ctx = bdrv_get_aio_context(new_child_bs);
4751 if (old_ctx != ctx) {
4752 aio_context_release(old_ctx);
4753 aio_context_acquire(ctx);
4756 ret = bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4757 tran, errp);
4759 if (old_ctx != ctx) {
4760 aio_context_release(ctx);
4761 aio_context_acquire(old_ctx);
4764 return ret;
4768 * Prepares a BlockDriverState for reopen. All changes are staged in the
4769 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4770 * the block driver layer .bdrv_reopen_prepare()
4772 * bs is the BlockDriverState to reopen
4773 * flags are the new open flags
4774 * queue is the reopen queue
4776 * Returns 0 on success, non-zero on error. On error errp will be set
4777 * as well.
4779 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4780 * It is the responsibility of the caller to then call the abort() or
4781 * commit() for any other BDS that have been left in a prepare() state
4783 * The caller must hold the AioContext lock of @reopen_state->bs.
4785 static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
4786 BlockReopenQueue *queue,
4787 Transaction *change_child_tran, Error **errp)
4789 int ret = -1;
4790 int old_flags;
4791 Error *local_err = NULL;
4792 BlockDriver *drv;
4793 QemuOpts *opts;
4794 QDict *orig_reopen_opts;
4795 char *discard = NULL;
4796 bool read_only;
4797 bool drv_prepared = false;
4799 assert(reopen_state != NULL);
4800 assert(reopen_state->bs->drv != NULL);
4801 GLOBAL_STATE_CODE();
4802 drv = reopen_state->bs->drv;
4804 /* This function and each driver's bdrv_reopen_prepare() remove
4805 * entries from reopen_state->options as they are processed, so
4806 * we need to make a copy of the original QDict. */
4807 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4809 /* Process generic block layer options */
4810 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4811 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
4812 ret = -EINVAL;
4813 goto error;
4816 /* This was already called in bdrv_reopen_queue_child() so the flags
4817 * are up-to-date. This time we simply want to remove the options from
4818 * QemuOpts in order to indicate that they have been processed. */
4819 old_flags = reopen_state->flags;
4820 update_flags_from_options(&reopen_state->flags, opts);
4821 assert(old_flags == reopen_state->flags);
4823 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
4824 if (discard != NULL) {
4825 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4826 error_setg(errp, "Invalid discard option");
4827 ret = -EINVAL;
4828 goto error;
4832 reopen_state->detect_zeroes =
4833 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4834 if (local_err) {
4835 error_propagate(errp, local_err);
4836 ret = -EINVAL;
4837 goto error;
4840 /* All other options (including node-name and driver) must be unchanged.
4841 * Put them back into the QDict, so that they are checked at the end
4842 * of this function. */
4843 qemu_opts_to_qdict(opts, reopen_state->options);
4845 /* If we are to stay read-only, do not allow permission change
4846 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4847 * not set, or if the BDS still has copy_on_read enabled */
4848 read_only = !(reopen_state->flags & BDRV_O_RDWR);
4849 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
4850 if (local_err) {
4851 error_propagate(errp, local_err);
4852 goto error;
4855 if (drv->bdrv_reopen_prepare) {
4857 * If a driver-specific option is missing, it means that we
4858 * should reset it to its default value.
4859 * But not all options allow that, so we need to check it first.
4861 ret = bdrv_reset_options_allowed(reopen_state->bs,
4862 reopen_state->options, errp);
4863 if (ret) {
4864 goto error;
4867 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4868 if (ret) {
4869 if (local_err != NULL) {
4870 error_propagate(errp, local_err);
4871 } else {
4872 bdrv_refresh_filename(reopen_state->bs);
4873 error_setg(errp, "failed while preparing to reopen image '%s'",
4874 reopen_state->bs->filename);
4876 goto error;
4878 } else {
4879 /* It is currently mandatory to have a bdrv_reopen_prepare()
4880 * handler for each supported drv. */
4881 error_setg(errp, "Block format '%s' used by node '%s' "
4882 "does not support reopening files", drv->format_name,
4883 bdrv_get_device_or_node_name(reopen_state->bs));
4884 ret = -1;
4885 goto error;
4888 drv_prepared = true;
4891 * We must provide the 'backing' option if the BDS has a backing
4892 * file or if the image file has a backing file name as part of
4893 * its metadata. Otherwise the 'backing' option can be omitted.
4895 if (drv->supports_backing && reopen_state->backing_missing &&
4896 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
4897 error_setg(errp, "backing is missing for '%s'",
4898 reopen_state->bs->node_name);
4899 ret = -EINVAL;
4900 goto error;
4904 * Allow changing the 'backing' option. The new value can be
4905 * either a reference to an existing node (using its node name)
4906 * or NULL to simply detach the current backing file.
4908 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
4909 change_child_tran, errp);
4910 if (ret < 0) {
4911 goto error;
4913 qdict_del(reopen_state->options, "backing");
4915 /* Allow changing the 'file' option. In this case NULL is not allowed */
4916 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
4917 change_child_tran, errp);
4918 if (ret < 0) {
4919 goto error;
4921 qdict_del(reopen_state->options, "file");
4923 /* Options that are not handled are only okay if they are unchanged
4924 * compared to the old state. It is expected that some options are only
4925 * used for the initial open, but not reopen (e.g. filename) */
4926 if (qdict_size(reopen_state->options)) {
4927 const QDictEntry *entry = qdict_first(reopen_state->options);
4929 do {
4930 QObject *new = entry->value;
4931 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
4933 /* Allow child references (child_name=node_name) as long as they
4934 * point to the current child (i.e. everything stays the same). */
4935 if (qobject_type(new) == QTYPE_QSTRING) {
4936 BdrvChild *child;
4937 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4938 if (!strcmp(child->name, entry->key)) {
4939 break;
4943 if (child) {
4944 if (!strcmp(child->bs->node_name,
4945 qstring_get_str(qobject_to(QString, new)))) {
4946 continue; /* Found child with this name, skip option */
4952 * TODO: When using -drive to specify blockdev options, all values
4953 * will be strings; however, when using -blockdev, blockdev-add or
4954 * filenames using the json:{} pseudo-protocol, they will be
4955 * correctly typed.
4956 * In contrast, reopening options are (currently) always strings
4957 * (because you can only specify them through qemu-io; all other
4958 * callers do not specify any options).
4959 * Therefore, when using anything other than -drive to create a BDS,
4960 * this cannot detect non-string options as unchanged, because
4961 * qobject_is_equal() always returns false for objects of different
4962 * type. In the future, this should be remedied by correctly typing
4963 * all options. For now, this is not too big of an issue because
4964 * the user can simply omit options which cannot be changed anyway,
4965 * so they will stay unchanged.
4967 if (!qobject_is_equal(new, old)) {
4968 error_setg(errp, "Cannot change the option '%s'", entry->key);
4969 ret = -EINVAL;
4970 goto error;
4972 } while ((entry = qdict_next(reopen_state->options, entry)));
4975 ret = 0;
4977 /* Restore the original reopen_state->options QDict */
4978 qobject_unref(reopen_state->options);
4979 reopen_state->options = qobject_ref(orig_reopen_opts);
4981 error:
4982 if (ret < 0 && drv_prepared) {
4983 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4984 * call drv->bdrv_reopen_abort() before signaling an error
4985 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4986 * when the respective bdrv_reopen_prepare() has failed) */
4987 if (drv->bdrv_reopen_abort) {
4988 drv->bdrv_reopen_abort(reopen_state);
4991 qemu_opts_del(opts);
4992 qobject_unref(orig_reopen_opts);
4993 g_free(discard);
4994 return ret;
4998 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4999 * makes them final by swapping the staging BlockDriverState contents into
5000 * the active BlockDriverState contents.
5002 static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
5004 BlockDriver *drv;
5005 BlockDriverState *bs;
5006 BdrvChild *child;
5008 assert(reopen_state != NULL);
5009 bs = reopen_state->bs;
5010 drv = bs->drv;
5011 assert(drv != NULL);
5012 GLOBAL_STATE_CODE();
5014 /* If there are any driver level actions to take */
5015 if (drv->bdrv_reopen_commit) {
5016 drv->bdrv_reopen_commit(reopen_state);
5019 /* set BDS specific flags now */
5020 qobject_unref(bs->explicit_options);
5021 qobject_unref(bs->options);
5022 qobject_ref(reopen_state->explicit_options);
5023 qobject_ref(reopen_state->options);
5025 bs->explicit_options = reopen_state->explicit_options;
5026 bs->options = reopen_state->options;
5027 bs->open_flags = reopen_state->flags;
5028 bs->detect_zeroes = reopen_state->detect_zeroes;
5030 /* Remove child references from bs->options and bs->explicit_options.
5031 * Child options were already removed in bdrv_reopen_queue_child() */
5032 QLIST_FOREACH(child, &bs->children, next) {
5033 qdict_del(bs->explicit_options, child->name);
5034 qdict_del(bs->options, child->name);
5036 /* backing is probably removed, so it's not handled by previous loop */
5037 qdict_del(bs->explicit_options, "backing");
5038 qdict_del(bs->options, "backing");
5040 bdrv_graph_rdlock_main_loop();
5041 bdrv_refresh_limits(bs, NULL, NULL);
5042 bdrv_graph_rdunlock_main_loop();
5043 bdrv_refresh_total_sectors(bs, bs->total_sectors);
5047 * Abort the reopen, and delete and free the staged changes in
5048 * reopen_state
5050 static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
5052 BlockDriver *drv;
5054 assert(reopen_state != NULL);
5055 drv = reopen_state->bs->drv;
5056 assert(drv != NULL);
5057 GLOBAL_STATE_CODE();
5059 if (drv->bdrv_reopen_abort) {
5060 drv->bdrv_reopen_abort(reopen_state);
5065 static void bdrv_close(BlockDriverState *bs)
5067 BdrvAioNotifier *ban, *ban_next;
5068 BdrvChild *child, *next;
5070 GLOBAL_STATE_CODE();
5071 assert(!bs->refcnt);
5073 bdrv_drained_begin(bs); /* complete I/O */
5074 bdrv_flush(bs);
5075 bdrv_drain(bs); /* in case flush left pending I/O */
5077 if (bs->drv) {
5078 if (bs->drv->bdrv_close) {
5079 /* Must unfreeze all children, so bdrv_unref_child() works */
5080 bs->drv->bdrv_close(bs);
5082 bs->drv = NULL;
5085 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
5086 bdrv_unref_child(bs, child);
5089 assert(!bs->backing);
5090 assert(!bs->file);
5091 g_free(bs->opaque);
5092 bs->opaque = NULL;
5093 qatomic_set(&bs->copy_on_read, 0);
5094 bs->backing_file[0] = '\0';
5095 bs->backing_format[0] = '\0';
5096 bs->total_sectors = 0;
5097 bs->encrypted = false;
5098 bs->sg = false;
5099 qobject_unref(bs->options);
5100 qobject_unref(bs->explicit_options);
5101 bs->options = NULL;
5102 bs->explicit_options = NULL;
5103 qobject_unref(bs->full_open_options);
5104 bs->full_open_options = NULL;
5105 g_free(bs->block_status_cache);
5106 bs->block_status_cache = NULL;
5108 bdrv_release_named_dirty_bitmaps(bs);
5109 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
5111 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
5112 g_free(ban);
5114 QLIST_INIT(&bs->aio_notifiers);
5115 bdrv_drained_end(bs);
5118 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
5119 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
5120 * gets called.
5122 if (bs->quiesce_counter) {
5123 bdrv_drain_all_end_quiesce(bs);
5127 void bdrv_close_all(void)
5129 GLOBAL_STATE_CODE();
5130 assert(job_next(NULL) == NULL);
5132 /* Drop references from requests still in flight, such as canceled block
5133 * jobs whose AIO context has not been polled yet */
5134 bdrv_drain_all();
5136 blk_remove_all_bs();
5137 blockdev_close_all_bdrv_states();
5139 assert(QTAILQ_EMPTY(&all_bdrv_states));
5142 static bool GRAPH_RDLOCK should_update_child(BdrvChild *c, BlockDriverState *to)
5144 GQueue *queue;
5145 GHashTable *found;
5146 bool ret;
5148 if (c->klass->stay_at_node) {
5149 return false;
5152 /* If the child @c belongs to the BDS @to, replacing the current
5153 * c->bs by @to would mean to create a loop.
5155 * Such a case occurs when appending a BDS to a backing chain.
5156 * For instance, imagine the following chain:
5158 * guest device -> node A -> further backing chain...
5160 * Now we create a new BDS B which we want to put on top of this
5161 * chain, so we first attach A as its backing node:
5163 * node B
5166 * guest device -> node A -> further backing chain...
5168 * Finally we want to replace A by B. When doing that, we want to
5169 * replace all pointers to A by pointers to B -- except for the
5170 * pointer from B because (1) that would create a loop, and (2)
5171 * that pointer should simply stay intact:
5173 * guest device -> node B
5176 * node A -> further backing chain...
5178 * In general, when replacing a node A (c->bs) by a node B (@to),
5179 * if A is a child of B, that means we cannot replace A by B there
5180 * because that would create a loop. Silently detaching A from B
5181 * is also not really an option. So overall just leaving A in
5182 * place there is the most sensible choice.
5184 * We would also create a loop in any cases where @c is only
5185 * indirectly referenced by @to. Prevent this by returning false
5186 * if @c is found (by breadth-first search) anywhere in the whole
5187 * subtree of @to.
5190 ret = true;
5191 found = g_hash_table_new(NULL, NULL);
5192 g_hash_table_add(found, to);
5193 queue = g_queue_new();
5194 g_queue_push_tail(queue, to);
5196 while (!g_queue_is_empty(queue)) {
5197 BlockDriverState *v = g_queue_pop_head(queue);
5198 BdrvChild *c2;
5200 QLIST_FOREACH(c2, &v->children, next) {
5201 if (c2 == c) {
5202 ret = false;
5203 break;
5206 if (g_hash_table_contains(found, c2->bs)) {
5207 continue;
5210 g_queue_push_tail(queue, c2->bs);
5211 g_hash_table_add(found, c2->bs);
5215 g_queue_free(queue);
5216 g_hash_table_destroy(found);
5218 return ret;
5221 static void bdrv_remove_child_commit(void *opaque)
5223 GLOBAL_STATE_CODE();
5224 bdrv_child_free(opaque);
5227 static TransactionActionDrv bdrv_remove_child_drv = {
5228 .commit = bdrv_remove_child_commit,
5232 * Function doesn't update permissions, caller is responsible for this.
5234 * @child->bs (if non-NULL) must be drained.
5236 static void GRAPH_WRLOCK bdrv_remove_child(BdrvChild *child, Transaction *tran)
5238 if (!child) {
5239 return;
5242 if (child->bs) {
5243 assert(child->quiesced_parent);
5244 bdrv_replace_child_tran(child, NULL, tran);
5247 tran_add(tran, &bdrv_remove_child_drv, child);
5251 * Both @from and @to (if non-NULL) must be drained. @to must be kept drained
5252 * until the transaction is completed.
5254 static int GRAPH_WRLOCK
5255 bdrv_replace_node_noperm(BlockDriverState *from,
5256 BlockDriverState *to,
5257 bool auto_skip, Transaction *tran,
5258 Error **errp)
5260 BdrvChild *c, *next;
5262 GLOBAL_STATE_CODE();
5264 assert(from->quiesce_counter);
5265 assert(to->quiesce_counter);
5267 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5268 assert(c->bs == from);
5269 if (!should_update_child(c, to)) {
5270 if (auto_skip) {
5271 continue;
5273 error_setg(errp, "Should not change '%s' link to '%s'",
5274 c->name, from->node_name);
5275 return -EINVAL;
5277 if (c->frozen) {
5278 error_setg(errp, "Cannot change '%s' link to '%s'",
5279 c->name, from->node_name);
5280 return -EPERM;
5282 bdrv_replace_child_tran(c, to, tran);
5285 return 0;
5289 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5290 * if it creates a parent-child relation loop or if parent is block-job.
5292 * With auto_skip=false the error is returned if from has a parent which should
5293 * not be updated.
5295 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5296 * case backing link of the cow-parent of @to is removed.
5298 static int bdrv_replace_node_common(BlockDriverState *from,
5299 BlockDriverState *to,
5300 bool auto_skip, bool detach_subchain,
5301 Error **errp)
5303 Transaction *tran = tran_new();
5304 g_autoptr(GSList) refresh_list = NULL;
5305 BlockDriverState *to_cow_parent = NULL;
5306 int ret;
5308 GLOBAL_STATE_CODE();
5310 if (detach_subchain) {
5311 assert(bdrv_chain_contains(from, to));
5312 assert(from != to);
5313 for (to_cow_parent = from;
5314 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5315 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5321 /* Make sure that @from doesn't go away until we have successfully attached
5322 * all of its parents to @to. */
5323 bdrv_ref(from);
5325 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
5326 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
5327 bdrv_drained_begin(from);
5328 bdrv_drained_begin(to);
5330 bdrv_graph_wrlock(to);
5333 * Do the replacement without permission update.
5334 * Replacement may influence the permissions, we should calculate new
5335 * permissions based on new graph. If we fail, we'll roll-back the
5336 * replacement.
5338 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5339 if (ret < 0) {
5340 goto out;
5343 if (detach_subchain) {
5344 /* to_cow_parent is already drained because from is drained */
5345 bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent), tran);
5348 refresh_list = g_slist_prepend(refresh_list, to);
5349 refresh_list = g_slist_prepend(refresh_list, from);
5351 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5352 if (ret < 0) {
5353 goto out;
5356 ret = 0;
5358 out:
5359 bdrv_graph_wrunlock();
5360 tran_finalize(tran, ret);
5362 bdrv_drained_end(to);
5363 bdrv_drained_end(from);
5364 bdrv_unref(from);
5366 return ret;
5369 int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5370 Error **errp)
5372 GLOBAL_STATE_CODE();
5374 return bdrv_replace_node_common(from, to, true, false, errp);
5377 int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5379 GLOBAL_STATE_CODE();
5381 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5382 errp);
5386 * Add new bs contents at the top of an image chain while the chain is
5387 * live, while keeping required fields on the top layer.
5389 * This will modify the BlockDriverState fields, and swap contents
5390 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5392 * bs_new must not be attached to a BlockBackend and must not have backing
5393 * child.
5395 * This function does not create any image files.
5397 * The caller must hold the AioContext lock for @bs_top.
5399 int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5400 Error **errp)
5402 int ret;
5403 BdrvChild *child;
5404 Transaction *tran = tran_new();
5405 AioContext *old_context, *new_context = NULL;
5406 bool drained = false;
5408 GLOBAL_STATE_CODE();
5410 assert(!bs_new->backing);
5412 old_context = bdrv_get_aio_context(bs_top);
5414 child = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5415 &child_of_bds, bdrv_backing_role(bs_new),
5416 tran, errp);
5417 if (!child) {
5418 ret = -EINVAL;
5419 goto out;
5423 * bdrv_attach_child_noperm could change the AioContext of bs_top.
5424 * bdrv_replace_node_noperm calls bdrv_drained_begin, so let's temporarily
5425 * hold the new AioContext, since bdrv_drained_begin calls BDRV_POLL_WHILE
5426 * that assumes the new lock is taken.
5428 new_context = bdrv_get_aio_context(bs_top);
5430 if (old_context != new_context) {
5431 aio_context_release(old_context);
5432 aio_context_acquire(new_context);
5435 bdrv_drained_begin(bs_new);
5436 bdrv_drained_begin(bs_top);
5437 drained = true;
5439 bdrv_graph_wrlock(bs_new);
5440 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
5441 bdrv_graph_wrunlock();
5442 if (ret < 0) {
5443 goto out;
5446 ret = bdrv_refresh_perms(bs_new, tran, errp);
5447 out:
5448 tran_finalize(tran, ret);
5450 bdrv_graph_rdlock_main_loop();
5451 bdrv_refresh_limits(bs_top, NULL, NULL);
5452 bdrv_graph_rdunlock_main_loop();
5454 if (drained) {
5455 bdrv_drained_end(bs_top);
5456 bdrv_drained_end(bs_new);
5459 if (new_context && old_context != new_context) {
5460 aio_context_release(new_context);
5461 aio_context_acquire(old_context);
5464 return ret;
5467 /* Not for empty child */
5468 int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5469 Error **errp)
5471 int ret;
5472 Transaction *tran = tran_new();
5473 g_autoptr(GSList) refresh_list = NULL;
5474 BlockDriverState *old_bs = child->bs;
5476 GLOBAL_STATE_CODE();
5478 bdrv_ref(old_bs);
5479 bdrv_drained_begin(old_bs);
5480 bdrv_drained_begin(new_bs);
5481 bdrv_graph_wrlock(new_bs);
5483 bdrv_replace_child_tran(child, new_bs, tran);
5485 refresh_list = g_slist_prepend(refresh_list, old_bs);
5486 refresh_list = g_slist_prepend(refresh_list, new_bs);
5488 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5489 bdrv_graph_wrunlock();
5491 tran_finalize(tran, ret);
5493 bdrv_drained_end(old_bs);
5494 bdrv_drained_end(new_bs);
5495 bdrv_unref(old_bs);
5497 return ret;
5500 static void bdrv_delete(BlockDriverState *bs)
5502 assert(bdrv_op_blocker_is_empty(bs));
5503 assert(!bs->refcnt);
5504 GLOBAL_STATE_CODE();
5506 /* remove from list, if necessary */
5507 if (bs->node_name[0] != '\0') {
5508 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5510 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5512 bdrv_close(bs);
5514 qemu_mutex_destroy(&bs->reqs_lock);
5516 g_free(bs);
5521 * Replace @bs by newly created block node.
5523 * @options is a QDict of options to pass to the block drivers, or NULL for an
5524 * empty set of options. The reference to the QDict belongs to the block layer
5525 * after the call (even on failure), so if the caller intends to reuse the
5526 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
5528 * The caller holds the AioContext lock for @bs. It must make sure that @bs
5529 * stays in the same AioContext, i.e. @options must not refer to nodes in a
5530 * different AioContext.
5532 BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
5533 int flags, Error **errp)
5535 ERRP_GUARD();
5536 int ret;
5537 AioContext *ctx = bdrv_get_aio_context(bs);
5538 BlockDriverState *new_node_bs = NULL;
5539 const char *drvname, *node_name;
5540 BlockDriver *drv;
5542 drvname = qdict_get_try_str(options, "driver");
5543 if (!drvname) {
5544 error_setg(errp, "driver is not specified");
5545 goto fail;
5548 drv = bdrv_find_format(drvname);
5549 if (!drv) {
5550 error_setg(errp, "Unknown driver: '%s'", drvname);
5551 goto fail;
5554 node_name = qdict_get_try_str(options, "node-name");
5556 GLOBAL_STATE_CODE();
5558 aio_context_release(ctx);
5559 aio_context_acquire(qemu_get_aio_context());
5560 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5561 errp);
5562 aio_context_release(qemu_get_aio_context());
5563 aio_context_acquire(ctx);
5564 assert(bdrv_get_aio_context(bs) == ctx);
5566 options = NULL; /* bdrv_new_open_driver() eats options */
5567 if (!new_node_bs) {
5568 error_prepend(errp, "Could not create node: ");
5569 goto fail;
5572 bdrv_drained_begin(bs);
5573 ret = bdrv_replace_node(bs, new_node_bs, errp);
5574 bdrv_drained_end(bs);
5576 if (ret < 0) {
5577 error_prepend(errp, "Could not replace node: ");
5578 goto fail;
5581 return new_node_bs;
5583 fail:
5584 qobject_unref(options);
5585 bdrv_unref(new_node_bs);
5586 return NULL;
5590 * Run consistency checks on an image
5592 * Returns 0 if the check could be completed (it doesn't mean that the image is
5593 * free of errors) or -errno when an internal error occurred. The results of the
5594 * check are stored in res.
5596 int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5597 BdrvCheckResult *res, BdrvCheckMode fix)
5599 IO_CODE();
5600 assert_bdrv_graph_readable();
5601 if (bs->drv == NULL) {
5602 return -ENOMEDIUM;
5604 if (bs->drv->bdrv_co_check == NULL) {
5605 return -ENOTSUP;
5608 memset(res, 0, sizeof(*res));
5609 return bs->drv->bdrv_co_check(bs, res, fix);
5613 * Return values:
5614 * 0 - success
5615 * -EINVAL - backing format specified, but no file
5616 * -ENOSPC - can't update the backing file because no space is left in the
5617 * image file header
5618 * -ENOTSUP - format driver doesn't support changing the backing file
5620 int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
5621 const char *backing_fmt, bool require)
5623 BlockDriver *drv = bs->drv;
5624 int ret;
5626 GLOBAL_STATE_CODE();
5628 if (!drv) {
5629 return -ENOMEDIUM;
5632 /* Backing file format doesn't make sense without a backing file */
5633 if (backing_fmt && !backing_file) {
5634 return -EINVAL;
5637 if (require && backing_file && !backing_fmt) {
5638 return -EINVAL;
5641 if (drv->bdrv_change_backing_file != NULL) {
5642 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
5643 } else {
5644 ret = -ENOTSUP;
5647 if (ret == 0) {
5648 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5649 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
5650 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5651 backing_file ?: "");
5653 return ret;
5657 * Finds the first non-filter node above bs in the chain between
5658 * active and bs. The returned node is either an immediate parent of
5659 * bs, or there are only filter nodes between the two.
5661 * Returns NULL if bs is not found in active's image chain,
5662 * or if active == bs.
5664 * Returns the bottommost base image if bs == NULL.
5666 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5667 BlockDriverState *bs)
5670 GLOBAL_STATE_CODE();
5672 bs = bdrv_skip_filters(bs);
5673 active = bdrv_skip_filters(active);
5675 while (active) {
5676 BlockDriverState *next = bdrv_backing_chain_next(active);
5677 if (bs == next) {
5678 return active;
5680 active = next;
5683 return NULL;
5686 /* Given a BDS, searches for the base layer. */
5687 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5689 GLOBAL_STATE_CODE();
5691 return bdrv_find_overlay(bs, NULL);
5695 * Return true if at least one of the COW (backing) and filter links
5696 * between @bs and @base is frozen. @errp is set if that's the case.
5697 * @base must be reachable from @bs, or NULL.
5699 bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5700 Error **errp)
5702 BlockDriverState *i;
5703 BdrvChild *child;
5705 GLOBAL_STATE_CODE();
5707 for (i = bs; i != base; i = child_bs(child)) {
5708 child = bdrv_filter_or_cow_child(i);
5710 if (child && child->frozen) {
5711 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
5712 child->name, i->node_name, child->bs->node_name);
5713 return true;
5717 return false;
5721 * Freeze all COW (backing) and filter links between @bs and @base.
5722 * If any of the links is already frozen the operation is aborted and
5723 * none of the links are modified.
5724 * @base must be reachable from @bs, or NULL.
5725 * Returns 0 on success. On failure returns < 0 and sets @errp.
5727 int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5728 Error **errp)
5730 BlockDriverState *i;
5731 BdrvChild *child;
5733 GLOBAL_STATE_CODE();
5735 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5736 return -EPERM;
5739 for (i = bs; i != base; i = child_bs(child)) {
5740 child = bdrv_filter_or_cow_child(i);
5741 if (child && child->bs->never_freeze) {
5742 error_setg(errp, "Cannot freeze '%s' link to '%s'",
5743 child->name, child->bs->node_name);
5744 return -EPERM;
5748 for (i = bs; i != base; i = child_bs(child)) {
5749 child = bdrv_filter_or_cow_child(i);
5750 if (child) {
5751 child->frozen = true;
5755 return 0;
5759 * Unfreeze all COW (backing) and filter links between @bs and @base.
5760 * The caller must ensure that all links are frozen before using this
5761 * function.
5762 * @base must be reachable from @bs, or NULL.
5764 void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5766 BlockDriverState *i;
5767 BdrvChild *child;
5769 GLOBAL_STATE_CODE();
5771 for (i = bs; i != base; i = child_bs(child)) {
5772 child = bdrv_filter_or_cow_child(i);
5773 if (child) {
5774 assert(child->frozen);
5775 child->frozen = false;
5781 * Drops images above 'base' up to and including 'top', and sets the image
5782 * above 'top' to have base as its backing file.
5784 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5785 * information in 'bs' can be properly updated.
5787 * E.g., this will convert the following chain:
5788 * bottom <- base <- intermediate <- top <- active
5790 * to
5792 * bottom <- base <- active
5794 * It is allowed for bottom==base, in which case it converts:
5796 * base <- intermediate <- top <- active
5798 * to
5800 * base <- active
5802 * If backing_file_str is non-NULL, it will be used when modifying top's
5803 * overlay image metadata.
5805 * Error conditions:
5806 * if active == top, that is considered an error
5809 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5810 const char *backing_file_str)
5812 BlockDriverState *explicit_top = top;
5813 bool update_inherits_from;
5814 BdrvChild *c;
5815 Error *local_err = NULL;
5816 int ret = -EIO;
5817 g_autoptr(GSList) updated_children = NULL;
5818 GSList *p;
5820 GLOBAL_STATE_CODE();
5822 bdrv_ref(top);
5823 bdrv_drained_begin(base);
5825 if (!top->drv || !base->drv) {
5826 goto exit;
5829 /* Make sure that base is in the backing chain of top */
5830 if (!bdrv_chain_contains(top, base)) {
5831 goto exit;
5834 /* If 'base' recursively inherits from 'top' then we should set
5835 * base->inherits_from to top->inherits_from after 'top' and all
5836 * other intermediate nodes have been dropped.
5837 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5838 * it because no one inherits from it. We use explicit_top for that. */
5839 explicit_top = bdrv_skip_implicit_filters(explicit_top);
5840 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5842 /* success - we can delete the intermediate states, and link top->base */
5843 if (!backing_file_str) {
5844 bdrv_refresh_filename(base);
5845 backing_file_str = base->filename;
5848 QLIST_FOREACH(c, &top->parents, next_parent) {
5849 updated_children = g_slist_prepend(updated_children, c);
5853 * It seems correct to pass detach_subchain=true here, but it triggers
5854 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5855 * another drained section, which modify the graph (for example, removing
5856 * the child, which we keep in updated_children list). So, it's a TODO.
5858 * Note, bug triggered if pass detach_subchain=true here and run
5859 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5860 * That's a FIXME.
5862 bdrv_replace_node_common(top, base, false, false, &local_err);
5863 if (local_err) {
5864 error_report_err(local_err);
5865 goto exit;
5868 for (p = updated_children; p; p = p->next) {
5869 c = p->data;
5871 if (c->klass->update_filename) {
5872 ret = c->klass->update_filename(c, base, backing_file_str,
5873 &local_err);
5874 if (ret < 0) {
5876 * TODO: Actually, we want to rollback all previous iterations
5877 * of this loop, and (which is almost impossible) previous
5878 * bdrv_replace_node()...
5880 * Note, that c->klass->update_filename may lead to permission
5881 * update, so it's a bad idea to call it inside permission
5882 * update transaction of bdrv_replace_node.
5884 error_report_err(local_err);
5885 goto exit;
5890 if (update_inherits_from) {
5891 base->inherits_from = explicit_top->inherits_from;
5894 ret = 0;
5895 exit:
5896 bdrv_drained_end(base);
5897 bdrv_unref(top);
5898 return ret;
5902 * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that
5903 * sums the size of all data-bearing children. (This excludes backing
5904 * children.)
5906 static int64_t coroutine_fn GRAPH_RDLOCK
5907 bdrv_sum_allocated_file_size(BlockDriverState *bs)
5909 BdrvChild *child;
5910 int64_t child_size, sum = 0;
5912 QLIST_FOREACH(child, &bs->children, next) {
5913 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5914 BDRV_CHILD_FILTERED))
5916 child_size = bdrv_co_get_allocated_file_size(child->bs);
5917 if (child_size < 0) {
5918 return child_size;
5920 sum += child_size;
5924 return sum;
5928 * Length of a allocated file in bytes. Sparse files are counted by actual
5929 * allocated space. Return < 0 if error or unknown.
5931 int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs)
5933 BlockDriver *drv = bs->drv;
5934 IO_CODE();
5935 assert_bdrv_graph_readable();
5937 if (!drv) {
5938 return -ENOMEDIUM;
5940 if (drv->bdrv_co_get_allocated_file_size) {
5941 return drv->bdrv_co_get_allocated_file_size(bs);
5944 if (drv->bdrv_file_open) {
5946 * Protocol drivers default to -ENOTSUP (most of their data is
5947 * not stored in any of their children (if they even have any),
5948 * so there is no generic way to figure it out).
5950 return -ENOTSUP;
5951 } else if (drv->is_filter) {
5952 /* Filter drivers default to the size of their filtered child */
5953 return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs));
5954 } else {
5955 /* Other drivers default to summing their children's sizes */
5956 return bdrv_sum_allocated_file_size(bs);
5961 * bdrv_measure:
5962 * @drv: Format driver
5963 * @opts: Creation options for new image
5964 * @in_bs: Existing image containing data for new image (may be NULL)
5965 * @errp: Error object
5966 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5967 * or NULL on error
5969 * Calculate file size required to create a new image.
5971 * If @in_bs is given then space for allocated clusters and zero clusters
5972 * from that image are included in the calculation. If @opts contains a
5973 * backing file that is shared by @in_bs then backing clusters may be omitted
5974 * from the calculation.
5976 * If @in_bs is NULL then the calculation includes no allocated clusters
5977 * unless a preallocation option is given in @opts.
5979 * Note that @in_bs may use a different BlockDriver from @drv.
5981 * If an error occurs the @errp pointer is set.
5983 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5984 BlockDriverState *in_bs, Error **errp)
5986 IO_CODE();
5987 if (!drv->bdrv_measure) {
5988 error_setg(errp, "Block driver '%s' does not support size measurement",
5989 drv->format_name);
5990 return NULL;
5993 return drv->bdrv_measure(opts, in_bs, errp);
5997 * Return number of sectors on success, -errno on error.
5999 int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs)
6001 BlockDriver *drv = bs->drv;
6002 IO_CODE();
6003 assert_bdrv_graph_readable();
6005 if (!drv)
6006 return -ENOMEDIUM;
6008 if (bs->bl.has_variable_length) {
6009 int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors);
6010 if (ret < 0) {
6011 return ret;
6014 return bs->total_sectors;
6018 * This wrapper is written by hand because this function is in the hot I/O path,
6019 * via blk_get_geometry.
6021 int64_t coroutine_mixed_fn bdrv_nb_sectors(BlockDriverState *bs)
6023 BlockDriver *drv = bs->drv;
6024 IO_CODE();
6026 if (!drv)
6027 return -ENOMEDIUM;
6029 if (bs->bl.has_variable_length) {
6030 int ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
6031 if (ret < 0) {
6032 return ret;
6036 return bs->total_sectors;
6040 * Return length in bytes on success, -errno on error.
6041 * The length is always a multiple of BDRV_SECTOR_SIZE.
6043 int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs)
6045 int64_t ret;
6046 IO_CODE();
6047 assert_bdrv_graph_readable();
6049 ret = bdrv_co_nb_sectors(bs);
6050 if (ret < 0) {
6051 return ret;
6053 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
6054 return -EFBIG;
6056 return ret * BDRV_SECTOR_SIZE;
6059 bool bdrv_is_sg(BlockDriverState *bs)
6061 IO_CODE();
6062 return bs->sg;
6066 * Return whether the given node supports compressed writes.
6068 bool bdrv_supports_compressed_writes(BlockDriverState *bs)
6070 BlockDriverState *filtered;
6071 IO_CODE();
6073 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
6074 return false;
6077 filtered = bdrv_filter_bs(bs);
6078 if (filtered) {
6080 * Filters can only forward compressed writes, so we have to
6081 * check the child.
6083 return bdrv_supports_compressed_writes(filtered);
6086 return true;
6089 const char *bdrv_get_format_name(BlockDriverState *bs)
6091 IO_CODE();
6092 return bs->drv ? bs->drv->format_name : NULL;
6095 static int qsort_strcmp(const void *a, const void *b)
6097 return strcmp(*(char *const *)a, *(char *const *)b);
6100 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
6101 void *opaque, bool read_only)
6103 BlockDriver *drv;
6104 int count = 0;
6105 int i;
6106 const char **formats = NULL;
6108 GLOBAL_STATE_CODE();
6110 QLIST_FOREACH(drv, &bdrv_drivers, list) {
6111 if (drv->format_name) {
6112 bool found = false;
6113 int i = count;
6115 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
6116 continue;
6119 while (formats && i && !found) {
6120 found = !strcmp(formats[--i], drv->format_name);
6123 if (!found) {
6124 formats = g_renew(const char *, formats, count + 1);
6125 formats[count++] = drv->format_name;
6130 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
6131 const char *format_name = block_driver_modules[i].format_name;
6133 if (format_name) {
6134 bool found = false;
6135 int j = count;
6137 if (use_bdrv_whitelist &&
6138 !bdrv_format_is_whitelisted(format_name, read_only)) {
6139 continue;
6142 while (formats && j && !found) {
6143 found = !strcmp(formats[--j], format_name);
6146 if (!found) {
6147 formats = g_renew(const char *, formats, count + 1);
6148 formats[count++] = format_name;
6153 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
6155 for (i = 0; i < count; i++) {
6156 it(opaque, formats[i]);
6159 g_free(formats);
6162 /* This function is to find a node in the bs graph */
6163 BlockDriverState *bdrv_find_node(const char *node_name)
6165 BlockDriverState *bs;
6167 assert(node_name);
6168 GLOBAL_STATE_CODE();
6170 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6171 if (!strcmp(node_name, bs->node_name)) {
6172 return bs;
6175 return NULL;
6178 /* Put this QMP function here so it can access the static graph_bdrv_states. */
6179 BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
6180 Error **errp)
6182 BlockDeviceInfoList *list;
6183 BlockDriverState *bs;
6185 GLOBAL_STATE_CODE();
6187 list = NULL;
6188 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6189 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
6190 if (!info) {
6191 qapi_free_BlockDeviceInfoList(list);
6192 return NULL;
6194 QAPI_LIST_PREPEND(list, info);
6197 return list;
6200 typedef struct XDbgBlockGraphConstructor {
6201 XDbgBlockGraph *graph;
6202 GHashTable *graph_nodes;
6203 } XDbgBlockGraphConstructor;
6205 static XDbgBlockGraphConstructor *xdbg_graph_new(void)
6207 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
6209 gr->graph = g_new0(XDbgBlockGraph, 1);
6210 gr->graph_nodes = g_hash_table_new(NULL, NULL);
6212 return gr;
6215 static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
6217 XDbgBlockGraph *graph = gr->graph;
6219 g_hash_table_destroy(gr->graph_nodes);
6220 g_free(gr);
6222 return graph;
6225 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
6227 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
6229 if (ret != 0) {
6230 return ret;
6234 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6235 * answer of g_hash_table_lookup.
6237 ret = g_hash_table_size(gr->graph_nodes) + 1;
6238 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
6240 return ret;
6243 static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
6244 XDbgBlockGraphNodeType type, const char *name)
6246 XDbgBlockGraphNode *n;
6248 n = g_new0(XDbgBlockGraphNode, 1);
6250 n->id = xdbg_graph_node_num(gr, node);
6251 n->type = type;
6252 n->name = g_strdup(name);
6254 QAPI_LIST_PREPEND(gr->graph->nodes, n);
6257 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
6258 const BdrvChild *child)
6260 BlockPermission qapi_perm;
6261 XDbgBlockGraphEdge *edge;
6262 GLOBAL_STATE_CODE();
6264 edge = g_new0(XDbgBlockGraphEdge, 1);
6266 edge->parent = xdbg_graph_node_num(gr, parent);
6267 edge->child = xdbg_graph_node_num(gr, child->bs);
6268 edge->name = g_strdup(child->name);
6270 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
6271 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
6273 if (flag & child->perm) {
6274 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
6276 if (flag & child->shared_perm) {
6277 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
6281 QAPI_LIST_PREPEND(gr->graph->edges, edge);
6285 XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
6287 BlockBackend *blk;
6288 BlockJob *job;
6289 BlockDriverState *bs;
6290 BdrvChild *child;
6291 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
6293 GLOBAL_STATE_CODE();
6295 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
6296 char *allocated_name = NULL;
6297 const char *name = blk_name(blk);
6299 if (!*name) {
6300 name = allocated_name = blk_get_attached_dev_id(blk);
6302 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
6303 name);
6304 g_free(allocated_name);
6305 if (blk_root(blk)) {
6306 xdbg_graph_add_edge(gr, blk, blk_root(blk));
6310 WITH_JOB_LOCK_GUARD() {
6311 for (job = block_job_next_locked(NULL); job;
6312 job = block_job_next_locked(job)) {
6313 GSList *el;
6315 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
6316 job->job.id);
6317 for (el = job->nodes; el; el = el->next) {
6318 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
6323 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6324 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
6325 bs->node_name);
6326 QLIST_FOREACH(child, &bs->children, next) {
6327 xdbg_graph_add_edge(gr, bs, child);
6331 return xdbg_graph_finalize(gr);
6334 BlockDriverState *bdrv_lookup_bs(const char *device,
6335 const char *node_name,
6336 Error **errp)
6338 BlockBackend *blk;
6339 BlockDriverState *bs;
6341 GLOBAL_STATE_CODE();
6343 if (device) {
6344 blk = blk_by_name(device);
6346 if (blk) {
6347 bs = blk_bs(blk);
6348 if (!bs) {
6349 error_setg(errp, "Device '%s' has no medium", device);
6352 return bs;
6356 if (node_name) {
6357 bs = bdrv_find_node(node_name);
6359 if (bs) {
6360 return bs;
6364 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
6365 device ? device : "",
6366 node_name ? node_name : "");
6367 return NULL;
6370 /* If 'base' is in the same chain as 'top', return true. Otherwise,
6371 * return false. If either argument is NULL, return false. */
6372 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6375 GLOBAL_STATE_CODE();
6377 while (top && top != base) {
6378 top = bdrv_filter_or_cow_bs(top);
6381 return top != NULL;
6384 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6386 GLOBAL_STATE_CODE();
6387 if (!bs) {
6388 return QTAILQ_FIRST(&graph_bdrv_states);
6390 return QTAILQ_NEXT(bs, node_list);
6393 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6395 GLOBAL_STATE_CODE();
6396 if (!bs) {
6397 return QTAILQ_FIRST(&all_bdrv_states);
6399 return QTAILQ_NEXT(bs, bs_list);
6402 const char *bdrv_get_node_name(const BlockDriverState *bs)
6404 IO_CODE();
6405 return bs->node_name;
6408 const char *bdrv_get_parent_name(const BlockDriverState *bs)
6410 BdrvChild *c;
6411 const char *name;
6412 IO_CODE();
6414 /* If multiple parents have a name, just pick the first one. */
6415 QLIST_FOREACH(c, &bs->parents, next_parent) {
6416 if (c->klass->get_name) {
6417 name = c->klass->get_name(c);
6418 if (name && *name) {
6419 return name;
6424 return NULL;
6427 /* TODO check what callers really want: bs->node_name or blk_name() */
6428 const char *bdrv_get_device_name(const BlockDriverState *bs)
6430 IO_CODE();
6431 return bdrv_get_parent_name(bs) ?: "";
6434 /* This can be used to identify nodes that might not have a device
6435 * name associated. Since node and device names live in the same
6436 * namespace, the result is unambiguous. The exception is if both are
6437 * absent, then this returns an empty (non-null) string. */
6438 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6440 IO_CODE();
6441 return bdrv_get_parent_name(bs) ?: bs->node_name;
6444 int bdrv_get_flags(BlockDriverState *bs)
6446 IO_CODE();
6447 return bs->open_flags;
6450 int bdrv_has_zero_init_1(BlockDriverState *bs)
6452 GLOBAL_STATE_CODE();
6453 return 1;
6456 int bdrv_has_zero_init(BlockDriverState *bs)
6458 BlockDriverState *filtered;
6459 GLOBAL_STATE_CODE();
6461 if (!bs->drv) {
6462 return 0;
6465 /* If BS is a copy on write image, it is initialized to
6466 the contents of the base image, which may not be zeroes. */
6467 if (bdrv_cow_child(bs)) {
6468 return 0;
6470 if (bs->drv->bdrv_has_zero_init) {
6471 return bs->drv->bdrv_has_zero_init(bs);
6474 filtered = bdrv_filter_bs(bs);
6475 if (filtered) {
6476 return bdrv_has_zero_init(filtered);
6479 /* safe default */
6480 return 0;
6483 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6485 IO_CODE();
6486 if (!(bs->open_flags & BDRV_O_UNMAP)) {
6487 return false;
6490 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
6493 void bdrv_get_backing_filename(BlockDriverState *bs,
6494 char *filename, int filename_size)
6496 IO_CODE();
6497 pstrcpy(filename, filename_size, bs->backing_file);
6500 int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
6502 int ret;
6503 BlockDriver *drv = bs->drv;
6504 IO_CODE();
6505 assert_bdrv_graph_readable();
6507 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6508 if (!drv) {
6509 return -ENOMEDIUM;
6511 if (!drv->bdrv_co_get_info) {
6512 BlockDriverState *filtered = bdrv_filter_bs(bs);
6513 if (filtered) {
6514 return bdrv_co_get_info(filtered, bdi);
6516 return -ENOTSUP;
6518 memset(bdi, 0, sizeof(*bdi));
6519 ret = drv->bdrv_co_get_info(bs, bdi);
6520 if (bdi->subcluster_size == 0) {
6522 * If the driver left this unset, subclusters are not supported.
6523 * Then it is safe to treat each cluster as having only one subcluster.
6525 bdi->subcluster_size = bdi->cluster_size;
6527 if (ret < 0) {
6528 return ret;
6531 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6532 return -EINVAL;
6535 return 0;
6538 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6539 Error **errp)
6541 BlockDriver *drv = bs->drv;
6542 IO_CODE();
6543 if (drv && drv->bdrv_get_specific_info) {
6544 return drv->bdrv_get_specific_info(bs, errp);
6546 return NULL;
6549 BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6551 BlockDriver *drv = bs->drv;
6552 IO_CODE();
6553 if (!drv || !drv->bdrv_get_specific_stats) {
6554 return NULL;
6556 return drv->bdrv_get_specific_stats(bs);
6559 void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event)
6561 IO_CODE();
6562 assert_bdrv_graph_readable();
6564 if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) {
6565 return;
6568 bs->drv->bdrv_co_debug_event(bs, event);
6571 static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
6573 GLOBAL_STATE_CODE();
6574 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
6575 bs = bdrv_primary_bs(bs);
6578 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
6579 assert(bs->drv->bdrv_debug_remove_breakpoint);
6580 return bs;
6583 return NULL;
6586 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6587 const char *tag)
6589 GLOBAL_STATE_CODE();
6590 bs = bdrv_find_debug_node(bs);
6591 if (bs) {
6592 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6595 return -ENOTSUP;
6598 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6600 GLOBAL_STATE_CODE();
6601 bs = bdrv_find_debug_node(bs);
6602 if (bs) {
6603 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6606 return -ENOTSUP;
6609 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6611 GLOBAL_STATE_CODE();
6612 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
6613 bs = bdrv_primary_bs(bs);
6616 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6617 return bs->drv->bdrv_debug_resume(bs, tag);
6620 return -ENOTSUP;
6623 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6625 GLOBAL_STATE_CODE();
6626 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
6627 bs = bdrv_primary_bs(bs);
6630 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6631 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6634 return false;
6637 /* backing_file can either be relative, or absolute, or a protocol. If it is
6638 * relative, it must be relative to the chain. So, passing in bs->filename
6639 * from a BDS as backing_file should not be done, as that may be relative to
6640 * the CWD rather than the chain. */
6641 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6642 const char *backing_file)
6644 char *filename_full = NULL;
6645 char *backing_file_full = NULL;
6646 char *filename_tmp = NULL;
6647 int is_protocol = 0;
6648 bool filenames_refreshed = false;
6649 BlockDriverState *curr_bs = NULL;
6650 BlockDriverState *retval = NULL;
6651 BlockDriverState *bs_below;
6653 GLOBAL_STATE_CODE();
6655 if (!bs || !bs->drv || !backing_file) {
6656 return NULL;
6659 filename_full = g_malloc(PATH_MAX);
6660 backing_file_full = g_malloc(PATH_MAX);
6662 is_protocol = path_has_protocol(backing_file);
6665 * Being largely a legacy function, skip any filters here
6666 * (because filters do not have normal filenames, so they cannot
6667 * match anyway; and allowing json:{} filenames is a bit out of
6668 * scope).
6670 for (curr_bs = bdrv_skip_filters(bs);
6671 bdrv_cow_child(curr_bs) != NULL;
6672 curr_bs = bs_below)
6674 bs_below = bdrv_backing_chain_next(curr_bs);
6676 if (bdrv_backing_overridden(curr_bs)) {
6678 * If the backing file was overridden, we can only compare
6679 * directly against the backing node's filename.
6682 if (!filenames_refreshed) {
6684 * This will automatically refresh all of the
6685 * filenames in the rest of the backing chain, so we
6686 * only need to do this once.
6688 bdrv_refresh_filename(bs_below);
6689 filenames_refreshed = true;
6692 if (strcmp(backing_file, bs_below->filename) == 0) {
6693 retval = bs_below;
6694 break;
6696 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6698 * If either of the filename paths is actually a protocol, then
6699 * compare unmodified paths; otherwise make paths relative.
6701 char *backing_file_full_ret;
6703 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
6704 retval = bs_below;
6705 break;
6707 /* Also check against the full backing filename for the image */
6708 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6709 NULL);
6710 if (backing_file_full_ret) {
6711 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6712 g_free(backing_file_full_ret);
6713 if (equal) {
6714 retval = bs_below;
6715 break;
6718 } else {
6719 /* If not an absolute filename path, make it relative to the current
6720 * image's filename path */
6721 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6722 NULL);
6723 /* We are going to compare canonicalized absolute pathnames */
6724 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6725 g_free(filename_tmp);
6726 continue;
6728 g_free(filename_tmp);
6730 /* We need to make sure the backing filename we are comparing against
6731 * is relative to the current image filename (or absolute) */
6732 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6733 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6734 g_free(filename_tmp);
6735 continue;
6737 g_free(filename_tmp);
6739 if (strcmp(backing_file_full, filename_full) == 0) {
6740 retval = bs_below;
6741 break;
6746 g_free(filename_full);
6747 g_free(backing_file_full);
6748 return retval;
6751 void bdrv_init(void)
6753 #ifdef CONFIG_BDRV_WHITELIST_TOOLS
6754 use_bdrv_whitelist = 1;
6755 #endif
6756 module_call_init(MODULE_INIT_BLOCK);
6759 void bdrv_init_with_whitelist(void)
6761 use_bdrv_whitelist = 1;
6762 bdrv_init();
6765 int bdrv_activate(BlockDriverState *bs, Error **errp)
6767 BdrvChild *child, *parent;
6768 Error *local_err = NULL;
6769 int ret;
6770 BdrvDirtyBitmap *bm;
6772 GLOBAL_STATE_CODE();
6774 if (!bs->drv) {
6775 return -ENOMEDIUM;
6778 QLIST_FOREACH(child, &bs->children, next) {
6779 bdrv_activate(child->bs, &local_err);
6780 if (local_err) {
6781 error_propagate(errp, local_err);
6782 return -EINVAL;
6787 * Update permissions, they may differ for inactive nodes.
6789 * Note that the required permissions of inactive images are always a
6790 * subset of the permissions required after activating the image. This
6791 * allows us to just get the permissions upfront without restricting
6792 * bdrv_co_invalidate_cache().
6794 * It also means that in error cases, we don't have to try and revert to
6795 * the old permissions (which is an operation that could fail, too). We can
6796 * just keep the extended permissions for the next time that an activation
6797 * of the image is tried.
6799 if (bs->open_flags & BDRV_O_INACTIVE) {
6800 bs->open_flags &= ~BDRV_O_INACTIVE;
6801 ret = bdrv_refresh_perms(bs, NULL, errp);
6802 if (ret < 0) {
6803 bs->open_flags |= BDRV_O_INACTIVE;
6804 return ret;
6807 ret = bdrv_invalidate_cache(bs, errp);
6808 if (ret < 0) {
6809 bs->open_flags |= BDRV_O_INACTIVE;
6810 return ret;
6813 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6814 bdrv_dirty_bitmap_skip_store(bm, false);
6817 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
6818 if (ret < 0) {
6819 bs->open_flags |= BDRV_O_INACTIVE;
6820 error_setg_errno(errp, -ret, "Could not refresh total sector count");
6821 return ret;
6825 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6826 if (parent->klass->activate) {
6827 parent->klass->activate(parent, &local_err);
6828 if (local_err) {
6829 bs->open_flags |= BDRV_O_INACTIVE;
6830 error_propagate(errp, local_err);
6831 return -EINVAL;
6836 return 0;
6839 int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
6841 Error *local_err = NULL;
6842 IO_CODE();
6844 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6845 assert_bdrv_graph_readable();
6847 if (bs->drv->bdrv_co_invalidate_cache) {
6848 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6849 if (local_err) {
6850 error_propagate(errp, local_err);
6851 return -EINVAL;
6855 return 0;
6858 void bdrv_activate_all(Error **errp)
6860 BlockDriverState *bs;
6861 BdrvNextIterator it;
6863 GLOBAL_STATE_CODE();
6865 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6866 AioContext *aio_context = bdrv_get_aio_context(bs);
6867 int ret;
6869 aio_context_acquire(aio_context);
6870 ret = bdrv_activate(bs, errp);
6871 aio_context_release(aio_context);
6872 if (ret < 0) {
6873 bdrv_next_cleanup(&it);
6874 return;
6879 static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6881 BdrvChild *parent;
6882 GLOBAL_STATE_CODE();
6884 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6885 if (parent->klass->parent_is_bds) {
6886 BlockDriverState *parent_bs = parent->opaque;
6887 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6888 return true;
6893 return false;
6896 static int bdrv_inactivate_recurse(BlockDriverState *bs)
6898 BdrvChild *child, *parent;
6899 int ret;
6900 uint64_t cumulative_perms, cumulative_shared_perms;
6902 GLOBAL_STATE_CODE();
6904 if (!bs->drv) {
6905 return -ENOMEDIUM;
6908 /* Make sure that we don't inactivate a child before its parent.
6909 * It will be covered by recursion from the yet active parent. */
6910 if (bdrv_has_bds_parent(bs, true)) {
6911 return 0;
6914 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6916 /* Inactivate this node */
6917 if (bs->drv->bdrv_inactivate) {
6918 ret = bs->drv->bdrv_inactivate(bs);
6919 if (ret < 0) {
6920 return ret;
6924 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6925 if (parent->klass->inactivate) {
6926 ret = parent->klass->inactivate(parent);
6927 if (ret < 0) {
6928 return ret;
6933 bdrv_get_cumulative_perm(bs, &cumulative_perms,
6934 &cumulative_shared_perms);
6935 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
6936 /* Our inactive parents still need write access. Inactivation failed. */
6937 return -EPERM;
6940 bs->open_flags |= BDRV_O_INACTIVE;
6943 * Update permissions, they may differ for inactive nodes.
6944 * We only tried to loosen restrictions, so errors are not fatal, ignore
6945 * them.
6947 bdrv_refresh_perms(bs, NULL, NULL);
6949 /* Recursively inactivate children */
6950 QLIST_FOREACH(child, &bs->children, next) {
6951 ret = bdrv_inactivate_recurse(child->bs);
6952 if (ret < 0) {
6953 return ret;
6957 return 0;
6960 int bdrv_inactivate_all(void)
6962 BlockDriverState *bs = NULL;
6963 BdrvNextIterator it;
6964 int ret = 0;
6965 GSList *aio_ctxs = NULL, *ctx;
6967 GLOBAL_STATE_CODE();
6969 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6970 AioContext *aio_context = bdrv_get_aio_context(bs);
6972 if (!g_slist_find(aio_ctxs, aio_context)) {
6973 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6974 aio_context_acquire(aio_context);
6978 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6979 /* Nodes with BDS parents are covered by recursion from the last
6980 * parent that gets inactivated. Don't inactivate them a second
6981 * time if that has already happened. */
6982 if (bdrv_has_bds_parent(bs, false)) {
6983 continue;
6985 ret = bdrv_inactivate_recurse(bs);
6986 if (ret < 0) {
6987 bdrv_next_cleanup(&it);
6988 goto out;
6992 out:
6993 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6994 AioContext *aio_context = ctx->data;
6995 aio_context_release(aio_context);
6997 g_slist_free(aio_ctxs);
6999 return ret;
7002 /**************************************************************/
7003 /* removable device support */
7006 * Return TRUE if the media is present
7008 bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs)
7010 BlockDriver *drv = bs->drv;
7011 BdrvChild *child;
7012 IO_CODE();
7013 assert_bdrv_graph_readable();
7015 if (!drv) {
7016 return false;
7018 if (drv->bdrv_co_is_inserted) {
7019 return drv->bdrv_co_is_inserted(bs);
7021 QLIST_FOREACH(child, &bs->children, next) {
7022 if (!bdrv_co_is_inserted(child->bs)) {
7023 return false;
7026 return true;
7030 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
7032 void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag)
7034 BlockDriver *drv = bs->drv;
7035 IO_CODE();
7036 assert_bdrv_graph_readable();
7038 if (drv && drv->bdrv_co_eject) {
7039 drv->bdrv_co_eject(bs, eject_flag);
7044 * Lock or unlock the media (if it is locked, the user won't be able
7045 * to eject it manually).
7047 void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked)
7049 BlockDriver *drv = bs->drv;
7050 IO_CODE();
7051 assert_bdrv_graph_readable();
7052 trace_bdrv_lock_medium(bs, locked);
7054 if (drv && drv->bdrv_co_lock_medium) {
7055 drv->bdrv_co_lock_medium(bs, locked);
7059 /* Get a reference to bs */
7060 void bdrv_ref(BlockDriverState *bs)
7062 GLOBAL_STATE_CODE();
7063 bs->refcnt++;
7066 /* Release a previously grabbed reference to bs.
7067 * If after releasing, reference count is zero, the BlockDriverState is
7068 * deleted. */
7069 void bdrv_unref(BlockDriverState *bs)
7071 GLOBAL_STATE_CODE();
7072 if (!bs) {
7073 return;
7075 assert(bs->refcnt > 0);
7076 if (--bs->refcnt == 0) {
7077 bdrv_delete(bs);
7082 * Release a BlockDriverState reference while holding the graph write lock.
7084 * Calling bdrv_unref() directly is forbidden while holding the graph lock
7085 * because bdrv_close() both involves polling and taking the graph lock
7086 * internally. bdrv_schedule_unref() instead delays decreasing the refcount and
7087 * possibly closing @bs until the graph lock is released.
7089 void bdrv_schedule_unref(BlockDriverState *bs)
7091 if (!bs) {
7092 return;
7094 aio_bh_schedule_oneshot(qemu_get_aio_context(),
7095 (QEMUBHFunc *) bdrv_unref, bs);
7098 struct BdrvOpBlocker {
7099 Error *reason;
7100 QLIST_ENTRY(BdrvOpBlocker) list;
7103 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
7105 BdrvOpBlocker *blocker;
7106 GLOBAL_STATE_CODE();
7107 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7108 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
7109 blocker = QLIST_FIRST(&bs->op_blockers[op]);
7110 error_propagate_prepend(errp, error_copy(blocker->reason),
7111 "Node '%s' is busy: ",
7112 bdrv_get_device_or_node_name(bs));
7113 return true;
7115 return false;
7118 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
7120 BdrvOpBlocker *blocker;
7121 GLOBAL_STATE_CODE();
7122 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7124 blocker = g_new0(BdrvOpBlocker, 1);
7125 blocker->reason = reason;
7126 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
7129 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
7131 BdrvOpBlocker *blocker, *next;
7132 GLOBAL_STATE_CODE();
7133 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7134 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
7135 if (blocker->reason == reason) {
7136 QLIST_REMOVE(blocker, list);
7137 g_free(blocker);
7142 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
7144 int i;
7145 GLOBAL_STATE_CODE();
7146 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7147 bdrv_op_block(bs, i, reason);
7151 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
7153 int i;
7154 GLOBAL_STATE_CODE();
7155 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7156 bdrv_op_unblock(bs, i, reason);
7160 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
7162 int i;
7163 GLOBAL_STATE_CODE();
7164 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7165 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
7166 return false;
7169 return true;
7173 * Must not be called while holding the lock of an AioContext other than the
7174 * current one.
7176 void bdrv_img_create(const char *filename, const char *fmt,
7177 const char *base_filename, const char *base_fmt,
7178 char *options, uint64_t img_size, int flags, bool quiet,
7179 Error **errp)
7181 QemuOptsList *create_opts = NULL;
7182 QemuOpts *opts = NULL;
7183 const char *backing_fmt, *backing_file;
7184 int64_t size;
7185 BlockDriver *drv, *proto_drv;
7186 Error *local_err = NULL;
7187 int ret = 0;
7189 GLOBAL_STATE_CODE();
7191 /* Find driver and parse its options */
7192 drv = bdrv_find_format(fmt);
7193 if (!drv) {
7194 error_setg(errp, "Unknown file format '%s'", fmt);
7195 return;
7198 proto_drv = bdrv_find_protocol(filename, true, errp);
7199 if (!proto_drv) {
7200 return;
7203 if (!drv->create_opts) {
7204 error_setg(errp, "Format driver '%s' does not support image creation",
7205 drv->format_name);
7206 return;
7209 if (!proto_drv->create_opts) {
7210 error_setg(errp, "Protocol driver '%s' does not support image creation",
7211 proto_drv->format_name);
7212 return;
7215 aio_context_acquire(qemu_get_aio_context());
7217 /* Create parameter list */
7218 create_opts = qemu_opts_append(create_opts, drv->create_opts);
7219 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
7221 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
7223 /* Parse -o options */
7224 if (options) {
7225 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
7226 goto out;
7230 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
7231 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
7232 } else if (img_size != UINT64_C(-1)) {
7233 error_setg(errp, "The image size must be specified only once");
7234 goto out;
7237 if (base_filename) {
7238 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
7239 NULL)) {
7240 error_setg(errp, "Backing file not supported for file format '%s'",
7241 fmt);
7242 goto out;
7246 if (base_fmt) {
7247 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
7248 error_setg(errp, "Backing file format not supported for file "
7249 "format '%s'", fmt);
7250 goto out;
7254 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
7255 if (backing_file) {
7256 if (!strcmp(filename, backing_file)) {
7257 error_setg(errp, "Error: Trying to create an image with the "
7258 "same filename as the backing file");
7259 goto out;
7261 if (backing_file[0] == '\0') {
7262 error_setg(errp, "Expected backing file name, got empty string");
7263 goto out;
7267 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
7269 /* The size for the image must always be specified, unless we have a backing
7270 * file and we have not been forbidden from opening it. */
7271 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
7272 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
7273 BlockDriverState *bs;
7274 char *full_backing;
7275 int back_flags;
7276 QDict *backing_options = NULL;
7278 full_backing =
7279 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
7280 &local_err);
7281 if (local_err) {
7282 goto out;
7284 assert(full_backing);
7287 * No need to do I/O here, which allows us to open encrypted
7288 * backing images without needing the secret
7290 back_flags = flags;
7291 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
7292 back_flags |= BDRV_O_NO_IO;
7294 backing_options = qdict_new();
7295 if (backing_fmt) {
7296 qdict_put_str(backing_options, "driver", backing_fmt);
7298 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
7300 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
7301 &local_err);
7302 g_free(full_backing);
7303 if (!bs) {
7304 error_append_hint(&local_err, "Could not open backing image.\n");
7305 goto out;
7306 } else {
7307 if (!backing_fmt) {
7308 error_setg(&local_err,
7309 "Backing file specified without backing format");
7310 error_append_hint(&local_err, "Detected format of %s.\n",
7311 bs->drv->format_name);
7312 goto out;
7314 if (size == -1) {
7315 /* Opened BS, have no size */
7316 size = bdrv_getlength(bs);
7317 if (size < 0) {
7318 error_setg_errno(errp, -size, "Could not get size of '%s'",
7319 backing_file);
7320 bdrv_unref(bs);
7321 goto out;
7323 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
7325 bdrv_unref(bs);
7327 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7328 } else if (backing_file && !backing_fmt) {
7329 error_setg(&local_err,
7330 "Backing file specified without backing format");
7331 goto out;
7334 if (size == -1) {
7335 error_setg(errp, "Image creation needs a size parameter");
7336 goto out;
7339 if (!quiet) {
7340 printf("Formatting '%s', fmt=%s ", filename, fmt);
7341 qemu_opts_print(opts, " ");
7342 puts("");
7343 fflush(stdout);
7346 ret = bdrv_create(drv, filename, opts, &local_err);
7348 if (ret == -EFBIG) {
7349 /* This is generally a better message than whatever the driver would
7350 * deliver (especially because of the cluster_size_hint), since that
7351 * is most probably not much different from "image too large". */
7352 const char *cluster_size_hint = "";
7353 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
7354 cluster_size_hint = " (try using a larger cluster size)";
7356 error_setg(errp, "The image size is too large for file format '%s'"
7357 "%s", fmt, cluster_size_hint);
7358 error_free(local_err);
7359 local_err = NULL;
7362 out:
7363 qemu_opts_del(opts);
7364 qemu_opts_free(create_opts);
7365 error_propagate(errp, local_err);
7366 aio_context_release(qemu_get_aio_context());
7369 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
7371 IO_CODE();
7372 return bs ? bs->aio_context : qemu_get_aio_context();
7375 AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
7377 Coroutine *self = qemu_coroutine_self();
7378 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
7379 AioContext *new_ctx;
7380 IO_CODE();
7383 * Increase bs->in_flight to ensure that this operation is completed before
7384 * moving the node to a different AioContext. Read new_ctx only afterwards.
7386 bdrv_inc_in_flight(bs);
7388 new_ctx = bdrv_get_aio_context(bs);
7389 aio_co_reschedule_self(new_ctx);
7390 return old_ctx;
7393 void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
7395 IO_CODE();
7396 aio_co_reschedule_self(old_ctx);
7397 bdrv_dec_in_flight(bs);
7400 void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
7402 AioContext *ctx = bdrv_get_aio_context(bs);
7404 /* In the main thread, bs->aio_context won't change concurrently */
7405 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7408 * We're in coroutine context, so we already hold the lock of the main
7409 * loop AioContext. Don't lock it twice to avoid deadlocks.
7411 assert(qemu_in_coroutine());
7412 if (ctx != qemu_get_aio_context()) {
7413 aio_context_acquire(ctx);
7417 void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
7419 AioContext *ctx = bdrv_get_aio_context(bs);
7421 assert(qemu_in_coroutine());
7422 if (ctx != qemu_get_aio_context()) {
7423 aio_context_release(ctx);
7427 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
7429 GLOBAL_STATE_CODE();
7430 QLIST_REMOVE(ban, list);
7431 g_free(ban);
7434 static void bdrv_detach_aio_context(BlockDriverState *bs)
7436 BdrvAioNotifier *baf, *baf_tmp;
7438 assert(!bs->walking_aio_notifiers);
7439 GLOBAL_STATE_CODE();
7440 bs->walking_aio_notifiers = true;
7441 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7442 if (baf->deleted) {
7443 bdrv_do_remove_aio_context_notifier(baf);
7444 } else {
7445 baf->detach_aio_context(baf->opaque);
7448 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7449 * remove remaining aio notifiers if we aren't called again.
7451 bs->walking_aio_notifiers = false;
7453 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
7454 bs->drv->bdrv_detach_aio_context(bs);
7457 bs->aio_context = NULL;
7460 static void bdrv_attach_aio_context(BlockDriverState *bs,
7461 AioContext *new_context)
7463 BdrvAioNotifier *ban, *ban_tmp;
7464 GLOBAL_STATE_CODE();
7466 bs->aio_context = new_context;
7468 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
7469 bs->drv->bdrv_attach_aio_context(bs, new_context);
7472 assert(!bs->walking_aio_notifiers);
7473 bs->walking_aio_notifiers = true;
7474 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7475 if (ban->deleted) {
7476 bdrv_do_remove_aio_context_notifier(ban);
7477 } else {
7478 ban->attached_aio_context(new_context, ban->opaque);
7481 bs->walking_aio_notifiers = false;
7484 typedef struct BdrvStateSetAioContext {
7485 AioContext *new_ctx;
7486 BlockDriverState *bs;
7487 } BdrvStateSetAioContext;
7489 static bool bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx,
7490 GHashTable *visited,
7491 Transaction *tran,
7492 Error **errp)
7494 GLOBAL_STATE_CODE();
7495 if (g_hash_table_contains(visited, c)) {
7496 return true;
7498 g_hash_table_add(visited, c);
7501 * A BdrvChildClass that doesn't handle AioContext changes cannot
7502 * tolerate any AioContext changes
7504 if (!c->klass->change_aio_ctx) {
7505 char *user = bdrv_child_user_desc(c);
7506 error_setg(errp, "Changing iothreads is not supported by %s", user);
7507 g_free(user);
7508 return false;
7510 if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) {
7511 assert(!errp || *errp);
7512 return false;
7514 return true;
7517 bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx,
7518 GHashTable *visited, Transaction *tran,
7519 Error **errp)
7521 GLOBAL_STATE_CODE();
7522 if (g_hash_table_contains(visited, c)) {
7523 return true;
7525 g_hash_table_add(visited, c);
7526 return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp);
7529 static void bdrv_set_aio_context_clean(void *opaque)
7531 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7532 BlockDriverState *bs = (BlockDriverState *) state->bs;
7534 /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */
7535 bdrv_drained_end(bs);
7537 g_free(state);
7540 static void bdrv_set_aio_context_commit(void *opaque)
7542 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7543 BlockDriverState *bs = (BlockDriverState *) state->bs;
7544 AioContext *new_context = state->new_ctx;
7545 AioContext *old_context = bdrv_get_aio_context(bs);
7548 * Take the old AioContex when detaching it from bs.
7549 * At this point, new_context lock is already acquired, and we are now
7550 * also taking old_context. This is safe as long as bdrv_detach_aio_context
7551 * does not call AIO_POLL_WHILE().
7553 if (old_context != qemu_get_aio_context()) {
7554 aio_context_acquire(old_context);
7556 bdrv_detach_aio_context(bs);
7557 if (old_context != qemu_get_aio_context()) {
7558 aio_context_release(old_context);
7560 bdrv_attach_aio_context(bs, new_context);
7563 static TransactionActionDrv set_aio_context = {
7564 .commit = bdrv_set_aio_context_commit,
7565 .clean = bdrv_set_aio_context_clean,
7569 * Changes the AioContext used for fd handlers, timers, and BHs by this
7570 * BlockDriverState and all its children and parents.
7572 * Must be called from the main AioContext.
7574 * The caller must own the AioContext lock for the old AioContext of bs, but it
7575 * must not own the AioContext lock for new_context (unless new_context is the
7576 * same as the current context of bs).
7578 * @visited will accumulate all visited BdrvChild objects. The caller is
7579 * responsible for freeing the list afterwards.
7581 static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7582 GHashTable *visited, Transaction *tran,
7583 Error **errp)
7585 BdrvChild *c;
7586 BdrvStateSetAioContext *state;
7588 GLOBAL_STATE_CODE();
7590 if (bdrv_get_aio_context(bs) == ctx) {
7591 return true;
7594 QLIST_FOREACH(c, &bs->parents, next_parent) {
7595 if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) {
7596 return false;
7600 QLIST_FOREACH(c, &bs->children, next) {
7601 if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) {
7602 return false;
7606 state = g_new(BdrvStateSetAioContext, 1);
7607 *state = (BdrvStateSetAioContext) {
7608 .new_ctx = ctx,
7609 .bs = bs,
7612 /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */
7613 bdrv_drained_begin(bs);
7615 tran_add(tran, &set_aio_context, state);
7617 return true;
7621 * Change bs's and recursively all of its parents' and children's AioContext
7622 * to the given new context, returning an error if that isn't possible.
7624 * If ignore_child is not NULL, that child (and its subgraph) will not
7625 * be touched.
7627 * This function still requires the caller to take the bs current
7628 * AioContext lock, otherwise draining will fail since AIO_WAIT_WHILE
7629 * assumes the lock is always held if bs is in another AioContext.
7630 * For the same reason, it temporarily also holds the new AioContext, since
7631 * bdrv_drained_end calls BDRV_POLL_WHILE that assumes the lock is taken too.
7632 * Therefore the new AioContext lock must not be taken by the caller.
7634 int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7635 BdrvChild *ignore_child, Error **errp)
7637 Transaction *tran;
7638 GHashTable *visited;
7639 int ret;
7640 AioContext *old_context = bdrv_get_aio_context(bs);
7641 GLOBAL_STATE_CODE();
7644 * Recursion phase: go through all nodes of the graph.
7645 * Take care of checking that all nodes support changing AioContext
7646 * and drain them, building a linear list of callbacks to run if everything
7647 * is successful (the transaction itself).
7649 tran = tran_new();
7650 visited = g_hash_table_new(NULL, NULL);
7651 if (ignore_child) {
7652 g_hash_table_add(visited, ignore_child);
7654 ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp);
7655 g_hash_table_destroy(visited);
7658 * Linear phase: go through all callbacks collected in the transaction.
7659 * Run all callbacks collected in the recursion to switch all nodes
7660 * AioContext lock (transaction commit), or undo all changes done in the
7661 * recursion (transaction abort).
7664 if (!ret) {
7665 /* Just run clean() callbacks. No AioContext changed. */
7666 tran_abort(tran);
7667 return -EPERM;
7671 * Release old AioContext, it won't be needed anymore, as all
7672 * bdrv_drained_begin() have been called already.
7674 if (qemu_get_aio_context() != old_context) {
7675 aio_context_release(old_context);
7679 * Acquire new AioContext since bdrv_drained_end() is going to be called
7680 * after we switched all nodes in the new AioContext, and the function
7681 * assumes that the lock of the bs is always taken.
7683 if (qemu_get_aio_context() != ctx) {
7684 aio_context_acquire(ctx);
7687 tran_commit(tran);
7689 if (qemu_get_aio_context() != ctx) {
7690 aio_context_release(ctx);
7693 /* Re-acquire the old AioContext, since the caller takes and releases it. */
7694 if (qemu_get_aio_context() != old_context) {
7695 aio_context_acquire(old_context);
7698 return 0;
7701 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7702 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7703 void (*detach_aio_context)(void *opaque), void *opaque)
7705 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7706 *ban = (BdrvAioNotifier){
7707 .attached_aio_context = attached_aio_context,
7708 .detach_aio_context = detach_aio_context,
7709 .opaque = opaque
7711 GLOBAL_STATE_CODE();
7713 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7716 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7717 void (*attached_aio_context)(AioContext *,
7718 void *),
7719 void (*detach_aio_context)(void *),
7720 void *opaque)
7722 BdrvAioNotifier *ban, *ban_next;
7723 GLOBAL_STATE_CODE();
7725 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7726 if (ban->attached_aio_context == attached_aio_context &&
7727 ban->detach_aio_context == detach_aio_context &&
7728 ban->opaque == opaque &&
7729 ban->deleted == false)
7731 if (bs->walking_aio_notifiers) {
7732 ban->deleted = true;
7733 } else {
7734 bdrv_do_remove_aio_context_notifier(ban);
7736 return;
7740 abort();
7743 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
7744 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
7745 bool force,
7746 Error **errp)
7748 GLOBAL_STATE_CODE();
7749 if (!bs->drv) {
7750 error_setg(errp, "Node is ejected");
7751 return -ENOMEDIUM;
7753 if (!bs->drv->bdrv_amend_options) {
7754 error_setg(errp, "Block driver '%s' does not support option amendment",
7755 bs->drv->format_name);
7756 return -ENOTSUP;
7758 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7759 cb_opaque, force, errp);
7763 * This function checks whether the given @to_replace is allowed to be
7764 * replaced by a node that always shows the same data as @bs. This is
7765 * used for example to verify whether the mirror job can replace
7766 * @to_replace by the target mirrored from @bs.
7767 * To be replaceable, @bs and @to_replace may either be guaranteed to
7768 * always show the same data (because they are only connected through
7769 * filters), or some driver may allow replacing one of its children
7770 * because it can guarantee that this child's data is not visible at
7771 * all (for example, for dissenting quorum children that have no other
7772 * parents).
7774 bool bdrv_recurse_can_replace(BlockDriverState *bs,
7775 BlockDriverState *to_replace)
7777 BlockDriverState *filtered;
7779 GLOBAL_STATE_CODE();
7781 if (!bs || !bs->drv) {
7782 return false;
7785 if (bs == to_replace) {
7786 return true;
7789 /* See what the driver can do */
7790 if (bs->drv->bdrv_recurse_can_replace) {
7791 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7794 /* For filters without an own implementation, we can recurse on our own */
7795 filtered = bdrv_filter_bs(bs);
7796 if (filtered) {
7797 return bdrv_recurse_can_replace(filtered, to_replace);
7800 /* Safe default */
7801 return false;
7805 * Check whether the given @node_name can be replaced by a node that
7806 * has the same data as @parent_bs. If so, return @node_name's BDS;
7807 * NULL otherwise.
7809 * @node_name must be a (recursive) *child of @parent_bs (or this
7810 * function will return NULL).
7812 * The result (whether the node can be replaced or not) is only valid
7813 * for as long as no graph or permission changes occur.
7815 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7816 const char *node_name, Error **errp)
7818 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
7819 AioContext *aio_context;
7821 GLOBAL_STATE_CODE();
7823 if (!to_replace_bs) {
7824 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
7825 return NULL;
7828 aio_context = bdrv_get_aio_context(to_replace_bs);
7829 aio_context_acquire(aio_context);
7831 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
7832 to_replace_bs = NULL;
7833 goto out;
7836 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7837 * most non filter in order to prevent data corruption.
7838 * Another benefit is that this tests exclude backing files which are
7839 * blocked by the backing blockers.
7841 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7842 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7843 "because it cannot be guaranteed that doing so would not "
7844 "lead to an abrupt change of visible data",
7845 node_name, parent_bs->node_name);
7846 to_replace_bs = NULL;
7847 goto out;
7850 out:
7851 aio_context_release(aio_context);
7852 return to_replace_bs;
7856 * Iterates through the list of runtime option keys that are said to
7857 * be "strong" for a BDS. An option is called "strong" if it changes
7858 * a BDS's data. For example, the null block driver's "size" and
7859 * "read-zeroes" options are strong, but its "latency-ns" option is
7860 * not.
7862 * If a key returned by this function ends with a dot, all options
7863 * starting with that prefix are strong.
7865 static const char *const *strong_options(BlockDriverState *bs,
7866 const char *const *curopt)
7868 static const char *const global_options[] = {
7869 "driver", "filename", NULL
7872 if (!curopt) {
7873 return &global_options[0];
7876 curopt++;
7877 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7878 curopt = bs->drv->strong_runtime_opts;
7881 return (curopt && *curopt) ? curopt : NULL;
7885 * Copies all strong runtime options from bs->options to the given
7886 * QDict. The set of strong option keys is determined by invoking
7887 * strong_options().
7889 * Returns true iff any strong option was present in bs->options (and
7890 * thus copied to the target QDict) with the exception of "filename"
7891 * and "driver". The caller is expected to use this value to decide
7892 * whether the existence of strong options prevents the generation of
7893 * a plain filename.
7895 static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7897 bool found_any = false;
7898 const char *const *option_name = NULL;
7900 if (!bs->drv) {
7901 return false;
7904 while ((option_name = strong_options(bs, option_name))) {
7905 bool option_given = false;
7907 assert(strlen(*option_name) > 0);
7908 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7909 QObject *entry = qdict_get(bs->options, *option_name);
7910 if (!entry) {
7911 continue;
7914 qdict_put_obj(d, *option_name, qobject_ref(entry));
7915 option_given = true;
7916 } else {
7917 const QDictEntry *entry;
7918 for (entry = qdict_first(bs->options); entry;
7919 entry = qdict_next(bs->options, entry))
7921 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7922 qdict_put_obj(d, qdict_entry_key(entry),
7923 qobject_ref(qdict_entry_value(entry)));
7924 option_given = true;
7929 /* While "driver" and "filename" need to be included in a JSON filename,
7930 * their existence does not prohibit generation of a plain filename. */
7931 if (!found_any && option_given &&
7932 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7934 found_any = true;
7938 if (!qdict_haskey(d, "driver")) {
7939 /* Drivers created with bdrv_new_open_driver() may not have a
7940 * @driver option. Add it here. */
7941 qdict_put_str(d, "driver", bs->drv->format_name);
7944 return found_any;
7947 /* Note: This function may return false positives; it may return true
7948 * even if opening the backing file specified by bs's image header
7949 * would result in exactly bs->backing. */
7950 static bool bdrv_backing_overridden(BlockDriverState *bs)
7952 GLOBAL_STATE_CODE();
7953 if (bs->backing) {
7954 return strcmp(bs->auto_backing_file,
7955 bs->backing->bs->filename);
7956 } else {
7957 /* No backing BDS, so if the image header reports any backing
7958 * file, it must have been suppressed */
7959 return bs->auto_backing_file[0] != '\0';
7963 /* Updates the following BDS fields:
7964 * - exact_filename: A filename which may be used for opening a block device
7965 * which (mostly) equals the given BDS (even without any
7966 * other options; so reading and writing must return the same
7967 * results, but caching etc. may be different)
7968 * - full_open_options: Options which, when given when opening a block device
7969 * (without a filename), result in a BDS (mostly)
7970 * equalling the given one
7971 * - filename: If exact_filename is set, it is copied here. Otherwise,
7972 * full_open_options is converted to a JSON object, prefixed with
7973 * "json:" (for use through the JSON pseudo protocol) and put here.
7975 void bdrv_refresh_filename(BlockDriverState *bs)
7977 BlockDriver *drv = bs->drv;
7978 BdrvChild *child;
7979 BlockDriverState *primary_child_bs;
7980 QDict *opts;
7981 bool backing_overridden;
7982 bool generate_json_filename; /* Whether our default implementation should
7983 fill exact_filename (false) or not (true) */
7985 GLOBAL_STATE_CODE();
7987 if (!drv) {
7988 return;
7991 /* This BDS's file name may depend on any of its children's file names, so
7992 * refresh those first */
7993 QLIST_FOREACH(child, &bs->children, next) {
7994 bdrv_refresh_filename(child->bs);
7997 if (bs->implicit) {
7998 /* For implicit nodes, just copy everything from the single child */
7999 child = QLIST_FIRST(&bs->children);
8000 assert(QLIST_NEXT(child, next) == NULL);
8002 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
8003 child->bs->exact_filename);
8004 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
8006 qobject_unref(bs->full_open_options);
8007 bs->full_open_options = qobject_ref(child->bs->full_open_options);
8009 return;
8012 backing_overridden = bdrv_backing_overridden(bs);
8014 if (bs->open_flags & BDRV_O_NO_IO) {
8015 /* Without I/O, the backing file does not change anything.
8016 * Therefore, in such a case (primarily qemu-img), we can
8017 * pretend the backing file has not been overridden even if
8018 * it technically has been. */
8019 backing_overridden = false;
8022 /* Gather the options QDict */
8023 opts = qdict_new();
8024 generate_json_filename = append_strong_runtime_options(opts, bs);
8025 generate_json_filename |= backing_overridden;
8027 if (drv->bdrv_gather_child_options) {
8028 /* Some block drivers may not want to present all of their children's
8029 * options, or name them differently from BdrvChild.name */
8030 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
8031 } else {
8032 QLIST_FOREACH(child, &bs->children, next) {
8033 if (child == bs->backing && !backing_overridden) {
8034 /* We can skip the backing BDS if it has not been overridden */
8035 continue;
8038 qdict_put(opts, child->name,
8039 qobject_ref(child->bs->full_open_options));
8042 if (backing_overridden && !bs->backing) {
8043 /* Force no backing file */
8044 qdict_put_null(opts, "backing");
8048 qobject_unref(bs->full_open_options);
8049 bs->full_open_options = opts;
8051 primary_child_bs = bdrv_primary_bs(bs);
8053 if (drv->bdrv_refresh_filename) {
8054 /* Obsolete information is of no use here, so drop the old file name
8055 * information before refreshing it */
8056 bs->exact_filename[0] = '\0';
8058 drv->bdrv_refresh_filename(bs);
8059 } else if (primary_child_bs) {
8061 * Try to reconstruct valid information from the underlying
8062 * file -- this only works for format nodes (filter nodes
8063 * cannot be probed and as such must be selected by the user
8064 * either through an options dict, or through a special
8065 * filename which the filter driver must construct in its
8066 * .bdrv_refresh_filename() implementation).
8069 bs->exact_filename[0] = '\0';
8072 * We can use the underlying file's filename if:
8073 * - it has a filename,
8074 * - the current BDS is not a filter,
8075 * - the file is a protocol BDS, and
8076 * - opening that file (as this BDS's format) will automatically create
8077 * the BDS tree we have right now, that is:
8078 * - the user did not significantly change this BDS's behavior with
8079 * some explicit (strong) options
8080 * - no non-file child of this BDS has been overridden by the user
8081 * Both of these conditions are represented by generate_json_filename.
8083 if (primary_child_bs->exact_filename[0] &&
8084 primary_child_bs->drv->bdrv_file_open &&
8085 !drv->is_filter && !generate_json_filename)
8087 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
8091 if (bs->exact_filename[0]) {
8092 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
8093 } else {
8094 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
8095 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
8096 json->str) >= sizeof(bs->filename)) {
8097 /* Give user a hint if we truncated things. */
8098 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
8100 g_string_free(json, true);
8104 char *bdrv_dirname(BlockDriverState *bs, Error **errp)
8106 BlockDriver *drv = bs->drv;
8107 BlockDriverState *child_bs;
8109 GLOBAL_STATE_CODE();
8111 if (!drv) {
8112 error_setg(errp, "Node '%s' is ejected", bs->node_name);
8113 return NULL;
8116 if (drv->bdrv_dirname) {
8117 return drv->bdrv_dirname(bs, errp);
8120 child_bs = bdrv_primary_bs(bs);
8121 if (child_bs) {
8122 return bdrv_dirname(child_bs, errp);
8125 bdrv_refresh_filename(bs);
8126 if (bs->exact_filename[0] != '\0') {
8127 return path_combine(bs->exact_filename, "");
8130 error_setg(errp, "Cannot generate a base directory for %s nodes",
8131 drv->format_name);
8132 return NULL;
8136 * Hot add/remove a BDS's child. So the user can take a child offline when
8137 * it is broken and take a new child online
8139 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
8140 Error **errp)
8142 GLOBAL_STATE_CODE();
8143 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
8144 error_setg(errp, "The node %s does not support adding a child",
8145 bdrv_get_device_or_node_name(parent_bs));
8146 return;
8150 * Non-zoned block drivers do not follow zoned storage constraints
8151 * (i.e. sequential writes to zones). Refuse mixing zoned and non-zoned
8152 * drivers in a graph.
8154 if (!parent_bs->drv->supports_zoned_children &&
8155 child_bs->bl.zoned == BLK_Z_HM) {
8157 * The host-aware model allows zoned storage constraints and random
8158 * write. Allow mixing host-aware and non-zoned drivers. Using
8159 * host-aware device as a regular device.
8161 error_setg(errp, "Cannot add a %s child to a %s parent",
8162 child_bs->bl.zoned == BLK_Z_HM ? "zoned" : "non-zoned",
8163 parent_bs->drv->supports_zoned_children ?
8164 "support zoned children" : "not support zoned children");
8165 return;
8168 if (!QLIST_EMPTY(&child_bs->parents)) {
8169 error_setg(errp, "The node %s already has a parent",
8170 child_bs->node_name);
8171 return;
8174 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
8177 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
8179 BdrvChild *tmp;
8181 GLOBAL_STATE_CODE();
8182 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
8183 error_setg(errp, "The node %s does not support removing a child",
8184 bdrv_get_device_or_node_name(parent_bs));
8185 return;
8188 QLIST_FOREACH(tmp, &parent_bs->children, next) {
8189 if (tmp == child) {
8190 break;
8194 if (!tmp) {
8195 error_setg(errp, "The node %s does not have a child named %s",
8196 bdrv_get_device_or_node_name(parent_bs),
8197 bdrv_get_device_or_node_name(child->bs));
8198 return;
8201 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
8204 int bdrv_make_empty(BdrvChild *c, Error **errp)
8206 BlockDriver *drv = c->bs->drv;
8207 int ret;
8209 GLOBAL_STATE_CODE();
8210 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
8212 if (!drv->bdrv_make_empty) {
8213 error_setg(errp, "%s does not support emptying nodes",
8214 drv->format_name);
8215 return -ENOTSUP;
8218 ret = drv->bdrv_make_empty(c->bs);
8219 if (ret < 0) {
8220 error_setg_errno(errp, -ret, "Failed to empty %s",
8221 c->bs->filename);
8222 return ret;
8225 return 0;
8229 * Return the child that @bs acts as an overlay for, and from which data may be
8230 * copied in COW or COR operations. Usually this is the backing file.
8232 BdrvChild *bdrv_cow_child(BlockDriverState *bs)
8234 IO_CODE();
8236 if (!bs || !bs->drv) {
8237 return NULL;
8240 if (bs->drv->is_filter) {
8241 return NULL;
8244 if (!bs->backing) {
8245 return NULL;
8248 assert(bs->backing->role & BDRV_CHILD_COW);
8249 return bs->backing;
8253 * If @bs acts as a filter for exactly one of its children, return
8254 * that child.
8256 BdrvChild *bdrv_filter_child(BlockDriverState *bs)
8258 BdrvChild *c;
8259 IO_CODE();
8261 if (!bs || !bs->drv) {
8262 return NULL;
8265 if (!bs->drv->is_filter) {
8266 return NULL;
8269 /* Only one of @backing or @file may be used */
8270 assert(!(bs->backing && bs->file));
8272 c = bs->backing ?: bs->file;
8273 if (!c) {
8274 return NULL;
8277 assert(c->role & BDRV_CHILD_FILTERED);
8278 return c;
8282 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8283 * whichever is non-NULL.
8285 * Return NULL if both are NULL.
8287 BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
8289 BdrvChild *cow_child = bdrv_cow_child(bs);
8290 BdrvChild *filter_child = bdrv_filter_child(bs);
8291 IO_CODE();
8293 /* Filter nodes cannot have COW backing files */
8294 assert(!(cow_child && filter_child));
8296 return cow_child ?: filter_child;
8300 * Return the primary child of this node: For filters, that is the
8301 * filtered child. For other nodes, that is usually the child storing
8302 * metadata.
8303 * (A generally more helpful description is that this is (usually) the
8304 * child that has the same filename as @bs.)
8306 * Drivers do not necessarily have a primary child; for example quorum
8307 * does not.
8309 BdrvChild *bdrv_primary_child(BlockDriverState *bs)
8311 BdrvChild *c, *found = NULL;
8312 IO_CODE();
8314 QLIST_FOREACH(c, &bs->children, next) {
8315 if (c->role & BDRV_CHILD_PRIMARY) {
8316 assert(!found);
8317 found = c;
8321 return found;
8324 static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
8325 bool stop_on_explicit_filter)
8327 BdrvChild *c;
8329 if (!bs) {
8330 return NULL;
8333 while (!(stop_on_explicit_filter && !bs->implicit)) {
8334 c = bdrv_filter_child(bs);
8335 if (!c) {
8337 * A filter that is embedded in a working block graph must
8338 * have a child. Assert this here so this function does
8339 * not return a filter node that is not expected by the
8340 * caller.
8342 assert(!bs->drv || !bs->drv->is_filter);
8343 break;
8345 bs = c->bs;
8348 * Note that this treats nodes with bs->drv == NULL as not being
8349 * filters (bs->drv == NULL should be replaced by something else
8350 * anyway).
8351 * The advantage of this behavior is that this function will thus
8352 * always return a non-NULL value (given a non-NULL @bs).
8355 return bs;
8359 * Return the first BDS that has not been added implicitly or that
8360 * does not have a filtered child down the chain starting from @bs
8361 * (including @bs itself).
8363 BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
8365 GLOBAL_STATE_CODE();
8366 return bdrv_do_skip_filters(bs, true);
8370 * Return the first BDS that does not have a filtered child down the
8371 * chain starting from @bs (including @bs itself).
8373 BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
8375 IO_CODE();
8376 return bdrv_do_skip_filters(bs, false);
8380 * For a backing chain, return the first non-filter backing image of
8381 * the first non-filter image.
8383 BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
8385 IO_CODE();
8386 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
8390 * Check whether [offset, offset + bytes) overlaps with the cached
8391 * block-status data region.
8393 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8394 * which is what bdrv_bsc_is_data()'s interface needs.
8395 * Otherwise, *pnum is not touched.
8397 static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
8398 int64_t offset, int64_t bytes,
8399 int64_t *pnum)
8401 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
8402 bool overlaps;
8404 overlaps =
8405 qatomic_read(&bsc->valid) &&
8406 ranges_overlap(offset, bytes, bsc->data_start,
8407 bsc->data_end - bsc->data_start);
8409 if (overlaps && pnum) {
8410 *pnum = bsc->data_end - offset;
8413 return overlaps;
8417 * See block_int.h for this function's documentation.
8419 bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
8421 IO_CODE();
8422 RCU_READ_LOCK_GUARD();
8423 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
8427 * See block_int.h for this function's documentation.
8429 void bdrv_bsc_invalidate_range(BlockDriverState *bs,
8430 int64_t offset, int64_t bytes)
8432 IO_CODE();
8433 RCU_READ_LOCK_GUARD();
8435 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
8436 qatomic_set(&bs->block_status_cache->valid, false);
8441 * See block_int.h for this function's documentation.
8443 void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
8445 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
8446 BdrvBlockStatusCache *old_bsc;
8447 IO_CODE();
8449 *new_bsc = (BdrvBlockStatusCache) {
8450 .valid = true,
8451 .data_start = offset,
8452 .data_end = offset + bytes,
8455 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
8457 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
8458 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
8459 if (old_bsc) {
8460 g_free_rcu(old_bsc, rcu);