Merge tag 'v8.2.0-rc1'
[qemu/ar7.git] / block.c
blob50a1be3a6d459d27fc9fcad8c61f7441acf75b9c
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 GRAPH_RDLOCK
283 bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
284 bool ignore_allow_rdw, Error **errp)
286 IO_CODE();
288 /* Do not set read_only if copy_on_read is enabled */
289 if (bs->copy_on_read && read_only) {
290 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
291 bdrv_get_device_or_node_name(bs));
292 return -EINVAL;
295 /* Do not clear read_only if it is prohibited */
296 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
297 !ignore_allow_rdw)
299 error_setg(errp, "Node '%s' is read only",
300 bdrv_get_device_or_node_name(bs));
301 return -EPERM;
304 return 0;
308 * Called by a driver that can only provide a read-only image.
310 * Returns 0 if the node is already read-only or it could switch the node to
311 * read-only because BDRV_O_AUTO_RDONLY is set.
313 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
314 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
315 * is not NULL, it is used as the error message for the Error object.
317 int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
318 Error **errp)
320 int ret = 0;
321 IO_CODE();
323 if (!(bs->open_flags & BDRV_O_RDWR)) {
324 return 0;
326 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
327 goto fail;
330 ret = bdrv_can_set_read_only(bs, true, false, NULL);
331 if (ret < 0) {
332 goto fail;
335 bs->open_flags &= ~BDRV_O_RDWR;
337 return 0;
339 fail:
340 error_setg(errp, "%s", errmsg ?: "Image is read-only");
341 return -EACCES;
345 * If @backing is empty, this function returns NULL without setting
346 * @errp. In all other cases, NULL will only be returned with @errp
347 * set.
349 * Therefore, a return value of NULL without @errp set means that
350 * there is no backing file; if @errp is set, there is one but its
351 * absolute filename cannot be generated.
353 char *bdrv_get_full_backing_filename_from_filename(const char *backed,
354 const char *backing,
355 Error **errp)
357 if (backing[0] == '\0') {
358 return NULL;
359 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
360 return g_strdup(backing);
361 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
362 error_setg(errp, "Cannot use relative backing file names for '%s'",
363 backed);
364 return NULL;
365 } else {
366 return path_combine(backed, backing);
371 * If @filename is empty or NULL, this function returns NULL without
372 * setting @errp. In all other cases, NULL will only be returned with
373 * @errp set.
375 static char * GRAPH_RDLOCK
376 bdrv_make_absolute_filename(BlockDriverState *relative_to,
377 const char *filename, Error **errp)
379 char *dir, *full_name;
381 if (!filename || filename[0] == '\0') {
382 return NULL;
383 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
384 return g_strdup(filename);
387 dir = bdrv_dirname(relative_to, errp);
388 if (!dir) {
389 return NULL;
392 full_name = g_strconcat(dir, filename, NULL);
393 g_free(dir);
394 return full_name;
397 char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
399 GLOBAL_STATE_CODE();
400 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
403 void bdrv_register(BlockDriver *bdrv)
405 assert(bdrv->format_name);
406 GLOBAL_STATE_CODE();
407 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
410 BlockDriverState *bdrv_new(void)
412 BlockDriverState *bs;
413 int i;
415 GLOBAL_STATE_CODE();
417 bs = g_new0(BlockDriverState, 1);
418 QLIST_INIT(&bs->dirty_bitmaps);
419 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
420 QLIST_INIT(&bs->op_blockers[i]);
422 qemu_mutex_init(&bs->reqs_lock);
423 qemu_mutex_init(&bs->dirty_bitmap_mutex);
424 bs->refcnt = 1;
425 bs->aio_context = qemu_get_aio_context();
427 qemu_co_queue_init(&bs->flush_queue);
429 qemu_co_mutex_init(&bs->bsc_modify_lock);
430 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
432 for (i = 0; i < bdrv_drain_all_count; i++) {
433 bdrv_drained_begin(bs);
436 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
438 return bs;
441 static BlockDriver *bdrv_do_find_format(const char *format_name)
443 BlockDriver *drv1;
444 GLOBAL_STATE_CODE();
446 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
447 if (!strcmp(drv1->format_name, format_name)) {
448 return drv1;
452 return NULL;
455 BlockDriver *bdrv_find_format(const char *format_name)
457 BlockDriver *drv1;
458 int i;
460 GLOBAL_STATE_CODE();
462 drv1 = bdrv_do_find_format(format_name);
463 if (drv1) {
464 return drv1;
467 /* The driver isn't registered, maybe we need to load a module */
468 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
469 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
470 Error *local_err = NULL;
471 int rv = block_module_load(block_driver_modules[i].library_name,
472 &local_err);
473 if (rv > 0) {
474 return bdrv_do_find_format(format_name);
475 } else if (rv < 0) {
476 error_report_err(local_err);
478 break;
481 return NULL;
484 static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
486 static const char *whitelist_rw[] = {
487 CONFIG_BDRV_RW_WHITELIST
488 NULL
490 static const char *whitelist_ro[] = {
491 CONFIG_BDRV_RO_WHITELIST
492 NULL
494 const char **p;
496 if (!whitelist_rw[0] && !whitelist_ro[0]) {
497 return 1; /* no whitelist, anything goes */
500 for (p = whitelist_rw; *p; p++) {
501 if (!strcmp(format_name, *p)) {
502 return 1;
505 if (read_only) {
506 for (p = whitelist_ro; *p; p++) {
507 if (!strcmp(format_name, *p)) {
508 return 1;
512 return 0;
515 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
517 GLOBAL_STATE_CODE();
518 return bdrv_format_is_whitelisted(drv->format_name, read_only);
521 bool bdrv_uses_whitelist(void)
523 return use_bdrv_whitelist;
526 typedef struct CreateCo {
527 BlockDriver *drv;
528 char *filename;
529 QemuOpts *opts;
530 int ret;
531 Error *err;
532 } CreateCo;
534 int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename,
535 QemuOpts *opts, Error **errp)
537 int ret;
538 GLOBAL_STATE_CODE();
539 ERRP_GUARD();
541 if (!drv->bdrv_co_create_opts) {
542 error_setg(errp, "Driver '%s' does not support image creation",
543 drv->format_name);
544 return -ENOTSUP;
547 ret = drv->bdrv_co_create_opts(drv, filename, opts, errp);
548 if (ret < 0 && !*errp) {
549 error_setg_errno(errp, -ret, "Could not create image");
552 return ret;
556 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
557 * least the given @minimum_size.
559 * On success, return @blk's actual length.
560 * Otherwise, return -errno.
562 static int64_t coroutine_fn GRAPH_UNLOCKED
563 create_file_fallback_truncate(BlockBackend *blk, int64_t minimum_size,
564 Error **errp)
566 Error *local_err = NULL;
567 int64_t size;
568 int ret;
570 GLOBAL_STATE_CODE();
572 ret = blk_co_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
573 &local_err);
574 if (ret < 0 && ret != -ENOTSUP) {
575 error_propagate(errp, local_err);
576 return ret;
579 size = blk_co_getlength(blk);
580 if (size < 0) {
581 error_free(local_err);
582 error_setg_errno(errp, -size,
583 "Failed to inquire the new image file's length");
584 return size;
587 if (size < minimum_size) {
588 /* Need to grow the image, but we failed to do that */
589 error_propagate(errp, local_err);
590 return -ENOTSUP;
593 error_free(local_err);
594 local_err = NULL;
596 return size;
600 * Helper function for bdrv_create_file_fallback(): Zero the first
601 * sector to remove any potentially pre-existing image header.
603 static int coroutine_fn
604 create_file_fallback_zero_first_sector(BlockBackend *blk,
605 int64_t current_size,
606 Error **errp)
608 int64_t bytes_to_clear;
609 int ret;
611 GLOBAL_STATE_CODE();
613 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
614 if (bytes_to_clear) {
615 ret = blk_co_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
616 if (ret < 0) {
617 error_setg_errno(errp, -ret,
618 "Failed to clear the new image's first sector");
619 return ret;
623 return 0;
627 * Simple implementation of bdrv_co_create_opts for protocol drivers
628 * which only support creation via opening a file
629 * (usually existing raw storage device)
631 int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
632 const char *filename,
633 QemuOpts *opts,
634 Error **errp)
636 BlockBackend *blk;
637 QDict *options;
638 int64_t size = 0;
639 char *buf = NULL;
640 PreallocMode prealloc;
641 Error *local_err = NULL;
642 int ret;
644 GLOBAL_STATE_CODE();
646 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
647 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
648 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
649 PREALLOC_MODE_OFF, &local_err);
650 g_free(buf);
651 if (local_err) {
652 error_propagate(errp, local_err);
653 return -EINVAL;
656 if (prealloc != PREALLOC_MODE_OFF) {
657 error_setg(errp, "Unsupported preallocation mode '%s'",
658 PreallocMode_str(prealloc));
659 return -ENOTSUP;
662 options = qdict_new();
663 qdict_put_str(options, "driver", drv->format_name);
665 blk = blk_co_new_open(filename, NULL, options,
666 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
667 if (!blk) {
668 error_prepend(errp, "Protocol driver '%s' does not support creating "
669 "new images, so an existing image must be selected as "
670 "the target; however, opening the given target as an "
671 "existing image failed: ",
672 drv->format_name);
673 return -EINVAL;
676 size = create_file_fallback_truncate(blk, size, errp);
677 if (size < 0) {
678 ret = size;
679 goto out;
682 ret = create_file_fallback_zero_first_sector(blk, size, errp);
683 if (ret < 0) {
684 goto out;
687 ret = 0;
688 out:
689 blk_co_unref(blk);
690 return ret;
693 int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts,
694 Error **errp)
696 QemuOpts *protocol_opts;
697 BlockDriver *drv;
698 QDict *qdict;
699 int ret;
701 GLOBAL_STATE_CODE();
703 drv = bdrv_find_protocol(filename, true, errp);
704 if (drv == NULL) {
705 return -ENOENT;
708 if (!drv->create_opts) {
709 error_setg(errp, "Driver '%s' does not support image creation",
710 drv->format_name);
711 return -ENOTSUP;
715 * 'opts' contains a QemuOptsList with a combination of format and protocol
716 * default values.
718 * The format properly removes its options, but the default values remain
719 * in 'opts->list'. So if the protocol has options with the same name
720 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
721 * of the format, since for overlapping options, the format wins.
723 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
724 * only the set options, and then convert it back to QemuOpts, using the
725 * create_opts of the protocol. So the new QemuOpts, will contain only the
726 * protocol defaults.
728 qdict = qemu_opts_to_qdict(opts, NULL);
729 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
730 if (protocol_opts == NULL) {
731 ret = -EINVAL;
732 goto out;
735 ret = bdrv_co_create(drv, filename, protocol_opts, errp);
736 out:
737 qemu_opts_del(protocol_opts);
738 qobject_unref(qdict);
739 return ret;
742 int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
744 Error *local_err = NULL;
745 int ret;
747 IO_CODE();
748 assert(bs != NULL);
749 assert_bdrv_graph_readable();
751 if (!bs->drv) {
752 error_setg(errp, "Block node '%s' is not opened", bs->filename);
753 return -ENOMEDIUM;
756 if (!bs->drv->bdrv_co_delete_file) {
757 error_setg(errp, "Driver '%s' does not support image deletion",
758 bs->drv->format_name);
759 return -ENOTSUP;
762 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
763 if (ret < 0) {
764 error_propagate(errp, local_err);
767 return ret;
770 void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
772 Error *local_err = NULL;
773 int ret;
774 IO_CODE();
776 if (!bs) {
777 return;
780 ret = bdrv_co_delete_file(bs, &local_err);
782 * ENOTSUP will happen if the block driver doesn't support
783 * the 'bdrv_co_delete_file' interface. This is a predictable
784 * scenario and shouldn't be reported back to the user.
786 if (ret == -ENOTSUP) {
787 error_free(local_err);
788 } else if (ret < 0) {
789 error_report_err(local_err);
794 * Try to get @bs's logical and physical block size.
795 * On success, store them in @bsz struct and return 0.
796 * On failure return -errno.
797 * @bs must not be empty.
799 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
801 BlockDriver *drv = bs->drv;
802 BlockDriverState *filtered = bdrv_filter_bs(bs);
803 GLOBAL_STATE_CODE();
805 if (drv && drv->bdrv_probe_blocksizes) {
806 return drv->bdrv_probe_blocksizes(bs, bsz);
807 } else if (filtered) {
808 return bdrv_probe_blocksizes(filtered, bsz);
811 return -ENOTSUP;
815 * Try to get @bs's geometry (cyls, heads, sectors).
816 * On success, store them in @geo struct and return 0.
817 * On failure return -errno.
818 * @bs must not be empty.
820 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
822 BlockDriver *drv = bs->drv;
823 BlockDriverState *filtered;
825 GLOBAL_STATE_CODE();
826 GRAPH_RDLOCK_GUARD_MAINLOOP();
828 if (drv && drv->bdrv_probe_geometry) {
829 return drv->bdrv_probe_geometry(bs, geo);
832 filtered = bdrv_filter_bs(bs);
833 if (filtered) {
834 return bdrv_probe_geometry(filtered, geo);
837 return -ENOTSUP;
841 * Create a uniquely-named empty temporary file.
842 * Return the actual file name used upon success, otherwise NULL.
843 * This string should be freed with g_free() when not needed any longer.
845 * Note: creating a temporary file for the caller to (re)open is
846 * inherently racy. Use g_file_open_tmp() instead whenever practical.
848 char *create_tmp_file(Error **errp)
850 int fd;
851 const char *tmpdir;
852 g_autofree char *filename = NULL;
854 tmpdir = g_get_tmp_dir();
855 #ifndef _WIN32
857 * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot")
859 * This function is used to create temporary disk images (like -snapshot),
860 * so the files can become very large. /tmp is often a tmpfs where as
861 * /var/tmp is usually on a disk, so more appropriate for disk images.
863 if (!g_strcmp0(tmpdir, "/tmp")) {
864 tmpdir = "/var/tmp";
866 #endif
868 filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir);
869 fd = g_mkstemp(filename);
870 if (fd < 0) {
871 error_setg_errno(errp, errno, "Could not open temporary file '%s'",
872 filename);
873 return NULL;
875 close(fd);
877 return g_steal_pointer(&filename);
881 * Detect host devices. By convention, /dev/cdrom[N] is always
882 * recognized as a host CDROM.
884 static BlockDriver *find_hdev_driver(const char *filename)
886 int score_max = 0, score;
887 BlockDriver *drv = NULL, *d;
888 GLOBAL_STATE_CODE();
890 QLIST_FOREACH(d, &bdrv_drivers, list) {
891 if (d->bdrv_probe_device) {
892 score = d->bdrv_probe_device(filename);
893 if (score > score_max) {
894 score_max = score;
895 drv = d;
900 return drv;
903 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
905 BlockDriver *drv1;
906 GLOBAL_STATE_CODE();
908 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
909 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
910 return drv1;
914 return NULL;
917 BlockDriver *bdrv_find_protocol(const char *filename,
918 bool allow_protocol_prefix,
919 Error **errp)
921 BlockDriver *drv1;
922 char protocol[128];
923 int len;
924 const char *p;
925 int i;
927 GLOBAL_STATE_CODE();
928 /* TODO Drivers without bdrv_file_open must be specified explicitly */
931 * XXX(hch): we really should not let host device detection
932 * override an explicit protocol specification, but moving this
933 * later breaks access to device names with colons in them.
934 * Thanks to the brain-dead persistent naming schemes on udev-
935 * based Linux systems those actually are quite common.
937 drv1 = find_hdev_driver(filename);
938 if (drv1) {
939 return drv1;
942 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
943 return &bdrv_file;
946 p = strchr(filename, ':');
947 assert(p != NULL);
948 len = p - filename;
949 if (len > sizeof(protocol) - 1)
950 len = sizeof(protocol) - 1;
951 memcpy(protocol, filename, len);
952 protocol[len] = '\0';
954 drv1 = bdrv_do_find_protocol(protocol);
955 if (drv1) {
956 return drv1;
959 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
960 if (block_driver_modules[i].protocol_name &&
961 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
962 int rv = block_module_load(block_driver_modules[i].library_name, errp);
963 if (rv > 0) {
964 drv1 = bdrv_do_find_protocol(protocol);
965 } else if (rv < 0) {
966 return NULL;
968 break;
972 if (!drv1) {
973 error_setg(errp, "Unknown protocol '%s'", protocol);
975 return drv1;
979 * Guess image format by probing its contents.
980 * This is not a good idea when your image is raw (CVE-2008-2004), but
981 * we do it anyway for backward compatibility.
983 * @buf contains the image's first @buf_size bytes.
984 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
985 * but can be smaller if the image file is smaller)
986 * @filename is its filename.
988 * For all block drivers, call the bdrv_probe() method to get its
989 * probing score.
990 * Return the first block driver with the highest probing score.
992 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
993 const char *filename)
995 int score_max = 0, score;
996 BlockDriver *drv = NULL, *d;
997 IO_CODE();
999 QLIST_FOREACH(d, &bdrv_drivers, list) {
1000 if (d->bdrv_probe) {
1001 score = d->bdrv_probe(buf, buf_size, filename);
1002 if (score > score_max) {
1003 score_max = score;
1004 drv = d;
1009 return drv;
1012 static int find_image_format(BlockBackend *file, const char *filename,
1013 BlockDriver **pdrv, Error **errp)
1015 BlockDriver *drv;
1016 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
1017 int ret = 0;
1019 GLOBAL_STATE_CODE();
1021 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
1022 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
1023 *pdrv = &bdrv_raw;
1024 return ret;
1027 ret = blk_pread(file, 0, sizeof(buf), buf, 0);
1028 if (ret < 0) {
1029 error_setg_errno(errp, -ret, "Could not read image for determining its "
1030 "format");
1031 *pdrv = NULL;
1032 return ret;
1035 drv = bdrv_probe_all(buf, sizeof(buf), filename);
1036 if (!drv) {
1037 error_setg(errp, "Could not determine image format: No compatible "
1038 "driver found");
1039 *pdrv = NULL;
1040 return -ENOENT;
1043 *pdrv = drv;
1044 return 0;
1048 * Set the current 'total_sectors' value
1049 * Return 0 on success, -errno on error.
1051 int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs,
1052 int64_t hint)
1054 BlockDriver *drv = bs->drv;
1055 IO_CODE();
1056 assert_bdrv_graph_readable();
1058 if (!drv) {
1059 return -ENOMEDIUM;
1062 /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */
1063 if (bdrv_is_sg(bs))
1064 return 0;
1066 /* query actual device if possible, otherwise just trust the hint */
1067 if (drv->bdrv_co_getlength) {
1068 int64_t length = drv->bdrv_co_getlength(bs);
1069 if (length < 0) {
1070 return length;
1072 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
1075 bs->total_sectors = hint;
1077 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1078 return -EFBIG;
1081 return 0;
1085 * Combines a QDict of new block driver @options with any missing options taken
1086 * from @old_options, so that leaving out an option defaults to its old value.
1088 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1089 QDict *old_options)
1091 GLOBAL_STATE_CODE();
1092 if (bs->drv && bs->drv->bdrv_join_options) {
1093 bs->drv->bdrv_join_options(options, old_options);
1094 } else {
1095 qdict_join(options, old_options, false);
1099 static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1100 int open_flags,
1101 Error **errp)
1103 Error *local_err = NULL;
1104 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1105 BlockdevDetectZeroesOptions detect_zeroes =
1106 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1107 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
1108 GLOBAL_STATE_CODE();
1109 g_free(value);
1110 if (local_err) {
1111 error_propagate(errp, local_err);
1112 return detect_zeroes;
1115 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1116 !(open_flags & BDRV_O_UNMAP))
1118 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1119 "without setting discard operation to unmap");
1122 return detect_zeroes;
1126 * Set open flags for aio engine
1128 * Return 0 on success, -1 if the engine specified is invalid
1130 int bdrv_parse_aio(const char *mode, int *flags)
1132 if (!strcmp(mode, "threads")) {
1133 /* do nothing, default */
1134 } else if (!strcmp(mode, "native")) {
1135 *flags |= BDRV_O_NATIVE_AIO;
1136 #ifdef CONFIG_LINUX_IO_URING
1137 } else if (!strcmp(mode, "io_uring")) {
1138 *flags |= BDRV_O_IO_URING;
1139 #endif
1140 } else {
1141 return -1;
1144 return 0;
1148 * Set open flags for a given discard mode
1150 * Return 0 on success, -1 if the discard mode was invalid.
1152 int bdrv_parse_discard_flags(const char *mode, int *flags)
1154 *flags &= ~BDRV_O_UNMAP;
1156 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1157 /* do nothing */
1158 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1159 *flags |= BDRV_O_UNMAP;
1160 } else {
1161 return -1;
1164 return 0;
1168 * Set open flags for a given cache mode
1170 * Return 0 on success, -1 if the cache mode was invalid.
1172 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
1174 *flags &= ~BDRV_O_CACHE_MASK;
1176 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
1177 *writethrough = false;
1178 *flags |= BDRV_O_NOCACHE;
1179 } else if (!strcmp(mode, "directsync")) {
1180 *writethrough = true;
1181 *flags |= BDRV_O_NOCACHE;
1182 } else if (!strcmp(mode, "writeback")) {
1183 *writethrough = false;
1184 } else if (!strcmp(mode, "unsafe")) {
1185 *writethrough = false;
1186 *flags |= BDRV_O_NO_FLUSH;
1187 } else if (!strcmp(mode, "writethrough")) {
1188 *writethrough = true;
1189 } else {
1190 return -1;
1193 return 0;
1196 static char *bdrv_child_get_parent_desc(BdrvChild *c)
1198 BlockDriverState *parent = c->opaque;
1199 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
1202 static void GRAPH_RDLOCK bdrv_child_cb_drained_begin(BdrvChild *child)
1204 BlockDriverState *bs = child->opaque;
1205 bdrv_do_drained_begin_quiesce(bs, NULL);
1208 static bool GRAPH_RDLOCK bdrv_child_cb_drained_poll(BdrvChild *child)
1210 BlockDriverState *bs = child->opaque;
1211 return bdrv_drain_poll(bs, NULL, false);
1214 static void GRAPH_RDLOCK bdrv_child_cb_drained_end(BdrvChild *child)
1216 BlockDriverState *bs = child->opaque;
1217 bdrv_drained_end(bs);
1220 static int bdrv_child_cb_inactivate(BdrvChild *child)
1222 BlockDriverState *bs = child->opaque;
1223 GLOBAL_STATE_CODE();
1224 assert(bs->open_flags & BDRV_O_INACTIVE);
1225 return 0;
1228 static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx,
1229 GHashTable *visited, Transaction *tran,
1230 Error **errp)
1232 BlockDriverState *bs = child->opaque;
1233 return bdrv_change_aio_context(bs, ctx, visited, tran, errp);
1237 * Returns the options and flags that a temporary snapshot should get, based on
1238 * the originally requested flags (the originally requested image will have
1239 * flags like a backing file)
1241 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1242 int parent_flags, QDict *parent_options)
1244 GLOBAL_STATE_CODE();
1245 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1247 /* For temporary files, unconditional cache=unsafe is fine */
1248 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1249 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
1251 /* Copy the read-only and discard options from the parent */
1252 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1253 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
1255 /* aio=native doesn't work for cache.direct=off, so disable it for the
1256 * temporary snapshot */
1257 *child_flags &= ~BDRV_O_NATIVE_AIO;
1260 static void GRAPH_WRLOCK bdrv_backing_attach(BdrvChild *c)
1262 BlockDriverState *parent = c->opaque;
1263 BlockDriverState *backing_hd = c->bs;
1265 GLOBAL_STATE_CODE();
1266 assert(!parent->backing_blocker);
1267 error_setg(&parent->backing_blocker,
1268 "node is used as backing hd of '%s'",
1269 bdrv_get_device_or_node_name(parent));
1271 bdrv_refresh_filename(backing_hd);
1273 parent->open_flags &= ~BDRV_O_NO_BACKING;
1275 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1276 /* Otherwise we won't be able to commit or stream */
1277 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1278 parent->backing_blocker);
1279 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1280 parent->backing_blocker);
1282 * We do backup in 3 ways:
1283 * 1. drive backup
1284 * The target bs is new opened, and the source is top BDS
1285 * 2. blockdev backup
1286 * Both the source and the target are top BDSes.
1287 * 3. internal backup(used for block replication)
1288 * Both the source and the target are backing file
1290 * In case 1 and 2, neither the source nor the target is the backing file.
1291 * In case 3, we will block the top BDS, so there is only one block job
1292 * for the top BDS and its backing chain.
1294 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1295 parent->backing_blocker);
1296 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1297 parent->backing_blocker);
1300 static void bdrv_backing_detach(BdrvChild *c)
1302 BlockDriverState *parent = c->opaque;
1304 GLOBAL_STATE_CODE();
1305 assert(parent->backing_blocker);
1306 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1307 error_free(parent->backing_blocker);
1308 parent->backing_blocker = NULL;
1311 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1312 const char *filename, Error **errp)
1314 BlockDriverState *parent = c->opaque;
1315 bool read_only = bdrv_is_read_only(parent);
1316 int ret;
1317 GLOBAL_STATE_CODE();
1319 if (read_only) {
1320 ret = bdrv_reopen_set_read_only(parent, false, errp);
1321 if (ret < 0) {
1322 return ret;
1326 ret = bdrv_change_backing_file(parent, filename,
1327 base->drv ? base->drv->format_name : "",
1328 false);
1329 if (ret < 0) {
1330 error_setg_errno(errp, -ret, "Could not update backing file link");
1333 if (read_only) {
1334 bdrv_reopen_set_read_only(parent, true, NULL);
1337 return ret;
1341 * Returns the options and flags that a generic child of a BDS should
1342 * get, based on the given options and flags for the parent BDS.
1344 static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1345 int *child_flags, QDict *child_options,
1346 int parent_flags, QDict *parent_options)
1348 int flags = parent_flags;
1349 GLOBAL_STATE_CODE();
1352 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1353 * Generally, the question to answer is: Should this child be
1354 * format-probed by default?
1358 * Pure and non-filtered data children of non-format nodes should
1359 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1360 * set). This only affects a very limited set of drivers (namely
1361 * quorum and blkverify when this comment was written).
1362 * Force-clear BDRV_O_PROTOCOL then.
1364 if (!parent_is_format &&
1365 (role & BDRV_CHILD_DATA) &&
1366 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1368 flags &= ~BDRV_O_PROTOCOL;
1372 * All children of format nodes (except for COW children) and all
1373 * metadata children in general should never be format-probed.
1374 * Force-set BDRV_O_PROTOCOL then.
1376 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1377 (role & BDRV_CHILD_METADATA))
1379 flags |= BDRV_O_PROTOCOL;
1383 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1384 * the parent.
1386 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1387 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1388 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1390 if (role & BDRV_CHILD_COW) {
1391 /* backing files are opened read-only by default */
1392 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1393 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1394 } else {
1395 /* Inherit the read-only option from the parent if it's not set */
1396 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1397 qdict_copy_default(child_options, parent_options,
1398 BDRV_OPT_AUTO_READ_ONLY);
1402 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1403 * can default to enable it on lower layers regardless of the
1404 * parent option.
1406 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1408 /* Clear flags that only apply to the top layer */
1409 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1411 if (role & BDRV_CHILD_METADATA) {
1412 flags &= ~BDRV_O_NO_IO;
1414 if (role & BDRV_CHILD_COW) {
1415 flags &= ~BDRV_O_TEMPORARY;
1418 *child_flags = flags;
1421 static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child)
1423 BlockDriverState *bs = child->opaque;
1425 assert_bdrv_graph_writable();
1426 QLIST_INSERT_HEAD(&bs->children, child, next);
1427 if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) {
1429 * Here we handle filters and block/raw-format.c when it behave like
1430 * filter. They generally have a single PRIMARY child, which is also the
1431 * FILTERED child, and that they may have multiple more children, which
1432 * are neither PRIMARY nor FILTERED. And never we have a COW child here.
1433 * So bs->file will be the PRIMARY child, unless the PRIMARY child goes
1434 * into bs->backing on exceptional cases; and bs->backing will be
1435 * nothing else.
1437 assert(!(child->role & BDRV_CHILD_COW));
1438 if (child->role & BDRV_CHILD_PRIMARY) {
1439 assert(child->role & BDRV_CHILD_FILTERED);
1440 assert(!bs->backing);
1441 assert(!bs->file);
1443 if (bs->drv->filtered_child_is_backing) {
1444 bs->backing = child;
1445 } else {
1446 bs->file = child;
1448 } else {
1449 assert(!(child->role & BDRV_CHILD_FILTERED));
1451 } else if (child->role & BDRV_CHILD_COW) {
1452 assert(bs->drv->supports_backing);
1453 assert(!(child->role & BDRV_CHILD_PRIMARY));
1454 assert(!bs->backing);
1455 bs->backing = child;
1456 bdrv_backing_attach(child);
1457 } else if (child->role & BDRV_CHILD_PRIMARY) {
1458 assert(!bs->file);
1459 bs->file = child;
1463 static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child)
1465 BlockDriverState *bs = child->opaque;
1467 if (child->role & BDRV_CHILD_COW) {
1468 bdrv_backing_detach(child);
1471 assert_bdrv_graph_writable();
1472 QLIST_REMOVE(child, next);
1473 if (child == bs->backing) {
1474 assert(child != bs->file);
1475 bs->backing = NULL;
1476 } else if (child == bs->file) {
1477 bs->file = NULL;
1481 static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1482 const char *filename, Error **errp)
1484 if (c->role & BDRV_CHILD_COW) {
1485 return bdrv_backing_update_filename(c, base, filename, errp);
1487 return 0;
1490 AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
1492 BlockDriverState *bs = c->opaque;
1493 IO_CODE();
1495 return bdrv_get_aio_context(bs);
1498 const BdrvChildClass child_of_bds = {
1499 .parent_is_bds = true,
1500 .get_parent_desc = bdrv_child_get_parent_desc,
1501 .inherit_options = bdrv_inherited_options,
1502 .drained_begin = bdrv_child_cb_drained_begin,
1503 .drained_poll = bdrv_child_cb_drained_poll,
1504 .drained_end = bdrv_child_cb_drained_end,
1505 .attach = bdrv_child_cb_attach,
1506 .detach = bdrv_child_cb_detach,
1507 .inactivate = bdrv_child_cb_inactivate,
1508 .change_aio_ctx = bdrv_child_cb_change_aio_ctx,
1509 .update_filename = bdrv_child_cb_update_filename,
1510 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
1513 AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1515 IO_CODE();
1516 return c->klass->get_parent_aio_context(c);
1519 static int bdrv_open_flags(BlockDriverState *bs, int flags)
1521 int open_flags = flags;
1522 GLOBAL_STATE_CODE();
1525 * Clear flags that are internal to the block layer before opening the
1526 * image.
1528 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1530 return open_flags;
1533 static void update_flags_from_options(int *flags, QemuOpts *opts)
1535 GLOBAL_STATE_CODE();
1537 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
1539 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1540 *flags |= BDRV_O_NO_FLUSH;
1543 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1544 *flags |= BDRV_O_NOCACHE;
1547 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
1548 *flags |= BDRV_O_RDWR;
1551 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1552 *flags |= BDRV_O_AUTO_RDONLY;
1556 static void update_options_from_flags(QDict *options, int flags)
1558 GLOBAL_STATE_CODE();
1559 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1560 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1562 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
1563 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1564 flags & BDRV_O_NO_FLUSH);
1566 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1567 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1569 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1570 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1571 flags & BDRV_O_AUTO_RDONLY);
1575 static void bdrv_assign_node_name(BlockDriverState *bs,
1576 const char *node_name,
1577 Error **errp)
1579 char *gen_node_name = NULL;
1580 GLOBAL_STATE_CODE();
1582 if (!node_name) {
1583 node_name = gen_node_name = id_generate(ID_BLOCK);
1584 } else if (!id_wellformed(node_name)) {
1586 * Check for empty string or invalid characters, but not if it is
1587 * generated (generated names use characters not available to the user)
1589 error_setg(errp, "Invalid node-name: '%s'", node_name);
1590 return;
1593 /* takes care of avoiding namespaces collisions */
1594 if (blk_by_name(node_name)) {
1595 error_setg(errp, "node-name=%s is conflicting with a device id",
1596 node_name);
1597 goto out;
1600 /* takes care of avoiding duplicates node names */
1601 if (bdrv_find_node(node_name)) {
1602 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
1603 goto out;
1606 /* Make sure that the node name isn't truncated */
1607 if (strlen(node_name) >= sizeof(bs->node_name)) {
1608 error_setg(errp, "Node name too long");
1609 goto out;
1612 /* copy node name into the bs and insert it into the graph list */
1613 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1614 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
1615 out:
1616 g_free(gen_node_name);
1620 * The caller must always hold @bs AioContext lock, because this function calls
1621 * bdrv_refresh_total_sectors() which polls when called from non-coroutine
1622 * context.
1624 static int no_coroutine_fn GRAPH_UNLOCKED
1625 bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, const char *node_name,
1626 QDict *options, int open_flags, Error **errp)
1628 AioContext *ctx;
1629 Error *local_err = NULL;
1630 int i, ret;
1631 GLOBAL_STATE_CODE();
1633 bdrv_assign_node_name(bs, node_name, &local_err);
1634 if (local_err) {
1635 error_propagate(errp, local_err);
1636 return -EINVAL;
1639 bs->drv = drv;
1640 bs->opaque = g_malloc0(drv->instance_size);
1642 if (drv->bdrv_file_open) {
1643 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1644 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1645 } else if (drv->bdrv_open) {
1646 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1647 } else {
1648 ret = 0;
1651 if (ret < 0) {
1652 if (local_err) {
1653 error_propagate(errp, local_err);
1654 } else if (bs->filename[0]) {
1655 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1656 } else {
1657 error_setg_errno(errp, -ret, "Could not open image");
1659 goto open_failed;
1662 assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK));
1663 assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK));
1666 * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves
1667 * drivers that pass read/write requests through to a child the trouble of
1668 * declaring support explicitly.
1670 * Drivers must not propagate this flag accidentally when they initiate I/O
1671 * to a bounce buffer. That case should be rare though.
1673 bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF;
1674 bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF;
1676 /* Get the context after .bdrv_open, it can change the context */
1677 ctx = bdrv_get_aio_context(bs);
1678 aio_context_acquire(ctx);
1680 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
1681 if (ret < 0) {
1682 error_setg_errno(errp, -ret, "Could not refresh total sector count");
1683 aio_context_release(ctx);
1684 return ret;
1687 bdrv_graph_rdlock_main_loop();
1688 bdrv_refresh_limits(bs, NULL, &local_err);
1689 bdrv_graph_rdunlock_main_loop();
1690 aio_context_release(ctx);
1692 if (local_err) {
1693 error_propagate(errp, local_err);
1694 return -EINVAL;
1697 assert(bdrv_opt_mem_align(bs) != 0);
1698 assert(bdrv_min_mem_align(bs) != 0);
1699 assert(is_power_of_2(bs->bl.request_alignment));
1701 for (i = 0; i < bs->quiesce_counter; i++) {
1702 if (drv->bdrv_drain_begin) {
1703 drv->bdrv_drain_begin(bs);
1707 return 0;
1708 open_failed:
1709 bs->drv = NULL;
1711 bdrv_graph_wrlock(NULL);
1712 if (bs->file != NULL) {
1713 bdrv_unref_child(bs, bs->file);
1714 assert(!bs->file);
1716 bdrv_graph_wrunlock(NULL);
1718 g_free(bs->opaque);
1719 bs->opaque = NULL;
1720 return ret;
1724 * Create and open a block node.
1726 * @options is a QDict of options to pass to the block drivers, or NULL for an
1727 * empty set of options. The reference to the QDict belongs to the block layer
1728 * after the call (even on failure), so if the caller intends to reuse the
1729 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1731 BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1732 const char *node_name,
1733 QDict *options, int flags,
1734 Error **errp)
1736 BlockDriverState *bs;
1737 int ret;
1739 GLOBAL_STATE_CODE();
1741 bs = bdrv_new();
1742 bs->open_flags = flags;
1743 bs->options = options ?: qdict_new();
1744 bs->explicit_options = qdict_clone_shallow(bs->options);
1745 bs->opaque = NULL;
1747 update_options_from_flags(bs->options, flags);
1749 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1750 if (ret < 0) {
1751 qobject_unref(bs->explicit_options);
1752 bs->explicit_options = NULL;
1753 qobject_unref(bs->options);
1754 bs->options = NULL;
1755 bdrv_unref(bs);
1756 return NULL;
1759 return bs;
1762 /* Create and open a block node. */
1763 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1764 int flags, Error **errp)
1766 GLOBAL_STATE_CODE();
1767 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1770 QemuOptsList bdrv_runtime_opts = {
1771 .name = "bdrv_common",
1772 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1773 .desc = {
1775 .name = "node-name",
1776 .type = QEMU_OPT_STRING,
1777 .help = "Node name of the block device node",
1780 .name = "driver",
1781 .type = QEMU_OPT_STRING,
1782 .help = "Block driver to use for the node",
1785 .name = BDRV_OPT_CACHE_DIRECT,
1786 .type = QEMU_OPT_BOOL,
1787 .help = "Bypass software writeback cache on the host",
1790 .name = BDRV_OPT_CACHE_NO_FLUSH,
1791 .type = QEMU_OPT_BOOL,
1792 .help = "Ignore flush requests",
1795 .name = BDRV_OPT_READ_ONLY,
1796 .type = QEMU_OPT_BOOL,
1797 .help = "Node is opened in read-only mode",
1800 .name = BDRV_OPT_AUTO_READ_ONLY,
1801 .type = QEMU_OPT_BOOL,
1802 .help = "Node can become read-only if opening read-write fails",
1805 .name = "detect-zeroes",
1806 .type = QEMU_OPT_STRING,
1807 .help = "try to optimize zero writes (off, on, unmap)",
1810 .name = BDRV_OPT_DISCARD,
1811 .type = QEMU_OPT_STRING,
1812 .help = "discard operation (ignore/off, unmap/on)",
1815 .name = BDRV_OPT_FORCE_SHARE,
1816 .type = QEMU_OPT_BOOL,
1817 .help = "always accept other writers (default: off)",
1819 { /* end of list */ }
1823 QemuOptsList bdrv_create_opts_simple = {
1824 .name = "simple-create-opts",
1825 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
1826 .desc = {
1828 .name = BLOCK_OPT_SIZE,
1829 .type = QEMU_OPT_SIZE,
1830 .help = "Virtual disk size"
1833 .name = BLOCK_OPT_PREALLOC,
1834 .type = QEMU_OPT_STRING,
1835 .help = "Preallocation mode (allowed values: off)"
1837 { /* end of list */ }
1842 * Common part for opening disk images and files
1844 * Removes all processed options from *options.
1846 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1847 QDict *options, Error **errp)
1849 int ret, open_flags;
1850 const char *filename;
1851 const char *driver_name = NULL;
1852 const char *node_name = NULL;
1853 const char *discard;
1854 QemuOpts *opts;
1855 BlockDriver *drv;
1856 Error *local_err = NULL;
1857 bool ro;
1859 GLOBAL_STATE_CODE();
1861 bdrv_graph_rdlock_main_loop();
1862 assert(bs->file == NULL);
1863 assert(options != NULL && bs->options != options);
1864 bdrv_graph_rdunlock_main_loop();
1866 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1867 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
1868 ret = -EINVAL;
1869 goto fail_opts;
1872 update_flags_from_options(&bs->open_flags, opts);
1874 driver_name = qemu_opt_get(opts, "driver");
1875 drv = bdrv_find_format(driver_name);
1876 assert(drv != NULL);
1878 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1880 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1881 error_setg(errp,
1882 BDRV_OPT_FORCE_SHARE
1883 "=on can only be used with read-only images");
1884 ret = -EINVAL;
1885 goto fail_opts;
1888 if (file != NULL) {
1889 bdrv_graph_rdlock_main_loop();
1890 bdrv_refresh_filename(blk_bs(file));
1891 bdrv_graph_rdunlock_main_loop();
1893 filename = blk_bs(file)->filename;
1894 } else {
1896 * Caution: while qdict_get_try_str() is fine, getting
1897 * non-string types would require more care. When @options
1898 * come from -blockdev or blockdev_add, its members are typed
1899 * according to the QAPI schema, but when they come from
1900 * -drive, they're all QString.
1902 filename = qdict_get_try_str(options, "filename");
1905 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1906 error_setg(errp, "The '%s' block driver requires a file name",
1907 drv->format_name);
1908 ret = -EINVAL;
1909 goto fail_opts;
1912 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1913 drv->format_name);
1915 ro = bdrv_is_read_only(bs);
1917 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1918 if (!ro && bdrv_is_whitelisted(drv, true)) {
1919 bdrv_graph_rdlock_main_loop();
1920 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1921 bdrv_graph_rdunlock_main_loop();
1922 } else {
1923 ret = -ENOTSUP;
1925 if (ret < 0) {
1926 error_setg(errp,
1927 !ro && bdrv_is_whitelisted(drv, true)
1928 ? "Driver '%s' can only be used for read-only devices"
1929 : "Driver '%s' is not whitelisted",
1930 drv->format_name);
1931 goto fail_opts;
1935 /* bdrv_new() and bdrv_close() make it so */
1936 assert(qatomic_read(&bs->copy_on_read) == 0);
1938 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1939 if (!ro) {
1940 bdrv_enable_copy_on_read(bs);
1941 } else {
1942 error_setg(errp, "Can't use copy-on-read on read-only device");
1943 ret = -EINVAL;
1944 goto fail_opts;
1948 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
1949 if (discard != NULL) {
1950 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1951 error_setg(errp, "Invalid discard option");
1952 ret = -EINVAL;
1953 goto fail_opts;
1957 bs->detect_zeroes =
1958 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1959 if (local_err) {
1960 error_propagate(errp, local_err);
1961 ret = -EINVAL;
1962 goto fail_opts;
1965 if (filename != NULL) {
1966 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1967 } else {
1968 bs->filename[0] = '\0';
1970 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1972 /* Open the image, either directly or using a protocol */
1973 open_flags = bdrv_open_flags(bs, bs->open_flags);
1974 node_name = qemu_opt_get(opts, "node-name");
1976 assert(!drv->bdrv_file_open || file == NULL);
1977 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1978 if (ret < 0) {
1979 goto fail_opts;
1982 qemu_opts_del(opts);
1983 return 0;
1985 fail_opts:
1986 qemu_opts_del(opts);
1987 return ret;
1990 static G_GNUC_PRINTF(1, 0)
1991 QDict *parse_json_filename(const char *filename, Error **errp)
1993 QObject *options_obj;
1994 QDict *options;
1995 int ret;
1996 GLOBAL_STATE_CODE();
1998 ret = strstart(filename, "json:", &filename);
1999 assert(ret);
2001 options_obj = qobject_from_json(filename, errp);
2002 if (!options_obj) {
2003 error_prepend(errp, "Could not parse the JSON options: ");
2004 return NULL;
2007 options = qobject_to(QDict, options_obj);
2008 if (!options) {
2009 qobject_unref(options_obj);
2010 error_setg(errp, "Invalid JSON object given");
2011 return NULL;
2014 qdict_flatten(options);
2016 return options;
2019 static void parse_json_protocol(QDict *options, const char **pfilename,
2020 Error **errp)
2022 QDict *json_options;
2023 Error *local_err = NULL;
2024 GLOBAL_STATE_CODE();
2026 /* Parse json: pseudo-protocol */
2027 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
2028 return;
2031 json_options = parse_json_filename(*pfilename, &local_err);
2032 if (local_err) {
2033 error_propagate(errp, local_err);
2034 return;
2037 /* Options given in the filename have lower priority than options
2038 * specified directly */
2039 qdict_join(options, json_options, false);
2040 qobject_unref(json_options);
2041 *pfilename = NULL;
2045 * Fills in default options for opening images and converts the legacy
2046 * filename/flags pair to option QDict entries.
2047 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
2048 * block driver has been specified explicitly.
2050 static int bdrv_fill_options(QDict **options, const char *filename,
2051 int *flags, Error **errp)
2053 const char *drvname;
2054 bool protocol = *flags & BDRV_O_PROTOCOL;
2055 bool parse_filename = false;
2056 BlockDriver *drv = NULL;
2057 Error *local_err = NULL;
2059 GLOBAL_STATE_CODE();
2062 * Caution: while qdict_get_try_str() is fine, getting non-string
2063 * types would require more care. When @options come from
2064 * -blockdev or blockdev_add, its members are typed according to
2065 * the QAPI schema, but when they come from -drive, they're all
2066 * QString.
2068 drvname = qdict_get_try_str(*options, "driver");
2069 if (drvname) {
2070 drv = bdrv_find_format(drvname);
2071 if (!drv) {
2072 error_setg(errp, "Unknown driver '%s'", drvname);
2073 return -ENOENT;
2075 /* If the user has explicitly specified the driver, this choice should
2076 * override the BDRV_O_PROTOCOL flag */
2077 protocol = drv->bdrv_file_open;
2080 if (protocol) {
2081 *flags |= BDRV_O_PROTOCOL;
2082 } else {
2083 *flags &= ~BDRV_O_PROTOCOL;
2086 /* Translate cache options from flags into options */
2087 update_options_from_flags(*options, *flags);
2089 /* Fetch the file name from the options QDict if necessary */
2090 if (protocol && filename) {
2091 if (!qdict_haskey(*options, "filename")) {
2092 qdict_put_str(*options, "filename", filename);
2093 parse_filename = true;
2094 } else {
2095 error_setg(errp, "Can't specify 'file' and 'filename' options at "
2096 "the same time");
2097 return -EINVAL;
2101 /* Find the right block driver */
2102 /* See cautionary note on accessing @options above */
2103 filename = qdict_get_try_str(*options, "filename");
2105 if (!drvname && protocol) {
2106 if (filename) {
2107 drv = bdrv_find_protocol(filename, parse_filename, errp);
2108 if (!drv) {
2109 return -EINVAL;
2112 drvname = drv->format_name;
2113 qdict_put_str(*options, "driver", drvname);
2114 } else {
2115 error_setg(errp, "Must specify either driver or file");
2116 return -EINVAL;
2120 assert(drv || !protocol);
2122 /* Driver-specific filename parsing */
2123 if (drv && drv->bdrv_parse_filename && parse_filename) {
2124 drv->bdrv_parse_filename(filename, *options, &local_err);
2125 if (local_err) {
2126 error_propagate(errp, local_err);
2127 return -EINVAL;
2130 if (!drv->bdrv_needs_filename) {
2131 qdict_del(*options, "filename");
2135 return 0;
2138 typedef struct BlockReopenQueueEntry {
2139 bool prepared;
2140 BDRVReopenState state;
2141 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
2142 } BlockReopenQueueEntry;
2145 * Return the flags that @bs will have after the reopens in @q have
2146 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2147 * return the current flags.
2149 static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2151 BlockReopenQueueEntry *entry;
2153 if (q != NULL) {
2154 QTAILQ_FOREACH(entry, q, entry) {
2155 if (entry->state.bs == bs) {
2156 return entry->state.flags;
2161 return bs->open_flags;
2164 /* Returns whether the image file can be written to after the reopen queue @q
2165 * has been successfully applied, or right now if @q is NULL. */
2166 static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2167 BlockReopenQueue *q)
2169 int flags = bdrv_reopen_get_flags(q, bs);
2171 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2175 * Return whether the BDS can be written to. This is not necessarily
2176 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2177 * be written to but do not count as read-only images.
2179 bool bdrv_is_writable(BlockDriverState *bs)
2181 IO_CODE();
2182 return bdrv_is_writable_after_reopen(bs, NULL);
2185 static char *bdrv_child_user_desc(BdrvChild *c)
2187 GLOBAL_STATE_CODE();
2188 return c->klass->get_parent_desc(c);
2192 * Check that @a allows everything that @b needs. @a and @b must reference same
2193 * child node.
2195 static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2197 const char *child_bs_name;
2198 g_autofree char *a_user = NULL;
2199 g_autofree char *b_user = NULL;
2200 g_autofree char *perms = NULL;
2202 assert(a->bs);
2203 assert(a->bs == b->bs);
2204 GLOBAL_STATE_CODE();
2206 if ((b->perm & a->shared_perm) == b->perm) {
2207 return true;
2210 child_bs_name = bdrv_get_node_name(b->bs);
2211 a_user = bdrv_child_user_desc(a);
2212 b_user = bdrv_child_user_desc(b);
2213 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2215 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2216 "both required by %s (uses node '%s' as '%s' child) and "
2217 "unshared by %s (uses node '%s' as '%s' child).",
2218 child_bs_name, perms,
2219 b_user, child_bs_name, b->name,
2220 a_user, child_bs_name, a->name);
2222 return false;
2225 static bool GRAPH_RDLOCK
2226 bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
2228 BdrvChild *a, *b;
2229 GLOBAL_STATE_CODE();
2232 * During the loop we'll look at each pair twice. That's correct because
2233 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2234 * directions.
2236 QLIST_FOREACH(a, &bs->parents, next_parent) {
2237 QLIST_FOREACH(b, &bs->parents, next_parent) {
2238 if (a == b) {
2239 continue;
2242 if (!bdrv_a_allow_b(a, b, errp)) {
2243 return true;
2248 return false;
2251 static void GRAPH_RDLOCK
2252 bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
2253 BdrvChild *c, BdrvChildRole role,
2254 BlockReopenQueue *reopen_queue,
2255 uint64_t parent_perm, uint64_t parent_shared,
2256 uint64_t *nperm, uint64_t *nshared)
2258 assert(bs->drv && bs->drv->bdrv_child_perm);
2259 GLOBAL_STATE_CODE();
2260 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
2261 parent_perm, parent_shared,
2262 nperm, nshared);
2263 /* TODO Take force_share from reopen_queue */
2264 if (child_bs && child_bs->force_share) {
2265 *nshared = BLK_PERM_ALL;
2270 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2271 * nodes that are already in the @list, of course) so that final list is
2272 * topologically sorted. Return the result (GSList @list object is updated, so
2273 * don't use old reference after function call).
2275 * On function start @list must be already topologically sorted and for any node
2276 * in the @list the whole subtree of the node must be in the @list as well. The
2277 * simplest way to satisfy this criteria: use only result of
2278 * bdrv_topological_dfs() or NULL as @list parameter.
2280 static GSList * GRAPH_RDLOCK
2281 bdrv_topological_dfs(GSList *list, GHashTable *found, BlockDriverState *bs)
2283 BdrvChild *child;
2284 g_autoptr(GHashTable) local_found = NULL;
2286 GLOBAL_STATE_CODE();
2288 if (!found) {
2289 assert(!list);
2290 found = local_found = g_hash_table_new(NULL, NULL);
2293 if (g_hash_table_contains(found, bs)) {
2294 return list;
2296 g_hash_table_add(found, bs);
2298 QLIST_FOREACH(child, &bs->children, next) {
2299 list = bdrv_topological_dfs(list, found, child->bs);
2302 return g_slist_prepend(list, bs);
2305 typedef struct BdrvChildSetPermState {
2306 BdrvChild *child;
2307 uint64_t old_perm;
2308 uint64_t old_shared_perm;
2309 } BdrvChildSetPermState;
2311 static void bdrv_child_set_perm_abort(void *opaque)
2313 BdrvChildSetPermState *s = opaque;
2315 GLOBAL_STATE_CODE();
2317 s->child->perm = s->old_perm;
2318 s->child->shared_perm = s->old_shared_perm;
2321 static TransactionActionDrv bdrv_child_set_pem_drv = {
2322 .abort = bdrv_child_set_perm_abort,
2323 .clean = g_free,
2326 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2327 uint64_t shared, Transaction *tran)
2329 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
2330 GLOBAL_STATE_CODE();
2332 *s = (BdrvChildSetPermState) {
2333 .child = c,
2334 .old_perm = c->perm,
2335 .old_shared_perm = c->shared_perm,
2338 c->perm = perm;
2339 c->shared_perm = shared;
2341 tran_add(tran, &bdrv_child_set_pem_drv, s);
2344 static void GRAPH_RDLOCK bdrv_drv_set_perm_commit(void *opaque)
2346 BlockDriverState *bs = opaque;
2347 uint64_t cumulative_perms, cumulative_shared_perms;
2348 GLOBAL_STATE_CODE();
2350 if (bs->drv->bdrv_set_perm) {
2351 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2352 &cumulative_shared_perms);
2353 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2357 static void GRAPH_RDLOCK bdrv_drv_set_perm_abort(void *opaque)
2359 BlockDriverState *bs = opaque;
2360 GLOBAL_STATE_CODE();
2362 if (bs->drv->bdrv_abort_perm_update) {
2363 bs->drv->bdrv_abort_perm_update(bs);
2367 TransactionActionDrv bdrv_drv_set_perm_drv = {
2368 .abort = bdrv_drv_set_perm_abort,
2369 .commit = bdrv_drv_set_perm_commit,
2373 * After calling this function, the transaction @tran may only be completed
2374 * while holding a reader lock for the graph.
2376 static int GRAPH_RDLOCK
2377 bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared_perm,
2378 Transaction *tran, Error **errp)
2380 GLOBAL_STATE_CODE();
2381 if (!bs->drv) {
2382 return 0;
2385 if (bs->drv->bdrv_check_perm) {
2386 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2387 if (ret < 0) {
2388 return ret;
2392 if (tran) {
2393 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2396 return 0;
2399 typedef struct BdrvReplaceChildState {
2400 BdrvChild *child;
2401 BlockDriverState *old_bs;
2402 } BdrvReplaceChildState;
2404 static void GRAPH_WRLOCK bdrv_replace_child_commit(void *opaque)
2406 BdrvReplaceChildState *s = opaque;
2407 GLOBAL_STATE_CODE();
2409 bdrv_schedule_unref(s->old_bs);
2412 static void GRAPH_WRLOCK bdrv_replace_child_abort(void *opaque)
2414 BdrvReplaceChildState *s = opaque;
2415 BlockDriverState *new_bs = s->child->bs;
2417 GLOBAL_STATE_CODE();
2418 assert_bdrv_graph_writable();
2420 /* old_bs reference is transparently moved from @s to @s->child */
2421 if (!s->child->bs) {
2423 * The parents were undrained when removing old_bs from the child. New
2424 * requests can't have been made, though, because the child was empty.
2426 * TODO Make bdrv_replace_child_noperm() transactionable to avoid
2427 * undraining the parent in the first place. Once this is done, having
2428 * new_bs drained when calling bdrv_replace_child_tran() is not a
2429 * requirement any more.
2431 bdrv_parent_drained_begin_single(s->child);
2432 assert(!bdrv_parent_drained_poll_single(s->child));
2434 assert(s->child->quiesced_parent);
2435 bdrv_replace_child_noperm(s->child, s->old_bs);
2437 bdrv_unref(new_bs);
2440 static TransactionActionDrv bdrv_replace_child_drv = {
2441 .commit = bdrv_replace_child_commit,
2442 .abort = bdrv_replace_child_abort,
2443 .clean = g_free,
2447 * bdrv_replace_child_tran
2449 * Note: real unref of old_bs is done only on commit.
2451 * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be
2452 * kept drained until the transaction is completed.
2454 * After calling this function, the transaction @tran may only be completed
2455 * while holding a writer lock for the graph.
2457 * The function doesn't update permissions, caller is responsible for this.
2459 static void GRAPH_WRLOCK
2460 bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs,
2461 Transaction *tran)
2463 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2465 assert(child->quiesced_parent);
2466 assert(!new_bs || new_bs->quiesce_counter);
2468 *s = (BdrvReplaceChildState) {
2469 .child = child,
2470 .old_bs = child->bs,
2472 tran_add(tran, &bdrv_replace_child_drv, s);
2474 if (new_bs) {
2475 bdrv_ref(new_bs);
2478 bdrv_replace_child_noperm(child, new_bs);
2479 /* old_bs reference is transparently moved from @child to @s */
2483 * Refresh permissions in @bs subtree. The function is intended to be called
2484 * after some graph modification that was done without permission update.
2486 * After calling this function, the transaction @tran may only be completed
2487 * while holding a reader lock for the graph.
2489 static int GRAPH_RDLOCK
2490 bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2491 Transaction *tran, Error **errp)
2493 BlockDriver *drv = bs->drv;
2494 BdrvChild *c;
2495 int ret;
2496 uint64_t cumulative_perms, cumulative_shared_perms;
2497 GLOBAL_STATE_CODE();
2499 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
2501 /* Write permissions never work with read-only images */
2502 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2503 !bdrv_is_writable_after_reopen(bs, q))
2505 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2506 error_setg(errp, "Block node is read-only");
2507 } else {
2508 error_setg(errp, "Read-only block node '%s' cannot support "
2509 "read-write users", bdrv_get_node_name(bs));
2512 return -EPERM;
2516 * Unaligned requests will automatically be aligned to bl.request_alignment
2517 * and without RESIZE we can't extend requests to write to space beyond the
2518 * end of the image, so it's required that the image size is aligned.
2520 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2521 !(cumulative_perms & BLK_PERM_RESIZE))
2523 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2524 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2525 "Image size is not a multiple of request "
2526 "alignment");
2527 return -EPERM;
2531 /* Check this node */
2532 if (!drv) {
2533 return 0;
2536 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
2537 errp);
2538 if (ret < 0) {
2539 return ret;
2542 /* Drivers that never have children can omit .bdrv_child_perm() */
2543 if (!drv->bdrv_child_perm) {
2544 assert(QLIST_EMPTY(&bs->children));
2545 return 0;
2548 /* Check all children */
2549 QLIST_FOREACH(c, &bs->children, next) {
2550 uint64_t cur_perm, cur_shared;
2552 bdrv_child_perm(bs, c->bs, c, c->role, q,
2553 cumulative_perms, cumulative_shared_perms,
2554 &cur_perm, &cur_shared);
2555 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
2558 return 0;
2562 * @list is a product of bdrv_topological_dfs() (may be called several times) -
2563 * a topologically sorted subgraph.
2565 * After calling this function, the transaction @tran may only be completed
2566 * while holding a reader lock for the graph.
2568 static int GRAPH_RDLOCK
2569 bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran,
2570 Error **errp)
2572 int ret;
2573 BlockDriverState *bs;
2574 GLOBAL_STATE_CODE();
2576 for ( ; list; list = list->next) {
2577 bs = list->data;
2579 if (bdrv_parent_perms_conflict(bs, errp)) {
2580 return -EINVAL;
2583 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
2584 if (ret < 0) {
2585 return ret;
2589 return 0;
2593 * @list is any list of nodes. List is completed by all subtrees and
2594 * topologically sorted. It's not a problem if some node occurs in the @list
2595 * several times.
2597 * After calling this function, the transaction @tran may only be completed
2598 * while holding a reader lock for the graph.
2600 static int GRAPH_RDLOCK
2601 bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran,
2602 Error **errp)
2604 g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL);
2605 g_autoptr(GSList) refresh_list = NULL;
2607 for ( ; list; list = list->next) {
2608 refresh_list = bdrv_topological_dfs(refresh_list, found, list->data);
2611 return bdrv_do_refresh_perms(refresh_list, q, tran, errp);
2614 void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2615 uint64_t *shared_perm)
2617 BdrvChild *c;
2618 uint64_t cumulative_perms = 0;
2619 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2621 GLOBAL_STATE_CODE();
2623 QLIST_FOREACH(c, &bs->parents, next_parent) {
2624 cumulative_perms |= c->perm;
2625 cumulative_shared_perms &= c->shared_perm;
2628 *perm = cumulative_perms;
2629 *shared_perm = cumulative_shared_perms;
2632 char *bdrv_perm_names(uint64_t perm)
2634 struct perm_name {
2635 uint64_t perm;
2636 const char *name;
2637 } permissions[] = {
2638 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2639 { BLK_PERM_WRITE, "write" },
2640 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2641 { BLK_PERM_RESIZE, "resize" },
2642 { 0, NULL }
2645 GString *result = g_string_sized_new(30);
2646 struct perm_name *p;
2648 for (p = permissions; p->name; p++) {
2649 if (perm & p->perm) {
2650 if (result->len > 0) {
2651 g_string_append(result, ", ");
2653 g_string_append(result, p->name);
2657 return g_string_free(result, FALSE);
2662 * @tran is allowed to be NULL. In this case no rollback is possible.
2664 * After calling this function, the transaction @tran may only be completed
2665 * while holding a reader lock for the graph.
2667 static int GRAPH_RDLOCK
2668 bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran, Error **errp)
2670 int ret;
2671 Transaction *local_tran = NULL;
2672 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
2673 GLOBAL_STATE_CODE();
2675 if (!tran) {
2676 tran = local_tran = tran_new();
2679 ret = bdrv_do_refresh_perms(list, NULL, tran, errp);
2681 if (local_tran) {
2682 tran_finalize(local_tran, ret);
2685 return ret;
2688 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2689 Error **errp)
2691 Error *local_err = NULL;
2692 Transaction *tran = tran_new();
2693 int ret;
2695 GLOBAL_STATE_CODE();
2697 bdrv_child_set_perm(c, perm, shared, tran);
2699 ret = bdrv_refresh_perms(c->bs, tran, &local_err);
2701 tran_finalize(tran, ret);
2703 if (ret < 0) {
2704 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2705 /* tighten permissions */
2706 error_propagate(errp, local_err);
2707 } else {
2709 * Our caller may intend to only loosen restrictions and
2710 * does not expect this function to fail. Errors are not
2711 * fatal in such a case, so we can just hide them from our
2712 * caller.
2714 error_free(local_err);
2715 ret = 0;
2719 return ret;
2722 int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2724 uint64_t parent_perms, parent_shared;
2725 uint64_t perms, shared;
2727 GLOBAL_STATE_CODE();
2729 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
2730 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
2731 parent_perms, parent_shared, &perms, &shared);
2733 return bdrv_child_try_set_perm(c, perms, shared, errp);
2737 * Default implementation for .bdrv_child_perm() for block filters:
2738 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2739 * filtered child.
2741 static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
2742 BdrvChildRole role,
2743 BlockReopenQueue *reopen_queue,
2744 uint64_t perm, uint64_t shared,
2745 uint64_t *nperm, uint64_t *nshared)
2747 GLOBAL_STATE_CODE();
2748 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2749 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
2752 static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
2753 BdrvChildRole role,
2754 BlockReopenQueue *reopen_queue,
2755 uint64_t perm, uint64_t shared,
2756 uint64_t *nperm, uint64_t *nshared)
2758 assert(role & BDRV_CHILD_COW);
2759 GLOBAL_STATE_CODE();
2762 * We want consistent read from backing files if the parent needs it.
2763 * No other operations are performed on backing files.
2765 perm &= BLK_PERM_CONSISTENT_READ;
2768 * If the parent can deal with changing data, we're okay with a
2769 * writable and resizable backing file.
2770 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2772 if (shared & BLK_PERM_WRITE) {
2773 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2774 } else {
2775 shared = 0;
2778 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
2780 if (bs->open_flags & BDRV_O_INACTIVE) {
2781 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2784 *nperm = perm;
2785 *nshared = shared;
2788 static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
2789 BdrvChildRole role,
2790 BlockReopenQueue *reopen_queue,
2791 uint64_t perm, uint64_t shared,
2792 uint64_t *nperm, uint64_t *nshared)
2794 int flags;
2796 GLOBAL_STATE_CODE();
2797 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
2799 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2802 * Apart from the modifications below, the same permissions are
2803 * forwarded and left alone as for filters
2805 bdrv_filter_default_perms(bs, c, role, reopen_queue,
2806 perm, shared, &perm, &shared);
2808 if (role & BDRV_CHILD_METADATA) {
2809 /* Format drivers may touch metadata even if the guest doesn't write */
2810 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2811 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2815 * bs->file always needs to be consistent because of the
2816 * metadata. We can never allow other users to resize or write
2817 * to it.
2819 if (!(flags & BDRV_O_NO_IO)) {
2820 perm |= BLK_PERM_CONSISTENT_READ;
2822 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2825 if (role & BDRV_CHILD_DATA) {
2827 * Technically, everything in this block is a subset of the
2828 * BDRV_CHILD_METADATA path taken above, and so this could
2829 * be an "else if" branch. However, that is not obvious, and
2830 * this function is not performance critical, therefore we let
2831 * this be an independent "if".
2835 * We cannot allow other users to resize the file because the
2836 * format driver might have some assumptions about the size
2837 * (e.g. because it is stored in metadata, or because the file
2838 * is split into fixed-size data files).
2840 shared &= ~BLK_PERM_RESIZE;
2843 * WRITE_UNCHANGED often cannot be performed as such on the
2844 * data file. For example, the qcow2 driver may still need to
2845 * write copied clusters on copy-on-read.
2847 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2848 perm |= BLK_PERM_WRITE;
2852 * If the data file is written to, the format driver may
2853 * expect to be able to resize it by writing beyond the EOF.
2855 if (perm & BLK_PERM_WRITE) {
2856 perm |= BLK_PERM_RESIZE;
2860 if (bs->open_flags & BDRV_O_INACTIVE) {
2861 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2864 *nperm = perm;
2865 *nshared = shared;
2868 void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
2869 BdrvChildRole role, BlockReopenQueue *reopen_queue,
2870 uint64_t perm, uint64_t shared,
2871 uint64_t *nperm, uint64_t *nshared)
2873 GLOBAL_STATE_CODE();
2874 if (role & BDRV_CHILD_FILTERED) {
2875 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2876 BDRV_CHILD_COW)));
2877 bdrv_filter_default_perms(bs, c, role, reopen_queue,
2878 perm, shared, nperm, nshared);
2879 } else if (role & BDRV_CHILD_COW) {
2880 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
2881 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
2882 perm, shared, nperm, nshared);
2883 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
2884 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
2885 perm, shared, nperm, nshared);
2886 } else {
2887 g_assert_not_reached();
2891 uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2893 static const uint64_t permissions[] = {
2894 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2895 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2896 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2897 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2900 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2901 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2903 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2905 return permissions[qapi_perm];
2909 * Replaces the node that a BdrvChild points to without updating permissions.
2911 * If @new_bs is non-NULL, the parent of @child must already be drained through
2912 * @child and the caller must hold the AioContext lock for @new_bs.
2914 static void GRAPH_WRLOCK
2915 bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs)
2917 BlockDriverState *old_bs = child->bs;
2918 int new_bs_quiesce_counter;
2920 assert(!child->frozen);
2923 * If we want to change the BdrvChild to point to a drained node as its new
2924 * child->bs, we need to make sure that its new parent is drained, too. In
2925 * other words, either child->quiesce_parent must already be true or we must
2926 * be able to set it and keep the parent's quiesce_counter consistent with
2927 * that, but without polling or starting new requests (this function
2928 * guarantees that it doesn't poll, and starting new requests would be
2929 * against the invariants of drain sections).
2931 * To keep things simple, we pick the first option (child->quiesce_parent
2932 * must already be true). We also generalise the rule a bit to make it
2933 * easier to verify in callers and more likely to be covered in test cases:
2934 * The parent must be quiesced through this child even if new_bs isn't
2935 * currently drained.
2937 * The only exception is for callers that always pass new_bs == NULL. In
2938 * this case, we obviously never need to consider the case of a drained
2939 * new_bs, so we can keep the callers simpler by allowing them not to drain
2940 * the parent.
2942 assert(!new_bs || child->quiesced_parent);
2943 assert(old_bs != new_bs);
2944 GLOBAL_STATE_CODE();
2946 if (old_bs && new_bs) {
2947 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2950 if (old_bs) {
2951 if (child->klass->detach) {
2952 child->klass->detach(child);
2954 QLIST_REMOVE(child, next_parent);
2957 child->bs = new_bs;
2959 if (new_bs) {
2960 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2961 if (child->klass->attach) {
2962 child->klass->attach(child);
2967 * If the parent was drained through this BdrvChild previously, but new_bs
2968 * is not drained, allow requests to come in only after the new node has
2969 * been attached.
2971 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2972 if (!new_bs_quiesce_counter && child->quiesced_parent) {
2973 bdrv_parent_drained_end_single(child);
2978 * Free the given @child.
2980 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2981 * unused (i.e. not in a children list).
2983 static void bdrv_child_free(BdrvChild *child)
2985 assert(!child->bs);
2986 GLOBAL_STATE_CODE();
2987 GRAPH_RDLOCK_GUARD_MAINLOOP();
2989 assert(!child->next.le_prev); /* not in children list */
2991 g_free(child->name);
2992 g_free(child);
2995 typedef struct BdrvAttachChildCommonState {
2996 BdrvChild *child;
2997 AioContext *old_parent_ctx;
2998 AioContext *old_child_ctx;
2999 } BdrvAttachChildCommonState;
3001 static void GRAPH_WRLOCK bdrv_attach_child_common_abort(void *opaque)
3003 BdrvAttachChildCommonState *s = opaque;
3004 BlockDriverState *bs = s->child->bs;
3006 GLOBAL_STATE_CODE();
3007 assert_bdrv_graph_writable();
3009 bdrv_replace_child_noperm(s->child, NULL);
3011 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
3012 bdrv_try_change_aio_context(bs, s->old_child_ctx, NULL, &error_abort);
3015 if (bdrv_child_get_parent_aio_context(s->child) != s->old_parent_ctx) {
3016 Transaction *tran;
3017 GHashTable *visited;
3018 bool ret;
3020 tran = tran_new();
3022 /* No need to visit `child`, because it has been detached already */
3023 visited = g_hash_table_new(NULL, NULL);
3024 ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx,
3025 visited, tran, &error_abort);
3026 g_hash_table_destroy(visited);
3028 /* transaction is supposed to always succeed */
3029 assert(ret == true);
3030 tran_commit(tran);
3033 bdrv_schedule_unref(bs);
3034 bdrv_child_free(s->child);
3037 static TransactionActionDrv bdrv_attach_child_common_drv = {
3038 .abort = bdrv_attach_child_common_abort,
3039 .clean = g_free,
3043 * Common part of attaching bdrv child to bs or to blk or to job
3045 * Function doesn't update permissions, caller is responsible for this.
3047 * After calling this function, the transaction @tran may only be completed
3048 * while holding a writer lock for the graph.
3050 * Returns new created child.
3052 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3053 * @child_bs can move to a different AioContext in this function. Callers must
3054 * make sure that their AioContext locking is still correct after this.
3056 static BdrvChild * GRAPH_WRLOCK
3057 bdrv_attach_child_common(BlockDriverState *child_bs,
3058 const char *child_name,
3059 const BdrvChildClass *child_class,
3060 BdrvChildRole child_role,
3061 uint64_t perm, uint64_t shared_perm,
3062 void *opaque,
3063 Transaction *tran, Error **errp)
3065 BdrvChild *new_child;
3066 AioContext *parent_ctx, *new_child_ctx;
3067 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
3069 assert(child_class->get_parent_desc);
3070 GLOBAL_STATE_CODE();
3072 new_child = g_new(BdrvChild, 1);
3073 *new_child = (BdrvChild) {
3074 .bs = NULL,
3075 .name = g_strdup(child_name),
3076 .klass = child_class,
3077 .role = child_role,
3078 .perm = perm,
3079 .shared_perm = shared_perm,
3080 .opaque = opaque,
3084 * If the AioContexts don't match, first try to move the subtree of
3085 * child_bs into the AioContext of the new parent. If this doesn't work,
3086 * try moving the parent into the AioContext of child_bs instead.
3088 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3089 if (child_ctx != parent_ctx) {
3090 Error *local_err = NULL;
3091 int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL,
3092 &local_err);
3094 if (ret < 0 && child_class->change_aio_ctx) {
3095 Transaction *aio_ctx_tran = tran_new();
3096 GHashTable *visited = g_hash_table_new(NULL, NULL);
3097 bool ret_child;
3099 g_hash_table_add(visited, new_child);
3100 ret_child = child_class->change_aio_ctx(new_child, child_ctx,
3101 visited, aio_ctx_tran,
3102 NULL);
3103 if (ret_child == true) {
3104 error_free(local_err);
3105 ret = 0;
3107 tran_finalize(aio_ctx_tran, ret_child == true ? 0 : -1);
3108 g_hash_table_destroy(visited);
3111 if (ret < 0) {
3112 error_propagate(errp, local_err);
3113 bdrv_child_free(new_child);
3114 return NULL;
3118 new_child_ctx = bdrv_get_aio_context(child_bs);
3119 if (new_child_ctx != child_ctx) {
3120 aio_context_release(child_ctx);
3121 aio_context_acquire(new_child_ctx);
3124 bdrv_ref(child_bs);
3126 * Let every new BdrvChild start with a drained parent. Inserting the child
3127 * in the graph with bdrv_replace_child_noperm() will undrain it if
3128 * @child_bs is not drained.
3130 * The child was only just created and is not yet visible in global state
3131 * until bdrv_replace_child_noperm() inserts it into the graph, so nobody
3132 * could have sent requests and polling is not necessary.
3134 * Note that this means that the parent isn't fully drained yet, we only
3135 * stop new requests from coming in. This is fine, we don't care about the
3136 * old requests here, they are not for this child. If another place enters a
3137 * drain section for the same parent, but wants it to be fully quiesced, it
3138 * will not run most of the the code in .drained_begin() again (which is not
3139 * a problem, we already did this), but it will still poll until the parent
3140 * is fully quiesced, so it will not be negatively affected either.
3142 bdrv_parent_drained_begin_single(new_child);
3143 bdrv_replace_child_noperm(new_child, child_bs);
3145 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3146 *s = (BdrvAttachChildCommonState) {
3147 .child = new_child,
3148 .old_parent_ctx = parent_ctx,
3149 .old_child_ctx = child_ctx,
3151 tran_add(tran, &bdrv_attach_child_common_drv, s);
3153 if (new_child_ctx != child_ctx) {
3154 aio_context_release(new_child_ctx);
3155 aio_context_acquire(child_ctx);
3158 return new_child;
3162 * Function doesn't update permissions, caller is responsible for this.
3164 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3165 * @child_bs can move to a different AioContext in this function. Callers must
3166 * make sure that their AioContext locking is still correct after this.
3168 * After calling this function, the transaction @tran may only be completed
3169 * while holding a writer lock for the graph.
3171 static BdrvChild * GRAPH_WRLOCK
3172 bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3173 BlockDriverState *child_bs,
3174 const char *child_name,
3175 const BdrvChildClass *child_class,
3176 BdrvChildRole child_role,
3177 Transaction *tran,
3178 Error **errp)
3180 uint64_t perm, shared_perm;
3182 assert(parent_bs->drv);
3183 GLOBAL_STATE_CODE();
3185 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
3186 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
3187 child_bs->node_name, child_name, parent_bs->node_name);
3188 return NULL;
3191 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3192 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3193 perm, shared_perm, &perm, &shared_perm);
3195 return bdrv_attach_child_common(child_bs, child_name, child_class,
3196 child_role, perm, shared_perm, parent_bs,
3197 tran, errp);
3201 * This function steals the reference to child_bs from the caller.
3202 * That reference is later dropped by bdrv_root_unref_child().
3204 * On failure NULL is returned, errp is set and the reference to
3205 * child_bs is also dropped.
3207 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3208 * (unless @child_bs is already in @ctx).
3210 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3211 const char *child_name,
3212 const BdrvChildClass *child_class,
3213 BdrvChildRole child_role,
3214 uint64_t perm, uint64_t shared_perm,
3215 void *opaque, Error **errp)
3217 int ret;
3218 BdrvChild *child;
3219 Transaction *tran = tran_new();
3221 GLOBAL_STATE_CODE();
3223 child = bdrv_attach_child_common(child_bs, child_name, child_class,
3224 child_role, perm, shared_perm, opaque,
3225 tran, errp);
3226 if (!child) {
3227 ret = -EINVAL;
3228 goto out;
3231 ret = bdrv_refresh_perms(child_bs, tran, errp);
3233 out:
3234 tran_finalize(tran, ret);
3236 bdrv_schedule_unref(child_bs);
3238 return ret < 0 ? NULL : child;
3242 * This function transfers the reference to child_bs from the caller
3243 * to parent_bs. That reference is later dropped by parent_bs on
3244 * bdrv_close() or if someone calls bdrv_unref_child().
3246 * On failure NULL is returned, errp is set and the reference to
3247 * child_bs is also dropped.
3249 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3250 * hold the AioContext lock for @child_bs, but not for @parent_bs.
3252 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3253 BlockDriverState *child_bs,
3254 const char *child_name,
3255 const BdrvChildClass *child_class,
3256 BdrvChildRole child_role,
3257 Error **errp)
3259 int ret;
3260 BdrvChild *child;
3261 Transaction *tran = tran_new();
3263 GLOBAL_STATE_CODE();
3265 child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name,
3266 child_class, child_role, tran, errp);
3267 if (!child) {
3268 ret = -EINVAL;
3269 goto out;
3272 ret = bdrv_refresh_perms(parent_bs, tran, errp);
3273 if (ret < 0) {
3274 goto out;
3277 out:
3278 tran_finalize(tran, ret);
3280 bdrv_schedule_unref(child_bs);
3282 return ret < 0 ? NULL : child;
3285 /* Callers must ensure that child->frozen is false. */
3286 void bdrv_root_unref_child(BdrvChild *child)
3288 BlockDriverState *child_bs = child->bs;
3290 GLOBAL_STATE_CODE();
3291 bdrv_replace_child_noperm(child, NULL);
3292 bdrv_child_free(child);
3294 if (child_bs) {
3296 * Update permissions for old node. We're just taking a parent away, so
3297 * we're loosening restrictions. Errors of permission update are not
3298 * fatal in this case, ignore them.
3300 bdrv_refresh_perms(child_bs, NULL, NULL);
3303 * When the parent requiring a non-default AioContext is removed, the
3304 * node moves back to the main AioContext
3306 bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL,
3307 NULL);
3310 bdrv_schedule_unref(child_bs);
3313 typedef struct BdrvSetInheritsFrom {
3314 BlockDriverState *bs;
3315 BlockDriverState *old_inherits_from;
3316 } BdrvSetInheritsFrom;
3318 static void bdrv_set_inherits_from_abort(void *opaque)
3320 BdrvSetInheritsFrom *s = opaque;
3322 s->bs->inherits_from = s->old_inherits_from;
3325 static TransactionActionDrv bdrv_set_inherits_from_drv = {
3326 .abort = bdrv_set_inherits_from_abort,
3327 .clean = g_free,
3330 /* @tran is allowed to be NULL. In this case no rollback is possible */
3331 static void bdrv_set_inherits_from(BlockDriverState *bs,
3332 BlockDriverState *new_inherits_from,
3333 Transaction *tran)
3335 if (tran) {
3336 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3338 *s = (BdrvSetInheritsFrom) {
3339 .bs = bs,
3340 .old_inherits_from = bs->inherits_from,
3343 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3346 bs->inherits_from = new_inherits_from;
3350 * Clear all inherits_from pointers from children and grandchildren of
3351 * @root that point to @root, where necessary.
3352 * @tran is allowed to be NULL. In this case no rollback is possible
3354 static void GRAPH_WRLOCK
3355 bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3356 Transaction *tran)
3358 BdrvChild *c;
3360 if (child->bs->inherits_from == root) {
3362 * Remove inherits_from only when the last reference between root and
3363 * child->bs goes away.
3365 QLIST_FOREACH(c, &root->children, next) {
3366 if (c != child && c->bs == child->bs) {
3367 break;
3370 if (c == NULL) {
3371 bdrv_set_inherits_from(child->bs, NULL, tran);
3375 QLIST_FOREACH(c, &child->bs->children, next) {
3376 bdrv_unset_inherits_from(root, c, tran);
3380 /* Callers must ensure that child->frozen is false. */
3381 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3383 GLOBAL_STATE_CODE();
3384 if (child == NULL) {
3385 return;
3388 bdrv_unset_inherits_from(parent, child, NULL);
3389 bdrv_root_unref_child(child);
3393 static void GRAPH_RDLOCK
3394 bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3396 BdrvChild *c;
3397 GLOBAL_STATE_CODE();
3398 QLIST_FOREACH(c, &bs->parents, next_parent) {
3399 if (c->klass->change_media) {
3400 c->klass->change_media(c, load);
3405 /* Return true if you can reach parent going through child->inherits_from
3406 * recursively. If parent or child are NULL, return false */
3407 static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3408 BlockDriverState *parent)
3410 while (child && child != parent) {
3411 child = child->inherits_from;
3414 return child != NULL;
3418 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3419 * mostly used for COW backing children (role = COW), but also for
3420 * filtered children (role = FILTERED | PRIMARY).
3422 static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3424 if (bs->drv && bs->drv->is_filter) {
3425 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3426 } else {
3427 return BDRV_CHILD_COW;
3432 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3433 * callers which don't need their own reference any more must call bdrv_unref().
3435 * If the respective child is already present (i.e. we're detaching a node),
3436 * that child node must be drained.
3438 * Function doesn't update permissions, caller is responsible for this.
3440 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3441 * @child_bs can move to a different AioContext in this function. Callers must
3442 * make sure that their AioContext locking is still correct after this.
3444 * After calling this function, the transaction @tran may only be completed
3445 * while holding a writer lock for the graph.
3447 static int GRAPH_WRLOCK
3448 bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3449 BlockDriverState *child_bs,
3450 bool is_backing,
3451 Transaction *tran, Error **errp)
3453 bool update_inherits_from =
3454 bdrv_inherits_from_recursive(child_bs, parent_bs);
3455 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3456 BdrvChildRole role;
3458 GLOBAL_STATE_CODE();
3460 if (!parent_bs->drv) {
3462 * Node without drv is an object without a class :/. TODO: finally fix
3463 * qcow2 driver to never clear bs->drv and implement format corruption
3464 * handling in other way.
3466 error_setg(errp, "Node corrupted");
3467 return -EINVAL;
3470 if (child && child->frozen) {
3471 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3472 child->name, parent_bs->node_name, child->bs->node_name);
3473 return -EPERM;
3476 if (is_backing && !parent_bs->drv->is_filter &&
3477 !parent_bs->drv->supports_backing)
3479 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3480 "files", parent_bs->drv->format_name, parent_bs->node_name);
3481 return -EINVAL;
3484 if (parent_bs->drv->is_filter) {
3485 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3486 } else if (is_backing) {
3487 role = BDRV_CHILD_COW;
3488 } else {
3490 * We only can use same role as it is in existing child. We don't have
3491 * infrastructure to determine role of file child in generic way
3493 if (!child) {
3494 error_setg(errp, "Cannot set file child to format node without "
3495 "file child");
3496 return -EINVAL;
3498 role = child->role;
3501 if (child) {
3502 assert(child->bs->quiesce_counter);
3503 bdrv_unset_inherits_from(parent_bs, child, tran);
3504 bdrv_remove_child(child, tran);
3507 if (!child_bs) {
3508 goto out;
3511 child = bdrv_attach_child_noperm(parent_bs, child_bs,
3512 is_backing ? "backing" : "file",
3513 &child_of_bds, role,
3514 tran, errp);
3515 if (!child) {
3516 return -EINVAL;
3521 * If inherits_from pointed recursively to bs then let's update it to
3522 * point directly to bs (else it will become NULL).
3524 if (update_inherits_from) {
3525 bdrv_set_inherits_from(child_bs, parent_bs, tran);
3528 out:
3529 bdrv_refresh_limits(parent_bs, tran, NULL);
3531 return 0;
3535 * The caller must hold the AioContext lock for @backing_hd. Both @bs and
3536 * @backing_hd can move to a different AioContext in this function. Callers must
3537 * make sure that their AioContext locking is still correct after this.
3539 * If a backing child is already present (i.e. we're detaching a node), that
3540 * child node must be drained.
3542 int bdrv_set_backing_hd_drained(BlockDriverState *bs,
3543 BlockDriverState *backing_hd,
3544 Error **errp)
3546 int ret;
3547 Transaction *tran = tran_new();
3549 GLOBAL_STATE_CODE();
3550 assert(bs->quiesce_counter > 0);
3551 if (bs->backing) {
3552 assert(bs->backing->bs->quiesce_counter > 0);
3555 ret = bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3556 if (ret < 0) {
3557 goto out;
3560 ret = bdrv_refresh_perms(bs, tran, errp);
3561 out:
3562 tran_finalize(tran, ret);
3563 return ret;
3566 int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3567 Error **errp)
3569 BlockDriverState *drain_bs;
3570 int ret;
3571 GLOBAL_STATE_CODE();
3573 bdrv_graph_rdlock_main_loop();
3574 drain_bs = bs->backing ? bs->backing->bs : bs;
3575 bdrv_graph_rdunlock_main_loop();
3577 bdrv_ref(drain_bs);
3578 bdrv_drained_begin(drain_bs);
3579 bdrv_graph_wrlock(backing_hd);
3580 ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp);
3581 bdrv_graph_wrunlock(backing_hd);
3582 bdrv_drained_end(drain_bs);
3583 bdrv_unref(drain_bs);
3585 return ret;
3589 * Opens the backing file for a BlockDriverState if not yet open
3591 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3592 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3593 * itself, all options starting with "${bdref_key}." are considered part of the
3594 * BlockdevRef.
3596 * The caller must hold the main AioContext lock.
3598 * TODO Can this be unified with bdrv_open_image()?
3600 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3601 const char *bdref_key, Error **errp)
3603 char *backing_filename = NULL;
3604 char *bdref_key_dot;
3605 const char *reference = NULL;
3606 int ret = 0;
3607 bool implicit_backing = false;
3608 BlockDriverState *backing_hd;
3609 AioContext *backing_hd_ctx;
3610 QDict *options;
3611 QDict *tmp_parent_options = NULL;
3612 Error *local_err = NULL;
3614 GLOBAL_STATE_CODE();
3615 GRAPH_RDLOCK_GUARD_MAINLOOP();
3617 if (bs->backing != NULL) {
3618 goto free_exit;
3621 /* NULL means an empty set of options */
3622 if (parent_options == NULL) {
3623 tmp_parent_options = qdict_new();
3624 parent_options = tmp_parent_options;
3627 bs->open_flags &= ~BDRV_O_NO_BACKING;
3629 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3630 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3631 g_free(bdref_key_dot);
3634 * Caution: while qdict_get_try_str() is fine, getting non-string
3635 * types would require more care. When @parent_options come from
3636 * -blockdev or blockdev_add, its members are typed according to
3637 * the QAPI schema, but when they come from -drive, they're all
3638 * QString.
3640 reference = qdict_get_try_str(parent_options, bdref_key);
3641 if (reference || qdict_haskey(options, "file.filename")) {
3642 /* keep backing_filename NULL */
3643 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
3644 qobject_unref(options);
3645 goto free_exit;
3646 } else {
3647 if (qdict_size(options) == 0) {
3648 /* If the user specifies options that do not modify the
3649 * backing file's behavior, we might still consider it the
3650 * implicit backing file. But it's easier this way, and
3651 * just specifying some of the backing BDS's options is
3652 * only possible with -drive anyway (otherwise the QAPI
3653 * schema forces the user to specify everything). */
3654 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3657 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
3658 if (local_err) {
3659 ret = -EINVAL;
3660 error_propagate(errp, local_err);
3661 qobject_unref(options);
3662 goto free_exit;
3666 if (!bs->drv || !bs->drv->supports_backing) {
3667 ret = -EINVAL;
3668 error_setg(errp, "Driver doesn't support backing files");
3669 qobject_unref(options);
3670 goto free_exit;
3673 if (!reference &&
3674 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
3675 qdict_put_str(options, "driver", bs->backing_format);
3678 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
3679 &child_of_bds, bdrv_backing_role(bs), errp);
3680 if (!backing_hd) {
3681 bs->open_flags |= BDRV_O_NO_BACKING;
3682 error_prepend(errp, "Could not open backing file: ");
3683 ret = -EINVAL;
3684 goto free_exit;
3687 if (implicit_backing) {
3688 bdrv_refresh_filename(backing_hd);
3689 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3690 backing_hd->filename);
3693 /* Hook up the backing file link; drop our reference, bs owns the
3694 * backing_hd reference now */
3695 backing_hd_ctx = bdrv_get_aio_context(backing_hd);
3696 aio_context_acquire(backing_hd_ctx);
3697 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
3698 bdrv_unref(backing_hd);
3699 aio_context_release(backing_hd_ctx);
3701 if (ret < 0) {
3702 goto free_exit;
3705 qdict_del(parent_options, bdref_key);
3707 free_exit:
3708 g_free(backing_filename);
3709 qobject_unref(tmp_parent_options);
3710 return ret;
3713 static BlockDriverState *
3714 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
3715 BlockDriverState *parent, const BdrvChildClass *child_class,
3716 BdrvChildRole child_role, bool allow_none, Error **errp)
3718 BlockDriverState *bs = NULL;
3719 QDict *image_options;
3720 char *bdref_key_dot;
3721 const char *reference;
3723 assert(child_class != NULL);
3725 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3726 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3727 g_free(bdref_key_dot);
3730 * Caution: while qdict_get_try_str() is fine, getting non-string
3731 * types would require more care. When @options come from
3732 * -blockdev or blockdev_add, its members are typed according to
3733 * the QAPI schema, but when they come from -drive, they're all
3734 * QString.
3736 reference = qdict_get_try_str(options, bdref_key);
3737 if (!filename && !reference && !qdict_size(image_options)) {
3738 if (!allow_none) {
3739 error_setg(errp, "A block device must be specified for \"%s\"",
3740 bdref_key);
3742 qobject_unref(image_options);
3743 goto done;
3746 bs = bdrv_open_inherit(filename, reference, image_options, 0,
3747 parent, child_class, child_role, errp);
3748 if (!bs) {
3749 goto done;
3752 done:
3753 qdict_del(options, bdref_key);
3754 return bs;
3758 * Opens a disk image whose options are given as BlockdevRef in another block
3759 * device's options.
3761 * If allow_none is true, no image will be opened if filename is false and no
3762 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3764 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3765 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3766 * itself, all options starting with "${bdref_key}." are considered part of the
3767 * BlockdevRef.
3769 * The BlockdevRef will be removed from the options QDict.
3771 * The caller must hold the lock of the main AioContext and no other AioContext.
3772 * @parent can move to a different AioContext in this function. Callers must
3773 * make sure that their AioContext locking is still correct after this.
3775 BdrvChild *bdrv_open_child(const char *filename,
3776 QDict *options, const char *bdref_key,
3777 BlockDriverState *parent,
3778 const BdrvChildClass *child_class,
3779 BdrvChildRole child_role,
3780 bool allow_none, Error **errp)
3782 BlockDriverState *bs;
3783 BdrvChild *child;
3784 AioContext *ctx;
3786 GLOBAL_STATE_CODE();
3788 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
3789 child_role, allow_none, errp);
3790 if (bs == NULL) {
3791 return NULL;
3794 bdrv_graph_wrlock(NULL);
3795 ctx = bdrv_get_aio_context(bs);
3796 aio_context_acquire(ctx);
3797 child = bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3798 errp);
3799 aio_context_release(ctx);
3800 bdrv_graph_wrunlock(NULL);
3802 return child;
3806 * Wrapper on bdrv_open_child() for most popular case: open primary child of bs.
3808 * The caller must hold the lock of the main AioContext and no other AioContext.
3809 * @parent can move to a different AioContext in this function. Callers must
3810 * make sure that their AioContext locking is still correct after this.
3812 int bdrv_open_file_child(const char *filename,
3813 QDict *options, const char *bdref_key,
3814 BlockDriverState *parent, Error **errp)
3816 BdrvChildRole role;
3818 /* commit_top and mirror_top don't use this function */
3819 assert(!parent->drv->filtered_child_is_backing);
3820 role = parent->drv->is_filter ?
3821 (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE;
3823 if (!bdrv_open_child(filename, options, bdref_key, parent,
3824 &child_of_bds, role, false, errp))
3826 return -EINVAL;
3829 return 0;
3833 * TODO Future callers may need to specify parent/child_class in order for
3834 * option inheritance to work. Existing callers use it for the root node.
3836 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3838 BlockDriverState *bs = NULL;
3839 QObject *obj = NULL;
3840 QDict *qdict = NULL;
3841 const char *reference = NULL;
3842 Visitor *v = NULL;
3844 GLOBAL_STATE_CODE();
3846 if (ref->type == QTYPE_QSTRING) {
3847 reference = ref->u.reference;
3848 } else {
3849 BlockdevOptions *options = &ref->u.definition;
3850 assert(ref->type == QTYPE_QDICT);
3852 v = qobject_output_visitor_new(&obj);
3853 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
3854 visit_complete(v, &obj);
3856 qdict = qobject_to(QDict, obj);
3857 qdict_flatten(qdict);
3859 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3860 * compatibility with other callers) rather than what we want as the
3861 * real defaults. Apply the defaults here instead. */
3862 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3863 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3864 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
3865 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3869 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
3870 obj = NULL;
3871 qobject_unref(obj);
3872 visit_free(v);
3873 return bs;
3876 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3877 int flags,
3878 QDict *snapshot_options,
3879 Error **errp)
3881 g_autofree char *tmp_filename = NULL;
3882 int64_t total_size;
3883 QemuOpts *opts = NULL;
3884 BlockDriverState *bs_snapshot = NULL;
3885 AioContext *ctx = bdrv_get_aio_context(bs);
3886 int ret;
3888 GLOBAL_STATE_CODE();
3890 /* if snapshot, we create a temporary backing file and open it
3891 instead of opening 'filename' directly */
3893 /* Get the required size from the image */
3894 aio_context_acquire(ctx);
3895 total_size = bdrv_getlength(bs);
3896 aio_context_release(ctx);
3898 if (total_size < 0) {
3899 error_setg_errno(errp, -total_size, "Could not get image size");
3900 goto out;
3903 /* Create the temporary image */
3904 tmp_filename = create_tmp_file(errp);
3905 if (!tmp_filename) {
3906 goto out;
3909 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
3910 &error_abort);
3911 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
3912 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
3913 qemu_opts_del(opts);
3914 if (ret < 0) {
3915 error_prepend(errp, "Could not create temporary overlay '%s': ",
3916 tmp_filename);
3917 goto out;
3920 /* Prepare options QDict for the temporary file */
3921 qdict_put_str(snapshot_options, "file.driver", "file");
3922 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3923 qdict_put_str(snapshot_options, "driver", "qcow2");
3925 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
3926 snapshot_options = NULL;
3927 if (!bs_snapshot) {
3928 goto out;
3931 aio_context_acquire(ctx);
3932 ret = bdrv_append(bs_snapshot, bs, errp);
3933 aio_context_release(ctx);
3935 if (ret < 0) {
3936 bs_snapshot = NULL;
3937 goto out;
3940 out:
3941 qobject_unref(snapshot_options);
3942 return bs_snapshot;
3946 * Opens a disk image (raw, qcow2, vmdk, ...)
3948 * options is a QDict of options to pass to the block drivers, or NULL for an
3949 * empty set of options. The reference to the QDict belongs to the block layer
3950 * after the call (even on failure), so if the caller intends to reuse the
3951 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
3953 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3954 * If it is not NULL, the referenced BDS will be reused.
3956 * The reference parameter may be used to specify an existing block device which
3957 * should be opened. If specified, neither options nor a filename may be given,
3958 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
3960 * The caller must always hold the main AioContext lock.
3962 static BlockDriverState * no_coroutine_fn
3963 bdrv_open_inherit(const char *filename, const char *reference, QDict *options,
3964 int flags, BlockDriverState *parent,
3965 const BdrvChildClass *child_class, BdrvChildRole child_role,
3966 Error **errp)
3968 int ret;
3969 BlockBackend *file = NULL;
3970 BlockDriverState *bs;
3971 BlockDriver *drv = NULL;
3972 BdrvChild *child;
3973 const char *drvname;
3974 const char *backing;
3975 Error *local_err = NULL;
3976 QDict *snapshot_options = NULL;
3977 int snapshot_flags = 0;
3978 AioContext *ctx = qemu_get_aio_context();
3980 assert(!child_class || !flags);
3981 assert(!child_class == !parent);
3982 GLOBAL_STATE_CODE();
3983 assert(!qemu_in_coroutine());
3985 /* TODO We'll eventually have to take a writer lock in this function */
3986 GRAPH_RDLOCK_GUARD_MAINLOOP();
3988 if (reference) {
3989 bool options_non_empty = options ? qdict_size(options) : false;
3990 qobject_unref(options);
3992 if (filename || options_non_empty) {
3993 error_setg(errp, "Cannot reference an existing block device with "
3994 "additional options or a new filename");
3995 return NULL;
3998 bs = bdrv_lookup_bs(reference, reference, errp);
3999 if (!bs) {
4000 return NULL;
4003 bdrv_ref(bs);
4004 return bs;
4007 bs = bdrv_new();
4009 /* NULL means an empty set of options */
4010 if (options == NULL) {
4011 options = qdict_new();
4014 /* json: syntax counts as explicit options, as if in the QDict */
4015 parse_json_protocol(options, &filename, &local_err);
4016 if (local_err) {
4017 goto fail;
4020 bs->explicit_options = qdict_clone_shallow(options);
4022 if (child_class) {
4023 bool parent_is_format;
4025 if (parent->drv) {
4026 parent_is_format = parent->drv->is_format;
4027 } else {
4029 * parent->drv is not set yet because this node is opened for
4030 * (potential) format probing. That means that @parent is going
4031 * to be a format node.
4033 parent_is_format = true;
4036 bs->inherits_from = parent;
4037 child_class->inherit_options(child_role, parent_is_format,
4038 &flags, options,
4039 parent->open_flags, parent->options);
4042 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
4043 if (ret < 0) {
4044 goto fail;
4048 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
4049 * Caution: getting a boolean member of @options requires care.
4050 * When @options come from -blockdev or blockdev_add, members are
4051 * typed according to the QAPI schema, but when they come from
4052 * -drive, they're all QString.
4054 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
4055 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
4056 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
4057 } else {
4058 flags &= ~BDRV_O_RDWR;
4061 if (flags & BDRV_O_SNAPSHOT) {
4062 snapshot_options = qdict_new();
4063 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
4064 flags, options);
4065 /* Let bdrv_backing_options() override "read-only" */
4066 qdict_del(options, BDRV_OPT_READ_ONLY);
4067 bdrv_inherited_options(BDRV_CHILD_COW, true,
4068 &flags, options, flags, options);
4071 bs->open_flags = flags;
4072 bs->options = options;
4073 options = qdict_clone_shallow(options);
4075 /* Find the right image format driver */
4076 /* See cautionary note on accessing @options above */
4077 drvname = qdict_get_try_str(options, "driver");
4078 if (drvname) {
4079 drv = bdrv_find_format(drvname);
4080 if (!drv) {
4081 error_setg(errp, "Unknown driver: '%s'", drvname);
4082 goto fail;
4086 assert(drvname || !(flags & BDRV_O_PROTOCOL));
4088 /* See cautionary note on accessing @options above */
4089 backing = qdict_get_try_str(options, "backing");
4090 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
4091 (backing && *backing == '\0'))
4093 if (backing) {
4094 warn_report("Use of \"backing\": \"\" is deprecated; "
4095 "use \"backing\": null instead");
4097 flags |= BDRV_O_NO_BACKING;
4098 qdict_del(bs->explicit_options, "backing");
4099 qdict_del(bs->options, "backing");
4100 qdict_del(options, "backing");
4103 /* Open image file without format layer. This BlockBackend is only used for
4104 * probing, the block drivers will do their own bdrv_open_child() for the
4105 * same BDS, which is why we put the node name back into options. */
4106 if ((flags & BDRV_O_PROTOCOL) == 0) {
4107 BlockDriverState *file_bs;
4109 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
4110 &child_of_bds, BDRV_CHILD_IMAGE,
4111 true, &local_err);
4112 if (local_err) {
4113 goto fail;
4115 if (file_bs != NULL) {
4116 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
4117 * looking at the header to guess the image format. This works even
4118 * in cases where a guest would not see a consistent state. */
4119 ctx = bdrv_get_aio_context(file_bs);
4120 aio_context_acquire(ctx);
4121 file = blk_new(ctx, 0, BLK_PERM_ALL);
4122 blk_insert_bs(file, file_bs, &local_err);
4123 bdrv_unref(file_bs);
4124 aio_context_release(ctx);
4126 if (local_err) {
4127 goto fail;
4130 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
4134 /* Image format probing */
4135 bs->probed = !drv;
4136 if (!drv && file) {
4137 ret = find_image_format(file, filename, &drv, &local_err);
4138 if (ret < 0) {
4139 goto fail;
4142 * This option update would logically belong in bdrv_fill_options(),
4143 * but we first need to open bs->file for the probing to work, while
4144 * opening bs->file already requires the (mostly) final set of options
4145 * so that cache mode etc. can be inherited.
4147 * Adding the driver later is somewhat ugly, but it's not an option
4148 * that would ever be inherited, so it's correct. We just need to make
4149 * sure to update both bs->options (which has the full effective
4150 * options for bs) and options (which has file.* already removed).
4152 qdict_put_str(bs->options, "driver", drv->format_name);
4153 qdict_put_str(options, "driver", drv->format_name);
4154 } else if (!drv) {
4155 error_setg(errp, "Must specify either driver or file");
4156 goto fail;
4159 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
4160 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
4161 /* file must be NULL if a protocol BDS is about to be created
4162 * (the inverse results in an error message from bdrv_open_common()) */
4163 assert(!(flags & BDRV_O_PROTOCOL) || !file);
4165 /* Open the image */
4166 ret = bdrv_open_common(bs, file, options, &local_err);
4167 if (ret < 0) {
4168 goto fail;
4171 /* The AioContext could have changed during bdrv_open_common() */
4172 ctx = bdrv_get_aio_context(bs);
4174 if (file) {
4175 aio_context_acquire(ctx);
4176 blk_unref(file);
4177 aio_context_release(ctx);
4178 file = NULL;
4181 /* If there is a backing file, use it */
4182 if ((flags & BDRV_O_NO_BACKING) == 0) {
4183 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
4184 if (ret < 0) {
4185 goto close_and_fail;
4189 /* Remove all children options and references
4190 * from bs->options and bs->explicit_options */
4191 QLIST_FOREACH(child, &bs->children, next) {
4192 char *child_key_dot;
4193 child_key_dot = g_strdup_printf("%s.", child->name);
4194 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
4195 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
4196 qdict_del(bs->explicit_options, child->name);
4197 qdict_del(bs->options, child->name);
4198 g_free(child_key_dot);
4201 /* Check if any unknown options were used */
4202 if (qdict_size(options) != 0) {
4203 const QDictEntry *entry = qdict_first(options);
4204 if (flags & BDRV_O_PROTOCOL) {
4205 error_setg(errp, "Block protocol '%s' doesn't support the option "
4206 "'%s'", drv->format_name, entry->key);
4207 } else {
4208 error_setg(errp,
4209 "Block format '%s' does not support the option '%s'",
4210 drv->format_name, entry->key);
4213 goto close_and_fail;
4216 bdrv_parent_cb_change_media(bs, true);
4218 qobject_unref(options);
4219 options = NULL;
4221 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4222 * temporary snapshot afterwards. */
4223 if (snapshot_flags) {
4224 BlockDriverState *snapshot_bs;
4225 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
4226 snapshot_options, &local_err);
4227 snapshot_options = NULL;
4228 if (local_err) {
4229 goto close_and_fail;
4231 /* We are not going to return bs but the overlay on top of it
4232 * (snapshot_bs); thus, we have to drop the strong reference to bs
4233 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4234 * though, because the overlay still has a reference to it. */
4235 aio_context_acquire(ctx);
4236 bdrv_unref(bs);
4237 aio_context_release(ctx);
4238 bs = snapshot_bs;
4241 return bs;
4243 fail:
4244 aio_context_acquire(ctx);
4245 blk_unref(file);
4246 qobject_unref(snapshot_options);
4247 qobject_unref(bs->explicit_options);
4248 qobject_unref(bs->options);
4249 qobject_unref(options);
4250 bs->options = NULL;
4251 bs->explicit_options = NULL;
4252 bdrv_unref(bs);
4253 aio_context_release(ctx);
4254 error_propagate(errp, local_err);
4255 return NULL;
4257 close_and_fail:
4258 aio_context_acquire(ctx);
4259 bdrv_unref(bs);
4260 aio_context_release(ctx);
4261 qobject_unref(snapshot_options);
4262 qobject_unref(options);
4263 error_propagate(errp, local_err);
4264 return NULL;
4267 /* The caller must always hold the main AioContext lock. */
4268 BlockDriverState *bdrv_open(const char *filename, const char *reference,
4269 QDict *options, int flags, Error **errp)
4271 GLOBAL_STATE_CODE();
4273 return bdrv_open_inherit(filename, reference, options, flags, NULL,
4274 NULL, 0, errp);
4277 /* Return true if the NULL-terminated @list contains @str */
4278 static bool is_str_in_list(const char *str, const char *const *list)
4280 if (str && list) {
4281 int i;
4282 for (i = 0; list[i] != NULL; i++) {
4283 if (!strcmp(str, list[i])) {
4284 return true;
4288 return false;
4292 * Check that every option set in @bs->options is also set in
4293 * @new_opts.
4295 * Options listed in the common_options list and in
4296 * @bs->drv->mutable_opts are skipped.
4298 * Return 0 on success, otherwise return -EINVAL and set @errp.
4300 static int bdrv_reset_options_allowed(BlockDriverState *bs,
4301 const QDict *new_opts, Error **errp)
4303 const QDictEntry *e;
4304 /* These options are common to all block drivers and are handled
4305 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4306 const char *const common_options[] = {
4307 "node-name", "discard", "cache.direct", "cache.no-flush",
4308 "read-only", "auto-read-only", "detect-zeroes", NULL
4311 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4312 if (!qdict_haskey(new_opts, e->key) &&
4313 !is_str_in_list(e->key, common_options) &&
4314 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4315 error_setg(errp, "Option '%s' cannot be reset "
4316 "to its default value", e->key);
4317 return -EINVAL;
4321 return 0;
4325 * Returns true if @child can be reached recursively from @bs
4327 static bool GRAPH_RDLOCK
4328 bdrv_recurse_has_child(BlockDriverState *bs, BlockDriverState *child)
4330 BdrvChild *c;
4332 if (bs == child) {
4333 return true;
4336 QLIST_FOREACH(c, &bs->children, next) {
4337 if (bdrv_recurse_has_child(c->bs, child)) {
4338 return true;
4342 return false;
4346 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4347 * reopen of multiple devices.
4349 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
4350 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4351 * be created and initialized. This newly created BlockReopenQueue should be
4352 * passed back in for subsequent calls that are intended to be of the same
4353 * atomic 'set'.
4355 * bs is the BlockDriverState to add to the reopen queue.
4357 * options contains the changed options for the associated bs
4358 * (the BlockReopenQueue takes ownership)
4360 * flags contains the open flags for the associated bs
4362 * returns a pointer to bs_queue, which is either the newly allocated
4363 * bs_queue, or the existing bs_queue being used.
4365 * bs is drained here and undrained by bdrv_reopen_queue_free().
4367 * To be called with bs->aio_context locked.
4369 static BlockReopenQueue * GRAPH_RDLOCK
4370 bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, BlockDriverState *bs,
4371 QDict *options, const BdrvChildClass *klass,
4372 BdrvChildRole role, bool parent_is_format,
4373 QDict *parent_options, int parent_flags,
4374 bool keep_old_opts)
4376 assert(bs != NULL);
4378 BlockReopenQueueEntry *bs_entry;
4379 BdrvChild *child;
4380 QDict *old_options, *explicit_options, *options_copy;
4381 int flags;
4382 QemuOpts *opts;
4384 GLOBAL_STATE_CODE();
4387 * Strictly speaking, draining is illegal under GRAPH_RDLOCK. We know that
4388 * we've been called with bdrv_graph_rdlock_main_loop(), though, so it's ok
4389 * in practice.
4391 bdrv_drained_begin(bs);
4393 if (bs_queue == NULL) {
4394 bs_queue = g_new0(BlockReopenQueue, 1);
4395 QTAILQ_INIT(bs_queue);
4398 if (!options) {
4399 options = qdict_new();
4402 /* Check if this BlockDriverState is already in the queue */
4403 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4404 if (bs == bs_entry->state.bs) {
4405 break;
4410 * Precedence of options:
4411 * 1. Explicitly passed in options (highest)
4412 * 2. Retained from explicitly set options of bs
4413 * 3. Inherited from parent node
4414 * 4. Retained from effective options of bs
4417 /* Old explicitly set values (don't overwrite by inherited value) */
4418 if (bs_entry || keep_old_opts) {
4419 old_options = qdict_clone_shallow(bs_entry ?
4420 bs_entry->state.explicit_options :
4421 bs->explicit_options);
4422 bdrv_join_options(bs, options, old_options);
4423 qobject_unref(old_options);
4426 explicit_options = qdict_clone_shallow(options);
4428 /* Inherit from parent node */
4429 if (parent_options) {
4430 flags = 0;
4431 klass->inherit_options(role, parent_is_format, &flags, options,
4432 parent_flags, parent_options);
4433 } else {
4434 flags = bdrv_get_flags(bs);
4437 if (keep_old_opts) {
4438 /* Old values are used for options that aren't set yet */
4439 old_options = qdict_clone_shallow(bs->options);
4440 bdrv_join_options(bs, options, old_options);
4441 qobject_unref(old_options);
4444 /* We have the final set of options so let's update the flags */
4445 options_copy = qdict_clone_shallow(options);
4446 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4447 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4448 update_flags_from_options(&flags, opts);
4449 qemu_opts_del(opts);
4450 qobject_unref(options_copy);
4452 /* bdrv_open_inherit() sets and clears some additional flags internally */
4453 flags &= ~BDRV_O_PROTOCOL;
4454 if (flags & BDRV_O_RDWR) {
4455 flags |= BDRV_O_ALLOW_RDWR;
4458 if (!bs_entry) {
4459 bs_entry = g_new0(BlockReopenQueueEntry, 1);
4460 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
4461 } else {
4462 qobject_unref(bs_entry->state.options);
4463 qobject_unref(bs_entry->state.explicit_options);
4466 bs_entry->state.bs = bs;
4467 bs_entry->state.options = options;
4468 bs_entry->state.explicit_options = explicit_options;
4469 bs_entry->state.flags = flags;
4472 * If keep_old_opts is false then it means that unspecified
4473 * options must be reset to their original value. We don't allow
4474 * resetting 'backing' but we need to know if the option is
4475 * missing in order to decide if we have to return an error.
4477 if (!keep_old_opts) {
4478 bs_entry->state.backing_missing =
4479 !qdict_haskey(options, "backing") &&
4480 !qdict_haskey(options, "backing.driver");
4483 QLIST_FOREACH(child, &bs->children, next) {
4484 QDict *new_child_options = NULL;
4485 bool child_keep_old = keep_old_opts;
4487 /* reopen can only change the options of block devices that were
4488 * implicitly created and inherited options. For other (referenced)
4489 * block devices, a syntax like "backing.foo" results in an error. */
4490 if (child->bs->inherits_from != bs) {
4491 continue;
4494 /* Check if the options contain a child reference */
4495 if (qdict_haskey(options, child->name)) {
4496 const char *childref = qdict_get_try_str(options, child->name);
4498 * The current child must not be reopened if the child
4499 * reference is null or points to a different node.
4501 if (g_strcmp0(childref, child->bs->node_name)) {
4502 continue;
4505 * If the child reference points to the current child then
4506 * reopen it with its existing set of options (note that
4507 * it can still inherit new options from the parent).
4509 child_keep_old = true;
4510 } else {
4511 /* Extract child options ("child-name.*") */
4512 char *child_key_dot = g_strdup_printf("%s.", child->name);
4513 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4514 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4515 g_free(child_key_dot);
4518 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
4519 child->klass, child->role, bs->drv->is_format,
4520 options, flags, child_keep_old);
4523 return bs_queue;
4526 /* To be called with bs->aio_context locked */
4527 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4528 BlockDriverState *bs,
4529 QDict *options, bool keep_old_opts)
4531 GLOBAL_STATE_CODE();
4532 GRAPH_RDLOCK_GUARD_MAINLOOP();
4534 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4535 NULL, 0, keep_old_opts);
4538 void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4540 GLOBAL_STATE_CODE();
4541 if (bs_queue) {
4542 BlockReopenQueueEntry *bs_entry, *next;
4543 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4544 AioContext *ctx = bdrv_get_aio_context(bs_entry->state.bs);
4546 aio_context_acquire(ctx);
4547 bdrv_drained_end(bs_entry->state.bs);
4548 aio_context_release(ctx);
4550 qobject_unref(bs_entry->state.explicit_options);
4551 qobject_unref(bs_entry->state.options);
4552 g_free(bs_entry);
4554 g_free(bs_queue);
4559 * Reopen multiple BlockDriverStates atomically & transactionally.
4561 * The queue passed in (bs_queue) must have been built up previous
4562 * via bdrv_reopen_queue().
4564 * Reopens all BDS specified in the queue, with the appropriate
4565 * flags. All devices are prepared for reopen, and failure of any
4566 * device will cause all device changes to be abandoned, and intermediate
4567 * data cleaned up.
4569 * If all devices prepare successfully, then the changes are committed
4570 * to all devices.
4572 * All affected nodes must be drained between bdrv_reopen_queue() and
4573 * bdrv_reopen_multiple().
4575 * To be called from the main thread, with all other AioContexts unlocked.
4577 int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
4579 int ret = -1;
4580 BlockReopenQueueEntry *bs_entry, *next;
4581 AioContext *ctx;
4582 Transaction *tran = tran_new();
4583 g_autoptr(GSList) refresh_list = NULL;
4585 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
4586 assert(bs_queue != NULL);
4587 GLOBAL_STATE_CODE();
4589 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4590 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4591 aio_context_acquire(ctx);
4592 ret = bdrv_flush(bs_entry->state.bs);
4593 aio_context_release(ctx);
4594 if (ret < 0) {
4595 error_setg_errno(errp, -ret, "Error flushing drive");
4596 goto abort;
4600 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4601 assert(bs_entry->state.bs->quiesce_counter > 0);
4602 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4603 aio_context_acquire(ctx);
4604 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
4605 aio_context_release(ctx);
4606 if (ret < 0) {
4607 goto abort;
4609 bs_entry->prepared = true;
4612 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4613 BDRVReopenState *state = &bs_entry->state;
4615 refresh_list = g_slist_prepend(refresh_list, state->bs);
4616 if (state->old_backing_bs) {
4617 refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs);
4619 if (state->old_file_bs) {
4620 refresh_list = g_slist_prepend(refresh_list, state->old_file_bs);
4625 * Note that file-posix driver rely on permission update done during reopen
4626 * (even if no permission changed), because it wants "new" permissions for
4627 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4628 * in raw_reopen_prepare() which is called with "old" permissions.
4630 bdrv_graph_rdlock_main_loop();
4631 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4632 bdrv_graph_rdunlock_main_loop();
4634 if (ret < 0) {
4635 goto abort;
4639 * If we reach this point, we have success and just need to apply the
4640 * changes.
4642 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4643 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4644 * children are usually goes after parents in reopen-queue, so go from last
4645 * to first element.
4647 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4648 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4649 aio_context_acquire(ctx);
4650 bdrv_reopen_commit(&bs_entry->state);
4651 aio_context_release(ctx);
4654 bdrv_graph_wrlock(NULL);
4655 tran_commit(tran);
4656 bdrv_graph_wrunlock(NULL);
4658 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4659 BlockDriverState *bs = bs_entry->state.bs;
4661 if (bs->drv->bdrv_reopen_commit_post) {
4662 ctx = bdrv_get_aio_context(bs);
4663 aio_context_acquire(ctx);
4664 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
4665 aio_context_release(ctx);
4669 ret = 0;
4670 goto cleanup;
4672 abort:
4673 bdrv_graph_wrlock(NULL);
4674 tran_abort(tran);
4675 bdrv_graph_wrunlock(NULL);
4677 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4678 if (bs_entry->prepared) {
4679 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4680 aio_context_acquire(ctx);
4681 bdrv_reopen_abort(&bs_entry->state);
4682 aio_context_release(ctx);
4686 cleanup:
4687 bdrv_reopen_queue_free(bs_queue);
4689 return ret;
4692 int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4693 Error **errp)
4695 AioContext *ctx = bdrv_get_aio_context(bs);
4696 BlockReopenQueue *queue;
4697 int ret;
4699 GLOBAL_STATE_CODE();
4701 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4703 if (ctx != qemu_get_aio_context()) {
4704 aio_context_release(ctx);
4706 ret = bdrv_reopen_multiple(queue, errp);
4708 if (ctx != qemu_get_aio_context()) {
4709 aio_context_acquire(ctx);
4712 return ret;
4715 int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4716 Error **errp)
4718 QDict *opts = qdict_new();
4720 GLOBAL_STATE_CODE();
4722 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4724 return bdrv_reopen(bs, opts, true, errp);
4728 * Take a BDRVReopenState and check if the value of 'backing' in the
4729 * reopen_state->options QDict is valid or not.
4731 * If 'backing' is missing from the QDict then return 0.
4733 * If 'backing' contains the node name of the backing file of
4734 * reopen_state->bs then return 0.
4736 * If 'backing' contains a different node name (or is null) then check
4737 * whether the current backing file can be replaced with the new one.
4738 * If that's the case then reopen_state->replace_backing_bs is set to
4739 * true and reopen_state->new_backing_bs contains a pointer to the new
4740 * backing BlockDriverState (or NULL).
4742 * After calling this function, the transaction @tran may only be completed
4743 * while holding a writer lock for the graph.
4745 * Return 0 on success, otherwise return < 0 and set @errp.
4747 * The caller must hold the AioContext lock of @reopen_state->bs.
4748 * @reopen_state->bs can move to a different AioContext in this function.
4749 * Callers must make sure that their AioContext locking is still correct after
4750 * this.
4752 static int GRAPH_UNLOCKED
4753 bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4754 bool is_backing, Transaction *tran,
4755 Error **errp)
4757 BlockDriverState *bs = reopen_state->bs;
4758 BlockDriverState *new_child_bs;
4759 BlockDriverState *old_child_bs;
4761 const char *child_name = is_backing ? "backing" : "file";
4762 QObject *value;
4763 const char *str;
4764 AioContext *ctx, *old_ctx;
4765 bool has_child;
4766 int ret;
4768 GLOBAL_STATE_CODE();
4770 value = qdict_get(reopen_state->options, child_name);
4771 if (value == NULL) {
4772 return 0;
4775 bdrv_graph_rdlock_main_loop();
4777 switch (qobject_type(value)) {
4778 case QTYPE_QNULL:
4779 assert(is_backing); /* The 'file' option does not allow a null value */
4780 new_child_bs = NULL;
4781 break;
4782 case QTYPE_QSTRING:
4783 str = qstring_get_str(qobject_to(QString, value));
4784 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4785 if (new_child_bs == NULL) {
4786 ret = -EINVAL;
4787 goto out_rdlock;
4790 has_child = bdrv_recurse_has_child(new_child_bs, bs);
4791 if (has_child) {
4792 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4793 "cycle", str, child_name, bs->node_name);
4794 ret = -EINVAL;
4795 goto out_rdlock;
4797 break;
4798 default:
4800 * The options QDict has been flattened, so 'backing' and 'file'
4801 * do not allow any other data type here.
4803 g_assert_not_reached();
4806 old_child_bs = is_backing ? child_bs(bs->backing) : child_bs(bs->file);
4807 if (old_child_bs == new_child_bs) {
4808 ret = 0;
4809 goto out_rdlock;
4812 if (old_child_bs) {
4813 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
4814 ret = 0;
4815 goto out_rdlock;
4818 if (old_child_bs->implicit) {
4819 error_setg(errp, "Cannot replace implicit %s child of %s",
4820 child_name, bs->node_name);
4821 ret = -EPERM;
4822 goto out_rdlock;
4826 if (bs->drv->is_filter && !old_child_bs) {
4828 * Filters always have a file or a backing child, so we are trying to
4829 * change wrong child
4831 error_setg(errp, "'%s' is a %s filter node that does not support a "
4832 "%s child", bs->node_name, bs->drv->format_name, child_name);
4833 ret = -EINVAL;
4834 goto out_rdlock;
4837 if (is_backing) {
4838 reopen_state->old_backing_bs = old_child_bs;
4839 } else {
4840 reopen_state->old_file_bs = old_child_bs;
4843 if (old_child_bs) {
4844 bdrv_ref(old_child_bs);
4845 bdrv_drained_begin(old_child_bs);
4848 old_ctx = bdrv_get_aio_context(bs);
4849 ctx = bdrv_get_aio_context(new_child_bs);
4850 if (old_ctx != ctx) {
4851 aio_context_release(old_ctx);
4852 aio_context_acquire(ctx);
4855 bdrv_graph_rdunlock_main_loop();
4856 bdrv_graph_wrlock(new_child_bs);
4858 ret = bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4859 tran, errp);
4861 bdrv_graph_wrunlock_ctx(ctx);
4863 if (old_ctx != ctx) {
4864 aio_context_release(ctx);
4865 aio_context_acquire(old_ctx);
4868 if (old_child_bs) {
4869 bdrv_drained_end(old_child_bs);
4870 bdrv_unref(old_child_bs);
4873 return ret;
4875 out_rdlock:
4876 bdrv_graph_rdunlock_main_loop();
4877 return ret;
4881 * Prepares a BlockDriverState for reopen. All changes are staged in the
4882 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4883 * the block driver layer .bdrv_reopen_prepare()
4885 * bs is the BlockDriverState to reopen
4886 * flags are the new open flags
4887 * queue is the reopen queue
4889 * Returns 0 on success, non-zero on error. On error errp will be set
4890 * as well.
4892 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4893 * It is the responsibility of the caller to then call the abort() or
4894 * commit() for any other BDS that have been left in a prepare() state
4896 * The caller must hold the AioContext lock of @reopen_state->bs.
4898 * After calling this function, the transaction @change_child_tran may only be
4899 * completed while holding a writer lock for the graph.
4901 static int GRAPH_UNLOCKED
4902 bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
4903 Transaction *change_child_tran, Error **errp)
4905 int ret = -1;
4906 int old_flags;
4907 Error *local_err = NULL;
4908 BlockDriver *drv;
4909 QemuOpts *opts;
4910 QDict *orig_reopen_opts;
4911 char *discard = NULL;
4912 bool read_only;
4913 bool drv_prepared = false;
4915 assert(reopen_state != NULL);
4916 assert(reopen_state->bs->drv != NULL);
4917 GLOBAL_STATE_CODE();
4918 drv = reopen_state->bs->drv;
4920 /* This function and each driver's bdrv_reopen_prepare() remove
4921 * entries from reopen_state->options as they are processed, so
4922 * we need to make a copy of the original QDict. */
4923 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4925 /* Process generic block layer options */
4926 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4927 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
4928 ret = -EINVAL;
4929 goto error;
4932 /* This was already called in bdrv_reopen_queue_child() so the flags
4933 * are up-to-date. This time we simply want to remove the options from
4934 * QemuOpts in order to indicate that they have been processed. */
4935 old_flags = reopen_state->flags;
4936 update_flags_from_options(&reopen_state->flags, opts);
4937 assert(old_flags == reopen_state->flags);
4939 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
4940 if (discard != NULL) {
4941 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4942 error_setg(errp, "Invalid discard option");
4943 ret = -EINVAL;
4944 goto error;
4948 reopen_state->detect_zeroes =
4949 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4950 if (local_err) {
4951 error_propagate(errp, local_err);
4952 ret = -EINVAL;
4953 goto error;
4956 /* All other options (including node-name and driver) must be unchanged.
4957 * Put them back into the QDict, so that they are checked at the end
4958 * of this function. */
4959 qemu_opts_to_qdict(opts, reopen_state->options);
4961 /* If we are to stay read-only, do not allow permission change
4962 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4963 * not set, or if the BDS still has copy_on_read enabled */
4964 read_only = !(reopen_state->flags & BDRV_O_RDWR);
4966 bdrv_graph_rdlock_main_loop();
4967 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
4968 bdrv_graph_rdunlock_main_loop();
4969 if (local_err) {
4970 error_propagate(errp, local_err);
4971 goto error;
4974 if (drv->bdrv_reopen_prepare) {
4976 * If a driver-specific option is missing, it means that we
4977 * should reset it to its default value.
4978 * But not all options allow that, so we need to check it first.
4980 ret = bdrv_reset_options_allowed(reopen_state->bs,
4981 reopen_state->options, errp);
4982 if (ret) {
4983 goto error;
4986 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4987 if (ret) {
4988 if (local_err != NULL) {
4989 error_propagate(errp, local_err);
4990 } else {
4991 bdrv_graph_rdlock_main_loop();
4992 bdrv_refresh_filename(reopen_state->bs);
4993 bdrv_graph_rdunlock_main_loop();
4994 error_setg(errp, "failed while preparing to reopen image '%s'",
4995 reopen_state->bs->filename);
4997 goto error;
4999 } else {
5000 /* It is currently mandatory to have a bdrv_reopen_prepare()
5001 * handler for each supported drv. */
5002 bdrv_graph_rdlock_main_loop();
5003 error_setg(errp, "Block format '%s' used by node '%s' "
5004 "does not support reopening files", drv->format_name,
5005 bdrv_get_device_or_node_name(reopen_state->bs));
5006 bdrv_graph_rdunlock_main_loop();
5007 ret = -1;
5008 goto error;
5011 drv_prepared = true;
5014 * We must provide the 'backing' option if the BDS has a backing
5015 * file or if the image file has a backing file name as part of
5016 * its metadata. Otherwise the 'backing' option can be omitted.
5018 bdrv_graph_rdlock_main_loop();
5019 if (drv->supports_backing && reopen_state->backing_missing &&
5020 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
5021 error_setg(errp, "backing is missing for '%s'",
5022 reopen_state->bs->node_name);
5023 bdrv_graph_rdunlock_main_loop();
5024 ret = -EINVAL;
5025 goto error;
5027 bdrv_graph_rdunlock_main_loop();
5030 * Allow changing the 'backing' option. The new value can be
5031 * either a reference to an existing node (using its node name)
5032 * or NULL to simply detach the current backing file.
5034 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
5035 change_child_tran, errp);
5036 if (ret < 0) {
5037 goto error;
5039 qdict_del(reopen_state->options, "backing");
5041 /* Allow changing the 'file' option. In this case NULL is not allowed */
5042 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
5043 change_child_tran, errp);
5044 if (ret < 0) {
5045 goto error;
5047 qdict_del(reopen_state->options, "file");
5049 /* Options that are not handled are only okay if they are unchanged
5050 * compared to the old state. It is expected that some options are only
5051 * used for the initial open, but not reopen (e.g. filename) */
5052 if (qdict_size(reopen_state->options)) {
5053 const QDictEntry *entry = qdict_first(reopen_state->options);
5055 GRAPH_RDLOCK_GUARD_MAINLOOP();
5057 do {
5058 QObject *new = entry->value;
5059 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
5061 /* Allow child references (child_name=node_name) as long as they
5062 * point to the current child (i.e. everything stays the same). */
5063 if (qobject_type(new) == QTYPE_QSTRING) {
5064 BdrvChild *child;
5065 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
5066 if (!strcmp(child->name, entry->key)) {
5067 break;
5071 if (child) {
5072 if (!strcmp(child->bs->node_name,
5073 qstring_get_str(qobject_to(QString, new)))) {
5074 continue; /* Found child with this name, skip option */
5080 * TODO: When using -drive to specify blockdev options, all values
5081 * will be strings; however, when using -blockdev, blockdev-add or
5082 * filenames using the json:{} pseudo-protocol, they will be
5083 * correctly typed.
5084 * In contrast, reopening options are (currently) always strings
5085 * (because you can only specify them through qemu-io; all other
5086 * callers do not specify any options).
5087 * Therefore, when using anything other than -drive to create a BDS,
5088 * this cannot detect non-string options as unchanged, because
5089 * qobject_is_equal() always returns false for objects of different
5090 * type. In the future, this should be remedied by correctly typing
5091 * all options. For now, this is not too big of an issue because
5092 * the user can simply omit options which cannot be changed anyway,
5093 * so they will stay unchanged.
5095 if (!qobject_is_equal(new, old)) {
5096 error_setg(errp, "Cannot change the option '%s'", entry->key);
5097 ret = -EINVAL;
5098 goto error;
5100 } while ((entry = qdict_next(reopen_state->options, entry)));
5103 ret = 0;
5105 /* Restore the original reopen_state->options QDict */
5106 qobject_unref(reopen_state->options);
5107 reopen_state->options = qobject_ref(orig_reopen_opts);
5109 error:
5110 if (ret < 0 && drv_prepared) {
5111 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
5112 * call drv->bdrv_reopen_abort() before signaling an error
5113 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
5114 * when the respective bdrv_reopen_prepare() has failed) */
5115 if (drv->bdrv_reopen_abort) {
5116 drv->bdrv_reopen_abort(reopen_state);
5119 qemu_opts_del(opts);
5120 qobject_unref(orig_reopen_opts);
5121 g_free(discard);
5122 return ret;
5126 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
5127 * makes them final by swapping the staging BlockDriverState contents into
5128 * the active BlockDriverState contents.
5130 static void GRAPH_UNLOCKED bdrv_reopen_commit(BDRVReopenState *reopen_state)
5132 BlockDriver *drv;
5133 BlockDriverState *bs;
5134 BdrvChild *child;
5136 assert(reopen_state != NULL);
5137 bs = reopen_state->bs;
5138 drv = bs->drv;
5139 assert(drv != NULL);
5140 GLOBAL_STATE_CODE();
5142 /* If there are any driver level actions to take */
5143 if (drv->bdrv_reopen_commit) {
5144 drv->bdrv_reopen_commit(reopen_state);
5147 GRAPH_RDLOCK_GUARD_MAINLOOP();
5149 /* set BDS specific flags now */
5150 qobject_unref(bs->explicit_options);
5151 qobject_unref(bs->options);
5152 qobject_ref(reopen_state->explicit_options);
5153 qobject_ref(reopen_state->options);
5155 bs->explicit_options = reopen_state->explicit_options;
5156 bs->options = reopen_state->options;
5157 bs->open_flags = reopen_state->flags;
5158 bs->detect_zeroes = reopen_state->detect_zeroes;
5160 /* Remove child references from bs->options and bs->explicit_options.
5161 * Child options were already removed in bdrv_reopen_queue_child() */
5162 QLIST_FOREACH(child, &bs->children, next) {
5163 qdict_del(bs->explicit_options, child->name);
5164 qdict_del(bs->options, child->name);
5166 /* backing is probably removed, so it's not handled by previous loop */
5167 qdict_del(bs->explicit_options, "backing");
5168 qdict_del(bs->options, "backing");
5170 bdrv_refresh_limits(bs, NULL, NULL);
5171 bdrv_refresh_total_sectors(bs, bs->total_sectors);
5175 * Abort the reopen, and delete and free the staged changes in
5176 * reopen_state
5178 static void GRAPH_UNLOCKED bdrv_reopen_abort(BDRVReopenState *reopen_state)
5180 BlockDriver *drv;
5182 assert(reopen_state != NULL);
5183 drv = reopen_state->bs->drv;
5184 assert(drv != NULL);
5185 GLOBAL_STATE_CODE();
5187 if (drv->bdrv_reopen_abort) {
5188 drv->bdrv_reopen_abort(reopen_state);
5193 static void bdrv_close(BlockDriverState *bs)
5195 BdrvAioNotifier *ban, *ban_next;
5196 BdrvChild *child, *next;
5198 GLOBAL_STATE_CODE();
5199 assert(!bs->refcnt);
5201 bdrv_drained_begin(bs); /* complete I/O */
5202 bdrv_flush(bs);
5203 bdrv_drain(bs); /* in case flush left pending I/O */
5205 if (bs->drv) {
5206 if (bs->drv->bdrv_close) {
5207 /* Must unfreeze all children, so bdrv_unref_child() works */
5208 bs->drv->bdrv_close(bs);
5210 bs->drv = NULL;
5213 bdrv_graph_wrlock(bs);
5214 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
5215 bdrv_unref_child(bs, child);
5218 assert(!bs->backing);
5219 assert(!bs->file);
5220 bdrv_graph_wrunlock(bs);
5222 g_free(bs->opaque);
5223 bs->opaque = NULL;
5224 qatomic_set(&bs->copy_on_read, 0);
5225 bs->backing_file[0] = '\0';
5226 bs->backing_format[0] = '\0';
5227 bs->total_sectors = 0;
5228 bs->encrypted = false;
5229 bs->sg = false;
5230 qobject_unref(bs->options);
5231 qobject_unref(bs->explicit_options);
5232 bs->options = NULL;
5233 bs->explicit_options = NULL;
5234 qobject_unref(bs->full_open_options);
5235 bs->full_open_options = NULL;
5236 g_free(bs->block_status_cache);
5237 bs->block_status_cache = NULL;
5239 bdrv_release_named_dirty_bitmaps(bs);
5240 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
5242 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
5243 g_free(ban);
5245 QLIST_INIT(&bs->aio_notifiers);
5246 bdrv_drained_end(bs);
5249 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
5250 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
5251 * gets called.
5253 if (bs->quiesce_counter) {
5254 bdrv_drain_all_end_quiesce(bs);
5258 void bdrv_close_all(void)
5260 GLOBAL_STATE_CODE();
5261 assert(job_next(NULL) == NULL);
5263 /* Drop references from requests still in flight, such as canceled block
5264 * jobs whose AIO context has not been polled yet */
5265 bdrv_drain_all();
5267 blk_remove_all_bs();
5268 blockdev_close_all_bdrv_states();
5270 assert(QTAILQ_EMPTY(&all_bdrv_states));
5273 static bool GRAPH_RDLOCK should_update_child(BdrvChild *c, BlockDriverState *to)
5275 GQueue *queue;
5276 GHashTable *found;
5277 bool ret;
5279 if (c->klass->stay_at_node) {
5280 return false;
5283 /* If the child @c belongs to the BDS @to, replacing the current
5284 * c->bs by @to would mean to create a loop.
5286 * Such a case occurs when appending a BDS to a backing chain.
5287 * For instance, imagine the following chain:
5289 * guest device -> node A -> further backing chain...
5291 * Now we create a new BDS B which we want to put on top of this
5292 * chain, so we first attach A as its backing node:
5294 * node B
5297 * guest device -> node A -> further backing chain...
5299 * Finally we want to replace A by B. When doing that, we want to
5300 * replace all pointers to A by pointers to B -- except for the
5301 * pointer from B because (1) that would create a loop, and (2)
5302 * that pointer should simply stay intact:
5304 * guest device -> node B
5307 * node A -> further backing chain...
5309 * In general, when replacing a node A (c->bs) by a node B (@to),
5310 * if A is a child of B, that means we cannot replace A by B there
5311 * because that would create a loop. Silently detaching A from B
5312 * is also not really an option. So overall just leaving A in
5313 * place there is the most sensible choice.
5315 * We would also create a loop in any cases where @c is only
5316 * indirectly referenced by @to. Prevent this by returning false
5317 * if @c is found (by breadth-first search) anywhere in the whole
5318 * subtree of @to.
5321 ret = true;
5322 found = g_hash_table_new(NULL, NULL);
5323 g_hash_table_add(found, to);
5324 queue = g_queue_new();
5325 g_queue_push_tail(queue, to);
5327 while (!g_queue_is_empty(queue)) {
5328 BlockDriverState *v = g_queue_pop_head(queue);
5329 BdrvChild *c2;
5331 QLIST_FOREACH(c2, &v->children, next) {
5332 if (c2 == c) {
5333 ret = false;
5334 break;
5337 if (g_hash_table_contains(found, c2->bs)) {
5338 continue;
5341 g_queue_push_tail(queue, c2->bs);
5342 g_hash_table_add(found, c2->bs);
5346 g_queue_free(queue);
5347 g_hash_table_destroy(found);
5349 return ret;
5352 static void bdrv_remove_child_commit(void *opaque)
5354 GLOBAL_STATE_CODE();
5355 bdrv_child_free(opaque);
5358 static TransactionActionDrv bdrv_remove_child_drv = {
5359 .commit = bdrv_remove_child_commit,
5363 * Function doesn't update permissions, caller is responsible for this.
5365 * @child->bs (if non-NULL) must be drained.
5367 * After calling this function, the transaction @tran may only be completed
5368 * while holding a writer lock for the graph.
5370 static void GRAPH_WRLOCK bdrv_remove_child(BdrvChild *child, Transaction *tran)
5372 if (!child) {
5373 return;
5376 if (child->bs) {
5377 assert(child->quiesced_parent);
5378 bdrv_replace_child_tran(child, NULL, tran);
5381 tran_add(tran, &bdrv_remove_child_drv, child);
5385 * Both @from and @to (if non-NULL) must be drained. @to must be kept drained
5386 * until the transaction is completed.
5388 * After calling this function, the transaction @tran may only be completed
5389 * while holding a writer lock for the graph.
5391 static int GRAPH_WRLOCK
5392 bdrv_replace_node_noperm(BlockDriverState *from,
5393 BlockDriverState *to,
5394 bool auto_skip, Transaction *tran,
5395 Error **errp)
5397 BdrvChild *c, *next;
5399 GLOBAL_STATE_CODE();
5401 assert(from->quiesce_counter);
5402 assert(to->quiesce_counter);
5404 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5405 assert(c->bs == from);
5406 if (!should_update_child(c, to)) {
5407 if (auto_skip) {
5408 continue;
5410 error_setg(errp, "Should not change '%s' link to '%s'",
5411 c->name, from->node_name);
5412 return -EINVAL;
5414 if (c->frozen) {
5415 error_setg(errp, "Cannot change '%s' link to '%s'",
5416 c->name, from->node_name);
5417 return -EPERM;
5419 bdrv_replace_child_tran(c, to, tran);
5422 return 0;
5426 * Switch all parents of @from to point to @to instead. @from and @to must be in
5427 * the same AioContext and both must be drained.
5429 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5430 * if it creates a parent-child relation loop or if parent is block-job.
5432 * With auto_skip=false the error is returned if from has a parent which should
5433 * not be updated.
5435 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5436 * case backing link of the cow-parent of @to is removed.
5438 static int GRAPH_WRLOCK
5439 bdrv_replace_node_common(BlockDriverState *from, BlockDriverState *to,
5440 bool auto_skip, bool detach_subchain, Error **errp)
5442 Transaction *tran = tran_new();
5443 g_autoptr(GSList) refresh_list = NULL;
5444 BlockDriverState *to_cow_parent = NULL;
5445 int ret;
5447 GLOBAL_STATE_CODE();
5449 assert(from->quiesce_counter);
5450 assert(to->quiesce_counter);
5451 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
5453 if (detach_subchain) {
5454 assert(bdrv_chain_contains(from, to));
5455 assert(from != to);
5456 for (to_cow_parent = from;
5457 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5458 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5465 * Do the replacement without permission update.
5466 * Replacement may influence the permissions, we should calculate new
5467 * permissions based on new graph. If we fail, we'll roll-back the
5468 * replacement.
5470 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5471 if (ret < 0) {
5472 goto out;
5475 if (detach_subchain) {
5476 /* to_cow_parent is already drained because from is drained */
5477 bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent), tran);
5480 refresh_list = g_slist_prepend(refresh_list, to);
5481 refresh_list = g_slist_prepend(refresh_list, from);
5483 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5484 if (ret < 0) {
5485 goto out;
5488 ret = 0;
5490 out:
5491 tran_finalize(tran, ret);
5492 return ret;
5495 int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5496 Error **errp)
5498 return bdrv_replace_node_common(from, to, true, false, errp);
5501 int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5503 BlockDriverState *child_bs;
5504 int ret;
5506 GLOBAL_STATE_CODE();
5508 bdrv_graph_rdlock_main_loop();
5509 child_bs = bdrv_filter_or_cow_bs(bs);
5510 bdrv_graph_rdunlock_main_loop();
5512 bdrv_drained_begin(child_bs);
5513 bdrv_graph_wrlock(bs);
5514 ret = bdrv_replace_node_common(bs, child_bs, true, true, errp);
5515 bdrv_graph_wrunlock(bs);
5516 bdrv_drained_end(child_bs);
5518 return ret;
5522 * Add new bs contents at the top of an image chain while the chain is
5523 * live, while keeping required fields on the top layer.
5525 * This will modify the BlockDriverState fields, and swap contents
5526 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5528 * bs_new must not be attached to a BlockBackend and must not have backing
5529 * child.
5531 * This function does not create any image files.
5533 * The caller must hold the AioContext lock for @bs_top.
5535 int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5536 Error **errp)
5538 int ret;
5539 BdrvChild *child;
5540 Transaction *tran = tran_new();
5541 AioContext *old_context, *new_context = NULL;
5543 GLOBAL_STATE_CODE();
5545 bdrv_graph_rdlock_main_loop();
5546 assert(!bs_new->backing);
5547 bdrv_graph_rdunlock_main_loop();
5549 old_context = bdrv_get_aio_context(bs_top);
5550 bdrv_drained_begin(bs_top);
5553 * bdrv_drained_begin() requires that only the AioContext of the drained
5554 * node is locked, and at this point it can still differ from the AioContext
5555 * of bs_top.
5557 new_context = bdrv_get_aio_context(bs_new);
5558 aio_context_release(old_context);
5559 aio_context_acquire(new_context);
5560 bdrv_drained_begin(bs_new);
5561 aio_context_release(new_context);
5562 aio_context_acquire(old_context);
5563 new_context = NULL;
5565 bdrv_graph_wrlock(bs_top);
5567 child = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5568 &child_of_bds, bdrv_backing_role(bs_new),
5569 tran, errp);
5570 if (!child) {
5571 ret = -EINVAL;
5572 goto out;
5576 * bdrv_attach_child_noperm could change the AioContext of bs_top and
5577 * bs_new, but at least they are in the same AioContext now. This is the
5578 * AioContext that we need to lock for the rest of the function.
5580 new_context = bdrv_get_aio_context(bs_top);
5582 if (old_context != new_context) {
5583 aio_context_release(old_context);
5584 aio_context_acquire(new_context);
5587 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
5588 if (ret < 0) {
5589 goto out;
5592 ret = bdrv_refresh_perms(bs_new, tran, errp);
5593 out:
5594 tran_finalize(tran, ret);
5596 bdrv_refresh_limits(bs_top, NULL, NULL);
5597 bdrv_graph_wrunlock(bs_top);
5599 bdrv_drained_end(bs_top);
5600 bdrv_drained_end(bs_new);
5602 if (new_context && old_context != new_context) {
5603 aio_context_release(new_context);
5604 aio_context_acquire(old_context);
5607 return ret;
5610 /* Not for empty child */
5611 int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5612 Error **errp)
5614 int ret;
5615 Transaction *tran = tran_new();
5616 g_autoptr(GSList) refresh_list = NULL;
5617 BlockDriverState *old_bs = child->bs;
5619 GLOBAL_STATE_CODE();
5621 bdrv_ref(old_bs);
5622 bdrv_drained_begin(old_bs);
5623 bdrv_drained_begin(new_bs);
5624 bdrv_graph_wrlock(new_bs);
5626 bdrv_replace_child_tran(child, new_bs, tran);
5628 refresh_list = g_slist_prepend(refresh_list, old_bs);
5629 refresh_list = g_slist_prepend(refresh_list, new_bs);
5631 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5633 tran_finalize(tran, ret);
5635 bdrv_graph_wrunlock(new_bs);
5636 bdrv_drained_end(old_bs);
5637 bdrv_drained_end(new_bs);
5638 bdrv_unref(old_bs);
5640 return ret;
5643 static void bdrv_delete(BlockDriverState *bs)
5645 assert(bdrv_op_blocker_is_empty(bs));
5646 assert(!bs->refcnt);
5647 GLOBAL_STATE_CODE();
5649 /* remove from list, if necessary */
5650 if (bs->node_name[0] != '\0') {
5651 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5653 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5655 bdrv_close(bs);
5657 qemu_mutex_destroy(&bs->reqs_lock);
5659 g_free(bs);
5664 * Replace @bs by newly created block node.
5666 * @options is a QDict of options to pass to the block drivers, or NULL for an
5667 * empty set of options. The reference to the QDict belongs to the block layer
5668 * after the call (even on failure), so if the caller intends to reuse the
5669 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
5671 * The caller holds the AioContext lock for @bs. It must make sure that @bs
5672 * stays in the same AioContext, i.e. @options must not refer to nodes in a
5673 * different AioContext.
5675 BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
5676 int flags, Error **errp)
5678 ERRP_GUARD();
5679 int ret;
5680 AioContext *ctx = bdrv_get_aio_context(bs);
5681 BlockDriverState *new_node_bs = NULL;
5682 const char *drvname, *node_name;
5683 BlockDriver *drv;
5685 drvname = qdict_get_try_str(options, "driver");
5686 if (!drvname) {
5687 error_setg(errp, "driver is not specified");
5688 goto fail;
5691 drv = bdrv_find_format(drvname);
5692 if (!drv) {
5693 error_setg(errp, "Unknown driver: '%s'", drvname);
5694 goto fail;
5697 node_name = qdict_get_try_str(options, "node-name");
5699 GLOBAL_STATE_CODE();
5701 aio_context_release(ctx);
5702 aio_context_acquire(qemu_get_aio_context());
5703 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5704 errp);
5705 aio_context_release(qemu_get_aio_context());
5706 aio_context_acquire(ctx);
5707 assert(bdrv_get_aio_context(bs) == ctx);
5709 options = NULL; /* bdrv_new_open_driver() eats options */
5710 if (!new_node_bs) {
5711 error_prepend(errp, "Could not create node: ");
5712 goto fail;
5716 * Make sure that @bs doesn't go away until we have successfully attached
5717 * all of its parents to @new_node_bs and undrained it again.
5719 bdrv_ref(bs);
5720 bdrv_drained_begin(bs);
5721 bdrv_drained_begin(new_node_bs);
5722 bdrv_graph_wrlock(new_node_bs);
5723 ret = bdrv_replace_node(bs, new_node_bs, errp);
5724 bdrv_graph_wrunlock(new_node_bs);
5725 bdrv_drained_end(new_node_bs);
5726 bdrv_drained_end(bs);
5727 bdrv_unref(bs);
5729 if (ret < 0) {
5730 error_prepend(errp, "Could not replace node: ");
5731 goto fail;
5734 return new_node_bs;
5736 fail:
5737 qobject_unref(options);
5738 bdrv_unref(new_node_bs);
5739 return NULL;
5743 * Run consistency checks on an image
5745 * Returns 0 if the check could be completed (it doesn't mean that the image is
5746 * free of errors) or -errno when an internal error occurred. The results of the
5747 * check are stored in res.
5749 int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5750 BdrvCheckResult *res, BdrvCheckMode fix)
5752 IO_CODE();
5753 assert_bdrv_graph_readable();
5754 if (bs->drv == NULL) {
5755 return -ENOMEDIUM;
5757 if (bs->drv->bdrv_co_check == NULL) {
5758 return -ENOTSUP;
5761 memset(res, 0, sizeof(*res));
5762 return bs->drv->bdrv_co_check(bs, res, fix);
5766 * Return values:
5767 * 0 - success
5768 * -EINVAL - backing format specified, but no file
5769 * -ENOSPC - can't update the backing file because no space is left in the
5770 * image file header
5771 * -ENOTSUP - format driver doesn't support changing the backing file
5773 int coroutine_fn
5774 bdrv_co_change_backing_file(BlockDriverState *bs, const char *backing_file,
5775 const char *backing_fmt, bool require)
5777 BlockDriver *drv = bs->drv;
5778 int ret;
5780 IO_CODE();
5782 if (!drv) {
5783 return -ENOMEDIUM;
5786 /* Backing file format doesn't make sense without a backing file */
5787 if (backing_fmt && !backing_file) {
5788 return -EINVAL;
5791 if (require && backing_file && !backing_fmt) {
5792 return -EINVAL;
5795 if (drv->bdrv_co_change_backing_file != NULL) {
5796 ret = drv->bdrv_co_change_backing_file(bs, backing_file, backing_fmt);
5797 } else {
5798 ret = -ENOTSUP;
5801 if (ret == 0) {
5802 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5803 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
5804 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5805 backing_file ?: "");
5807 return ret;
5811 * Finds the first non-filter node above bs in the chain between
5812 * active and bs. The returned node is either an immediate parent of
5813 * bs, or there are only filter nodes between the two.
5815 * Returns NULL if bs is not found in active's image chain,
5816 * or if active == bs.
5818 * Returns the bottommost base image if bs == NULL.
5820 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5821 BlockDriverState *bs)
5824 GLOBAL_STATE_CODE();
5826 bs = bdrv_skip_filters(bs);
5827 active = bdrv_skip_filters(active);
5829 while (active) {
5830 BlockDriverState *next = bdrv_backing_chain_next(active);
5831 if (bs == next) {
5832 return active;
5834 active = next;
5837 return NULL;
5840 /* Given a BDS, searches for the base layer. */
5841 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5843 GLOBAL_STATE_CODE();
5845 return bdrv_find_overlay(bs, NULL);
5849 * Return true if at least one of the COW (backing) and filter links
5850 * between @bs and @base is frozen. @errp is set if that's the case.
5851 * @base must be reachable from @bs, or NULL.
5853 static bool GRAPH_RDLOCK
5854 bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5855 Error **errp)
5857 BlockDriverState *i;
5858 BdrvChild *child;
5860 GLOBAL_STATE_CODE();
5862 for (i = bs; i != base; i = child_bs(child)) {
5863 child = bdrv_filter_or_cow_child(i);
5865 if (child && child->frozen) {
5866 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
5867 child->name, i->node_name, child->bs->node_name);
5868 return true;
5872 return false;
5876 * Freeze all COW (backing) and filter links between @bs and @base.
5877 * If any of the links is already frozen the operation is aborted and
5878 * none of the links are modified.
5879 * @base must be reachable from @bs, or NULL.
5880 * Returns 0 on success. On failure returns < 0 and sets @errp.
5882 int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5883 Error **errp)
5885 BlockDriverState *i;
5886 BdrvChild *child;
5888 GLOBAL_STATE_CODE();
5890 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5891 return -EPERM;
5894 for (i = bs; i != base; i = child_bs(child)) {
5895 child = bdrv_filter_or_cow_child(i);
5896 if (child && child->bs->never_freeze) {
5897 error_setg(errp, "Cannot freeze '%s' link to '%s'",
5898 child->name, child->bs->node_name);
5899 return -EPERM;
5903 for (i = bs; i != base; i = child_bs(child)) {
5904 child = bdrv_filter_or_cow_child(i);
5905 if (child) {
5906 child->frozen = true;
5910 return 0;
5914 * Unfreeze all COW (backing) and filter links between @bs and @base.
5915 * The caller must ensure that all links are frozen before using this
5916 * function.
5917 * @base must be reachable from @bs, or NULL.
5919 void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5921 BlockDriverState *i;
5922 BdrvChild *child;
5924 GLOBAL_STATE_CODE();
5926 for (i = bs; i != base; i = child_bs(child)) {
5927 child = bdrv_filter_or_cow_child(i);
5928 if (child) {
5929 assert(child->frozen);
5930 child->frozen = false;
5936 * Drops images above 'base' up to and including 'top', and sets the image
5937 * above 'top' to have base as its backing file.
5939 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5940 * information in 'bs' can be properly updated.
5942 * E.g., this will convert the following chain:
5943 * bottom <- base <- intermediate <- top <- active
5945 * to
5947 * bottom <- base <- active
5949 * It is allowed for bottom==base, in which case it converts:
5951 * base <- intermediate <- top <- active
5953 * to
5955 * base <- active
5957 * If backing_file_str is non-NULL, it will be used when modifying top's
5958 * overlay image metadata.
5960 * Error conditions:
5961 * if active == top, that is considered an error
5964 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5965 const char *backing_file_str)
5967 BlockDriverState *explicit_top = top;
5968 bool update_inherits_from;
5969 BdrvChild *c;
5970 Error *local_err = NULL;
5971 int ret = -EIO;
5972 g_autoptr(GSList) updated_children = NULL;
5973 GSList *p;
5975 GLOBAL_STATE_CODE();
5977 bdrv_ref(top);
5978 bdrv_drained_begin(base);
5979 bdrv_graph_wrlock(base);
5981 if (!top->drv || !base->drv) {
5982 goto exit_wrlock;
5985 /* Make sure that base is in the backing chain of top */
5986 if (!bdrv_chain_contains(top, base)) {
5987 goto exit_wrlock;
5990 /* If 'base' recursively inherits from 'top' then we should set
5991 * base->inherits_from to top->inherits_from after 'top' and all
5992 * other intermediate nodes have been dropped.
5993 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5994 * it because no one inherits from it. We use explicit_top for that. */
5995 explicit_top = bdrv_skip_implicit_filters(explicit_top);
5996 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5998 /* success - we can delete the intermediate states, and link top->base */
5999 if (!backing_file_str) {
6000 bdrv_refresh_filename(base);
6001 backing_file_str = base->filename;
6004 QLIST_FOREACH(c, &top->parents, next_parent) {
6005 updated_children = g_slist_prepend(updated_children, c);
6009 * It seems correct to pass detach_subchain=true here, but it triggers
6010 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
6011 * another drained section, which modify the graph (for example, removing
6012 * the child, which we keep in updated_children list). So, it's a TODO.
6014 * Note, bug triggered if pass detach_subchain=true here and run
6015 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
6016 * That's a FIXME.
6018 bdrv_replace_node_common(top, base, false, false, &local_err);
6019 bdrv_graph_wrunlock(base);
6021 if (local_err) {
6022 error_report_err(local_err);
6023 goto exit;
6026 for (p = updated_children; p; p = p->next) {
6027 c = p->data;
6029 if (c->klass->update_filename) {
6030 ret = c->klass->update_filename(c, base, backing_file_str,
6031 &local_err);
6032 if (ret < 0) {
6034 * TODO: Actually, we want to rollback all previous iterations
6035 * of this loop, and (which is almost impossible) previous
6036 * bdrv_replace_node()...
6038 * Note, that c->klass->update_filename may lead to permission
6039 * update, so it's a bad idea to call it inside permission
6040 * update transaction of bdrv_replace_node.
6042 error_report_err(local_err);
6043 goto exit;
6048 if (update_inherits_from) {
6049 base->inherits_from = explicit_top->inherits_from;
6052 ret = 0;
6053 goto exit;
6055 exit_wrlock:
6056 bdrv_graph_wrunlock(base);
6057 exit:
6058 bdrv_drained_end(base);
6059 bdrv_unref(top);
6060 return ret;
6064 * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that
6065 * sums the size of all data-bearing children. (This excludes backing
6066 * children.)
6068 static int64_t coroutine_fn GRAPH_RDLOCK
6069 bdrv_sum_allocated_file_size(BlockDriverState *bs)
6071 BdrvChild *child;
6072 int64_t child_size, sum = 0;
6074 QLIST_FOREACH(child, &bs->children, next) {
6075 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
6076 BDRV_CHILD_FILTERED))
6078 child_size = bdrv_co_get_allocated_file_size(child->bs);
6079 if (child_size < 0) {
6080 return child_size;
6082 sum += child_size;
6086 return sum;
6090 * Length of a allocated file in bytes. Sparse files are counted by actual
6091 * allocated space. Return < 0 if error or unknown.
6093 int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs)
6095 BlockDriver *drv = bs->drv;
6096 IO_CODE();
6097 assert_bdrv_graph_readable();
6099 if (!drv) {
6100 return -ENOMEDIUM;
6102 if (drv->bdrv_co_get_allocated_file_size) {
6103 return drv->bdrv_co_get_allocated_file_size(bs);
6106 if (drv->bdrv_file_open) {
6108 * Protocol drivers default to -ENOTSUP (most of their data is
6109 * not stored in any of their children (if they even have any),
6110 * so there is no generic way to figure it out).
6112 return -ENOTSUP;
6113 } else if (drv->is_filter) {
6114 /* Filter drivers default to the size of their filtered child */
6115 return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs));
6116 } else {
6117 /* Other drivers default to summing their children's sizes */
6118 return bdrv_sum_allocated_file_size(bs);
6123 * bdrv_measure:
6124 * @drv: Format driver
6125 * @opts: Creation options for new image
6126 * @in_bs: Existing image containing data for new image (may be NULL)
6127 * @errp: Error object
6128 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
6129 * or NULL on error
6131 * Calculate file size required to create a new image.
6133 * If @in_bs is given then space for allocated clusters and zero clusters
6134 * from that image are included in the calculation. If @opts contains a
6135 * backing file that is shared by @in_bs then backing clusters may be omitted
6136 * from the calculation.
6138 * If @in_bs is NULL then the calculation includes no allocated clusters
6139 * unless a preallocation option is given in @opts.
6141 * Note that @in_bs may use a different BlockDriver from @drv.
6143 * If an error occurs the @errp pointer is set.
6145 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
6146 BlockDriverState *in_bs, Error **errp)
6148 IO_CODE();
6149 if (!drv->bdrv_measure) {
6150 error_setg(errp, "Block driver '%s' does not support size measurement",
6151 drv->format_name);
6152 return NULL;
6155 return drv->bdrv_measure(opts, in_bs, errp);
6159 * Return number of sectors on success, -errno on error.
6161 int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs)
6163 BlockDriver *drv = bs->drv;
6164 IO_CODE();
6165 assert_bdrv_graph_readable();
6167 if (!drv)
6168 return -ENOMEDIUM;
6170 if (bs->bl.has_variable_length) {
6171 int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors);
6172 if (ret < 0) {
6173 return ret;
6176 return bs->total_sectors;
6180 * This wrapper is written by hand because this function is in the hot I/O path,
6181 * via blk_get_geometry.
6183 int64_t coroutine_mixed_fn bdrv_nb_sectors(BlockDriverState *bs)
6185 BlockDriver *drv = bs->drv;
6186 IO_CODE();
6188 if (!drv)
6189 return -ENOMEDIUM;
6191 if (bs->bl.has_variable_length) {
6192 int ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
6193 if (ret < 0) {
6194 return ret;
6198 return bs->total_sectors;
6202 * Return length in bytes on success, -errno on error.
6203 * The length is always a multiple of BDRV_SECTOR_SIZE.
6205 int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs)
6207 int64_t ret;
6208 IO_CODE();
6209 assert_bdrv_graph_readable();
6211 ret = bdrv_co_nb_sectors(bs);
6212 if (ret < 0) {
6213 return ret;
6215 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
6216 return -EFBIG;
6218 return ret * BDRV_SECTOR_SIZE;
6221 bool bdrv_is_sg(BlockDriverState *bs)
6223 IO_CODE();
6224 return bs->sg;
6228 * Return whether the given node supports compressed writes.
6230 bool bdrv_supports_compressed_writes(BlockDriverState *bs)
6232 BlockDriverState *filtered;
6233 IO_CODE();
6235 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
6236 return false;
6239 filtered = bdrv_filter_bs(bs);
6240 if (filtered) {
6242 * Filters can only forward compressed writes, so we have to
6243 * check the child.
6245 return bdrv_supports_compressed_writes(filtered);
6248 return true;
6251 const char *bdrv_get_format_name(BlockDriverState *bs)
6253 IO_CODE();
6254 return bs->drv ? bs->drv->format_name : NULL;
6257 static int qsort_strcmp(const void *a, const void *b)
6259 return strcmp(*(char *const *)a, *(char *const *)b);
6262 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
6263 void *opaque, bool read_only)
6265 BlockDriver *drv;
6266 int count = 0;
6267 int i;
6268 const char **formats = NULL;
6270 GLOBAL_STATE_CODE();
6272 QLIST_FOREACH(drv, &bdrv_drivers, list) {
6273 if (drv->format_name) {
6274 bool found = false;
6276 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
6277 continue;
6280 i = count;
6281 while (formats && i && !found) {
6282 found = !strcmp(formats[--i], drv->format_name);
6285 if (!found) {
6286 formats = g_renew(const char *, formats, count + 1);
6287 formats[count++] = drv->format_name;
6292 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
6293 const char *format_name = block_driver_modules[i].format_name;
6295 if (format_name) {
6296 bool found = false;
6297 int j = count;
6299 if (use_bdrv_whitelist &&
6300 !bdrv_format_is_whitelisted(format_name, read_only)) {
6301 continue;
6304 while (formats && j && !found) {
6305 found = !strcmp(formats[--j], format_name);
6308 if (!found) {
6309 formats = g_renew(const char *, formats, count + 1);
6310 formats[count++] = format_name;
6315 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
6317 for (i = 0; i < count; i++) {
6318 it(opaque, formats[i]);
6321 g_free(formats);
6324 /* This function is to find a node in the bs graph */
6325 BlockDriverState *bdrv_find_node(const char *node_name)
6327 BlockDriverState *bs;
6329 assert(node_name);
6330 GLOBAL_STATE_CODE();
6332 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6333 if (!strcmp(node_name, bs->node_name)) {
6334 return bs;
6337 return NULL;
6340 /* Put this QMP function here so it can access the static graph_bdrv_states. */
6341 BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
6342 Error **errp)
6344 BlockDeviceInfoList *list;
6345 BlockDriverState *bs;
6347 GLOBAL_STATE_CODE();
6348 GRAPH_RDLOCK_GUARD_MAINLOOP();
6350 list = NULL;
6351 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6352 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
6353 if (!info) {
6354 qapi_free_BlockDeviceInfoList(list);
6355 return NULL;
6357 QAPI_LIST_PREPEND(list, info);
6360 return list;
6363 typedef struct XDbgBlockGraphConstructor {
6364 XDbgBlockGraph *graph;
6365 GHashTable *graph_nodes;
6366 } XDbgBlockGraphConstructor;
6368 static XDbgBlockGraphConstructor *xdbg_graph_new(void)
6370 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
6372 gr->graph = g_new0(XDbgBlockGraph, 1);
6373 gr->graph_nodes = g_hash_table_new(NULL, NULL);
6375 return gr;
6378 static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
6380 XDbgBlockGraph *graph = gr->graph;
6382 g_hash_table_destroy(gr->graph_nodes);
6383 g_free(gr);
6385 return graph;
6388 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
6390 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
6392 if (ret != 0) {
6393 return ret;
6397 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6398 * answer of g_hash_table_lookup.
6400 ret = g_hash_table_size(gr->graph_nodes) + 1;
6401 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
6403 return ret;
6406 static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
6407 XDbgBlockGraphNodeType type, const char *name)
6409 XDbgBlockGraphNode *n;
6411 n = g_new0(XDbgBlockGraphNode, 1);
6413 n->id = xdbg_graph_node_num(gr, node);
6414 n->type = type;
6415 n->name = g_strdup(name);
6417 QAPI_LIST_PREPEND(gr->graph->nodes, n);
6420 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
6421 const BdrvChild *child)
6423 BlockPermission qapi_perm;
6424 XDbgBlockGraphEdge *edge;
6425 GLOBAL_STATE_CODE();
6427 edge = g_new0(XDbgBlockGraphEdge, 1);
6429 edge->parent = xdbg_graph_node_num(gr, parent);
6430 edge->child = xdbg_graph_node_num(gr, child->bs);
6431 edge->name = g_strdup(child->name);
6433 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
6434 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
6436 if (flag & child->perm) {
6437 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
6439 if (flag & child->shared_perm) {
6440 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
6444 QAPI_LIST_PREPEND(gr->graph->edges, edge);
6448 XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
6450 BlockBackend *blk;
6451 BlockJob *job;
6452 BlockDriverState *bs;
6453 BdrvChild *child;
6454 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
6456 GLOBAL_STATE_CODE();
6458 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
6459 char *allocated_name = NULL;
6460 const char *name = blk_name(blk);
6462 if (!*name) {
6463 name = allocated_name = blk_get_attached_dev_id(blk);
6465 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
6466 name);
6467 g_free(allocated_name);
6468 if (blk_root(blk)) {
6469 xdbg_graph_add_edge(gr, blk, blk_root(blk));
6473 WITH_JOB_LOCK_GUARD() {
6474 for (job = block_job_next_locked(NULL); job;
6475 job = block_job_next_locked(job)) {
6476 GSList *el;
6478 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
6479 job->job.id);
6480 for (el = job->nodes; el; el = el->next) {
6481 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
6486 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6487 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
6488 bs->node_name);
6489 QLIST_FOREACH(child, &bs->children, next) {
6490 xdbg_graph_add_edge(gr, bs, child);
6494 return xdbg_graph_finalize(gr);
6497 BlockDriverState *bdrv_lookup_bs(const char *device,
6498 const char *node_name,
6499 Error **errp)
6501 BlockBackend *blk;
6502 BlockDriverState *bs;
6504 GLOBAL_STATE_CODE();
6506 if (device) {
6507 blk = blk_by_name(device);
6509 if (blk) {
6510 bs = blk_bs(blk);
6511 if (!bs) {
6512 error_setg(errp, "Device '%s' has no medium", device);
6515 return bs;
6519 if (node_name) {
6520 bs = bdrv_find_node(node_name);
6522 if (bs) {
6523 return bs;
6527 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
6528 device ? device : "",
6529 node_name ? node_name : "");
6530 return NULL;
6533 /* If 'base' is in the same chain as 'top', return true. Otherwise,
6534 * return false. If either argument is NULL, return false. */
6535 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6538 GLOBAL_STATE_CODE();
6540 while (top && top != base) {
6541 top = bdrv_filter_or_cow_bs(top);
6544 return top != NULL;
6547 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6549 GLOBAL_STATE_CODE();
6550 if (!bs) {
6551 return QTAILQ_FIRST(&graph_bdrv_states);
6553 return QTAILQ_NEXT(bs, node_list);
6556 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6558 GLOBAL_STATE_CODE();
6559 if (!bs) {
6560 return QTAILQ_FIRST(&all_bdrv_states);
6562 return QTAILQ_NEXT(bs, bs_list);
6565 const char *bdrv_get_node_name(const BlockDriverState *bs)
6567 IO_CODE();
6568 return bs->node_name;
6571 const char *bdrv_get_parent_name(const BlockDriverState *bs)
6573 BdrvChild *c;
6574 const char *name;
6575 IO_CODE();
6577 /* If multiple parents have a name, just pick the first one. */
6578 QLIST_FOREACH(c, &bs->parents, next_parent) {
6579 if (c->klass->get_name) {
6580 name = c->klass->get_name(c);
6581 if (name && *name) {
6582 return name;
6587 return NULL;
6590 /* TODO check what callers really want: bs->node_name or blk_name() */
6591 const char *bdrv_get_device_name(const BlockDriverState *bs)
6593 IO_CODE();
6594 return bdrv_get_parent_name(bs) ?: "";
6597 /* This can be used to identify nodes that might not have a device
6598 * name associated. Since node and device names live in the same
6599 * namespace, the result is unambiguous. The exception is if both are
6600 * absent, then this returns an empty (non-null) string. */
6601 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6603 IO_CODE();
6604 return bdrv_get_parent_name(bs) ?: bs->node_name;
6607 int bdrv_get_flags(BlockDriverState *bs)
6609 IO_CODE();
6610 return bs->open_flags;
6613 int bdrv_has_zero_init_1(BlockDriverState *bs)
6615 GLOBAL_STATE_CODE();
6616 return 1;
6619 int coroutine_mixed_fn bdrv_has_zero_init(BlockDriverState *bs)
6621 BlockDriverState *filtered;
6622 GLOBAL_STATE_CODE();
6624 if (!bs->drv) {
6625 return 0;
6628 /* If BS is a copy on write image, it is initialized to
6629 the contents of the base image, which may not be zeroes. */
6630 if (bdrv_cow_child(bs)) {
6631 return 0;
6633 if (bs->drv->bdrv_has_zero_init) {
6634 return bs->drv->bdrv_has_zero_init(bs);
6637 filtered = bdrv_filter_bs(bs);
6638 if (filtered) {
6639 return bdrv_has_zero_init(filtered);
6642 /* safe default */
6643 return 0;
6646 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6648 IO_CODE();
6649 if (!(bs->open_flags & BDRV_O_UNMAP)) {
6650 return false;
6653 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
6656 void bdrv_get_backing_filename(BlockDriverState *bs,
6657 char *filename, int filename_size)
6659 IO_CODE();
6660 pstrcpy(filename, filename_size, bs->backing_file);
6663 int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
6665 int ret;
6666 BlockDriver *drv = bs->drv;
6667 IO_CODE();
6668 assert_bdrv_graph_readable();
6670 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6671 if (!drv) {
6672 return -ENOMEDIUM;
6674 if (!drv->bdrv_co_get_info) {
6675 BlockDriverState *filtered = bdrv_filter_bs(bs);
6676 if (filtered) {
6677 return bdrv_co_get_info(filtered, bdi);
6679 return -ENOTSUP;
6681 memset(bdi, 0, sizeof(*bdi));
6682 ret = drv->bdrv_co_get_info(bs, bdi);
6683 if (bdi->subcluster_size == 0) {
6685 * If the driver left this unset, subclusters are not supported.
6686 * Then it is safe to treat each cluster as having only one subcluster.
6688 bdi->subcluster_size = bdi->cluster_size;
6690 if (ret < 0) {
6691 return ret;
6694 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6695 return -EINVAL;
6698 return 0;
6701 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6702 Error **errp)
6704 BlockDriver *drv = bs->drv;
6705 IO_CODE();
6706 if (drv && drv->bdrv_get_specific_info) {
6707 return drv->bdrv_get_specific_info(bs, errp);
6709 return NULL;
6712 BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6714 BlockDriver *drv = bs->drv;
6715 IO_CODE();
6716 if (!drv || !drv->bdrv_get_specific_stats) {
6717 return NULL;
6719 return drv->bdrv_get_specific_stats(bs);
6722 void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event)
6724 IO_CODE();
6725 assert_bdrv_graph_readable();
6727 if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) {
6728 return;
6731 bs->drv->bdrv_co_debug_event(bs, event);
6734 static BlockDriverState * GRAPH_RDLOCK
6735 bdrv_find_debug_node(BlockDriverState *bs)
6737 GLOBAL_STATE_CODE();
6738 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
6739 bs = bdrv_primary_bs(bs);
6742 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
6743 assert(bs->drv->bdrv_debug_remove_breakpoint);
6744 return bs;
6747 return NULL;
6750 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6751 const char *tag)
6753 GLOBAL_STATE_CODE();
6754 GRAPH_RDLOCK_GUARD_MAINLOOP();
6756 bs = bdrv_find_debug_node(bs);
6757 if (bs) {
6758 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6761 return -ENOTSUP;
6764 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6766 GLOBAL_STATE_CODE();
6767 GRAPH_RDLOCK_GUARD_MAINLOOP();
6769 bs = bdrv_find_debug_node(bs);
6770 if (bs) {
6771 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6774 return -ENOTSUP;
6777 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6779 GLOBAL_STATE_CODE();
6780 GRAPH_RDLOCK_GUARD_MAINLOOP();
6782 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
6783 bs = bdrv_primary_bs(bs);
6786 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6787 return bs->drv->bdrv_debug_resume(bs, tag);
6790 return -ENOTSUP;
6793 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6795 GLOBAL_STATE_CODE();
6796 GRAPH_RDLOCK_GUARD_MAINLOOP();
6798 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
6799 bs = bdrv_primary_bs(bs);
6802 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6803 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6806 return false;
6809 /* backing_file can either be relative, or absolute, or a protocol. If it is
6810 * relative, it must be relative to the chain. So, passing in bs->filename
6811 * from a BDS as backing_file should not be done, as that may be relative to
6812 * the CWD rather than the chain. */
6813 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6814 const char *backing_file)
6816 char *filename_full = NULL;
6817 char *backing_file_full = NULL;
6818 char *filename_tmp = NULL;
6819 int is_protocol = 0;
6820 bool filenames_refreshed = false;
6821 BlockDriverState *curr_bs = NULL;
6822 BlockDriverState *retval = NULL;
6823 BlockDriverState *bs_below;
6825 GLOBAL_STATE_CODE();
6826 GRAPH_RDLOCK_GUARD_MAINLOOP();
6828 if (!bs || !bs->drv || !backing_file) {
6829 return NULL;
6832 filename_full = g_malloc(PATH_MAX);
6833 backing_file_full = g_malloc(PATH_MAX);
6835 is_protocol = path_has_protocol(backing_file);
6838 * Being largely a legacy function, skip any filters here
6839 * (because filters do not have normal filenames, so they cannot
6840 * match anyway; and allowing json:{} filenames is a bit out of
6841 * scope).
6843 for (curr_bs = bdrv_skip_filters(bs);
6844 bdrv_cow_child(curr_bs) != NULL;
6845 curr_bs = bs_below)
6847 bs_below = bdrv_backing_chain_next(curr_bs);
6849 if (bdrv_backing_overridden(curr_bs)) {
6851 * If the backing file was overridden, we can only compare
6852 * directly against the backing node's filename.
6855 if (!filenames_refreshed) {
6857 * This will automatically refresh all of the
6858 * filenames in the rest of the backing chain, so we
6859 * only need to do this once.
6861 bdrv_refresh_filename(bs_below);
6862 filenames_refreshed = true;
6865 if (strcmp(backing_file, bs_below->filename) == 0) {
6866 retval = bs_below;
6867 break;
6869 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6871 * If either of the filename paths is actually a protocol, then
6872 * compare unmodified paths; otherwise make paths relative.
6874 char *backing_file_full_ret;
6876 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
6877 retval = bs_below;
6878 break;
6880 /* Also check against the full backing filename for the image */
6881 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6882 NULL);
6883 if (backing_file_full_ret) {
6884 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6885 g_free(backing_file_full_ret);
6886 if (equal) {
6887 retval = bs_below;
6888 break;
6891 } else {
6892 /* If not an absolute filename path, make it relative to the current
6893 * image's filename path */
6894 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6895 NULL);
6896 /* We are going to compare canonicalized absolute pathnames */
6897 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6898 g_free(filename_tmp);
6899 continue;
6901 g_free(filename_tmp);
6903 /* We need to make sure the backing filename we are comparing against
6904 * is relative to the current image filename (or absolute) */
6905 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6906 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6907 g_free(filename_tmp);
6908 continue;
6910 g_free(filename_tmp);
6912 if (strcmp(backing_file_full, filename_full) == 0) {
6913 retval = bs_below;
6914 break;
6919 g_free(filename_full);
6920 g_free(backing_file_full);
6921 return retval;
6924 void bdrv_init(void)
6926 #ifdef CONFIG_BDRV_WHITELIST_TOOLS
6927 use_bdrv_whitelist = 1;
6928 #endif
6929 module_call_init(MODULE_INIT_BLOCK);
6932 void bdrv_init_with_whitelist(void)
6934 use_bdrv_whitelist = 1;
6935 bdrv_init();
6938 int bdrv_activate(BlockDriverState *bs, Error **errp)
6940 BdrvChild *child, *parent;
6941 Error *local_err = NULL;
6942 int ret;
6943 BdrvDirtyBitmap *bm;
6945 GLOBAL_STATE_CODE();
6946 GRAPH_RDLOCK_GUARD_MAINLOOP();
6948 if (!bs->drv) {
6949 return -ENOMEDIUM;
6952 QLIST_FOREACH(child, &bs->children, next) {
6953 bdrv_activate(child->bs, &local_err);
6954 if (local_err) {
6955 error_propagate(errp, local_err);
6956 return -EINVAL;
6961 * Update permissions, they may differ for inactive nodes.
6963 * Note that the required permissions of inactive images are always a
6964 * subset of the permissions required after activating the image. This
6965 * allows us to just get the permissions upfront without restricting
6966 * bdrv_co_invalidate_cache().
6968 * It also means that in error cases, we don't have to try and revert to
6969 * the old permissions (which is an operation that could fail, too). We can
6970 * just keep the extended permissions for the next time that an activation
6971 * of the image is tried.
6973 if (bs->open_flags & BDRV_O_INACTIVE) {
6974 bs->open_flags &= ~BDRV_O_INACTIVE;
6975 ret = bdrv_refresh_perms(bs, NULL, errp);
6976 if (ret < 0) {
6977 bs->open_flags |= BDRV_O_INACTIVE;
6978 return ret;
6981 ret = bdrv_invalidate_cache(bs, errp);
6982 if (ret < 0) {
6983 bs->open_flags |= BDRV_O_INACTIVE;
6984 return ret;
6987 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6988 bdrv_dirty_bitmap_skip_store(bm, false);
6991 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
6992 if (ret < 0) {
6993 bs->open_flags |= BDRV_O_INACTIVE;
6994 error_setg_errno(errp, -ret, "Could not refresh total sector count");
6995 return ret;
6999 QLIST_FOREACH(parent, &bs->parents, next_parent) {
7000 if (parent->klass->activate) {
7001 parent->klass->activate(parent, &local_err);
7002 if (local_err) {
7003 bs->open_flags |= BDRV_O_INACTIVE;
7004 error_propagate(errp, local_err);
7005 return -EINVAL;
7010 return 0;
7013 int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
7015 Error *local_err = NULL;
7016 IO_CODE();
7018 assert(!(bs->open_flags & BDRV_O_INACTIVE));
7019 assert_bdrv_graph_readable();
7021 if (bs->drv->bdrv_co_invalidate_cache) {
7022 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
7023 if (local_err) {
7024 error_propagate(errp, local_err);
7025 return -EINVAL;
7029 return 0;
7032 void bdrv_activate_all(Error **errp)
7034 BlockDriverState *bs;
7035 BdrvNextIterator it;
7037 GLOBAL_STATE_CODE();
7038 GRAPH_RDLOCK_GUARD_MAINLOOP();
7040 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
7041 AioContext *aio_context = bdrv_get_aio_context(bs);
7042 int ret;
7044 aio_context_acquire(aio_context);
7045 ret = bdrv_activate(bs, errp);
7046 aio_context_release(aio_context);
7047 if (ret < 0) {
7048 bdrv_next_cleanup(&it);
7049 return;
7054 static bool GRAPH_RDLOCK
7055 bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
7057 BdrvChild *parent;
7058 GLOBAL_STATE_CODE();
7060 QLIST_FOREACH(parent, &bs->parents, next_parent) {
7061 if (parent->klass->parent_is_bds) {
7062 BlockDriverState *parent_bs = parent->opaque;
7063 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
7064 return true;
7069 return false;
7072 static int GRAPH_RDLOCK bdrv_inactivate_recurse(BlockDriverState *bs)
7074 BdrvChild *child, *parent;
7075 int ret;
7076 uint64_t cumulative_perms, cumulative_shared_perms;
7078 GLOBAL_STATE_CODE();
7080 if (!bs->drv) {
7081 return -ENOMEDIUM;
7084 /* Make sure that we don't inactivate a child before its parent.
7085 * It will be covered by recursion from the yet active parent. */
7086 if (bdrv_has_bds_parent(bs, true)) {
7087 return 0;
7090 assert(!(bs->open_flags & BDRV_O_INACTIVE));
7092 /* Inactivate this node */
7093 if (bs->drv->bdrv_inactivate) {
7094 ret = bs->drv->bdrv_inactivate(bs);
7095 if (ret < 0) {
7096 return ret;
7100 QLIST_FOREACH(parent, &bs->parents, next_parent) {
7101 if (parent->klass->inactivate) {
7102 ret = parent->klass->inactivate(parent);
7103 if (ret < 0) {
7104 return ret;
7109 bdrv_get_cumulative_perm(bs, &cumulative_perms,
7110 &cumulative_shared_perms);
7111 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
7112 /* Our inactive parents still need write access. Inactivation failed. */
7113 return -EPERM;
7116 bs->open_flags |= BDRV_O_INACTIVE;
7119 * Update permissions, they may differ for inactive nodes.
7120 * We only tried to loosen restrictions, so errors are not fatal, ignore
7121 * them.
7123 bdrv_refresh_perms(bs, NULL, NULL);
7125 /* Recursively inactivate children */
7126 QLIST_FOREACH(child, &bs->children, next) {
7127 ret = bdrv_inactivate_recurse(child->bs);
7128 if (ret < 0) {
7129 return ret;
7133 return 0;
7136 int bdrv_inactivate_all(void)
7138 BlockDriverState *bs = NULL;
7139 BdrvNextIterator it;
7140 int ret = 0;
7141 GSList *aio_ctxs = NULL, *ctx;
7143 GLOBAL_STATE_CODE();
7144 GRAPH_RDLOCK_GUARD_MAINLOOP();
7146 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
7147 AioContext *aio_context = bdrv_get_aio_context(bs);
7149 if (!g_slist_find(aio_ctxs, aio_context)) {
7150 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
7151 aio_context_acquire(aio_context);
7155 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
7156 /* Nodes with BDS parents are covered by recursion from the last
7157 * parent that gets inactivated. Don't inactivate them a second
7158 * time if that has already happened. */
7159 if (bdrv_has_bds_parent(bs, false)) {
7160 continue;
7162 ret = bdrv_inactivate_recurse(bs);
7163 if (ret < 0) {
7164 bdrv_next_cleanup(&it);
7165 goto out;
7169 out:
7170 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
7171 AioContext *aio_context = ctx->data;
7172 aio_context_release(aio_context);
7174 g_slist_free(aio_ctxs);
7176 return ret;
7179 /**************************************************************/
7180 /* removable device support */
7183 * Return TRUE if the media is present
7185 bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs)
7187 BlockDriver *drv = bs->drv;
7188 BdrvChild *child;
7189 IO_CODE();
7190 assert_bdrv_graph_readable();
7192 if (!drv) {
7193 return false;
7195 if (drv->bdrv_co_is_inserted) {
7196 return drv->bdrv_co_is_inserted(bs);
7198 QLIST_FOREACH(child, &bs->children, next) {
7199 if (!bdrv_co_is_inserted(child->bs)) {
7200 return false;
7203 return true;
7207 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
7209 void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag)
7211 BlockDriver *drv = bs->drv;
7212 IO_CODE();
7213 assert_bdrv_graph_readable();
7215 if (drv && drv->bdrv_co_eject) {
7216 drv->bdrv_co_eject(bs, eject_flag);
7221 * Lock or unlock the media (if it is locked, the user won't be able
7222 * to eject it manually).
7224 void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked)
7226 BlockDriver *drv = bs->drv;
7227 IO_CODE();
7228 assert_bdrv_graph_readable();
7229 trace_bdrv_lock_medium(bs, locked);
7231 if (drv && drv->bdrv_co_lock_medium) {
7232 drv->bdrv_co_lock_medium(bs, locked);
7236 /* Get a reference to bs */
7237 void bdrv_ref(BlockDriverState *bs)
7239 GLOBAL_STATE_CODE();
7240 bs->refcnt++;
7243 /* Release a previously grabbed reference to bs.
7244 * If after releasing, reference count is zero, the BlockDriverState is
7245 * deleted. */
7246 void bdrv_unref(BlockDriverState *bs)
7248 GLOBAL_STATE_CODE();
7249 if (!bs) {
7250 return;
7252 assert(bs->refcnt > 0);
7253 if (--bs->refcnt == 0) {
7254 bdrv_delete(bs);
7258 static void bdrv_schedule_unref_bh(void *opaque)
7260 BlockDriverState *bs = opaque;
7261 AioContext *ctx = bdrv_get_aio_context(bs);
7263 aio_context_acquire(ctx);
7264 bdrv_unref(bs);
7265 aio_context_release(ctx);
7269 * Release a BlockDriverState reference while holding the graph write lock.
7271 * Calling bdrv_unref() directly is forbidden while holding the graph lock
7272 * because bdrv_close() both involves polling and taking the graph lock
7273 * internally. bdrv_schedule_unref() instead delays decreasing the refcount and
7274 * possibly closing @bs until the graph lock is released.
7276 void bdrv_schedule_unref(BlockDriverState *bs)
7278 if (!bs) {
7279 return;
7281 aio_bh_schedule_oneshot(qemu_get_aio_context(), bdrv_schedule_unref_bh, bs);
7284 struct BdrvOpBlocker {
7285 Error *reason;
7286 QLIST_ENTRY(BdrvOpBlocker) list;
7289 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
7291 BdrvOpBlocker *blocker;
7292 GLOBAL_STATE_CODE();
7294 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7295 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
7296 blocker = QLIST_FIRST(&bs->op_blockers[op]);
7297 error_propagate_prepend(errp, error_copy(blocker->reason),
7298 "Node '%s' is busy: ",
7299 bdrv_get_device_or_node_name(bs));
7300 return true;
7302 return false;
7305 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
7307 BdrvOpBlocker *blocker;
7308 GLOBAL_STATE_CODE();
7309 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7311 blocker = g_new0(BdrvOpBlocker, 1);
7312 blocker->reason = reason;
7313 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
7316 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
7318 BdrvOpBlocker *blocker, *next;
7319 GLOBAL_STATE_CODE();
7320 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7321 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
7322 if (blocker->reason == reason) {
7323 QLIST_REMOVE(blocker, list);
7324 g_free(blocker);
7329 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
7331 int i;
7332 GLOBAL_STATE_CODE();
7333 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7334 bdrv_op_block(bs, i, reason);
7338 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
7340 int i;
7341 GLOBAL_STATE_CODE();
7342 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7343 bdrv_op_unblock(bs, i, reason);
7347 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
7349 int i;
7350 GLOBAL_STATE_CODE();
7351 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7352 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
7353 return false;
7356 return true;
7360 * Must not be called while holding the lock of an AioContext other than the
7361 * current one.
7363 void bdrv_img_create(const char *filename, const char *fmt,
7364 const char *base_filename, const char *base_fmt,
7365 char *options, uint64_t img_size, int flags, bool quiet,
7366 Error **errp)
7368 QemuOptsList *create_opts = NULL;
7369 QemuOpts *opts = NULL;
7370 const char *backing_fmt, *backing_file;
7371 int64_t size;
7372 BlockDriver *drv, *proto_drv;
7373 Error *local_err = NULL;
7374 int ret = 0;
7376 GLOBAL_STATE_CODE();
7378 /* Find driver and parse its options */
7379 drv = bdrv_find_format(fmt);
7380 if (!drv) {
7381 error_setg(errp, "Unknown file format '%s'", fmt);
7382 return;
7385 proto_drv = bdrv_find_protocol(filename, true, errp);
7386 if (!proto_drv) {
7387 return;
7390 if (!drv->create_opts) {
7391 error_setg(errp, "Format driver '%s' does not support image creation",
7392 drv->format_name);
7393 return;
7396 if (!proto_drv->create_opts) {
7397 error_setg(errp, "Protocol driver '%s' does not support image creation",
7398 proto_drv->format_name);
7399 return;
7402 aio_context_acquire(qemu_get_aio_context());
7404 /* Create parameter list */
7405 create_opts = qemu_opts_append(create_opts, drv->create_opts);
7406 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
7408 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
7410 /* Parse -o options */
7411 if (options) {
7412 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
7413 goto out;
7417 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
7418 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
7419 } else if (img_size != UINT64_C(-1)) {
7420 error_setg(errp, "The image size must be specified only once");
7421 goto out;
7424 if (base_filename) {
7425 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
7426 NULL)) {
7427 error_setg(errp, "Backing file not supported for file format '%s'",
7428 fmt);
7429 goto out;
7433 if (base_fmt) {
7434 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
7435 error_setg(errp, "Backing file format not supported for file "
7436 "format '%s'", fmt);
7437 goto out;
7441 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
7442 if (backing_file) {
7443 if (!strcmp(filename, backing_file)) {
7444 error_setg(errp, "Error: Trying to create an image with the "
7445 "same filename as the backing file");
7446 goto out;
7448 if (backing_file[0] == '\0') {
7449 error_setg(errp, "Expected backing file name, got empty string");
7450 goto out;
7454 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
7456 /* The size for the image must always be specified, unless we have a backing
7457 * file and we have not been forbidden from opening it. */
7458 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
7459 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
7460 BlockDriverState *bs;
7461 char *full_backing;
7462 int back_flags;
7463 QDict *backing_options = NULL;
7465 full_backing =
7466 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
7467 &local_err);
7468 if (local_err) {
7469 goto out;
7471 assert(full_backing);
7474 * No need to do I/O here, which allows us to open encrypted
7475 * backing images without needing the secret
7477 back_flags = flags;
7478 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
7479 back_flags |= BDRV_O_NO_IO;
7481 backing_options = qdict_new();
7482 if (backing_fmt) {
7483 qdict_put_str(backing_options, "driver", backing_fmt);
7485 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
7487 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
7488 &local_err);
7489 g_free(full_backing);
7490 if (!bs) {
7491 error_append_hint(&local_err, "Could not open backing image.\n");
7492 goto out;
7493 } else {
7494 if (!backing_fmt) {
7495 error_setg(&local_err,
7496 "Backing file specified without backing format");
7497 error_append_hint(&local_err, "Detected format of %s.\n",
7498 bs->drv->format_name);
7499 goto out;
7501 if (size == -1) {
7502 /* Opened BS, have no size */
7503 size = bdrv_getlength(bs);
7504 if (size < 0) {
7505 error_setg_errno(errp, -size, "Could not get size of '%s'",
7506 backing_file);
7507 bdrv_unref(bs);
7508 goto out;
7510 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
7512 bdrv_unref(bs);
7514 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7515 } else if (backing_file && !backing_fmt) {
7516 error_setg(&local_err,
7517 "Backing file specified without backing format");
7518 goto out;
7521 if (size == -1) {
7522 error_setg(errp, "Image creation needs a size parameter");
7523 goto out;
7526 if (!quiet) {
7527 printf("Formatting '%s', fmt=%s ", filename, fmt);
7528 qemu_opts_print(opts, " ");
7529 puts("");
7530 fflush(stdout);
7533 ret = bdrv_create(drv, filename, opts, &local_err);
7535 if (ret == -EFBIG) {
7536 /* This is generally a better message than whatever the driver would
7537 * deliver (especially because of the cluster_size_hint), since that
7538 * is most probably not much different from "image too large". */
7539 const char *cluster_size_hint = "";
7540 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
7541 cluster_size_hint = " (try using a larger cluster size)";
7543 error_setg(errp, "The image size is too large for file format '%s'"
7544 "%s", fmt, cluster_size_hint);
7545 error_free(local_err);
7546 local_err = NULL;
7549 out:
7550 qemu_opts_del(opts);
7551 qemu_opts_free(create_opts);
7552 error_propagate(errp, local_err);
7553 aio_context_release(qemu_get_aio_context());
7556 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
7558 IO_CODE();
7559 return bs ? bs->aio_context : qemu_get_aio_context();
7562 AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
7564 Coroutine *self = qemu_coroutine_self();
7565 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
7566 AioContext *new_ctx;
7567 IO_CODE();
7570 * Increase bs->in_flight to ensure that this operation is completed before
7571 * moving the node to a different AioContext. Read new_ctx only afterwards.
7573 bdrv_inc_in_flight(bs);
7575 new_ctx = bdrv_get_aio_context(bs);
7576 aio_co_reschedule_self(new_ctx);
7577 return old_ctx;
7580 void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
7582 IO_CODE();
7583 aio_co_reschedule_self(old_ctx);
7584 bdrv_dec_in_flight(bs);
7587 void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
7589 AioContext *ctx = bdrv_get_aio_context(bs);
7591 /* In the main thread, bs->aio_context won't change concurrently */
7592 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7595 * We're in coroutine context, so we already hold the lock of the main
7596 * loop AioContext. Don't lock it twice to avoid deadlocks.
7598 assert(qemu_in_coroutine());
7599 if (ctx != qemu_get_aio_context()) {
7600 aio_context_acquire(ctx);
7604 void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
7606 AioContext *ctx = bdrv_get_aio_context(bs);
7608 assert(qemu_in_coroutine());
7609 if (ctx != qemu_get_aio_context()) {
7610 aio_context_release(ctx);
7614 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
7616 GLOBAL_STATE_CODE();
7617 QLIST_REMOVE(ban, list);
7618 g_free(ban);
7621 static void bdrv_detach_aio_context(BlockDriverState *bs)
7623 BdrvAioNotifier *baf, *baf_tmp;
7625 assert(!bs->walking_aio_notifiers);
7626 GLOBAL_STATE_CODE();
7627 bs->walking_aio_notifiers = true;
7628 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7629 if (baf->deleted) {
7630 bdrv_do_remove_aio_context_notifier(baf);
7631 } else {
7632 baf->detach_aio_context(baf->opaque);
7635 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7636 * remove remaining aio notifiers if we aren't called again.
7638 bs->walking_aio_notifiers = false;
7640 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
7641 bs->drv->bdrv_detach_aio_context(bs);
7644 bs->aio_context = NULL;
7647 static void bdrv_attach_aio_context(BlockDriverState *bs,
7648 AioContext *new_context)
7650 BdrvAioNotifier *ban, *ban_tmp;
7651 GLOBAL_STATE_CODE();
7653 bs->aio_context = new_context;
7655 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
7656 bs->drv->bdrv_attach_aio_context(bs, new_context);
7659 assert(!bs->walking_aio_notifiers);
7660 bs->walking_aio_notifiers = true;
7661 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7662 if (ban->deleted) {
7663 bdrv_do_remove_aio_context_notifier(ban);
7664 } else {
7665 ban->attached_aio_context(new_context, ban->opaque);
7668 bs->walking_aio_notifiers = false;
7671 typedef struct BdrvStateSetAioContext {
7672 AioContext *new_ctx;
7673 BlockDriverState *bs;
7674 } BdrvStateSetAioContext;
7676 static bool bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx,
7677 GHashTable *visited,
7678 Transaction *tran,
7679 Error **errp)
7681 GLOBAL_STATE_CODE();
7682 if (g_hash_table_contains(visited, c)) {
7683 return true;
7685 g_hash_table_add(visited, c);
7688 * A BdrvChildClass that doesn't handle AioContext changes cannot
7689 * tolerate any AioContext changes
7691 if (!c->klass->change_aio_ctx) {
7692 char *user = bdrv_child_user_desc(c);
7693 error_setg(errp, "Changing iothreads is not supported by %s", user);
7694 g_free(user);
7695 return false;
7697 if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) {
7698 assert(!errp || *errp);
7699 return false;
7701 return true;
7704 bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx,
7705 GHashTable *visited, Transaction *tran,
7706 Error **errp)
7708 GLOBAL_STATE_CODE();
7709 if (g_hash_table_contains(visited, c)) {
7710 return true;
7712 g_hash_table_add(visited, c);
7713 return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp);
7716 static void bdrv_set_aio_context_clean(void *opaque)
7718 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7719 BlockDriverState *bs = (BlockDriverState *) state->bs;
7721 /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */
7722 bdrv_drained_end(bs);
7724 g_free(state);
7727 static void bdrv_set_aio_context_commit(void *opaque)
7729 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7730 BlockDriverState *bs = (BlockDriverState *) state->bs;
7731 AioContext *new_context = state->new_ctx;
7732 AioContext *old_context = bdrv_get_aio_context(bs);
7735 * Take the old AioContex when detaching it from bs.
7736 * At this point, new_context lock is already acquired, and we are now
7737 * also taking old_context. This is safe as long as bdrv_detach_aio_context
7738 * does not call AIO_POLL_WHILE().
7740 if (old_context != qemu_get_aio_context()) {
7741 aio_context_acquire(old_context);
7743 bdrv_detach_aio_context(bs);
7744 if (old_context != qemu_get_aio_context()) {
7745 aio_context_release(old_context);
7747 bdrv_attach_aio_context(bs, new_context);
7750 static TransactionActionDrv set_aio_context = {
7751 .commit = bdrv_set_aio_context_commit,
7752 .clean = bdrv_set_aio_context_clean,
7756 * Changes the AioContext used for fd handlers, timers, and BHs by this
7757 * BlockDriverState and all its children and parents.
7759 * Must be called from the main AioContext.
7761 * The caller must own the AioContext lock for the old AioContext of bs, but it
7762 * must not own the AioContext lock for new_context (unless new_context is the
7763 * same as the current context of bs).
7765 * @visited will accumulate all visited BdrvChild objects. The caller is
7766 * responsible for freeing the list afterwards.
7768 static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7769 GHashTable *visited, Transaction *tran,
7770 Error **errp)
7772 BdrvChild *c;
7773 BdrvStateSetAioContext *state;
7775 GLOBAL_STATE_CODE();
7777 if (bdrv_get_aio_context(bs) == ctx) {
7778 return true;
7781 bdrv_graph_rdlock_main_loop();
7782 QLIST_FOREACH(c, &bs->parents, next_parent) {
7783 if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) {
7784 bdrv_graph_rdunlock_main_loop();
7785 return false;
7789 QLIST_FOREACH(c, &bs->children, next) {
7790 if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) {
7791 bdrv_graph_rdunlock_main_loop();
7792 return false;
7795 bdrv_graph_rdunlock_main_loop();
7797 state = g_new(BdrvStateSetAioContext, 1);
7798 *state = (BdrvStateSetAioContext) {
7799 .new_ctx = ctx,
7800 .bs = bs,
7803 /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */
7804 bdrv_drained_begin(bs);
7806 tran_add(tran, &set_aio_context, state);
7808 return true;
7812 * Change bs's and recursively all of its parents' and children's AioContext
7813 * to the given new context, returning an error if that isn't possible.
7815 * If ignore_child is not NULL, that child (and its subgraph) will not
7816 * be touched.
7818 * This function still requires the caller to take the bs current
7819 * AioContext lock, otherwise draining will fail since AIO_WAIT_WHILE
7820 * assumes the lock is always held if bs is in another AioContext.
7821 * For the same reason, it temporarily also holds the new AioContext, since
7822 * bdrv_drained_end calls BDRV_POLL_WHILE that assumes the lock is taken too.
7823 * Therefore the new AioContext lock must not be taken by the caller.
7825 int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7826 BdrvChild *ignore_child, Error **errp)
7828 Transaction *tran;
7829 GHashTable *visited;
7830 int ret;
7831 AioContext *old_context = bdrv_get_aio_context(bs);
7832 GLOBAL_STATE_CODE();
7835 * Recursion phase: go through all nodes of the graph.
7836 * Take care of checking that all nodes support changing AioContext
7837 * and drain them, building a linear list of callbacks to run if everything
7838 * is successful (the transaction itself).
7840 tran = tran_new();
7841 visited = g_hash_table_new(NULL, NULL);
7842 if (ignore_child) {
7843 g_hash_table_add(visited, ignore_child);
7845 ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp);
7846 g_hash_table_destroy(visited);
7849 * Linear phase: go through all callbacks collected in the transaction.
7850 * Run all callbacks collected in the recursion to switch all nodes
7851 * AioContext lock (transaction commit), or undo all changes done in the
7852 * recursion (transaction abort).
7855 if (!ret) {
7856 /* Just run clean() callbacks. No AioContext changed. */
7857 tran_abort(tran);
7858 return -EPERM;
7862 * Release old AioContext, it won't be needed anymore, as all
7863 * bdrv_drained_begin() have been called already.
7865 if (qemu_get_aio_context() != old_context) {
7866 aio_context_release(old_context);
7870 * Acquire new AioContext since bdrv_drained_end() is going to be called
7871 * after we switched all nodes in the new AioContext, and the function
7872 * assumes that the lock of the bs is always taken.
7874 if (qemu_get_aio_context() != ctx) {
7875 aio_context_acquire(ctx);
7878 tran_commit(tran);
7880 if (qemu_get_aio_context() != ctx) {
7881 aio_context_release(ctx);
7884 /* Re-acquire the old AioContext, since the caller takes and releases it. */
7885 if (qemu_get_aio_context() != old_context) {
7886 aio_context_acquire(old_context);
7889 return 0;
7892 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7893 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7894 void (*detach_aio_context)(void *opaque), void *opaque)
7896 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7897 *ban = (BdrvAioNotifier){
7898 .attached_aio_context = attached_aio_context,
7899 .detach_aio_context = detach_aio_context,
7900 .opaque = opaque
7902 GLOBAL_STATE_CODE();
7904 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7907 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7908 void (*attached_aio_context)(AioContext *,
7909 void *),
7910 void (*detach_aio_context)(void *),
7911 void *opaque)
7913 BdrvAioNotifier *ban, *ban_next;
7914 GLOBAL_STATE_CODE();
7916 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7917 if (ban->attached_aio_context == attached_aio_context &&
7918 ban->detach_aio_context == detach_aio_context &&
7919 ban->opaque == opaque &&
7920 ban->deleted == false)
7922 if (bs->walking_aio_notifiers) {
7923 ban->deleted = true;
7924 } else {
7925 bdrv_do_remove_aio_context_notifier(ban);
7927 return;
7931 abort();
7934 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
7935 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
7936 bool force,
7937 Error **errp)
7939 GLOBAL_STATE_CODE();
7940 if (!bs->drv) {
7941 error_setg(errp, "Node is ejected");
7942 return -ENOMEDIUM;
7944 if (!bs->drv->bdrv_amend_options) {
7945 error_setg(errp, "Block driver '%s' does not support option amendment",
7946 bs->drv->format_name);
7947 return -ENOTSUP;
7949 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7950 cb_opaque, force, errp);
7954 * This function checks whether the given @to_replace is allowed to be
7955 * replaced by a node that always shows the same data as @bs. This is
7956 * used for example to verify whether the mirror job can replace
7957 * @to_replace by the target mirrored from @bs.
7958 * To be replaceable, @bs and @to_replace may either be guaranteed to
7959 * always show the same data (because they are only connected through
7960 * filters), or some driver may allow replacing one of its children
7961 * because it can guarantee that this child's data is not visible at
7962 * all (for example, for dissenting quorum children that have no other
7963 * parents).
7965 bool bdrv_recurse_can_replace(BlockDriverState *bs,
7966 BlockDriverState *to_replace)
7968 BlockDriverState *filtered;
7970 GLOBAL_STATE_CODE();
7972 if (!bs || !bs->drv) {
7973 return false;
7976 if (bs == to_replace) {
7977 return true;
7980 /* See what the driver can do */
7981 if (bs->drv->bdrv_recurse_can_replace) {
7982 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7985 /* For filters without an own implementation, we can recurse on our own */
7986 filtered = bdrv_filter_bs(bs);
7987 if (filtered) {
7988 return bdrv_recurse_can_replace(filtered, to_replace);
7991 /* Safe default */
7992 return false;
7996 * Check whether the given @node_name can be replaced by a node that
7997 * has the same data as @parent_bs. If so, return @node_name's BDS;
7998 * NULL otherwise.
8000 * @node_name must be a (recursive) *child of @parent_bs (or this
8001 * function will return NULL).
8003 * The result (whether the node can be replaced or not) is only valid
8004 * for as long as no graph or permission changes occur.
8006 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
8007 const char *node_name, Error **errp)
8009 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
8010 AioContext *aio_context;
8012 GLOBAL_STATE_CODE();
8014 if (!to_replace_bs) {
8015 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
8016 return NULL;
8019 aio_context = bdrv_get_aio_context(to_replace_bs);
8020 aio_context_acquire(aio_context);
8022 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
8023 to_replace_bs = NULL;
8024 goto out;
8027 /* We don't want arbitrary node of the BDS chain to be replaced only the top
8028 * most non filter in order to prevent data corruption.
8029 * Another benefit is that this tests exclude backing files which are
8030 * blocked by the backing blockers.
8032 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
8033 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
8034 "because it cannot be guaranteed that doing so would not "
8035 "lead to an abrupt change of visible data",
8036 node_name, parent_bs->node_name);
8037 to_replace_bs = NULL;
8038 goto out;
8041 out:
8042 aio_context_release(aio_context);
8043 return to_replace_bs;
8047 * Iterates through the list of runtime option keys that are said to
8048 * be "strong" for a BDS. An option is called "strong" if it changes
8049 * a BDS's data. For example, the null block driver's "size" and
8050 * "read-zeroes" options are strong, but its "latency-ns" option is
8051 * not.
8053 * If a key returned by this function ends with a dot, all options
8054 * starting with that prefix are strong.
8056 static const char *const *strong_options(BlockDriverState *bs,
8057 const char *const *curopt)
8059 static const char *const global_options[] = {
8060 "driver", "filename", NULL
8063 if (!curopt) {
8064 return &global_options[0];
8067 curopt++;
8068 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
8069 curopt = bs->drv->strong_runtime_opts;
8072 return (curopt && *curopt) ? curopt : NULL;
8076 * Copies all strong runtime options from bs->options to the given
8077 * QDict. The set of strong option keys is determined by invoking
8078 * strong_options().
8080 * Returns true iff any strong option was present in bs->options (and
8081 * thus copied to the target QDict) with the exception of "filename"
8082 * and "driver". The caller is expected to use this value to decide
8083 * whether the existence of strong options prevents the generation of
8084 * a plain filename.
8086 static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
8088 bool found_any = false;
8089 const char *const *option_name = NULL;
8091 if (!bs->drv) {
8092 return false;
8095 while ((option_name = strong_options(bs, option_name))) {
8096 bool option_given = false;
8098 assert(strlen(*option_name) > 0);
8099 if ((*option_name)[strlen(*option_name) - 1] != '.') {
8100 QObject *entry = qdict_get(bs->options, *option_name);
8101 if (!entry) {
8102 continue;
8105 qdict_put_obj(d, *option_name, qobject_ref(entry));
8106 option_given = true;
8107 } else {
8108 const QDictEntry *entry;
8109 for (entry = qdict_first(bs->options); entry;
8110 entry = qdict_next(bs->options, entry))
8112 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
8113 qdict_put_obj(d, qdict_entry_key(entry),
8114 qobject_ref(qdict_entry_value(entry)));
8115 option_given = true;
8120 /* While "driver" and "filename" need to be included in a JSON filename,
8121 * their existence does not prohibit generation of a plain filename. */
8122 if (!found_any && option_given &&
8123 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
8125 found_any = true;
8129 if (!qdict_haskey(d, "driver")) {
8130 /* Drivers created with bdrv_new_open_driver() may not have a
8131 * @driver option. Add it here. */
8132 qdict_put_str(d, "driver", bs->drv->format_name);
8135 return found_any;
8138 /* Note: This function may return false positives; it may return true
8139 * even if opening the backing file specified by bs's image header
8140 * would result in exactly bs->backing. */
8141 static bool GRAPH_RDLOCK bdrv_backing_overridden(BlockDriverState *bs)
8143 GLOBAL_STATE_CODE();
8144 if (bs->backing) {
8145 return strcmp(bs->auto_backing_file,
8146 bs->backing->bs->filename);
8147 } else {
8148 /* No backing BDS, so if the image header reports any backing
8149 * file, it must have been suppressed */
8150 return bs->auto_backing_file[0] != '\0';
8154 /* Updates the following BDS fields:
8155 * - exact_filename: A filename which may be used for opening a block device
8156 * which (mostly) equals the given BDS (even without any
8157 * other options; so reading and writing must return the same
8158 * results, but caching etc. may be different)
8159 * - full_open_options: Options which, when given when opening a block device
8160 * (without a filename), result in a BDS (mostly)
8161 * equalling the given one
8162 * - filename: If exact_filename is set, it is copied here. Otherwise,
8163 * full_open_options is converted to a JSON object, prefixed with
8164 * "json:" (for use through the JSON pseudo protocol) and put here.
8166 void bdrv_refresh_filename(BlockDriverState *bs)
8168 BlockDriver *drv = bs->drv;
8169 BdrvChild *child;
8170 BlockDriverState *primary_child_bs;
8171 QDict *opts;
8172 bool backing_overridden;
8173 bool generate_json_filename; /* Whether our default implementation should
8174 fill exact_filename (false) or not (true) */
8176 GLOBAL_STATE_CODE();
8178 if (!drv) {
8179 return;
8182 /* This BDS's file name may depend on any of its children's file names, so
8183 * refresh those first */
8184 QLIST_FOREACH(child, &bs->children, next) {
8185 bdrv_refresh_filename(child->bs);
8188 if (bs->implicit) {
8189 /* For implicit nodes, just copy everything from the single child */
8190 child = QLIST_FIRST(&bs->children);
8191 assert(QLIST_NEXT(child, next) == NULL);
8193 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
8194 child->bs->exact_filename);
8195 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
8197 qobject_unref(bs->full_open_options);
8198 bs->full_open_options = qobject_ref(child->bs->full_open_options);
8200 return;
8203 backing_overridden = bdrv_backing_overridden(bs);
8205 if (bs->open_flags & BDRV_O_NO_IO) {
8206 /* Without I/O, the backing file does not change anything.
8207 * Therefore, in such a case (primarily qemu-img), we can
8208 * pretend the backing file has not been overridden even if
8209 * it technically has been. */
8210 backing_overridden = false;
8213 /* Gather the options QDict */
8214 opts = qdict_new();
8215 generate_json_filename = append_strong_runtime_options(opts, bs);
8216 generate_json_filename |= backing_overridden;
8218 if (drv->bdrv_gather_child_options) {
8219 /* Some block drivers may not want to present all of their children's
8220 * options, or name them differently from BdrvChild.name */
8221 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
8222 } else {
8223 QLIST_FOREACH(child, &bs->children, next) {
8224 if (child == bs->backing && !backing_overridden) {
8225 /* We can skip the backing BDS if it has not been overridden */
8226 continue;
8229 qdict_put(opts, child->name,
8230 qobject_ref(child->bs->full_open_options));
8233 if (backing_overridden && !bs->backing) {
8234 /* Force no backing file */
8235 qdict_put_null(opts, "backing");
8239 qobject_unref(bs->full_open_options);
8240 bs->full_open_options = opts;
8242 primary_child_bs = bdrv_primary_bs(bs);
8244 if (drv->bdrv_refresh_filename) {
8245 /* Obsolete information is of no use here, so drop the old file name
8246 * information before refreshing it */
8247 bs->exact_filename[0] = '\0';
8249 drv->bdrv_refresh_filename(bs);
8250 } else if (primary_child_bs) {
8252 * Try to reconstruct valid information from the underlying
8253 * file -- this only works for format nodes (filter nodes
8254 * cannot be probed and as such must be selected by the user
8255 * either through an options dict, or through a special
8256 * filename which the filter driver must construct in its
8257 * .bdrv_refresh_filename() implementation).
8260 bs->exact_filename[0] = '\0';
8263 * We can use the underlying file's filename if:
8264 * - it has a filename,
8265 * - the current BDS is not a filter,
8266 * - the file is a protocol BDS, and
8267 * - opening that file (as this BDS's format) will automatically create
8268 * the BDS tree we have right now, that is:
8269 * - the user did not significantly change this BDS's behavior with
8270 * some explicit (strong) options
8271 * - no non-file child of this BDS has been overridden by the user
8272 * Both of these conditions are represented by generate_json_filename.
8274 if (primary_child_bs->exact_filename[0] &&
8275 primary_child_bs->drv->bdrv_file_open &&
8276 !drv->is_filter && !generate_json_filename)
8278 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
8282 if (bs->exact_filename[0]) {
8283 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
8284 } else {
8285 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
8286 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
8287 json->str) >= sizeof(bs->filename)) {
8288 /* Give user a hint if we truncated things. */
8289 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
8291 g_string_free(json, true);
8295 char *bdrv_dirname(BlockDriverState *bs, Error **errp)
8297 BlockDriver *drv = bs->drv;
8298 BlockDriverState *child_bs;
8300 GLOBAL_STATE_CODE();
8302 if (!drv) {
8303 error_setg(errp, "Node '%s' is ejected", bs->node_name);
8304 return NULL;
8307 if (drv->bdrv_dirname) {
8308 return drv->bdrv_dirname(bs, errp);
8311 child_bs = bdrv_primary_bs(bs);
8312 if (child_bs) {
8313 return bdrv_dirname(child_bs, errp);
8316 bdrv_refresh_filename(bs);
8317 if (bs->exact_filename[0] != '\0') {
8318 return path_combine(bs->exact_filename, "");
8321 error_setg(errp, "Cannot generate a base directory for %s nodes",
8322 drv->format_name);
8323 return NULL;
8327 * Hot add/remove a BDS's child. So the user can take a child offline when
8328 * it is broken and take a new child online
8330 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
8331 Error **errp)
8333 GLOBAL_STATE_CODE();
8334 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
8335 error_setg(errp, "The node %s does not support adding a child",
8336 bdrv_get_device_or_node_name(parent_bs));
8337 return;
8341 * Non-zoned block drivers do not follow zoned storage constraints
8342 * (i.e. sequential writes to zones). Refuse mixing zoned and non-zoned
8343 * drivers in a graph.
8345 if (!parent_bs->drv->supports_zoned_children &&
8346 child_bs->bl.zoned == BLK_Z_HM) {
8348 * The host-aware model allows zoned storage constraints and random
8349 * write. Allow mixing host-aware and non-zoned drivers. Using
8350 * host-aware device as a regular device.
8352 error_setg(errp, "Cannot add a %s child to a %s parent",
8353 child_bs->bl.zoned == BLK_Z_HM ? "zoned" : "non-zoned",
8354 parent_bs->drv->supports_zoned_children ?
8355 "support zoned children" : "not support zoned children");
8356 return;
8359 if (!QLIST_EMPTY(&child_bs->parents)) {
8360 error_setg(errp, "The node %s already has a parent",
8361 child_bs->node_name);
8362 return;
8365 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
8368 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
8370 BdrvChild *tmp;
8372 GLOBAL_STATE_CODE();
8373 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
8374 error_setg(errp, "The node %s does not support removing a child",
8375 bdrv_get_device_or_node_name(parent_bs));
8376 return;
8379 QLIST_FOREACH(tmp, &parent_bs->children, next) {
8380 if (tmp == child) {
8381 break;
8385 if (!tmp) {
8386 error_setg(errp, "The node %s does not have a child named %s",
8387 bdrv_get_device_or_node_name(parent_bs),
8388 bdrv_get_device_or_node_name(child->bs));
8389 return;
8392 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
8395 int bdrv_make_empty(BdrvChild *c, Error **errp)
8397 BlockDriver *drv = c->bs->drv;
8398 int ret;
8400 GLOBAL_STATE_CODE();
8401 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
8403 if (!drv->bdrv_make_empty) {
8404 error_setg(errp, "%s does not support emptying nodes",
8405 drv->format_name);
8406 return -ENOTSUP;
8409 ret = drv->bdrv_make_empty(c->bs);
8410 if (ret < 0) {
8411 error_setg_errno(errp, -ret, "Failed to empty %s",
8412 c->bs->filename);
8413 return ret;
8416 return 0;
8420 * Return the child that @bs acts as an overlay for, and from which data may be
8421 * copied in COW or COR operations. Usually this is the backing file.
8423 BdrvChild *bdrv_cow_child(BlockDriverState *bs)
8425 IO_CODE();
8427 if (!bs || !bs->drv) {
8428 return NULL;
8431 if (bs->drv->is_filter) {
8432 return NULL;
8435 if (!bs->backing) {
8436 return NULL;
8439 assert(bs->backing->role & BDRV_CHILD_COW);
8440 return bs->backing;
8444 * If @bs acts as a filter for exactly one of its children, return
8445 * that child.
8447 BdrvChild *bdrv_filter_child(BlockDriverState *bs)
8449 BdrvChild *c;
8450 IO_CODE();
8452 if (!bs || !bs->drv) {
8453 return NULL;
8456 if (!bs->drv->is_filter) {
8457 return NULL;
8460 /* Only one of @backing or @file may be used */
8461 assert(!(bs->backing && bs->file));
8463 c = bs->backing ?: bs->file;
8464 if (!c) {
8465 return NULL;
8468 assert(c->role & BDRV_CHILD_FILTERED);
8469 return c;
8473 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8474 * whichever is non-NULL.
8476 * Return NULL if both are NULL.
8478 BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
8480 BdrvChild *cow_child = bdrv_cow_child(bs);
8481 BdrvChild *filter_child = bdrv_filter_child(bs);
8482 IO_CODE();
8484 /* Filter nodes cannot have COW backing files */
8485 assert(!(cow_child && filter_child));
8487 return cow_child ?: filter_child;
8491 * Return the primary child of this node: For filters, that is the
8492 * filtered child. For other nodes, that is usually the child storing
8493 * metadata.
8494 * (A generally more helpful description is that this is (usually) the
8495 * child that has the same filename as @bs.)
8497 * Drivers do not necessarily have a primary child; for example quorum
8498 * does not.
8500 BdrvChild *bdrv_primary_child(BlockDriverState *bs)
8502 BdrvChild *c, *found = NULL;
8503 IO_CODE();
8505 QLIST_FOREACH(c, &bs->children, next) {
8506 if (c->role & BDRV_CHILD_PRIMARY) {
8507 assert(!found);
8508 found = c;
8512 return found;
8515 static BlockDriverState * GRAPH_RDLOCK
8516 bdrv_do_skip_filters(BlockDriverState *bs, bool stop_on_explicit_filter)
8518 BdrvChild *c;
8520 if (!bs) {
8521 return NULL;
8524 while (!(stop_on_explicit_filter && !bs->implicit)) {
8525 c = bdrv_filter_child(bs);
8526 if (!c) {
8528 * A filter that is embedded in a working block graph must
8529 * have a child. Assert this here so this function does
8530 * not return a filter node that is not expected by the
8531 * caller.
8533 assert(!bs->drv || !bs->drv->is_filter);
8534 break;
8536 bs = c->bs;
8539 * Note that this treats nodes with bs->drv == NULL as not being
8540 * filters (bs->drv == NULL should be replaced by something else
8541 * anyway).
8542 * The advantage of this behavior is that this function will thus
8543 * always return a non-NULL value (given a non-NULL @bs).
8546 return bs;
8550 * Return the first BDS that has not been added implicitly or that
8551 * does not have a filtered child down the chain starting from @bs
8552 * (including @bs itself).
8554 BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
8556 GLOBAL_STATE_CODE();
8557 return bdrv_do_skip_filters(bs, true);
8561 * Return the first BDS that does not have a filtered child down the
8562 * chain starting from @bs (including @bs itself).
8564 BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
8566 IO_CODE();
8567 return bdrv_do_skip_filters(bs, false);
8571 * For a backing chain, return the first non-filter backing image of
8572 * the first non-filter image.
8574 BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
8576 IO_CODE();
8577 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
8581 * Check whether [offset, offset + bytes) overlaps with the cached
8582 * block-status data region.
8584 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8585 * which is what bdrv_bsc_is_data()'s interface needs.
8586 * Otherwise, *pnum is not touched.
8588 static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
8589 int64_t offset, int64_t bytes,
8590 int64_t *pnum)
8592 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
8593 bool overlaps;
8595 overlaps =
8596 qatomic_read(&bsc->valid) &&
8597 ranges_overlap(offset, bytes, bsc->data_start,
8598 bsc->data_end - bsc->data_start);
8600 if (overlaps && pnum) {
8601 *pnum = bsc->data_end - offset;
8604 return overlaps;
8608 * See block_int.h for this function's documentation.
8610 bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
8612 IO_CODE();
8613 RCU_READ_LOCK_GUARD();
8614 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
8618 * See block_int.h for this function's documentation.
8620 void bdrv_bsc_invalidate_range(BlockDriverState *bs,
8621 int64_t offset, int64_t bytes)
8623 IO_CODE();
8624 RCU_READ_LOCK_GUARD();
8626 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
8627 qatomic_set(&bs->block_status_cache->valid, false);
8632 * See block_int.h for this function's documentation.
8634 void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
8636 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
8637 BdrvBlockStatusCache *old_bsc;
8638 IO_CODE();
8640 *new_bsc = (BdrvBlockStatusCache) {
8641 .valid = true,
8642 .data_start = offset,
8643 .data_end = offset + bytes,
8646 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
8648 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
8649 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
8650 if (old_bsc) {
8651 g_free_rcu(old_bsc, rcu);