block: refactor bdrv_child_set_perm_safe() transaction action
[qemu.git] / block.c
blob7b2a8844f678a6cfee16ae3eb4244282b6bc13c4
1 /*
2 * QEMU System Emulator block driver
4 * Copyright (c) 2003 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
25 #include "qemu/osdep.h"
26 #include "block/trace.h"
27 #include "block/block_int.h"
28 #include "block/blockjob.h"
29 #include "block/fuse.h"
30 #include "block/nbd.h"
31 #include "block/qdict.h"
32 #include "qemu/error-report.h"
33 #include "block/module_block.h"
34 #include "qemu/main-loop.h"
35 #include "qemu/module.h"
36 #include "qapi/error.h"
37 #include "qapi/qmp/qdict.h"
38 #include "qapi/qmp/qjson.h"
39 #include "qapi/qmp/qnull.h"
40 #include "qapi/qmp/qstring.h"
41 #include "qapi/qobject-output-visitor.h"
42 #include "qapi/qapi-visit-block-core.h"
43 #include "sysemu/block-backend.h"
44 #include "sysemu/sysemu.h"
45 #include "qemu/notify.h"
46 #include "qemu/option.h"
47 #include "qemu/coroutine.h"
48 #include "block/qapi.h"
49 #include "qemu/timer.h"
50 #include "qemu/cutils.h"
51 #include "qemu/id.h"
52 #include "block/coroutines.h"
54 #ifdef CONFIG_BSD
55 #include <sys/ioctl.h>
56 #include <sys/queue.h>
57 #ifndef __DragonFly__
58 #include <sys/disk.h>
59 #endif
60 #endif
62 #ifdef _WIN32
63 #include <windows.h>
64 #endif
66 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
68 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
69 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
71 static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
72 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
74 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
75 QLIST_HEAD_INITIALIZER(bdrv_drivers);
77 static BlockDriverState *bdrv_open_inherit(const char *filename,
78 const char *reference,
79 QDict *options, int flags,
80 BlockDriverState *parent,
81 const BdrvChildClass *child_class,
82 BdrvChildRole child_role,
83 Error **errp);
85 static void bdrv_replace_child_noperm(BdrvChild *child,
86 BlockDriverState *new_bs);
87 static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
88 BlockDriverState *child_bs,
89 const char *child_name,
90 const BdrvChildClass *child_class,
91 BdrvChildRole child_role,
92 BdrvChild **child,
93 Transaction *tran,
94 Error **errp);
95 static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
96 Transaction *tran);
98 static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
99 BlockReopenQueue *queue,
100 Transaction *set_backings_tran, Error **errp);
101 static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
102 static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
104 /* If non-zero, use only whitelisted block drivers */
105 static int use_bdrv_whitelist;
107 #ifdef _WIN32
108 static int is_windows_drive_prefix(const char *filename)
110 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
111 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
112 filename[1] == ':');
115 int is_windows_drive(const char *filename)
117 if (is_windows_drive_prefix(filename) &&
118 filename[2] == '\0')
119 return 1;
120 if (strstart(filename, "\\\\.\\", NULL) ||
121 strstart(filename, "//./", NULL))
122 return 1;
123 return 0;
125 #endif
127 size_t bdrv_opt_mem_align(BlockDriverState *bs)
129 if (!bs || !bs->drv) {
130 /* page size or 4k (hdd sector size) should be on the safe side */
131 return MAX(4096, qemu_real_host_page_size);
134 return bs->bl.opt_mem_alignment;
137 size_t bdrv_min_mem_align(BlockDriverState *bs)
139 if (!bs || !bs->drv) {
140 /* page size or 4k (hdd sector size) should be on the safe side */
141 return MAX(4096, qemu_real_host_page_size);
144 return bs->bl.min_mem_alignment;
147 /* check if the path starts with "<protocol>:" */
148 int path_has_protocol(const char *path)
150 const char *p;
152 #ifdef _WIN32
153 if (is_windows_drive(path) ||
154 is_windows_drive_prefix(path)) {
155 return 0;
157 p = path + strcspn(path, ":/\\");
158 #else
159 p = path + strcspn(path, ":/");
160 #endif
162 return *p == ':';
165 int path_is_absolute(const char *path)
167 #ifdef _WIN32
168 /* specific case for names like: "\\.\d:" */
169 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
170 return 1;
172 return (*path == '/' || *path == '\\');
173 #else
174 return (*path == '/');
175 #endif
178 /* if filename is absolute, just return its duplicate. Otherwise, build a
179 path to it by considering it is relative to base_path. URL are
180 supported. */
181 char *path_combine(const char *base_path, const char *filename)
183 const char *protocol_stripped = NULL;
184 const char *p, *p1;
185 char *result;
186 int len;
188 if (path_is_absolute(filename)) {
189 return g_strdup(filename);
192 if (path_has_protocol(base_path)) {
193 protocol_stripped = strchr(base_path, ':');
194 if (protocol_stripped) {
195 protocol_stripped++;
198 p = protocol_stripped ?: base_path;
200 p1 = strrchr(base_path, '/');
201 #ifdef _WIN32
203 const char *p2;
204 p2 = strrchr(base_path, '\\');
205 if (!p1 || p2 > p1) {
206 p1 = p2;
209 #endif
210 if (p1) {
211 p1++;
212 } else {
213 p1 = base_path;
215 if (p1 > p) {
216 p = p1;
218 len = p - base_path;
220 result = g_malloc(len + strlen(filename) + 1);
221 memcpy(result, base_path, len);
222 strcpy(result + len, filename);
224 return result;
228 * Helper function for bdrv_parse_filename() implementations to remove optional
229 * protocol prefixes (especially "file:") from a filename and for putting the
230 * stripped filename into the options QDict if there is such a prefix.
232 void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
233 QDict *options)
235 if (strstart(filename, prefix, &filename)) {
236 /* Stripping the explicit protocol prefix may result in a protocol
237 * prefix being (wrongly) detected (if the filename contains a colon) */
238 if (path_has_protocol(filename)) {
239 GString *fat_filename;
241 /* This means there is some colon before the first slash; therefore,
242 * this cannot be an absolute path */
243 assert(!path_is_absolute(filename));
245 /* And we can thus fix the protocol detection issue by prefixing it
246 * by "./" */
247 fat_filename = g_string_new("./");
248 g_string_append(fat_filename, filename);
250 assert(!path_has_protocol(fat_filename->str));
252 qdict_put(options, "filename",
253 qstring_from_gstring(fat_filename));
254 } else {
255 /* If no protocol prefix was detected, we can use the shortened
256 * filename as-is */
257 qdict_put_str(options, "filename", filename);
263 /* Returns whether the image file is opened as read-only. Note that this can
264 * return false and writing to the image file is still not possible because the
265 * image is inactivated. */
266 bool bdrv_is_read_only(BlockDriverState *bs)
268 return bs->read_only;
271 int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
272 bool ignore_allow_rdw, Error **errp)
274 /* Do not set read_only if copy_on_read is enabled */
275 if (bs->copy_on_read && read_only) {
276 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
277 bdrv_get_device_or_node_name(bs));
278 return -EINVAL;
281 /* Do not clear read_only if it is prohibited */
282 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
283 !ignore_allow_rdw)
285 error_setg(errp, "Node '%s' is read only",
286 bdrv_get_device_or_node_name(bs));
287 return -EPERM;
290 return 0;
294 * Called by a driver that can only provide a read-only image.
296 * Returns 0 if the node is already read-only or it could switch the node to
297 * read-only because BDRV_O_AUTO_RDONLY is set.
299 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
300 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
301 * is not NULL, it is used as the error message for the Error object.
303 int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
304 Error **errp)
306 int ret = 0;
308 if (!(bs->open_flags & BDRV_O_RDWR)) {
309 return 0;
311 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
312 goto fail;
315 ret = bdrv_can_set_read_only(bs, true, false, NULL);
316 if (ret < 0) {
317 goto fail;
320 bs->read_only = true;
321 bs->open_flags &= ~BDRV_O_RDWR;
323 return 0;
325 fail:
326 error_setg(errp, "%s", errmsg ?: "Image is read-only");
327 return -EACCES;
331 * If @backing is empty, this function returns NULL without setting
332 * @errp. In all other cases, NULL will only be returned with @errp
333 * set.
335 * Therefore, a return value of NULL without @errp set means that
336 * there is no backing file; if @errp is set, there is one but its
337 * absolute filename cannot be generated.
339 char *bdrv_get_full_backing_filename_from_filename(const char *backed,
340 const char *backing,
341 Error **errp)
343 if (backing[0] == '\0') {
344 return NULL;
345 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
346 return g_strdup(backing);
347 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
348 error_setg(errp, "Cannot use relative backing file names for '%s'",
349 backed);
350 return NULL;
351 } else {
352 return path_combine(backed, backing);
357 * If @filename is empty or NULL, this function returns NULL without
358 * setting @errp. In all other cases, NULL will only be returned with
359 * @errp set.
361 static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
362 const char *filename, Error **errp)
364 char *dir, *full_name;
366 if (!filename || filename[0] == '\0') {
367 return NULL;
368 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
369 return g_strdup(filename);
372 dir = bdrv_dirname(relative_to, errp);
373 if (!dir) {
374 return NULL;
377 full_name = g_strconcat(dir, filename, NULL);
378 g_free(dir);
379 return full_name;
382 char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
384 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
387 void bdrv_register(BlockDriver *bdrv)
389 assert(bdrv->format_name);
390 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
393 BlockDriverState *bdrv_new(void)
395 BlockDriverState *bs;
396 int i;
398 bs = g_new0(BlockDriverState, 1);
399 QLIST_INIT(&bs->dirty_bitmaps);
400 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
401 QLIST_INIT(&bs->op_blockers[i]);
403 notifier_with_return_list_init(&bs->before_write_notifiers);
404 qemu_co_mutex_init(&bs->reqs_lock);
405 qemu_mutex_init(&bs->dirty_bitmap_mutex);
406 bs->refcnt = 1;
407 bs->aio_context = qemu_get_aio_context();
409 qemu_co_queue_init(&bs->flush_queue);
411 for (i = 0; i < bdrv_drain_all_count; i++) {
412 bdrv_drained_begin(bs);
415 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
417 return bs;
420 static BlockDriver *bdrv_do_find_format(const char *format_name)
422 BlockDriver *drv1;
424 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
425 if (!strcmp(drv1->format_name, format_name)) {
426 return drv1;
430 return NULL;
433 BlockDriver *bdrv_find_format(const char *format_name)
435 BlockDriver *drv1;
436 int i;
438 drv1 = bdrv_do_find_format(format_name);
439 if (drv1) {
440 return drv1;
443 /* The driver isn't registered, maybe we need to load a module */
444 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
445 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
446 block_module_load_one(block_driver_modules[i].library_name);
447 break;
451 return bdrv_do_find_format(format_name);
454 static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
456 static const char *whitelist_rw[] = {
457 CONFIG_BDRV_RW_WHITELIST
458 NULL
460 static const char *whitelist_ro[] = {
461 CONFIG_BDRV_RO_WHITELIST
462 NULL
464 const char **p;
466 if (!whitelist_rw[0] && !whitelist_ro[0]) {
467 return 1; /* no whitelist, anything goes */
470 for (p = whitelist_rw; *p; p++) {
471 if (!strcmp(format_name, *p)) {
472 return 1;
475 if (read_only) {
476 for (p = whitelist_ro; *p; p++) {
477 if (!strcmp(format_name, *p)) {
478 return 1;
482 return 0;
485 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
487 return bdrv_format_is_whitelisted(drv->format_name, read_only);
490 bool bdrv_uses_whitelist(void)
492 return use_bdrv_whitelist;
495 typedef struct CreateCo {
496 BlockDriver *drv;
497 char *filename;
498 QemuOpts *opts;
499 int ret;
500 Error *err;
501 } CreateCo;
503 static void coroutine_fn bdrv_create_co_entry(void *opaque)
505 Error *local_err = NULL;
506 int ret;
508 CreateCo *cco = opaque;
509 assert(cco->drv);
511 ret = cco->drv->bdrv_co_create_opts(cco->drv,
512 cco->filename, cco->opts, &local_err);
513 error_propagate(&cco->err, local_err);
514 cco->ret = ret;
517 int bdrv_create(BlockDriver *drv, const char* filename,
518 QemuOpts *opts, Error **errp)
520 int ret;
522 Coroutine *co;
523 CreateCo cco = {
524 .drv = drv,
525 .filename = g_strdup(filename),
526 .opts = opts,
527 .ret = NOT_DONE,
528 .err = NULL,
531 if (!drv->bdrv_co_create_opts) {
532 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
533 ret = -ENOTSUP;
534 goto out;
537 if (qemu_in_coroutine()) {
538 /* Fast-path if already in coroutine context */
539 bdrv_create_co_entry(&cco);
540 } else {
541 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
542 qemu_coroutine_enter(co);
543 while (cco.ret == NOT_DONE) {
544 aio_poll(qemu_get_aio_context(), true);
548 ret = cco.ret;
549 if (ret < 0) {
550 if (cco.err) {
551 error_propagate(errp, cco.err);
552 } else {
553 error_setg_errno(errp, -ret, "Could not create image");
557 out:
558 g_free(cco.filename);
559 return ret;
563 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
564 * least the given @minimum_size.
566 * On success, return @blk's actual length.
567 * Otherwise, return -errno.
569 static int64_t create_file_fallback_truncate(BlockBackend *blk,
570 int64_t minimum_size, Error **errp)
572 Error *local_err = NULL;
573 int64_t size;
574 int ret;
576 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
577 &local_err);
578 if (ret < 0 && ret != -ENOTSUP) {
579 error_propagate(errp, local_err);
580 return ret;
583 size = blk_getlength(blk);
584 if (size < 0) {
585 error_free(local_err);
586 error_setg_errno(errp, -size,
587 "Failed to inquire the new image file's length");
588 return size;
591 if (size < minimum_size) {
592 /* Need to grow the image, but we failed to do that */
593 error_propagate(errp, local_err);
594 return -ENOTSUP;
597 error_free(local_err);
598 local_err = NULL;
600 return size;
604 * Helper function for bdrv_create_file_fallback(): Zero the first
605 * sector to remove any potentially pre-existing image header.
607 static int create_file_fallback_zero_first_sector(BlockBackend *blk,
608 int64_t current_size,
609 Error **errp)
611 int64_t bytes_to_clear;
612 int ret;
614 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
615 if (bytes_to_clear) {
616 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
617 if (ret < 0) {
618 error_setg_errno(errp, -ret,
619 "Failed to clear the new image's first sector");
620 return ret;
624 return 0;
628 * Simple implementation of bdrv_co_create_opts for protocol drivers
629 * which only support creation via opening a file
630 * (usually existing raw storage device)
632 int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
633 const char *filename,
634 QemuOpts *opts,
635 Error **errp)
637 BlockBackend *blk;
638 QDict *options;
639 int64_t size = 0;
640 char *buf = NULL;
641 PreallocMode prealloc;
642 Error *local_err = NULL;
643 int ret;
645 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
646 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
647 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
648 PREALLOC_MODE_OFF, &local_err);
649 g_free(buf);
650 if (local_err) {
651 error_propagate(errp, local_err);
652 return -EINVAL;
655 if (prealloc != PREALLOC_MODE_OFF) {
656 error_setg(errp, "Unsupported preallocation mode '%s'",
657 PreallocMode_str(prealloc));
658 return -ENOTSUP;
661 options = qdict_new();
662 qdict_put_str(options, "driver", drv->format_name);
664 blk = blk_new_open(filename, NULL, options,
665 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
666 if (!blk) {
667 error_prepend(errp, "Protocol driver '%s' does not support image "
668 "creation, and opening the image failed: ",
669 drv->format_name);
670 return -EINVAL;
673 size = create_file_fallback_truncate(blk, size, errp);
674 if (size < 0) {
675 ret = size;
676 goto out;
679 ret = create_file_fallback_zero_first_sector(blk, size, errp);
680 if (ret < 0) {
681 goto out;
684 ret = 0;
685 out:
686 blk_unref(blk);
687 return ret;
690 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
692 QemuOpts *protocol_opts;
693 BlockDriver *drv;
694 QDict *qdict;
695 int ret;
697 drv = bdrv_find_protocol(filename, true, errp);
698 if (drv == NULL) {
699 return -ENOENT;
702 if (!drv->create_opts) {
703 error_setg(errp, "Driver '%s' does not support image creation",
704 drv->format_name);
705 return -ENOTSUP;
709 * 'opts' contains a QemuOptsList with a combination of format and protocol
710 * default values.
712 * The format properly removes its options, but the default values remain
713 * in 'opts->list'. So if the protocol has options with the same name
714 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
715 * of the format, since for overlapping options, the format wins.
717 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
718 * only the set options, and then convert it back to QemuOpts, using the
719 * create_opts of the protocol. So the new QemuOpts, will contain only the
720 * protocol defaults.
722 qdict = qemu_opts_to_qdict(opts, NULL);
723 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
724 if (protocol_opts == NULL) {
725 ret = -EINVAL;
726 goto out;
729 ret = bdrv_create(drv, filename, protocol_opts, errp);
730 out:
731 qemu_opts_del(protocol_opts);
732 qobject_unref(qdict);
733 return ret;
736 int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
738 Error *local_err = NULL;
739 int ret;
741 assert(bs != NULL);
743 if (!bs->drv) {
744 error_setg(errp, "Block node '%s' is not opened", bs->filename);
745 return -ENOMEDIUM;
748 if (!bs->drv->bdrv_co_delete_file) {
749 error_setg(errp, "Driver '%s' does not support image deletion",
750 bs->drv->format_name);
751 return -ENOTSUP;
754 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
755 if (ret < 0) {
756 error_propagate(errp, local_err);
759 return ret;
762 void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
764 Error *local_err = NULL;
765 int ret;
767 if (!bs) {
768 return;
771 ret = bdrv_co_delete_file(bs, &local_err);
773 * ENOTSUP will happen if the block driver doesn't support
774 * the 'bdrv_co_delete_file' interface. This is a predictable
775 * scenario and shouldn't be reported back to the user.
777 if (ret == -ENOTSUP) {
778 error_free(local_err);
779 } else if (ret < 0) {
780 error_report_err(local_err);
785 * Try to get @bs's logical and physical block size.
786 * On success, store them in @bsz struct and return 0.
787 * On failure return -errno.
788 * @bs must not be empty.
790 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
792 BlockDriver *drv = bs->drv;
793 BlockDriverState *filtered = bdrv_filter_bs(bs);
795 if (drv && drv->bdrv_probe_blocksizes) {
796 return drv->bdrv_probe_blocksizes(bs, bsz);
797 } else if (filtered) {
798 return bdrv_probe_blocksizes(filtered, bsz);
801 return -ENOTSUP;
805 * Try to get @bs's geometry (cyls, heads, sectors).
806 * On success, store them in @geo struct and return 0.
807 * On failure return -errno.
808 * @bs must not be empty.
810 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
812 BlockDriver *drv = bs->drv;
813 BlockDriverState *filtered = bdrv_filter_bs(bs);
815 if (drv && drv->bdrv_probe_geometry) {
816 return drv->bdrv_probe_geometry(bs, geo);
817 } else if (filtered) {
818 return bdrv_probe_geometry(filtered, geo);
821 return -ENOTSUP;
825 * Create a uniquely-named empty temporary file.
826 * Return 0 upon success, otherwise a negative errno value.
828 int get_tmp_filename(char *filename, int size)
830 #ifdef _WIN32
831 char temp_dir[MAX_PATH];
832 /* GetTempFileName requires that its output buffer (4th param)
833 have length MAX_PATH or greater. */
834 assert(size >= MAX_PATH);
835 return (GetTempPath(MAX_PATH, temp_dir)
836 && GetTempFileName(temp_dir, "qem", 0, filename)
837 ? 0 : -GetLastError());
838 #else
839 int fd;
840 const char *tmpdir;
841 tmpdir = getenv("TMPDIR");
842 if (!tmpdir) {
843 tmpdir = "/var/tmp";
845 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
846 return -EOVERFLOW;
848 fd = mkstemp(filename);
849 if (fd < 0) {
850 return -errno;
852 if (close(fd) != 0) {
853 unlink(filename);
854 return -errno;
856 return 0;
857 #endif
861 * Detect host devices. By convention, /dev/cdrom[N] is always
862 * recognized as a host CDROM.
864 static BlockDriver *find_hdev_driver(const char *filename)
866 int score_max = 0, score;
867 BlockDriver *drv = NULL, *d;
869 QLIST_FOREACH(d, &bdrv_drivers, list) {
870 if (d->bdrv_probe_device) {
871 score = d->bdrv_probe_device(filename);
872 if (score > score_max) {
873 score_max = score;
874 drv = d;
879 return drv;
882 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
884 BlockDriver *drv1;
886 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
887 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
888 return drv1;
892 return NULL;
895 BlockDriver *bdrv_find_protocol(const char *filename,
896 bool allow_protocol_prefix,
897 Error **errp)
899 BlockDriver *drv1;
900 char protocol[128];
901 int len;
902 const char *p;
903 int i;
905 /* TODO Drivers without bdrv_file_open must be specified explicitly */
908 * XXX(hch): we really should not let host device detection
909 * override an explicit protocol specification, but moving this
910 * later breaks access to device names with colons in them.
911 * Thanks to the brain-dead persistent naming schemes on udev-
912 * based Linux systems those actually are quite common.
914 drv1 = find_hdev_driver(filename);
915 if (drv1) {
916 return drv1;
919 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
920 return &bdrv_file;
923 p = strchr(filename, ':');
924 assert(p != NULL);
925 len = p - filename;
926 if (len > sizeof(protocol) - 1)
927 len = sizeof(protocol) - 1;
928 memcpy(protocol, filename, len);
929 protocol[len] = '\0';
931 drv1 = bdrv_do_find_protocol(protocol);
932 if (drv1) {
933 return drv1;
936 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
937 if (block_driver_modules[i].protocol_name &&
938 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
939 block_module_load_one(block_driver_modules[i].library_name);
940 break;
944 drv1 = bdrv_do_find_protocol(protocol);
945 if (!drv1) {
946 error_setg(errp, "Unknown protocol '%s'", protocol);
948 return drv1;
952 * Guess image format by probing its contents.
953 * This is not a good idea when your image is raw (CVE-2008-2004), but
954 * we do it anyway for backward compatibility.
956 * @buf contains the image's first @buf_size bytes.
957 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
958 * but can be smaller if the image file is smaller)
959 * @filename is its filename.
961 * For all block drivers, call the bdrv_probe() method to get its
962 * probing score.
963 * Return the first block driver with the highest probing score.
965 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
966 const char *filename)
968 int score_max = 0, score;
969 BlockDriver *drv = NULL, *d;
971 QLIST_FOREACH(d, &bdrv_drivers, list) {
972 if (d->bdrv_probe) {
973 score = d->bdrv_probe(buf, buf_size, filename);
974 if (score > score_max) {
975 score_max = score;
976 drv = d;
981 return drv;
984 static int find_image_format(BlockBackend *file, const char *filename,
985 BlockDriver **pdrv, Error **errp)
987 BlockDriver *drv;
988 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
989 int ret = 0;
991 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
992 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
993 *pdrv = &bdrv_raw;
994 return ret;
997 ret = blk_pread(file, 0, buf, sizeof(buf));
998 if (ret < 0) {
999 error_setg_errno(errp, -ret, "Could not read image for determining its "
1000 "format");
1001 *pdrv = NULL;
1002 return ret;
1005 drv = bdrv_probe_all(buf, ret, filename);
1006 if (!drv) {
1007 error_setg(errp, "Could not determine image format: No compatible "
1008 "driver found");
1009 ret = -ENOENT;
1011 *pdrv = drv;
1012 return ret;
1016 * Set the current 'total_sectors' value
1017 * Return 0 on success, -errno on error.
1019 int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
1021 BlockDriver *drv = bs->drv;
1023 if (!drv) {
1024 return -ENOMEDIUM;
1027 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
1028 if (bdrv_is_sg(bs))
1029 return 0;
1031 /* query actual device if possible, otherwise just trust the hint */
1032 if (drv->bdrv_getlength) {
1033 int64_t length = drv->bdrv_getlength(bs);
1034 if (length < 0) {
1035 return length;
1037 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
1040 bs->total_sectors = hint;
1042 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1043 return -EFBIG;
1046 return 0;
1050 * Combines a QDict of new block driver @options with any missing options taken
1051 * from @old_options, so that leaving out an option defaults to its old value.
1053 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1054 QDict *old_options)
1056 if (bs->drv && bs->drv->bdrv_join_options) {
1057 bs->drv->bdrv_join_options(options, old_options);
1058 } else {
1059 qdict_join(options, old_options, false);
1063 static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1064 int open_flags,
1065 Error **errp)
1067 Error *local_err = NULL;
1068 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1069 BlockdevDetectZeroesOptions detect_zeroes =
1070 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1071 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
1072 g_free(value);
1073 if (local_err) {
1074 error_propagate(errp, local_err);
1075 return detect_zeroes;
1078 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1079 !(open_flags & BDRV_O_UNMAP))
1081 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1082 "without setting discard operation to unmap");
1085 return detect_zeroes;
1089 * Set open flags for aio engine
1091 * Return 0 on success, -1 if the engine specified is invalid
1093 int bdrv_parse_aio(const char *mode, int *flags)
1095 if (!strcmp(mode, "threads")) {
1096 /* do nothing, default */
1097 } else if (!strcmp(mode, "native")) {
1098 *flags |= BDRV_O_NATIVE_AIO;
1099 #ifdef CONFIG_LINUX_IO_URING
1100 } else if (!strcmp(mode, "io_uring")) {
1101 *flags |= BDRV_O_IO_URING;
1102 #endif
1103 } else {
1104 return -1;
1107 return 0;
1111 * Set open flags for a given discard mode
1113 * Return 0 on success, -1 if the discard mode was invalid.
1115 int bdrv_parse_discard_flags(const char *mode, int *flags)
1117 *flags &= ~BDRV_O_UNMAP;
1119 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1120 /* do nothing */
1121 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1122 *flags |= BDRV_O_UNMAP;
1123 } else {
1124 return -1;
1127 return 0;
1131 * Set open flags for a given cache mode
1133 * Return 0 on success, -1 if the cache mode was invalid.
1135 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
1137 *flags &= ~BDRV_O_CACHE_MASK;
1139 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
1140 *writethrough = false;
1141 *flags |= BDRV_O_NOCACHE;
1142 } else if (!strcmp(mode, "directsync")) {
1143 *writethrough = true;
1144 *flags |= BDRV_O_NOCACHE;
1145 } else if (!strcmp(mode, "writeback")) {
1146 *writethrough = false;
1147 } else if (!strcmp(mode, "unsafe")) {
1148 *writethrough = false;
1149 *flags |= BDRV_O_NO_FLUSH;
1150 } else if (!strcmp(mode, "writethrough")) {
1151 *writethrough = true;
1152 } else {
1153 return -1;
1156 return 0;
1159 static char *bdrv_child_get_parent_desc(BdrvChild *c)
1161 BlockDriverState *parent = c->opaque;
1162 return g_strdup(bdrv_get_device_or_node_name(parent));
1165 static void bdrv_child_cb_drained_begin(BdrvChild *child)
1167 BlockDriverState *bs = child->opaque;
1168 bdrv_do_drained_begin_quiesce(bs, NULL, false);
1171 static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1173 BlockDriverState *bs = child->opaque;
1174 return bdrv_drain_poll(bs, false, NULL, false);
1177 static void bdrv_child_cb_drained_end(BdrvChild *child,
1178 int *drained_end_counter)
1180 BlockDriverState *bs = child->opaque;
1181 bdrv_drained_end_no_poll(bs, drained_end_counter);
1184 static int bdrv_child_cb_inactivate(BdrvChild *child)
1186 BlockDriverState *bs = child->opaque;
1187 assert(bs->open_flags & BDRV_O_INACTIVE);
1188 return 0;
1191 static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1192 GSList **ignore, Error **errp)
1194 BlockDriverState *bs = child->opaque;
1195 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1198 static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1199 GSList **ignore)
1201 BlockDriverState *bs = child->opaque;
1202 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1206 * Returns the options and flags that a temporary snapshot should get, based on
1207 * the originally requested flags (the originally requested image will have
1208 * flags like a backing file)
1210 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1211 int parent_flags, QDict *parent_options)
1213 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1215 /* For temporary files, unconditional cache=unsafe is fine */
1216 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1217 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
1219 /* Copy the read-only and discard options from the parent */
1220 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1221 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
1223 /* aio=native doesn't work for cache.direct=off, so disable it for the
1224 * temporary snapshot */
1225 *child_flags &= ~BDRV_O_NATIVE_AIO;
1228 static void bdrv_backing_attach(BdrvChild *c)
1230 BlockDriverState *parent = c->opaque;
1231 BlockDriverState *backing_hd = c->bs;
1233 assert(!parent->backing_blocker);
1234 error_setg(&parent->backing_blocker,
1235 "node is used as backing hd of '%s'",
1236 bdrv_get_device_or_node_name(parent));
1238 bdrv_refresh_filename(backing_hd);
1240 parent->open_flags &= ~BDRV_O_NO_BACKING;
1242 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1243 /* Otherwise we won't be able to commit or stream */
1244 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1245 parent->backing_blocker);
1246 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1247 parent->backing_blocker);
1249 * We do backup in 3 ways:
1250 * 1. drive backup
1251 * The target bs is new opened, and the source is top BDS
1252 * 2. blockdev backup
1253 * Both the source and the target are top BDSes.
1254 * 3. internal backup(used for block replication)
1255 * Both the source and the target are backing file
1257 * In case 1 and 2, neither the source nor the target is the backing file.
1258 * In case 3, we will block the top BDS, so there is only one block job
1259 * for the top BDS and its backing chain.
1261 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1262 parent->backing_blocker);
1263 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1264 parent->backing_blocker);
1267 static void bdrv_backing_detach(BdrvChild *c)
1269 BlockDriverState *parent = c->opaque;
1271 assert(parent->backing_blocker);
1272 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1273 error_free(parent->backing_blocker);
1274 parent->backing_blocker = NULL;
1277 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1278 const char *filename, Error **errp)
1280 BlockDriverState *parent = c->opaque;
1281 bool read_only = bdrv_is_read_only(parent);
1282 int ret;
1284 if (read_only) {
1285 ret = bdrv_reopen_set_read_only(parent, false, errp);
1286 if (ret < 0) {
1287 return ret;
1291 ret = bdrv_change_backing_file(parent, filename,
1292 base->drv ? base->drv->format_name : "",
1293 false);
1294 if (ret < 0) {
1295 error_setg_errno(errp, -ret, "Could not update backing file link");
1298 if (read_only) {
1299 bdrv_reopen_set_read_only(parent, true, NULL);
1302 return ret;
1306 * Returns the options and flags that a generic child of a BDS should
1307 * get, based on the given options and flags for the parent BDS.
1309 static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1310 int *child_flags, QDict *child_options,
1311 int parent_flags, QDict *parent_options)
1313 int flags = parent_flags;
1316 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1317 * Generally, the question to answer is: Should this child be
1318 * format-probed by default?
1322 * Pure and non-filtered data children of non-format nodes should
1323 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1324 * set). This only affects a very limited set of drivers (namely
1325 * quorum and blkverify when this comment was written).
1326 * Force-clear BDRV_O_PROTOCOL then.
1328 if (!parent_is_format &&
1329 (role & BDRV_CHILD_DATA) &&
1330 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1332 flags &= ~BDRV_O_PROTOCOL;
1336 * All children of format nodes (except for COW children) and all
1337 * metadata children in general should never be format-probed.
1338 * Force-set BDRV_O_PROTOCOL then.
1340 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1341 (role & BDRV_CHILD_METADATA))
1343 flags |= BDRV_O_PROTOCOL;
1347 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1348 * the parent.
1350 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1351 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1352 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1354 if (role & BDRV_CHILD_COW) {
1355 /* backing files are opened read-only by default */
1356 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1357 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1358 } else {
1359 /* Inherit the read-only option from the parent if it's not set */
1360 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1361 qdict_copy_default(child_options, parent_options,
1362 BDRV_OPT_AUTO_READ_ONLY);
1366 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1367 * can default to enable it on lower layers regardless of the
1368 * parent option.
1370 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1372 /* Clear flags that only apply to the top layer */
1373 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1375 if (role & BDRV_CHILD_METADATA) {
1376 flags &= ~BDRV_O_NO_IO;
1378 if (role & BDRV_CHILD_COW) {
1379 flags &= ~BDRV_O_TEMPORARY;
1382 *child_flags = flags;
1385 static void bdrv_child_cb_attach(BdrvChild *child)
1387 BlockDriverState *bs = child->opaque;
1389 if (child->role & BDRV_CHILD_COW) {
1390 bdrv_backing_attach(child);
1393 bdrv_apply_subtree_drain(child, bs);
1396 static void bdrv_child_cb_detach(BdrvChild *child)
1398 BlockDriverState *bs = child->opaque;
1400 if (child->role & BDRV_CHILD_COW) {
1401 bdrv_backing_detach(child);
1404 bdrv_unapply_subtree_drain(child, bs);
1407 static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1408 const char *filename, Error **errp)
1410 if (c->role & BDRV_CHILD_COW) {
1411 return bdrv_backing_update_filename(c, base, filename, errp);
1413 return 0;
1416 static AioContext *bdrv_child_cb_get_parent_aio_context(BdrvChild *c)
1418 BlockDriverState *bs = c->opaque;
1420 return bdrv_get_aio_context(bs);
1423 const BdrvChildClass child_of_bds = {
1424 .parent_is_bds = true,
1425 .get_parent_desc = bdrv_child_get_parent_desc,
1426 .inherit_options = bdrv_inherited_options,
1427 .drained_begin = bdrv_child_cb_drained_begin,
1428 .drained_poll = bdrv_child_cb_drained_poll,
1429 .drained_end = bdrv_child_cb_drained_end,
1430 .attach = bdrv_child_cb_attach,
1431 .detach = bdrv_child_cb_detach,
1432 .inactivate = bdrv_child_cb_inactivate,
1433 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1434 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1435 .update_filename = bdrv_child_cb_update_filename,
1436 .get_parent_aio_context = bdrv_child_cb_get_parent_aio_context,
1439 AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1441 return c->klass->get_parent_aio_context(c);
1444 static int bdrv_open_flags(BlockDriverState *bs, int flags)
1446 int open_flags = flags;
1449 * Clear flags that are internal to the block layer before opening the
1450 * image.
1452 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1454 return open_flags;
1457 static void update_flags_from_options(int *flags, QemuOpts *opts)
1459 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
1461 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1462 *flags |= BDRV_O_NO_FLUSH;
1465 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1466 *flags |= BDRV_O_NOCACHE;
1469 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
1470 *flags |= BDRV_O_RDWR;
1473 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1474 *flags |= BDRV_O_AUTO_RDONLY;
1478 static void update_options_from_flags(QDict *options, int flags)
1480 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1481 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1483 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
1484 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1485 flags & BDRV_O_NO_FLUSH);
1487 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1488 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1490 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1491 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1492 flags & BDRV_O_AUTO_RDONLY);
1496 static void bdrv_assign_node_name(BlockDriverState *bs,
1497 const char *node_name,
1498 Error **errp)
1500 char *gen_node_name = NULL;
1502 if (!node_name) {
1503 node_name = gen_node_name = id_generate(ID_BLOCK);
1504 } else if (!id_wellformed(node_name)) {
1506 * Check for empty string or invalid characters, but not if it is
1507 * generated (generated names use characters not available to the user)
1509 error_setg(errp, "Invalid node-name: '%s'", node_name);
1510 return;
1513 /* takes care of avoiding namespaces collisions */
1514 if (blk_by_name(node_name)) {
1515 error_setg(errp, "node-name=%s is conflicting with a device id",
1516 node_name);
1517 goto out;
1520 /* takes care of avoiding duplicates node names */
1521 if (bdrv_find_node(node_name)) {
1522 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
1523 goto out;
1526 /* Make sure that the node name isn't truncated */
1527 if (strlen(node_name) >= sizeof(bs->node_name)) {
1528 error_setg(errp, "Node name too long");
1529 goto out;
1532 /* copy node name into the bs and insert it into the graph list */
1533 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1534 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
1535 out:
1536 g_free(gen_node_name);
1539 static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1540 const char *node_name, QDict *options,
1541 int open_flags, Error **errp)
1543 Error *local_err = NULL;
1544 int i, ret;
1546 bdrv_assign_node_name(bs, node_name, &local_err);
1547 if (local_err) {
1548 error_propagate(errp, local_err);
1549 return -EINVAL;
1552 bs->drv = drv;
1553 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1554 bs->opaque = g_malloc0(drv->instance_size);
1556 if (drv->bdrv_file_open) {
1557 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1558 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1559 } else if (drv->bdrv_open) {
1560 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1561 } else {
1562 ret = 0;
1565 if (ret < 0) {
1566 if (local_err) {
1567 error_propagate(errp, local_err);
1568 } else if (bs->filename[0]) {
1569 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1570 } else {
1571 error_setg_errno(errp, -ret, "Could not open image");
1573 goto open_failed;
1576 ret = refresh_total_sectors(bs, bs->total_sectors);
1577 if (ret < 0) {
1578 error_setg_errno(errp, -ret, "Could not refresh total sector count");
1579 return ret;
1582 bdrv_refresh_limits(bs, NULL, &local_err);
1583 if (local_err) {
1584 error_propagate(errp, local_err);
1585 return -EINVAL;
1588 assert(bdrv_opt_mem_align(bs) != 0);
1589 assert(bdrv_min_mem_align(bs) != 0);
1590 assert(is_power_of_2(bs->bl.request_alignment));
1592 for (i = 0; i < bs->quiesce_counter; i++) {
1593 if (drv->bdrv_co_drain_begin) {
1594 drv->bdrv_co_drain_begin(bs);
1598 return 0;
1599 open_failed:
1600 bs->drv = NULL;
1601 if (bs->file != NULL) {
1602 bdrv_unref_child(bs, bs->file);
1603 bs->file = NULL;
1605 g_free(bs->opaque);
1606 bs->opaque = NULL;
1607 return ret;
1610 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1611 int flags, Error **errp)
1613 BlockDriverState *bs;
1614 int ret;
1616 bs = bdrv_new();
1617 bs->open_flags = flags;
1618 bs->explicit_options = qdict_new();
1619 bs->options = qdict_new();
1620 bs->opaque = NULL;
1622 update_options_from_flags(bs->options, flags);
1624 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1625 if (ret < 0) {
1626 qobject_unref(bs->explicit_options);
1627 bs->explicit_options = NULL;
1628 qobject_unref(bs->options);
1629 bs->options = NULL;
1630 bdrv_unref(bs);
1631 return NULL;
1634 return bs;
1637 QemuOptsList bdrv_runtime_opts = {
1638 .name = "bdrv_common",
1639 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1640 .desc = {
1642 .name = "node-name",
1643 .type = QEMU_OPT_STRING,
1644 .help = "Node name of the block device node",
1647 .name = "driver",
1648 .type = QEMU_OPT_STRING,
1649 .help = "Block driver to use for the node",
1652 .name = BDRV_OPT_CACHE_DIRECT,
1653 .type = QEMU_OPT_BOOL,
1654 .help = "Bypass software writeback cache on the host",
1657 .name = BDRV_OPT_CACHE_NO_FLUSH,
1658 .type = QEMU_OPT_BOOL,
1659 .help = "Ignore flush requests",
1662 .name = BDRV_OPT_READ_ONLY,
1663 .type = QEMU_OPT_BOOL,
1664 .help = "Node is opened in read-only mode",
1667 .name = BDRV_OPT_AUTO_READ_ONLY,
1668 .type = QEMU_OPT_BOOL,
1669 .help = "Node can become read-only if opening read-write fails",
1672 .name = "detect-zeroes",
1673 .type = QEMU_OPT_STRING,
1674 .help = "try to optimize zero writes (off, on, unmap)",
1677 .name = BDRV_OPT_DISCARD,
1678 .type = QEMU_OPT_STRING,
1679 .help = "discard operation (ignore/off, unmap/on)",
1682 .name = BDRV_OPT_FORCE_SHARE,
1683 .type = QEMU_OPT_BOOL,
1684 .help = "always accept other writers (default: off)",
1686 { /* end of list */ }
1690 QemuOptsList bdrv_create_opts_simple = {
1691 .name = "simple-create-opts",
1692 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
1693 .desc = {
1695 .name = BLOCK_OPT_SIZE,
1696 .type = QEMU_OPT_SIZE,
1697 .help = "Virtual disk size"
1700 .name = BLOCK_OPT_PREALLOC,
1701 .type = QEMU_OPT_STRING,
1702 .help = "Preallocation mode (allowed values: off)"
1704 { /* end of list */ }
1709 * Common part for opening disk images and files
1711 * Removes all processed options from *options.
1713 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1714 QDict *options, Error **errp)
1716 int ret, open_flags;
1717 const char *filename;
1718 const char *driver_name = NULL;
1719 const char *node_name = NULL;
1720 const char *discard;
1721 QemuOpts *opts;
1722 BlockDriver *drv;
1723 Error *local_err = NULL;
1725 assert(bs->file == NULL);
1726 assert(options != NULL && bs->options != options);
1728 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1729 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
1730 ret = -EINVAL;
1731 goto fail_opts;
1734 update_flags_from_options(&bs->open_flags, opts);
1736 driver_name = qemu_opt_get(opts, "driver");
1737 drv = bdrv_find_format(driver_name);
1738 assert(drv != NULL);
1740 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1742 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1743 error_setg(errp,
1744 BDRV_OPT_FORCE_SHARE
1745 "=on can only be used with read-only images");
1746 ret = -EINVAL;
1747 goto fail_opts;
1750 if (file != NULL) {
1751 bdrv_refresh_filename(blk_bs(file));
1752 filename = blk_bs(file)->filename;
1753 } else {
1755 * Caution: while qdict_get_try_str() is fine, getting
1756 * non-string types would require more care. When @options
1757 * come from -blockdev or blockdev_add, its members are typed
1758 * according to the QAPI schema, but when they come from
1759 * -drive, they're all QString.
1761 filename = qdict_get_try_str(options, "filename");
1764 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1765 error_setg(errp, "The '%s' block driver requires a file name",
1766 drv->format_name);
1767 ret = -EINVAL;
1768 goto fail_opts;
1771 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1772 drv->format_name);
1774 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1776 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
1777 if (!bs->read_only && bdrv_is_whitelisted(drv, true)) {
1778 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1779 } else {
1780 ret = -ENOTSUP;
1782 if (ret < 0) {
1783 error_setg(errp,
1784 !bs->read_only && bdrv_is_whitelisted(drv, true)
1785 ? "Driver '%s' can only be used for read-only devices"
1786 : "Driver '%s' is not whitelisted",
1787 drv->format_name);
1788 goto fail_opts;
1792 /* bdrv_new() and bdrv_close() make it so */
1793 assert(qatomic_read(&bs->copy_on_read) == 0);
1795 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1796 if (!bs->read_only) {
1797 bdrv_enable_copy_on_read(bs);
1798 } else {
1799 error_setg(errp, "Can't use copy-on-read on read-only device");
1800 ret = -EINVAL;
1801 goto fail_opts;
1805 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
1806 if (discard != NULL) {
1807 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1808 error_setg(errp, "Invalid discard option");
1809 ret = -EINVAL;
1810 goto fail_opts;
1814 bs->detect_zeroes =
1815 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1816 if (local_err) {
1817 error_propagate(errp, local_err);
1818 ret = -EINVAL;
1819 goto fail_opts;
1822 if (filename != NULL) {
1823 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1824 } else {
1825 bs->filename[0] = '\0';
1827 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1829 /* Open the image, either directly or using a protocol */
1830 open_flags = bdrv_open_flags(bs, bs->open_flags);
1831 node_name = qemu_opt_get(opts, "node-name");
1833 assert(!drv->bdrv_file_open || file == NULL);
1834 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1835 if (ret < 0) {
1836 goto fail_opts;
1839 qemu_opts_del(opts);
1840 return 0;
1842 fail_opts:
1843 qemu_opts_del(opts);
1844 return ret;
1847 static QDict *parse_json_filename(const char *filename, Error **errp)
1849 QObject *options_obj;
1850 QDict *options;
1851 int ret;
1853 ret = strstart(filename, "json:", &filename);
1854 assert(ret);
1856 options_obj = qobject_from_json(filename, errp);
1857 if (!options_obj) {
1858 error_prepend(errp, "Could not parse the JSON options: ");
1859 return NULL;
1862 options = qobject_to(QDict, options_obj);
1863 if (!options) {
1864 qobject_unref(options_obj);
1865 error_setg(errp, "Invalid JSON object given");
1866 return NULL;
1869 qdict_flatten(options);
1871 return options;
1874 static void parse_json_protocol(QDict *options, const char **pfilename,
1875 Error **errp)
1877 QDict *json_options;
1878 Error *local_err = NULL;
1880 /* Parse json: pseudo-protocol */
1881 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1882 return;
1885 json_options = parse_json_filename(*pfilename, &local_err);
1886 if (local_err) {
1887 error_propagate(errp, local_err);
1888 return;
1891 /* Options given in the filename have lower priority than options
1892 * specified directly */
1893 qdict_join(options, json_options, false);
1894 qobject_unref(json_options);
1895 *pfilename = NULL;
1899 * Fills in default options for opening images and converts the legacy
1900 * filename/flags pair to option QDict entries.
1901 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1902 * block driver has been specified explicitly.
1904 static int bdrv_fill_options(QDict **options, const char *filename,
1905 int *flags, Error **errp)
1907 const char *drvname;
1908 bool protocol = *flags & BDRV_O_PROTOCOL;
1909 bool parse_filename = false;
1910 BlockDriver *drv = NULL;
1911 Error *local_err = NULL;
1914 * Caution: while qdict_get_try_str() is fine, getting non-string
1915 * types would require more care. When @options come from
1916 * -blockdev or blockdev_add, its members are typed according to
1917 * the QAPI schema, but when they come from -drive, they're all
1918 * QString.
1920 drvname = qdict_get_try_str(*options, "driver");
1921 if (drvname) {
1922 drv = bdrv_find_format(drvname);
1923 if (!drv) {
1924 error_setg(errp, "Unknown driver '%s'", drvname);
1925 return -ENOENT;
1927 /* If the user has explicitly specified the driver, this choice should
1928 * override the BDRV_O_PROTOCOL flag */
1929 protocol = drv->bdrv_file_open;
1932 if (protocol) {
1933 *flags |= BDRV_O_PROTOCOL;
1934 } else {
1935 *flags &= ~BDRV_O_PROTOCOL;
1938 /* Translate cache options from flags into options */
1939 update_options_from_flags(*options, *flags);
1941 /* Fetch the file name from the options QDict if necessary */
1942 if (protocol && filename) {
1943 if (!qdict_haskey(*options, "filename")) {
1944 qdict_put_str(*options, "filename", filename);
1945 parse_filename = true;
1946 } else {
1947 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1948 "the same time");
1949 return -EINVAL;
1953 /* Find the right block driver */
1954 /* See cautionary note on accessing @options above */
1955 filename = qdict_get_try_str(*options, "filename");
1957 if (!drvname && protocol) {
1958 if (filename) {
1959 drv = bdrv_find_protocol(filename, parse_filename, errp);
1960 if (!drv) {
1961 return -EINVAL;
1964 drvname = drv->format_name;
1965 qdict_put_str(*options, "driver", drvname);
1966 } else {
1967 error_setg(errp, "Must specify either driver or file");
1968 return -EINVAL;
1972 assert(drv || !protocol);
1974 /* Driver-specific filename parsing */
1975 if (drv && drv->bdrv_parse_filename && parse_filename) {
1976 drv->bdrv_parse_filename(filename, *options, &local_err);
1977 if (local_err) {
1978 error_propagate(errp, local_err);
1979 return -EINVAL;
1982 if (!drv->bdrv_needs_filename) {
1983 qdict_del(*options, "filename");
1987 return 0;
1990 typedef struct BlockReopenQueueEntry {
1991 bool prepared;
1992 bool perms_checked;
1993 BDRVReopenState state;
1994 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
1995 } BlockReopenQueueEntry;
1998 * Return the flags that @bs will have after the reopens in @q have
1999 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2000 * return the current flags.
2002 static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2004 BlockReopenQueueEntry *entry;
2006 if (q != NULL) {
2007 QTAILQ_FOREACH(entry, q, entry) {
2008 if (entry->state.bs == bs) {
2009 return entry->state.flags;
2014 return bs->open_flags;
2017 /* Returns whether the image file can be written to after the reopen queue @q
2018 * has been successfully applied, or right now if @q is NULL. */
2019 static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2020 BlockReopenQueue *q)
2022 int flags = bdrv_reopen_get_flags(q, bs);
2024 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2028 * Return whether the BDS can be written to. This is not necessarily
2029 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2030 * be written to but do not count as read-only images.
2032 bool bdrv_is_writable(BlockDriverState *bs)
2034 return bdrv_is_writable_after_reopen(bs, NULL);
2037 static char *bdrv_child_user_desc(BdrvChild *c)
2039 if (c->klass->get_parent_desc) {
2040 return c->klass->get_parent_desc(c);
2043 return g_strdup("another user");
2046 static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2048 g_autofree char *user = NULL;
2049 g_autofree char *perm_names = NULL;
2051 if ((b->perm & a->shared_perm) == b->perm) {
2052 return true;
2055 perm_names = bdrv_perm_names(b->perm & ~a->shared_perm);
2056 user = bdrv_child_user_desc(a);
2057 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
2058 "allow '%s' on %s",
2059 user, a->name, perm_names, bdrv_get_node_name(b->bs));
2061 return false;
2064 static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
2066 BdrvChild *a, *b;
2069 * During the loop we'll look at each pair twice. That's correct because
2070 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2071 * directions.
2073 QLIST_FOREACH(a, &bs->parents, next_parent) {
2074 QLIST_FOREACH(b, &bs->parents, next_parent) {
2075 if (a == b) {
2076 continue;
2079 if (!bdrv_a_allow_b(a, b, errp)) {
2080 return true;
2085 return false;
2088 static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
2089 BdrvChild *c, BdrvChildRole role,
2090 BlockReopenQueue *reopen_queue,
2091 uint64_t parent_perm, uint64_t parent_shared,
2092 uint64_t *nperm, uint64_t *nshared)
2094 assert(bs->drv && bs->drv->bdrv_child_perm);
2095 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
2096 parent_perm, parent_shared,
2097 nperm, nshared);
2098 /* TODO Take force_share from reopen_queue */
2099 if (child_bs && child_bs->force_share) {
2100 *nshared = BLK_PERM_ALL;
2105 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2106 * nodes that are already in the @list, of course) so that final list is
2107 * topologically sorted. Return the result (GSList @list object is updated, so
2108 * don't use old reference after function call).
2110 * On function start @list must be already topologically sorted and for any node
2111 * in the @list the whole subtree of the node must be in the @list as well. The
2112 * simplest way to satisfy this criteria: use only result of
2113 * bdrv_topological_dfs() or NULL as @list parameter.
2115 static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2116 BlockDriverState *bs)
2118 BdrvChild *child;
2119 g_autoptr(GHashTable) local_found = NULL;
2121 if (!found) {
2122 assert(!list);
2123 found = local_found = g_hash_table_new(NULL, NULL);
2126 if (g_hash_table_contains(found, bs)) {
2127 return list;
2129 g_hash_table_add(found, bs);
2131 QLIST_FOREACH(child, &bs->children, next) {
2132 list = bdrv_topological_dfs(list, found, child->bs);
2135 return g_slist_prepend(list, bs);
2138 typedef struct BdrvChildSetPermState {
2139 BdrvChild *child;
2140 uint64_t old_perm;
2141 uint64_t old_shared_perm;
2142 } BdrvChildSetPermState;
2144 static void bdrv_child_set_perm_abort(void *opaque)
2146 BdrvChildSetPermState *s = opaque;
2148 s->child->perm = s->old_perm;
2149 s->child->shared_perm = s->old_shared_perm;
2152 static TransactionActionDrv bdrv_child_set_pem_drv = {
2153 .abort = bdrv_child_set_perm_abort,
2154 .clean = g_free,
2157 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2158 uint64_t shared, Transaction *tran)
2160 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
2162 *s = (BdrvChildSetPermState) {
2163 .child = c,
2164 .old_perm = c->perm,
2165 .old_shared_perm = c->shared_perm,
2168 c->perm = perm;
2169 c->shared_perm = shared;
2171 tran_add(tran, &bdrv_child_set_pem_drv, s);
2174 static void bdrv_drv_set_perm_commit(void *opaque)
2176 BlockDriverState *bs = opaque;
2177 uint64_t cumulative_perms, cumulative_shared_perms;
2179 if (bs->drv->bdrv_set_perm) {
2180 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2181 &cumulative_shared_perms);
2182 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2186 static void bdrv_drv_set_perm_abort(void *opaque)
2188 BlockDriverState *bs = opaque;
2190 if (bs->drv->bdrv_abort_perm_update) {
2191 bs->drv->bdrv_abort_perm_update(bs);
2195 TransactionActionDrv bdrv_drv_set_perm_drv = {
2196 .abort = bdrv_drv_set_perm_abort,
2197 .commit = bdrv_drv_set_perm_commit,
2200 static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2201 uint64_t shared_perm, Transaction *tran,
2202 Error **errp)
2204 if (!bs->drv) {
2205 return 0;
2208 if (bs->drv->bdrv_check_perm) {
2209 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2210 if (ret < 0) {
2211 return ret;
2215 if (tran) {
2216 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2219 return 0;
2222 typedef struct BdrvReplaceChildState {
2223 BdrvChild *child;
2224 BlockDriverState *old_bs;
2225 } BdrvReplaceChildState;
2227 static void bdrv_replace_child_commit(void *opaque)
2229 BdrvReplaceChildState *s = opaque;
2231 bdrv_unref(s->old_bs);
2234 static void bdrv_replace_child_abort(void *opaque)
2236 BdrvReplaceChildState *s = opaque;
2237 BlockDriverState *new_bs = s->child->bs;
2239 /* old_bs reference is transparently moved from @s to @s->child */
2240 bdrv_replace_child_noperm(s->child, s->old_bs);
2241 bdrv_unref(new_bs);
2244 static TransactionActionDrv bdrv_replace_child_drv = {
2245 .commit = bdrv_replace_child_commit,
2246 .abort = bdrv_replace_child_abort,
2247 .clean = g_free,
2251 * bdrv_replace_child_safe
2253 * Note: real unref of old_bs is done only on commit.
2255 static void bdrv_replace_child_safe(BdrvChild *child, BlockDriverState *new_bs,
2256 Transaction *tran)
2258 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2259 *s = (BdrvReplaceChildState) {
2260 .child = child,
2261 .old_bs = child->bs,
2263 tran_add(tran, &bdrv_replace_child_drv, s);
2265 if (new_bs) {
2266 bdrv_ref(new_bs);
2268 bdrv_replace_child_noperm(child, new_bs);
2269 /* old_bs reference is transparently moved from @child to @s */
2273 * Check whether permissions on this node can be changed in a way that
2274 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
2275 * permissions of all its parents. This involves checking whether all necessary
2276 * permission changes to child nodes can be performed.
2278 * A call to this function must always be followed by a call to bdrv_set_perm()
2279 * or bdrv_abort_perm_update().
2281 static int bdrv_node_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
2282 uint64_t cumulative_perms,
2283 uint64_t cumulative_shared_perms,
2284 Transaction *tran, Error **errp)
2286 BlockDriver *drv = bs->drv;
2287 BdrvChild *c;
2288 int ret;
2290 /* Write permissions never work with read-only images */
2291 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2292 !bdrv_is_writable_after_reopen(bs, q))
2294 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2295 error_setg(errp, "Block node is read-only");
2296 } else {
2297 uint64_t current_perms, current_shared;
2298 bdrv_get_cumulative_perm(bs, &current_perms, &current_shared);
2299 if (current_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
2300 error_setg(errp, "Cannot make block node read-only, there is "
2301 "a writer on it");
2302 } else {
2303 error_setg(errp, "Cannot make block node read-only and create "
2304 "a writer on it");
2308 return -EPERM;
2312 * Unaligned requests will automatically be aligned to bl.request_alignment
2313 * and without RESIZE we can't extend requests to write to space beyond the
2314 * end of the image, so it's required that the image size is aligned.
2316 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2317 !(cumulative_perms & BLK_PERM_RESIZE))
2319 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2320 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2321 "Image size is not a multiple of request "
2322 "alignment");
2323 return -EPERM;
2327 /* Check this node */
2328 if (!drv) {
2329 return 0;
2332 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
2333 errp);
2334 if (ret < 0) {
2335 return ret;
2338 /* Drivers that never have children can omit .bdrv_child_perm() */
2339 if (!drv->bdrv_child_perm) {
2340 assert(QLIST_EMPTY(&bs->children));
2341 return 0;
2344 /* Check all children */
2345 QLIST_FOREACH(c, &bs->children, next) {
2346 uint64_t cur_perm, cur_shared;
2348 bdrv_child_perm(bs, c->bs, c, c->role, q,
2349 cumulative_perms, cumulative_shared_perms,
2350 &cur_perm, &cur_shared);
2351 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
2354 return 0;
2357 static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2358 Transaction *tran, Error **errp)
2360 int ret;
2361 uint64_t cumulative_perms, cumulative_shared_perms;
2362 BlockDriverState *bs;
2364 for ( ; list; list = list->next) {
2365 bs = list->data;
2367 if (bdrv_parent_perms_conflict(bs, errp)) {
2368 return -EINVAL;
2371 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2372 &cumulative_shared_perms);
2374 ret = bdrv_node_check_perm(bs, q, cumulative_perms,
2375 cumulative_shared_perms,
2376 tran, errp);
2377 if (ret < 0) {
2378 return ret;
2382 return 0;
2385 void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2386 uint64_t *shared_perm)
2388 BdrvChild *c;
2389 uint64_t cumulative_perms = 0;
2390 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2392 QLIST_FOREACH(c, &bs->parents, next_parent) {
2393 cumulative_perms |= c->perm;
2394 cumulative_shared_perms &= c->shared_perm;
2397 *perm = cumulative_perms;
2398 *shared_perm = cumulative_shared_perms;
2401 char *bdrv_perm_names(uint64_t perm)
2403 struct perm_name {
2404 uint64_t perm;
2405 const char *name;
2406 } permissions[] = {
2407 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2408 { BLK_PERM_WRITE, "write" },
2409 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2410 { BLK_PERM_RESIZE, "resize" },
2411 { BLK_PERM_GRAPH_MOD, "change children" },
2412 { 0, NULL }
2415 GString *result = g_string_sized_new(30);
2416 struct perm_name *p;
2418 for (p = permissions; p->name; p++) {
2419 if (perm & p->perm) {
2420 if (result->len > 0) {
2421 g_string_append(result, ", ");
2423 g_string_append(result, p->name);
2427 return g_string_free(result, FALSE);
2431 static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp)
2433 int ret;
2434 Transaction *tran = tran_new();
2435 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
2437 ret = bdrv_list_refresh_perms(list, NULL, tran, errp);
2438 tran_finalize(tran, ret);
2440 return ret;
2443 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2444 Error **errp)
2446 Error *local_err = NULL;
2447 Transaction *tran = tran_new();
2448 int ret;
2450 bdrv_child_set_perm(c, perm, shared, tran);
2452 ret = bdrv_refresh_perms(c->bs, &local_err);
2454 tran_finalize(tran, ret);
2456 if (ret < 0) {
2457 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2458 /* tighten permissions */
2459 error_propagate(errp, local_err);
2460 } else {
2462 * Our caller may intend to only loosen restrictions and
2463 * does not expect this function to fail. Errors are not
2464 * fatal in such a case, so we can just hide them from our
2465 * caller.
2467 error_free(local_err);
2468 ret = 0;
2472 return ret;
2475 int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2477 uint64_t parent_perms, parent_shared;
2478 uint64_t perms, shared;
2480 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
2481 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
2482 parent_perms, parent_shared, &perms, &shared);
2484 return bdrv_child_try_set_perm(c, perms, shared, errp);
2488 * Default implementation for .bdrv_child_perm() for block filters:
2489 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2490 * filtered child.
2492 static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
2493 BdrvChildRole role,
2494 BlockReopenQueue *reopen_queue,
2495 uint64_t perm, uint64_t shared,
2496 uint64_t *nperm, uint64_t *nshared)
2498 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2499 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
2502 static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
2503 BdrvChildRole role,
2504 BlockReopenQueue *reopen_queue,
2505 uint64_t perm, uint64_t shared,
2506 uint64_t *nperm, uint64_t *nshared)
2508 assert(role & BDRV_CHILD_COW);
2511 * We want consistent read from backing files if the parent needs it.
2512 * No other operations are performed on backing files.
2514 perm &= BLK_PERM_CONSISTENT_READ;
2517 * If the parent can deal with changing data, we're okay with a
2518 * writable and resizable backing file.
2519 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2521 if (shared & BLK_PERM_WRITE) {
2522 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2523 } else {
2524 shared = 0;
2527 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2528 BLK_PERM_WRITE_UNCHANGED;
2530 if (bs->open_flags & BDRV_O_INACTIVE) {
2531 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2534 *nperm = perm;
2535 *nshared = shared;
2538 static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
2539 BdrvChildRole role,
2540 BlockReopenQueue *reopen_queue,
2541 uint64_t perm, uint64_t shared,
2542 uint64_t *nperm, uint64_t *nshared)
2544 int flags;
2546 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
2548 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2551 * Apart from the modifications below, the same permissions are
2552 * forwarded and left alone as for filters
2554 bdrv_filter_default_perms(bs, c, role, reopen_queue,
2555 perm, shared, &perm, &shared);
2557 if (role & BDRV_CHILD_METADATA) {
2558 /* Format drivers may touch metadata even if the guest doesn't write */
2559 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2560 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2564 * bs->file always needs to be consistent because of the
2565 * metadata. We can never allow other users to resize or write
2566 * to it.
2568 if (!(flags & BDRV_O_NO_IO)) {
2569 perm |= BLK_PERM_CONSISTENT_READ;
2571 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2574 if (role & BDRV_CHILD_DATA) {
2576 * Technically, everything in this block is a subset of the
2577 * BDRV_CHILD_METADATA path taken above, and so this could
2578 * be an "else if" branch. However, that is not obvious, and
2579 * this function is not performance critical, therefore we let
2580 * this be an independent "if".
2584 * We cannot allow other users to resize the file because the
2585 * format driver might have some assumptions about the size
2586 * (e.g. because it is stored in metadata, or because the file
2587 * is split into fixed-size data files).
2589 shared &= ~BLK_PERM_RESIZE;
2592 * WRITE_UNCHANGED often cannot be performed as such on the
2593 * data file. For example, the qcow2 driver may still need to
2594 * write copied clusters on copy-on-read.
2596 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2597 perm |= BLK_PERM_WRITE;
2601 * If the data file is written to, the format driver may
2602 * expect to be able to resize it by writing beyond the EOF.
2604 if (perm & BLK_PERM_WRITE) {
2605 perm |= BLK_PERM_RESIZE;
2609 if (bs->open_flags & BDRV_O_INACTIVE) {
2610 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2613 *nperm = perm;
2614 *nshared = shared;
2617 void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
2618 BdrvChildRole role, BlockReopenQueue *reopen_queue,
2619 uint64_t perm, uint64_t shared,
2620 uint64_t *nperm, uint64_t *nshared)
2622 if (role & BDRV_CHILD_FILTERED) {
2623 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2624 BDRV_CHILD_COW)));
2625 bdrv_filter_default_perms(bs, c, role, reopen_queue,
2626 perm, shared, nperm, nshared);
2627 } else if (role & BDRV_CHILD_COW) {
2628 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
2629 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
2630 perm, shared, nperm, nshared);
2631 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
2632 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
2633 perm, shared, nperm, nshared);
2634 } else {
2635 g_assert_not_reached();
2639 uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2641 static const uint64_t permissions[] = {
2642 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2643 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2644 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2645 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2646 [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD,
2649 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2650 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2652 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2654 return permissions[qapi_perm];
2657 static void bdrv_replace_child_noperm(BdrvChild *child,
2658 BlockDriverState *new_bs)
2660 BlockDriverState *old_bs = child->bs;
2661 int new_bs_quiesce_counter;
2662 int drain_saldo;
2664 assert(!child->frozen);
2666 if (old_bs && new_bs) {
2667 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2670 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2671 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2674 * If the new child node is drained but the old one was not, flush
2675 * all outstanding requests to the old child node.
2677 while (drain_saldo > 0 && child->klass->drained_begin) {
2678 bdrv_parent_drained_begin_single(child, true);
2679 drain_saldo--;
2682 if (old_bs) {
2683 /* Detach first so that the recursive drain sections coming from @child
2684 * are already gone and we only end the drain sections that came from
2685 * elsewhere. */
2686 if (child->klass->detach) {
2687 child->klass->detach(child);
2689 QLIST_REMOVE(child, next_parent);
2692 child->bs = new_bs;
2694 if (new_bs) {
2695 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2698 * Detaching the old node may have led to the new node's
2699 * quiesce_counter having been decreased. Not a problem, we
2700 * just need to recognize this here and then invoke
2701 * drained_end appropriately more often.
2703 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2704 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
2706 /* Attach only after starting new drained sections, so that recursive
2707 * drain sections coming from @child don't get an extra .drained_begin
2708 * callback. */
2709 if (child->klass->attach) {
2710 child->klass->attach(child);
2715 * If the old child node was drained but the new one is not, allow
2716 * requests to come in only after the new node has been attached.
2718 while (drain_saldo < 0 && child->klass->drained_end) {
2719 bdrv_parent_drained_end_single(child);
2720 drain_saldo++;
2724 static void bdrv_child_free(void *opaque)
2726 BdrvChild *c = opaque;
2728 g_free(c->name);
2729 g_free(c);
2732 static void bdrv_remove_empty_child(BdrvChild *child)
2734 assert(!child->bs);
2735 QLIST_SAFE_REMOVE(child, next);
2736 bdrv_child_free(child);
2739 typedef struct BdrvAttachChildCommonState {
2740 BdrvChild **child;
2741 AioContext *old_parent_ctx;
2742 AioContext *old_child_ctx;
2743 } BdrvAttachChildCommonState;
2745 static void bdrv_attach_child_common_abort(void *opaque)
2747 BdrvAttachChildCommonState *s = opaque;
2748 BdrvChild *child = *s->child;
2749 BlockDriverState *bs = child->bs;
2751 bdrv_replace_child_noperm(child, NULL);
2753 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
2754 bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort);
2757 if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) {
2758 GSList *ignore = g_slist_prepend(NULL, child);
2760 child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore,
2761 &error_abort);
2762 g_slist_free(ignore);
2763 ignore = g_slist_prepend(NULL, child);
2764 child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore);
2766 g_slist_free(ignore);
2769 bdrv_unref(bs);
2770 bdrv_remove_empty_child(child);
2771 *s->child = NULL;
2774 static TransactionActionDrv bdrv_attach_child_common_drv = {
2775 .abort = bdrv_attach_child_common_abort,
2776 .clean = g_free,
2780 * Common part of attaching bdrv child to bs or to blk or to job
2782 static int bdrv_attach_child_common(BlockDriverState *child_bs,
2783 const char *child_name,
2784 const BdrvChildClass *child_class,
2785 BdrvChildRole child_role,
2786 uint64_t perm, uint64_t shared_perm,
2787 void *opaque, BdrvChild **child,
2788 Transaction *tran, Error **errp)
2790 BdrvChild *new_child;
2791 AioContext *parent_ctx;
2792 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
2794 assert(child);
2795 assert(*child == NULL);
2797 new_child = g_new(BdrvChild, 1);
2798 *new_child = (BdrvChild) {
2799 .bs = NULL,
2800 .name = g_strdup(child_name),
2801 .klass = child_class,
2802 .role = child_role,
2803 .perm = perm,
2804 .shared_perm = shared_perm,
2805 .opaque = opaque,
2809 * If the AioContexts don't match, first try to move the subtree of
2810 * child_bs into the AioContext of the new parent. If this doesn't work,
2811 * try moving the parent into the AioContext of child_bs instead.
2813 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
2814 if (child_ctx != parent_ctx) {
2815 Error *local_err = NULL;
2816 int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err);
2818 if (ret < 0 && child_class->can_set_aio_ctx) {
2819 GSList *ignore = g_slist_prepend(NULL, new_child);
2820 if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore,
2821 NULL))
2823 error_free(local_err);
2824 ret = 0;
2825 g_slist_free(ignore);
2826 ignore = g_slist_prepend(NULL, new_child);
2827 child_class->set_aio_ctx(new_child, child_ctx, &ignore);
2829 g_slist_free(ignore);
2832 if (ret < 0) {
2833 error_propagate(errp, local_err);
2834 bdrv_remove_empty_child(new_child);
2835 return ret;
2839 bdrv_ref(child_bs);
2840 bdrv_replace_child_noperm(new_child, child_bs);
2842 *child = new_child;
2844 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
2845 *s = (BdrvAttachChildCommonState) {
2846 .child = child,
2847 .old_parent_ctx = parent_ctx,
2848 .old_child_ctx = child_ctx,
2850 tran_add(tran, &bdrv_attach_child_common_drv, s);
2852 return 0;
2855 static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
2856 BlockDriverState *child_bs,
2857 const char *child_name,
2858 const BdrvChildClass *child_class,
2859 BdrvChildRole child_role,
2860 BdrvChild **child,
2861 Transaction *tran,
2862 Error **errp)
2864 int ret;
2865 uint64_t perm, shared_perm;
2867 assert(parent_bs->drv);
2869 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2870 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2871 perm, shared_perm, &perm, &shared_perm);
2873 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
2874 child_role, perm, shared_perm, parent_bs,
2875 child, tran, errp);
2876 if (ret < 0) {
2877 return ret;
2880 QLIST_INSERT_HEAD(&parent_bs->children, *child, next);
2882 * child is removed in bdrv_attach_child_common_abort(), so don't care to
2883 * abort this change separately.
2886 return 0;
2889 static void bdrv_detach_child(BdrvChild *child)
2891 BlockDriverState *old_bs = child->bs;
2893 bdrv_replace_child_noperm(child, NULL);
2894 bdrv_remove_empty_child(child);
2896 if (old_bs) {
2898 * Update permissions for old node. We're just taking a parent away, so
2899 * we're loosening restrictions. Errors of permission update are not
2900 * fatal in this case, ignore them.
2902 bdrv_refresh_perms(old_bs, NULL);
2905 * When the parent requiring a non-default AioContext is removed, the
2906 * node moves back to the main AioContext
2908 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
2913 * This function steals the reference to child_bs from the caller.
2914 * That reference is later dropped by bdrv_root_unref_child().
2916 * On failure NULL is returned, errp is set and the reference to
2917 * child_bs is also dropped.
2919 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
2920 * (unless @child_bs is already in @ctx).
2922 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2923 const char *child_name,
2924 const BdrvChildClass *child_class,
2925 BdrvChildRole child_role,
2926 uint64_t perm, uint64_t shared_perm,
2927 void *opaque, Error **errp)
2929 int ret;
2930 BdrvChild *child = NULL;
2931 Transaction *tran = tran_new();
2933 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
2934 child_role, perm, shared_perm, opaque,
2935 &child, tran, errp);
2936 if (ret < 0) {
2937 bdrv_unref(child_bs);
2938 return NULL;
2941 ret = bdrv_refresh_perms(child_bs, errp);
2942 tran_finalize(tran, ret);
2944 bdrv_unref(child_bs);
2945 return child;
2949 * This function transfers the reference to child_bs from the caller
2950 * to parent_bs. That reference is later dropped by parent_bs on
2951 * bdrv_close() or if someone calls bdrv_unref_child().
2953 * On failure NULL is returned, errp is set and the reference to
2954 * child_bs is also dropped.
2956 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2957 * hold the AioContext lock for @child_bs, but not for @parent_bs.
2959 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2960 BlockDriverState *child_bs,
2961 const char *child_name,
2962 const BdrvChildClass *child_class,
2963 BdrvChildRole child_role,
2964 Error **errp)
2966 int ret;
2967 BdrvChild *child = NULL;
2968 Transaction *tran = tran_new();
2970 ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class,
2971 child_role, &child, tran, errp);
2972 if (ret < 0) {
2973 goto out;
2976 ret = bdrv_refresh_perms(parent_bs, errp);
2977 if (ret < 0) {
2978 goto out;
2981 out:
2982 tran_finalize(tran, ret);
2984 bdrv_unref(child_bs);
2986 return child;
2989 /* Callers must ensure that child->frozen is false. */
2990 void bdrv_root_unref_child(BdrvChild *child)
2992 BlockDriverState *child_bs;
2994 child_bs = child->bs;
2995 bdrv_detach_child(child);
2996 bdrv_unref(child_bs);
2999 typedef struct BdrvSetInheritsFrom {
3000 BlockDriverState *bs;
3001 BlockDriverState *old_inherits_from;
3002 } BdrvSetInheritsFrom;
3004 static void bdrv_set_inherits_from_abort(void *opaque)
3006 BdrvSetInheritsFrom *s = opaque;
3008 s->bs->inherits_from = s->old_inherits_from;
3011 static TransactionActionDrv bdrv_set_inherits_from_drv = {
3012 .abort = bdrv_set_inherits_from_abort,
3013 .clean = g_free,
3016 /* @tran is allowed to be NULL. In this case no rollback is possible */
3017 static void bdrv_set_inherits_from(BlockDriverState *bs,
3018 BlockDriverState *new_inherits_from,
3019 Transaction *tran)
3021 if (tran) {
3022 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3024 *s = (BdrvSetInheritsFrom) {
3025 .bs = bs,
3026 .old_inherits_from = bs->inherits_from,
3029 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3032 bs->inherits_from = new_inherits_from;
3036 * Clear all inherits_from pointers from children and grandchildren of
3037 * @root that point to @root, where necessary.
3038 * @tran is allowed to be NULL. In this case no rollback is possible
3040 static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3041 Transaction *tran)
3043 BdrvChild *c;
3045 if (child->bs->inherits_from == root) {
3047 * Remove inherits_from only when the last reference between root and
3048 * child->bs goes away.
3050 QLIST_FOREACH(c, &root->children, next) {
3051 if (c != child && c->bs == child->bs) {
3052 break;
3055 if (c == NULL) {
3056 bdrv_set_inherits_from(child->bs, NULL, tran);
3060 QLIST_FOREACH(c, &child->bs->children, next) {
3061 bdrv_unset_inherits_from(root, c, tran);
3065 /* Callers must ensure that child->frozen is false. */
3066 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3068 if (child == NULL) {
3069 return;
3072 bdrv_unset_inherits_from(parent, child, NULL);
3073 bdrv_root_unref_child(child);
3077 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3079 BdrvChild *c;
3080 QLIST_FOREACH(c, &bs->parents, next_parent) {
3081 if (c->klass->change_media) {
3082 c->klass->change_media(c, load);
3087 /* Return true if you can reach parent going through child->inherits_from
3088 * recursively. If parent or child are NULL, return false */
3089 static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3090 BlockDriverState *parent)
3092 while (child && child != parent) {
3093 child = child->inherits_from;
3096 return child != NULL;
3100 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3101 * mostly used for COW backing children (role = COW), but also for
3102 * filtered children (role = FILTERED | PRIMARY).
3104 static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3106 if (bs->drv && bs->drv->is_filter) {
3107 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3108 } else {
3109 return BDRV_CHILD_COW;
3114 * Sets the bs->backing link of a BDS. A new reference is created; callers
3115 * which don't need their own reference any more must call bdrv_unref().
3117 static int bdrv_set_backing_noperm(BlockDriverState *bs,
3118 BlockDriverState *backing_hd,
3119 Transaction *tran, Error **errp)
3121 int ret = 0;
3122 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
3123 bdrv_inherits_from_recursive(backing_hd, bs);
3125 if (bdrv_is_backing_chain_frozen(bs, child_bs(bs->backing), errp)) {
3126 return -EPERM;
3129 if (bs->backing) {
3130 /* Cannot be frozen, we checked that above */
3131 bdrv_unset_inherits_from(bs, bs->backing, tran);
3132 bdrv_remove_filter_or_cow_child(bs, tran);
3135 if (!backing_hd) {
3136 goto out;
3139 ret = bdrv_attach_child_noperm(bs, backing_hd, "backing",
3140 &child_of_bds, bdrv_backing_role(bs),
3141 &bs->backing, tran, errp);
3142 if (ret < 0) {
3143 return ret;
3148 * If backing_hd was already part of bs's backing chain, and
3149 * inherits_from pointed recursively to bs then let's update it to
3150 * point directly to bs (else it will become NULL).
3152 if (update_inherits_from) {
3153 bdrv_set_inherits_from(backing_hd, bs, tran);
3156 out:
3157 bdrv_refresh_limits(bs, tran, NULL);
3159 return 0;
3162 int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3163 Error **errp)
3165 int ret;
3166 Transaction *tran = tran_new();
3168 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3169 if (ret < 0) {
3170 goto out;
3173 ret = bdrv_refresh_perms(bs, errp);
3174 out:
3175 tran_finalize(tran, ret);
3177 return ret;
3181 * Opens the backing file for a BlockDriverState if not yet open
3183 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3184 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3185 * itself, all options starting with "${bdref_key}." are considered part of the
3186 * BlockdevRef.
3188 * TODO Can this be unified with bdrv_open_image()?
3190 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3191 const char *bdref_key, Error **errp)
3193 char *backing_filename = NULL;
3194 char *bdref_key_dot;
3195 const char *reference = NULL;
3196 int ret = 0;
3197 bool implicit_backing = false;
3198 BlockDriverState *backing_hd;
3199 QDict *options;
3200 QDict *tmp_parent_options = NULL;
3201 Error *local_err = NULL;
3203 if (bs->backing != NULL) {
3204 goto free_exit;
3207 /* NULL means an empty set of options */
3208 if (parent_options == NULL) {
3209 tmp_parent_options = qdict_new();
3210 parent_options = tmp_parent_options;
3213 bs->open_flags &= ~BDRV_O_NO_BACKING;
3215 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3216 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3217 g_free(bdref_key_dot);
3220 * Caution: while qdict_get_try_str() is fine, getting non-string
3221 * types would require more care. When @parent_options come from
3222 * -blockdev or blockdev_add, its members are typed according to
3223 * the QAPI schema, but when they come from -drive, they're all
3224 * QString.
3226 reference = qdict_get_try_str(parent_options, bdref_key);
3227 if (reference || qdict_haskey(options, "file.filename")) {
3228 /* keep backing_filename NULL */
3229 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
3230 qobject_unref(options);
3231 goto free_exit;
3232 } else {
3233 if (qdict_size(options) == 0) {
3234 /* If the user specifies options that do not modify the
3235 * backing file's behavior, we might still consider it the
3236 * implicit backing file. But it's easier this way, and
3237 * just specifying some of the backing BDS's options is
3238 * only possible with -drive anyway (otherwise the QAPI
3239 * schema forces the user to specify everything). */
3240 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3243 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
3244 if (local_err) {
3245 ret = -EINVAL;
3246 error_propagate(errp, local_err);
3247 qobject_unref(options);
3248 goto free_exit;
3252 if (!bs->drv || !bs->drv->supports_backing) {
3253 ret = -EINVAL;
3254 error_setg(errp, "Driver doesn't support backing files");
3255 qobject_unref(options);
3256 goto free_exit;
3259 if (!reference &&
3260 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
3261 qdict_put_str(options, "driver", bs->backing_format);
3264 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
3265 &child_of_bds, bdrv_backing_role(bs), errp);
3266 if (!backing_hd) {
3267 bs->open_flags |= BDRV_O_NO_BACKING;
3268 error_prepend(errp, "Could not open backing file: ");
3269 ret = -EINVAL;
3270 goto free_exit;
3273 if (implicit_backing) {
3274 bdrv_refresh_filename(backing_hd);
3275 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3276 backing_hd->filename);
3279 /* Hook up the backing file link; drop our reference, bs owns the
3280 * backing_hd reference now */
3281 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
3282 bdrv_unref(backing_hd);
3283 if (ret < 0) {
3284 goto free_exit;
3287 qdict_del(parent_options, bdref_key);
3289 free_exit:
3290 g_free(backing_filename);
3291 qobject_unref(tmp_parent_options);
3292 return ret;
3295 static BlockDriverState *
3296 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
3297 BlockDriverState *parent, const BdrvChildClass *child_class,
3298 BdrvChildRole child_role, bool allow_none, Error **errp)
3300 BlockDriverState *bs = NULL;
3301 QDict *image_options;
3302 char *bdref_key_dot;
3303 const char *reference;
3305 assert(child_class != NULL);
3307 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3308 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3309 g_free(bdref_key_dot);
3312 * Caution: while qdict_get_try_str() is fine, getting non-string
3313 * types would require more care. When @options come from
3314 * -blockdev or blockdev_add, its members are typed according to
3315 * the QAPI schema, but when they come from -drive, they're all
3316 * QString.
3318 reference = qdict_get_try_str(options, bdref_key);
3319 if (!filename && !reference && !qdict_size(image_options)) {
3320 if (!allow_none) {
3321 error_setg(errp, "A block device must be specified for \"%s\"",
3322 bdref_key);
3324 qobject_unref(image_options);
3325 goto done;
3328 bs = bdrv_open_inherit(filename, reference, image_options, 0,
3329 parent, child_class, child_role, errp);
3330 if (!bs) {
3331 goto done;
3334 done:
3335 qdict_del(options, bdref_key);
3336 return bs;
3340 * Opens a disk image whose options are given as BlockdevRef in another block
3341 * device's options.
3343 * If allow_none is true, no image will be opened if filename is false and no
3344 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3346 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3347 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3348 * itself, all options starting with "${bdref_key}." are considered part of the
3349 * BlockdevRef.
3351 * The BlockdevRef will be removed from the options QDict.
3353 BdrvChild *bdrv_open_child(const char *filename,
3354 QDict *options, const char *bdref_key,
3355 BlockDriverState *parent,
3356 const BdrvChildClass *child_class,
3357 BdrvChildRole child_role,
3358 bool allow_none, Error **errp)
3360 BlockDriverState *bs;
3362 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
3363 child_role, allow_none, errp);
3364 if (bs == NULL) {
3365 return NULL;
3368 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3369 errp);
3373 * TODO Future callers may need to specify parent/child_class in order for
3374 * option inheritance to work. Existing callers use it for the root node.
3376 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3378 BlockDriverState *bs = NULL;
3379 QObject *obj = NULL;
3380 QDict *qdict = NULL;
3381 const char *reference = NULL;
3382 Visitor *v = NULL;
3384 if (ref->type == QTYPE_QSTRING) {
3385 reference = ref->u.reference;
3386 } else {
3387 BlockdevOptions *options = &ref->u.definition;
3388 assert(ref->type == QTYPE_QDICT);
3390 v = qobject_output_visitor_new(&obj);
3391 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
3392 visit_complete(v, &obj);
3394 qdict = qobject_to(QDict, obj);
3395 qdict_flatten(qdict);
3397 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3398 * compatibility with other callers) rather than what we want as the
3399 * real defaults. Apply the defaults here instead. */
3400 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3401 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3402 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
3403 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3407 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
3408 obj = NULL;
3409 qobject_unref(obj);
3410 visit_free(v);
3411 return bs;
3414 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3415 int flags,
3416 QDict *snapshot_options,
3417 Error **errp)
3419 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
3420 char *tmp_filename = g_malloc0(PATH_MAX + 1);
3421 int64_t total_size;
3422 QemuOpts *opts = NULL;
3423 BlockDriverState *bs_snapshot = NULL;
3424 int ret;
3426 /* if snapshot, we create a temporary backing file and open it
3427 instead of opening 'filename' directly */
3429 /* Get the required size from the image */
3430 total_size = bdrv_getlength(bs);
3431 if (total_size < 0) {
3432 error_setg_errno(errp, -total_size, "Could not get image size");
3433 goto out;
3436 /* Create the temporary image */
3437 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
3438 if (ret < 0) {
3439 error_setg_errno(errp, -ret, "Could not get temporary filename");
3440 goto out;
3443 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
3444 &error_abort);
3445 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
3446 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
3447 qemu_opts_del(opts);
3448 if (ret < 0) {
3449 error_prepend(errp, "Could not create temporary overlay '%s': ",
3450 tmp_filename);
3451 goto out;
3454 /* Prepare options QDict for the temporary file */
3455 qdict_put_str(snapshot_options, "file.driver", "file");
3456 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3457 qdict_put_str(snapshot_options, "driver", "qcow2");
3459 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
3460 snapshot_options = NULL;
3461 if (!bs_snapshot) {
3462 goto out;
3465 ret = bdrv_append(bs_snapshot, bs, errp);
3466 if (ret < 0) {
3467 bs_snapshot = NULL;
3468 goto out;
3471 out:
3472 qobject_unref(snapshot_options);
3473 g_free(tmp_filename);
3474 return bs_snapshot;
3478 * Opens a disk image (raw, qcow2, vmdk, ...)
3480 * options is a QDict of options to pass to the block drivers, or NULL for an
3481 * empty set of options. The reference to the QDict belongs to the block layer
3482 * after the call (even on failure), so if the caller intends to reuse the
3483 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
3485 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3486 * If it is not NULL, the referenced BDS will be reused.
3488 * The reference parameter may be used to specify an existing block device which
3489 * should be opened. If specified, neither options nor a filename may be given,
3490 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
3492 static BlockDriverState *bdrv_open_inherit(const char *filename,
3493 const char *reference,
3494 QDict *options, int flags,
3495 BlockDriverState *parent,
3496 const BdrvChildClass *child_class,
3497 BdrvChildRole child_role,
3498 Error **errp)
3500 int ret;
3501 BlockBackend *file = NULL;
3502 BlockDriverState *bs;
3503 BlockDriver *drv = NULL;
3504 BdrvChild *child;
3505 const char *drvname;
3506 const char *backing;
3507 Error *local_err = NULL;
3508 QDict *snapshot_options = NULL;
3509 int snapshot_flags = 0;
3511 assert(!child_class || !flags);
3512 assert(!child_class == !parent);
3514 if (reference) {
3515 bool options_non_empty = options ? qdict_size(options) : false;
3516 qobject_unref(options);
3518 if (filename || options_non_empty) {
3519 error_setg(errp, "Cannot reference an existing block device with "
3520 "additional options or a new filename");
3521 return NULL;
3524 bs = bdrv_lookup_bs(reference, reference, errp);
3525 if (!bs) {
3526 return NULL;
3529 bdrv_ref(bs);
3530 return bs;
3533 bs = bdrv_new();
3535 /* NULL means an empty set of options */
3536 if (options == NULL) {
3537 options = qdict_new();
3540 /* json: syntax counts as explicit options, as if in the QDict */
3541 parse_json_protocol(options, &filename, &local_err);
3542 if (local_err) {
3543 goto fail;
3546 bs->explicit_options = qdict_clone_shallow(options);
3548 if (child_class) {
3549 bool parent_is_format;
3551 if (parent->drv) {
3552 parent_is_format = parent->drv->is_format;
3553 } else {
3555 * parent->drv is not set yet because this node is opened for
3556 * (potential) format probing. That means that @parent is going
3557 * to be a format node.
3559 parent_is_format = true;
3562 bs->inherits_from = parent;
3563 child_class->inherit_options(child_role, parent_is_format,
3564 &flags, options,
3565 parent->open_flags, parent->options);
3568 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
3569 if (ret < 0) {
3570 goto fail;
3574 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3575 * Caution: getting a boolean member of @options requires care.
3576 * When @options come from -blockdev or blockdev_add, members are
3577 * typed according to the QAPI schema, but when they come from
3578 * -drive, they're all QString.
3580 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3581 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3582 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3583 } else {
3584 flags &= ~BDRV_O_RDWR;
3587 if (flags & BDRV_O_SNAPSHOT) {
3588 snapshot_options = qdict_new();
3589 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3590 flags, options);
3591 /* Let bdrv_backing_options() override "read-only" */
3592 qdict_del(options, BDRV_OPT_READ_ONLY);
3593 bdrv_inherited_options(BDRV_CHILD_COW, true,
3594 &flags, options, flags, options);
3597 bs->open_flags = flags;
3598 bs->options = options;
3599 options = qdict_clone_shallow(options);
3601 /* Find the right image format driver */
3602 /* See cautionary note on accessing @options above */
3603 drvname = qdict_get_try_str(options, "driver");
3604 if (drvname) {
3605 drv = bdrv_find_format(drvname);
3606 if (!drv) {
3607 error_setg(errp, "Unknown driver: '%s'", drvname);
3608 goto fail;
3612 assert(drvname || !(flags & BDRV_O_PROTOCOL));
3614 /* See cautionary note on accessing @options above */
3615 backing = qdict_get_try_str(options, "backing");
3616 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3617 (backing && *backing == '\0'))
3619 if (backing) {
3620 warn_report("Use of \"backing\": \"\" is deprecated; "
3621 "use \"backing\": null instead");
3623 flags |= BDRV_O_NO_BACKING;
3624 qdict_del(bs->explicit_options, "backing");
3625 qdict_del(bs->options, "backing");
3626 qdict_del(options, "backing");
3629 /* Open image file without format layer. This BlockBackend is only used for
3630 * probing, the block drivers will do their own bdrv_open_child() for the
3631 * same BDS, which is why we put the node name back into options. */
3632 if ((flags & BDRV_O_PROTOCOL) == 0) {
3633 BlockDriverState *file_bs;
3635 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
3636 &child_of_bds, BDRV_CHILD_IMAGE,
3637 true, &local_err);
3638 if (local_err) {
3639 goto fail;
3641 if (file_bs != NULL) {
3642 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3643 * looking at the header to guess the image format. This works even
3644 * in cases where a guest would not see a consistent state. */
3645 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
3646 blk_insert_bs(file, file_bs, &local_err);
3647 bdrv_unref(file_bs);
3648 if (local_err) {
3649 goto fail;
3652 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
3656 /* Image format probing */
3657 bs->probed = !drv;
3658 if (!drv && file) {
3659 ret = find_image_format(file, filename, &drv, &local_err);
3660 if (ret < 0) {
3661 goto fail;
3664 * This option update would logically belong in bdrv_fill_options(),
3665 * but we first need to open bs->file for the probing to work, while
3666 * opening bs->file already requires the (mostly) final set of options
3667 * so that cache mode etc. can be inherited.
3669 * Adding the driver later is somewhat ugly, but it's not an option
3670 * that would ever be inherited, so it's correct. We just need to make
3671 * sure to update both bs->options (which has the full effective
3672 * options for bs) and options (which has file.* already removed).
3674 qdict_put_str(bs->options, "driver", drv->format_name);
3675 qdict_put_str(options, "driver", drv->format_name);
3676 } else if (!drv) {
3677 error_setg(errp, "Must specify either driver or file");
3678 goto fail;
3681 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3682 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3683 /* file must be NULL if a protocol BDS is about to be created
3684 * (the inverse results in an error message from bdrv_open_common()) */
3685 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3687 /* Open the image */
3688 ret = bdrv_open_common(bs, file, options, &local_err);
3689 if (ret < 0) {
3690 goto fail;
3693 if (file) {
3694 blk_unref(file);
3695 file = NULL;
3698 /* If there is a backing file, use it */
3699 if ((flags & BDRV_O_NO_BACKING) == 0) {
3700 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
3701 if (ret < 0) {
3702 goto close_and_fail;
3706 /* Remove all children options and references
3707 * from bs->options and bs->explicit_options */
3708 QLIST_FOREACH(child, &bs->children, next) {
3709 char *child_key_dot;
3710 child_key_dot = g_strdup_printf("%s.", child->name);
3711 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3712 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
3713 qdict_del(bs->explicit_options, child->name);
3714 qdict_del(bs->options, child->name);
3715 g_free(child_key_dot);
3718 /* Check if any unknown options were used */
3719 if (qdict_size(options) != 0) {
3720 const QDictEntry *entry = qdict_first(options);
3721 if (flags & BDRV_O_PROTOCOL) {
3722 error_setg(errp, "Block protocol '%s' doesn't support the option "
3723 "'%s'", drv->format_name, entry->key);
3724 } else {
3725 error_setg(errp,
3726 "Block format '%s' does not support the option '%s'",
3727 drv->format_name, entry->key);
3730 goto close_and_fail;
3733 bdrv_parent_cb_change_media(bs, true);
3735 qobject_unref(options);
3736 options = NULL;
3738 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3739 * temporary snapshot afterwards. */
3740 if (snapshot_flags) {
3741 BlockDriverState *snapshot_bs;
3742 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3743 snapshot_options, &local_err);
3744 snapshot_options = NULL;
3745 if (local_err) {
3746 goto close_and_fail;
3748 /* We are not going to return bs but the overlay on top of it
3749 * (snapshot_bs); thus, we have to drop the strong reference to bs
3750 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3751 * though, because the overlay still has a reference to it. */
3752 bdrv_unref(bs);
3753 bs = snapshot_bs;
3756 return bs;
3758 fail:
3759 blk_unref(file);
3760 qobject_unref(snapshot_options);
3761 qobject_unref(bs->explicit_options);
3762 qobject_unref(bs->options);
3763 qobject_unref(options);
3764 bs->options = NULL;
3765 bs->explicit_options = NULL;
3766 bdrv_unref(bs);
3767 error_propagate(errp, local_err);
3768 return NULL;
3770 close_and_fail:
3771 bdrv_unref(bs);
3772 qobject_unref(snapshot_options);
3773 qobject_unref(options);
3774 error_propagate(errp, local_err);
3775 return NULL;
3778 BlockDriverState *bdrv_open(const char *filename, const char *reference,
3779 QDict *options, int flags, Error **errp)
3781 return bdrv_open_inherit(filename, reference, options, flags, NULL,
3782 NULL, 0, errp);
3785 /* Return true if the NULL-terminated @list contains @str */
3786 static bool is_str_in_list(const char *str, const char *const *list)
3788 if (str && list) {
3789 int i;
3790 for (i = 0; list[i] != NULL; i++) {
3791 if (!strcmp(str, list[i])) {
3792 return true;
3796 return false;
3800 * Check that every option set in @bs->options is also set in
3801 * @new_opts.
3803 * Options listed in the common_options list and in
3804 * @bs->drv->mutable_opts are skipped.
3806 * Return 0 on success, otherwise return -EINVAL and set @errp.
3808 static int bdrv_reset_options_allowed(BlockDriverState *bs,
3809 const QDict *new_opts, Error **errp)
3811 const QDictEntry *e;
3812 /* These options are common to all block drivers and are handled
3813 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3814 const char *const common_options[] = {
3815 "node-name", "discard", "cache.direct", "cache.no-flush",
3816 "read-only", "auto-read-only", "detect-zeroes", NULL
3819 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
3820 if (!qdict_haskey(new_opts, e->key) &&
3821 !is_str_in_list(e->key, common_options) &&
3822 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
3823 error_setg(errp, "Option '%s' cannot be reset "
3824 "to its default value", e->key);
3825 return -EINVAL;
3829 return 0;
3833 * Returns true if @child can be reached recursively from @bs
3835 static bool bdrv_recurse_has_child(BlockDriverState *bs,
3836 BlockDriverState *child)
3838 BdrvChild *c;
3840 if (bs == child) {
3841 return true;
3844 QLIST_FOREACH(c, &bs->children, next) {
3845 if (bdrv_recurse_has_child(c->bs, child)) {
3846 return true;
3850 return false;
3854 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3855 * reopen of multiple devices.
3857 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
3858 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3859 * be created and initialized. This newly created BlockReopenQueue should be
3860 * passed back in for subsequent calls that are intended to be of the same
3861 * atomic 'set'.
3863 * bs is the BlockDriverState to add to the reopen queue.
3865 * options contains the changed options for the associated bs
3866 * (the BlockReopenQueue takes ownership)
3868 * flags contains the open flags for the associated bs
3870 * returns a pointer to bs_queue, which is either the newly allocated
3871 * bs_queue, or the existing bs_queue being used.
3873 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
3875 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
3876 BlockDriverState *bs,
3877 QDict *options,
3878 const BdrvChildClass *klass,
3879 BdrvChildRole role,
3880 bool parent_is_format,
3881 QDict *parent_options,
3882 int parent_flags,
3883 bool keep_old_opts)
3885 assert(bs != NULL);
3887 BlockReopenQueueEntry *bs_entry;
3888 BdrvChild *child;
3889 QDict *old_options, *explicit_options, *options_copy;
3890 int flags;
3891 QemuOpts *opts;
3893 /* Make sure that the caller remembered to use a drained section. This is
3894 * important to avoid graph changes between the recursive queuing here and
3895 * bdrv_reopen_multiple(). */
3896 assert(bs->quiesce_counter > 0);
3898 if (bs_queue == NULL) {
3899 bs_queue = g_new0(BlockReopenQueue, 1);
3900 QTAILQ_INIT(bs_queue);
3903 if (!options) {
3904 options = qdict_new();
3907 /* Check if this BlockDriverState is already in the queue */
3908 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
3909 if (bs == bs_entry->state.bs) {
3910 break;
3915 * Precedence of options:
3916 * 1. Explicitly passed in options (highest)
3917 * 2. Retained from explicitly set options of bs
3918 * 3. Inherited from parent node
3919 * 4. Retained from effective options of bs
3922 /* Old explicitly set values (don't overwrite by inherited value) */
3923 if (bs_entry || keep_old_opts) {
3924 old_options = qdict_clone_shallow(bs_entry ?
3925 bs_entry->state.explicit_options :
3926 bs->explicit_options);
3927 bdrv_join_options(bs, options, old_options);
3928 qobject_unref(old_options);
3931 explicit_options = qdict_clone_shallow(options);
3933 /* Inherit from parent node */
3934 if (parent_options) {
3935 flags = 0;
3936 klass->inherit_options(role, parent_is_format, &flags, options,
3937 parent_flags, parent_options);
3938 } else {
3939 flags = bdrv_get_flags(bs);
3942 if (keep_old_opts) {
3943 /* Old values are used for options that aren't set yet */
3944 old_options = qdict_clone_shallow(bs->options);
3945 bdrv_join_options(bs, options, old_options);
3946 qobject_unref(old_options);
3949 /* We have the final set of options so let's update the flags */
3950 options_copy = qdict_clone_shallow(options);
3951 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3952 qemu_opts_absorb_qdict(opts, options_copy, NULL);
3953 update_flags_from_options(&flags, opts);
3954 qemu_opts_del(opts);
3955 qobject_unref(options_copy);
3957 /* bdrv_open_inherit() sets and clears some additional flags internally */
3958 flags &= ~BDRV_O_PROTOCOL;
3959 if (flags & BDRV_O_RDWR) {
3960 flags |= BDRV_O_ALLOW_RDWR;
3963 if (!bs_entry) {
3964 bs_entry = g_new0(BlockReopenQueueEntry, 1);
3965 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
3966 } else {
3967 qobject_unref(bs_entry->state.options);
3968 qobject_unref(bs_entry->state.explicit_options);
3971 bs_entry->state.bs = bs;
3972 bs_entry->state.options = options;
3973 bs_entry->state.explicit_options = explicit_options;
3974 bs_entry->state.flags = flags;
3977 * If keep_old_opts is false then it means that unspecified
3978 * options must be reset to their original value. We don't allow
3979 * resetting 'backing' but we need to know if the option is
3980 * missing in order to decide if we have to return an error.
3982 if (!keep_old_opts) {
3983 bs_entry->state.backing_missing =
3984 !qdict_haskey(options, "backing") &&
3985 !qdict_haskey(options, "backing.driver");
3988 QLIST_FOREACH(child, &bs->children, next) {
3989 QDict *new_child_options = NULL;
3990 bool child_keep_old = keep_old_opts;
3992 /* reopen can only change the options of block devices that were
3993 * implicitly created and inherited options. For other (referenced)
3994 * block devices, a syntax like "backing.foo" results in an error. */
3995 if (child->bs->inherits_from != bs) {
3996 continue;
3999 /* Check if the options contain a child reference */
4000 if (qdict_haskey(options, child->name)) {
4001 const char *childref = qdict_get_try_str(options, child->name);
4003 * The current child must not be reopened if the child
4004 * reference is null or points to a different node.
4006 if (g_strcmp0(childref, child->bs->node_name)) {
4007 continue;
4010 * If the child reference points to the current child then
4011 * reopen it with its existing set of options (note that
4012 * it can still inherit new options from the parent).
4014 child_keep_old = true;
4015 } else {
4016 /* Extract child options ("child-name.*") */
4017 char *child_key_dot = g_strdup_printf("%s.", child->name);
4018 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4019 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4020 g_free(child_key_dot);
4023 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
4024 child->klass, child->role, bs->drv->is_format,
4025 options, flags, child_keep_old);
4028 return bs_queue;
4031 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4032 BlockDriverState *bs,
4033 QDict *options, bool keep_old_opts)
4035 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4036 NULL, 0, keep_old_opts);
4040 * Reopen multiple BlockDriverStates atomically & transactionally.
4042 * The queue passed in (bs_queue) must have been built up previous
4043 * via bdrv_reopen_queue().
4045 * Reopens all BDS specified in the queue, with the appropriate
4046 * flags. All devices are prepared for reopen, and failure of any
4047 * device will cause all device changes to be abandoned, and intermediate
4048 * data cleaned up.
4050 * If all devices prepare successfully, then the changes are committed
4051 * to all devices.
4053 * All affected nodes must be drained between bdrv_reopen_queue() and
4054 * bdrv_reopen_multiple().
4056 int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
4058 int ret = -1;
4059 BlockReopenQueueEntry *bs_entry, *next;
4060 Transaction *tran = tran_new();
4061 g_autoptr(GHashTable) found = NULL;
4062 g_autoptr(GSList) refresh_list = NULL;
4064 assert(bs_queue != NULL);
4066 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4067 ret = bdrv_flush(bs_entry->state.bs);
4068 if (ret < 0) {
4069 error_setg_errno(errp, -ret, "Error flushing drive");
4070 goto cleanup;
4074 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4075 assert(bs_entry->state.bs->quiesce_counter > 0);
4076 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
4077 if (ret < 0) {
4078 goto abort;
4080 bs_entry->prepared = true;
4083 found = g_hash_table_new(NULL, NULL);
4084 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4085 BDRVReopenState *state = &bs_entry->state;
4087 refresh_list = bdrv_topological_dfs(refresh_list, found, state->bs);
4088 if (state->old_backing_bs) {
4089 refresh_list = bdrv_topological_dfs(refresh_list, found,
4090 state->old_backing_bs);
4095 * Note that file-posix driver rely on permission update done during reopen
4096 * (even if no permission changed), because it wants "new" permissions for
4097 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4098 * in raw_reopen_prepare() which is called with "old" permissions.
4100 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4101 if (ret < 0) {
4102 goto abort;
4106 * If we reach this point, we have success and just need to apply the
4107 * changes.
4109 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4110 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4111 * children are usually goes after parents in reopen-queue, so go from last
4112 * to first element.
4114 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4115 bdrv_reopen_commit(&bs_entry->state);
4118 tran_commit(tran);
4120 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4121 BlockDriverState *bs = bs_entry->state.bs;
4123 if (bs->drv->bdrv_reopen_commit_post) {
4124 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
4128 ret = 0;
4129 goto cleanup;
4131 abort:
4132 tran_abort(tran);
4133 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4134 if (bs_entry->prepared) {
4135 bdrv_reopen_abort(&bs_entry->state);
4137 qobject_unref(bs_entry->state.explicit_options);
4138 qobject_unref(bs_entry->state.options);
4141 cleanup:
4142 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4143 g_free(bs_entry);
4145 g_free(bs_queue);
4147 return ret;
4150 int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4151 Error **errp)
4153 int ret;
4154 BlockReopenQueue *queue;
4155 QDict *opts = qdict_new();
4157 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4159 bdrv_subtree_drained_begin(bs);
4160 queue = bdrv_reopen_queue(NULL, bs, opts, true);
4161 ret = bdrv_reopen_multiple(queue, errp);
4162 bdrv_subtree_drained_end(bs);
4164 return ret;
4167 static bool bdrv_reopen_can_attach(BlockDriverState *parent,
4168 BdrvChild *child,
4169 BlockDriverState *new_child,
4170 Error **errp)
4172 AioContext *parent_ctx = bdrv_get_aio_context(parent);
4173 AioContext *child_ctx = bdrv_get_aio_context(new_child);
4174 GSList *ignore;
4175 bool ret;
4177 ignore = g_slist_prepend(NULL, child);
4178 ret = bdrv_can_set_aio_context(new_child, parent_ctx, &ignore, NULL);
4179 g_slist_free(ignore);
4180 if (ret) {
4181 return ret;
4184 ignore = g_slist_prepend(NULL, child);
4185 ret = bdrv_can_set_aio_context(parent, child_ctx, &ignore, errp);
4186 g_slist_free(ignore);
4187 return ret;
4191 * Take a BDRVReopenState and check if the value of 'backing' in the
4192 * reopen_state->options QDict is valid or not.
4194 * If 'backing' is missing from the QDict then return 0.
4196 * If 'backing' contains the node name of the backing file of
4197 * reopen_state->bs then return 0.
4199 * If 'backing' contains a different node name (or is null) then check
4200 * whether the current backing file can be replaced with the new one.
4201 * If that's the case then reopen_state->replace_backing_bs is set to
4202 * true and reopen_state->new_backing_bs contains a pointer to the new
4203 * backing BlockDriverState (or NULL).
4205 * Return 0 on success, otherwise return < 0 and set @errp.
4207 static int bdrv_reopen_parse_backing(BDRVReopenState *reopen_state,
4208 Transaction *set_backings_tran,
4209 Error **errp)
4211 BlockDriverState *bs = reopen_state->bs;
4212 BlockDriverState *overlay_bs, *below_bs, *new_backing_bs;
4213 QObject *value;
4214 const char *str;
4216 value = qdict_get(reopen_state->options, "backing");
4217 if (value == NULL) {
4218 return 0;
4221 switch (qobject_type(value)) {
4222 case QTYPE_QNULL:
4223 new_backing_bs = NULL;
4224 break;
4225 case QTYPE_QSTRING:
4226 str = qstring_get_str(qobject_to(QString, value));
4227 new_backing_bs = bdrv_lookup_bs(NULL, str, errp);
4228 if (new_backing_bs == NULL) {
4229 return -EINVAL;
4230 } else if (bdrv_recurse_has_child(new_backing_bs, bs)) {
4231 error_setg(errp, "Making '%s' a backing file of '%s' "
4232 "would create a cycle", str, bs->node_name);
4233 return -EINVAL;
4235 break;
4236 default:
4237 /* 'backing' does not allow any other data type */
4238 g_assert_not_reached();
4242 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
4243 * bdrv_reopen_commit() won't fail.
4245 if (new_backing_bs) {
4246 if (!bdrv_reopen_can_attach(bs, bs->backing, new_backing_bs, errp)) {
4247 return -EINVAL;
4252 * Ensure that @bs can really handle backing files, because we are
4253 * about to give it one (or swap the existing one)
4255 if (bs->drv->is_filter) {
4256 /* Filters always have a file or a backing child */
4257 if (!bs->backing) {
4258 error_setg(errp, "'%s' is a %s filter node that does not support a "
4259 "backing child", bs->node_name, bs->drv->format_name);
4260 return -EINVAL;
4262 } else if (!bs->drv->supports_backing) {
4263 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
4264 "files", bs->drv->format_name, bs->node_name);
4265 return -EINVAL;
4269 * Find the "actual" backing file by skipping all links that point
4270 * to an implicit node, if any (e.g. a commit filter node).
4271 * We cannot use any of the bdrv_skip_*() functions here because
4272 * those return the first explicit node, while we are looking for
4273 * its overlay here.
4275 overlay_bs = bs;
4276 for (below_bs = bdrv_filter_or_cow_bs(overlay_bs);
4277 below_bs && below_bs->implicit;
4278 below_bs = bdrv_filter_or_cow_bs(overlay_bs))
4280 overlay_bs = below_bs;
4283 /* If we want to replace the backing file we need some extra checks */
4284 if (new_backing_bs != bdrv_filter_or_cow_bs(overlay_bs)) {
4285 int ret;
4287 /* Check for implicit nodes between bs and its backing file */
4288 if (bs != overlay_bs) {
4289 error_setg(errp, "Cannot change backing link if '%s' has "
4290 "an implicit backing file", bs->node_name);
4291 return -EPERM;
4294 * Check if the backing link that we want to replace is frozen.
4295 * Note that
4296 * bdrv_filter_or_cow_child(overlay_bs) == overlay_bs->backing,
4297 * because we know that overlay_bs == bs, and that @bs
4298 * either is a filter that uses ->backing or a COW format BDS
4299 * with bs->drv->supports_backing == true.
4301 if (bdrv_is_backing_chain_frozen(overlay_bs,
4302 child_bs(overlay_bs->backing), errp))
4304 return -EPERM;
4306 reopen_state->replace_backing_bs = true;
4307 reopen_state->old_backing_bs = bs->backing ? bs->backing->bs : NULL;
4308 ret = bdrv_set_backing_noperm(bs, new_backing_bs, set_backings_tran,
4309 errp);
4310 if (ret < 0) {
4311 return ret;
4315 return 0;
4319 * Prepares a BlockDriverState for reopen. All changes are staged in the
4320 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4321 * the block driver layer .bdrv_reopen_prepare()
4323 * bs is the BlockDriverState to reopen
4324 * flags are the new open flags
4325 * queue is the reopen queue
4327 * Returns 0 on success, non-zero on error. On error errp will be set
4328 * as well.
4330 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4331 * It is the responsibility of the caller to then call the abort() or
4332 * commit() for any other BDS that have been left in a prepare() state
4335 static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
4336 BlockReopenQueue *queue,
4337 Transaction *set_backings_tran, Error **errp)
4339 int ret = -1;
4340 int old_flags;
4341 Error *local_err = NULL;
4342 BlockDriver *drv;
4343 QemuOpts *opts;
4344 QDict *orig_reopen_opts;
4345 char *discard = NULL;
4346 bool read_only;
4347 bool drv_prepared = false;
4349 assert(reopen_state != NULL);
4350 assert(reopen_state->bs->drv != NULL);
4351 drv = reopen_state->bs->drv;
4353 /* This function and each driver's bdrv_reopen_prepare() remove
4354 * entries from reopen_state->options as they are processed, so
4355 * we need to make a copy of the original QDict. */
4356 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4358 /* Process generic block layer options */
4359 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4360 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
4361 ret = -EINVAL;
4362 goto error;
4365 /* This was already called in bdrv_reopen_queue_child() so the flags
4366 * are up-to-date. This time we simply want to remove the options from
4367 * QemuOpts in order to indicate that they have been processed. */
4368 old_flags = reopen_state->flags;
4369 update_flags_from_options(&reopen_state->flags, opts);
4370 assert(old_flags == reopen_state->flags);
4372 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
4373 if (discard != NULL) {
4374 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4375 error_setg(errp, "Invalid discard option");
4376 ret = -EINVAL;
4377 goto error;
4381 reopen_state->detect_zeroes =
4382 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4383 if (local_err) {
4384 error_propagate(errp, local_err);
4385 ret = -EINVAL;
4386 goto error;
4389 /* All other options (including node-name and driver) must be unchanged.
4390 * Put them back into the QDict, so that they are checked at the end
4391 * of this function. */
4392 qemu_opts_to_qdict(opts, reopen_state->options);
4394 /* If we are to stay read-only, do not allow permission change
4395 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4396 * not set, or if the BDS still has copy_on_read enabled */
4397 read_only = !(reopen_state->flags & BDRV_O_RDWR);
4398 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
4399 if (local_err) {
4400 error_propagate(errp, local_err);
4401 goto error;
4404 if (drv->bdrv_reopen_prepare) {
4406 * If a driver-specific option is missing, it means that we
4407 * should reset it to its default value.
4408 * But not all options allow that, so we need to check it first.
4410 ret = bdrv_reset_options_allowed(reopen_state->bs,
4411 reopen_state->options, errp);
4412 if (ret) {
4413 goto error;
4416 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4417 if (ret) {
4418 if (local_err != NULL) {
4419 error_propagate(errp, local_err);
4420 } else {
4421 bdrv_refresh_filename(reopen_state->bs);
4422 error_setg(errp, "failed while preparing to reopen image '%s'",
4423 reopen_state->bs->filename);
4425 goto error;
4427 } else {
4428 /* It is currently mandatory to have a bdrv_reopen_prepare()
4429 * handler for each supported drv. */
4430 error_setg(errp, "Block format '%s' used by node '%s' "
4431 "does not support reopening files", drv->format_name,
4432 bdrv_get_device_or_node_name(reopen_state->bs));
4433 ret = -1;
4434 goto error;
4437 drv_prepared = true;
4440 * We must provide the 'backing' option if the BDS has a backing
4441 * file or if the image file has a backing file name as part of
4442 * its metadata. Otherwise the 'backing' option can be omitted.
4444 if (drv->supports_backing && reopen_state->backing_missing &&
4445 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
4446 error_setg(errp, "backing is missing for '%s'",
4447 reopen_state->bs->node_name);
4448 ret = -EINVAL;
4449 goto error;
4453 * Allow changing the 'backing' option. The new value can be
4454 * either a reference to an existing node (using its node name)
4455 * or NULL to simply detach the current backing file.
4457 ret = bdrv_reopen_parse_backing(reopen_state, set_backings_tran, errp);
4458 if (ret < 0) {
4459 goto error;
4461 qdict_del(reopen_state->options, "backing");
4463 /* Options that are not handled are only okay if they are unchanged
4464 * compared to the old state. It is expected that some options are only
4465 * used for the initial open, but not reopen (e.g. filename) */
4466 if (qdict_size(reopen_state->options)) {
4467 const QDictEntry *entry = qdict_first(reopen_state->options);
4469 do {
4470 QObject *new = entry->value;
4471 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
4473 /* Allow child references (child_name=node_name) as long as they
4474 * point to the current child (i.e. everything stays the same). */
4475 if (qobject_type(new) == QTYPE_QSTRING) {
4476 BdrvChild *child;
4477 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4478 if (!strcmp(child->name, entry->key)) {
4479 break;
4483 if (child) {
4484 if (!strcmp(child->bs->node_name,
4485 qstring_get_str(qobject_to(QString, new)))) {
4486 continue; /* Found child with this name, skip option */
4492 * TODO: When using -drive to specify blockdev options, all values
4493 * will be strings; however, when using -blockdev, blockdev-add or
4494 * filenames using the json:{} pseudo-protocol, they will be
4495 * correctly typed.
4496 * In contrast, reopening options are (currently) always strings
4497 * (because you can only specify them through qemu-io; all other
4498 * callers do not specify any options).
4499 * Therefore, when using anything other than -drive to create a BDS,
4500 * this cannot detect non-string options as unchanged, because
4501 * qobject_is_equal() always returns false for objects of different
4502 * type. In the future, this should be remedied by correctly typing
4503 * all options. For now, this is not too big of an issue because
4504 * the user can simply omit options which cannot be changed anyway,
4505 * so they will stay unchanged.
4507 if (!qobject_is_equal(new, old)) {
4508 error_setg(errp, "Cannot change the option '%s'", entry->key);
4509 ret = -EINVAL;
4510 goto error;
4512 } while ((entry = qdict_next(reopen_state->options, entry)));
4515 ret = 0;
4517 /* Restore the original reopen_state->options QDict */
4518 qobject_unref(reopen_state->options);
4519 reopen_state->options = qobject_ref(orig_reopen_opts);
4521 error:
4522 if (ret < 0 && drv_prepared) {
4523 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4524 * call drv->bdrv_reopen_abort() before signaling an error
4525 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4526 * when the respective bdrv_reopen_prepare() has failed) */
4527 if (drv->bdrv_reopen_abort) {
4528 drv->bdrv_reopen_abort(reopen_state);
4531 qemu_opts_del(opts);
4532 qobject_unref(orig_reopen_opts);
4533 g_free(discard);
4534 return ret;
4538 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4539 * makes them final by swapping the staging BlockDriverState contents into
4540 * the active BlockDriverState contents.
4542 static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
4544 BlockDriver *drv;
4545 BlockDriverState *bs;
4546 BdrvChild *child;
4548 assert(reopen_state != NULL);
4549 bs = reopen_state->bs;
4550 drv = bs->drv;
4551 assert(drv != NULL);
4553 /* If there are any driver level actions to take */
4554 if (drv->bdrv_reopen_commit) {
4555 drv->bdrv_reopen_commit(reopen_state);
4558 /* set BDS specific flags now */
4559 qobject_unref(bs->explicit_options);
4560 qobject_unref(bs->options);
4562 bs->explicit_options = reopen_state->explicit_options;
4563 bs->options = reopen_state->options;
4564 bs->open_flags = reopen_state->flags;
4565 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
4566 bs->detect_zeroes = reopen_state->detect_zeroes;
4568 if (reopen_state->replace_backing_bs) {
4569 qdict_del(bs->explicit_options, "backing");
4570 qdict_del(bs->options, "backing");
4573 /* Remove child references from bs->options and bs->explicit_options.
4574 * Child options were already removed in bdrv_reopen_queue_child() */
4575 QLIST_FOREACH(child, &bs->children, next) {
4576 qdict_del(bs->explicit_options, child->name);
4577 qdict_del(bs->options, child->name);
4579 bdrv_refresh_limits(bs, NULL, NULL);
4583 * Abort the reopen, and delete and free the staged changes in
4584 * reopen_state
4586 static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
4588 BlockDriver *drv;
4590 assert(reopen_state != NULL);
4591 drv = reopen_state->bs->drv;
4592 assert(drv != NULL);
4594 if (drv->bdrv_reopen_abort) {
4595 drv->bdrv_reopen_abort(reopen_state);
4600 static void bdrv_close(BlockDriverState *bs)
4602 BdrvAioNotifier *ban, *ban_next;
4603 BdrvChild *child, *next;
4605 assert(!bs->refcnt);
4607 bdrv_drained_begin(bs); /* complete I/O */
4608 bdrv_flush(bs);
4609 bdrv_drain(bs); /* in case flush left pending I/O */
4611 if (bs->drv) {
4612 if (bs->drv->bdrv_close) {
4613 /* Must unfreeze all children, so bdrv_unref_child() works */
4614 bs->drv->bdrv_close(bs);
4616 bs->drv = NULL;
4619 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
4620 bdrv_unref_child(bs, child);
4623 bs->backing = NULL;
4624 bs->file = NULL;
4625 g_free(bs->opaque);
4626 bs->opaque = NULL;
4627 qatomic_set(&bs->copy_on_read, 0);
4628 bs->backing_file[0] = '\0';
4629 bs->backing_format[0] = '\0';
4630 bs->total_sectors = 0;
4631 bs->encrypted = false;
4632 bs->sg = false;
4633 qobject_unref(bs->options);
4634 qobject_unref(bs->explicit_options);
4635 bs->options = NULL;
4636 bs->explicit_options = NULL;
4637 qobject_unref(bs->full_open_options);
4638 bs->full_open_options = NULL;
4640 bdrv_release_named_dirty_bitmaps(bs);
4641 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4643 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4644 g_free(ban);
4646 QLIST_INIT(&bs->aio_notifiers);
4647 bdrv_drained_end(bs);
4650 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4651 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4652 * gets called.
4654 if (bs->quiesce_counter) {
4655 bdrv_drain_all_end_quiesce(bs);
4659 void bdrv_close_all(void)
4661 assert(job_next(NULL) == NULL);
4663 /* Drop references from requests still in flight, such as canceled block
4664 * jobs whose AIO context has not been polled yet */
4665 bdrv_drain_all();
4667 blk_remove_all_bs();
4668 blockdev_close_all_bdrv_states();
4670 assert(QTAILQ_EMPTY(&all_bdrv_states));
4673 static bool should_update_child(BdrvChild *c, BlockDriverState *to)
4675 GQueue *queue;
4676 GHashTable *found;
4677 bool ret;
4679 if (c->klass->stay_at_node) {
4680 return false;
4683 /* If the child @c belongs to the BDS @to, replacing the current
4684 * c->bs by @to would mean to create a loop.
4686 * Such a case occurs when appending a BDS to a backing chain.
4687 * For instance, imagine the following chain:
4689 * guest device -> node A -> further backing chain...
4691 * Now we create a new BDS B which we want to put on top of this
4692 * chain, so we first attach A as its backing node:
4694 * node B
4697 * guest device -> node A -> further backing chain...
4699 * Finally we want to replace A by B. When doing that, we want to
4700 * replace all pointers to A by pointers to B -- except for the
4701 * pointer from B because (1) that would create a loop, and (2)
4702 * that pointer should simply stay intact:
4704 * guest device -> node B
4707 * node A -> further backing chain...
4709 * In general, when replacing a node A (c->bs) by a node B (@to),
4710 * if A is a child of B, that means we cannot replace A by B there
4711 * because that would create a loop. Silently detaching A from B
4712 * is also not really an option. So overall just leaving A in
4713 * place there is the most sensible choice.
4715 * We would also create a loop in any cases where @c is only
4716 * indirectly referenced by @to. Prevent this by returning false
4717 * if @c is found (by breadth-first search) anywhere in the whole
4718 * subtree of @to.
4721 ret = true;
4722 found = g_hash_table_new(NULL, NULL);
4723 g_hash_table_add(found, to);
4724 queue = g_queue_new();
4725 g_queue_push_tail(queue, to);
4727 while (!g_queue_is_empty(queue)) {
4728 BlockDriverState *v = g_queue_pop_head(queue);
4729 BdrvChild *c2;
4731 QLIST_FOREACH(c2, &v->children, next) {
4732 if (c2 == c) {
4733 ret = false;
4734 break;
4737 if (g_hash_table_contains(found, c2->bs)) {
4738 continue;
4741 g_queue_push_tail(queue, c2->bs);
4742 g_hash_table_add(found, c2->bs);
4746 g_queue_free(queue);
4747 g_hash_table_destroy(found);
4749 return ret;
4752 typedef struct BdrvRemoveFilterOrCowChild {
4753 BdrvChild *child;
4754 bool is_backing;
4755 } BdrvRemoveFilterOrCowChild;
4757 static void bdrv_remove_filter_or_cow_child_abort(void *opaque)
4759 BdrvRemoveFilterOrCowChild *s = opaque;
4760 BlockDriverState *parent_bs = s->child->opaque;
4762 QLIST_INSERT_HEAD(&parent_bs->children, s->child, next);
4763 if (s->is_backing) {
4764 parent_bs->backing = s->child;
4765 } else {
4766 parent_bs->file = s->child;
4770 * We don't have to restore child->bs here to undo bdrv_replace_child()
4771 * because that function is transactionable and it registered own completion
4772 * entries in @tran, so .abort() for bdrv_replace_child_safe() will be
4773 * called automatically.
4777 static void bdrv_remove_filter_or_cow_child_commit(void *opaque)
4779 BdrvRemoveFilterOrCowChild *s = opaque;
4781 bdrv_child_free(s->child);
4784 static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = {
4785 .abort = bdrv_remove_filter_or_cow_child_abort,
4786 .commit = bdrv_remove_filter_or_cow_child_commit,
4787 .clean = g_free,
4791 * A function to remove backing-chain child of @bs if exists: cow child for
4792 * format nodes (always .backing) and filter child for filters (may be .file or
4793 * .backing)
4795 static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
4796 Transaction *tran)
4798 BdrvRemoveFilterOrCowChild *s;
4799 BdrvChild *child = bdrv_filter_or_cow_child(bs);
4801 if (!child) {
4802 return;
4805 if (child->bs) {
4806 bdrv_replace_child_safe(child, NULL, tran);
4809 s = g_new(BdrvRemoveFilterOrCowChild, 1);
4810 *s = (BdrvRemoveFilterOrCowChild) {
4811 .child = child,
4812 .is_backing = (child == bs->backing),
4814 tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s);
4816 QLIST_SAFE_REMOVE(child, next);
4817 if (s->is_backing) {
4818 bs->backing = NULL;
4819 } else {
4820 bs->file = NULL;
4824 static int bdrv_replace_node_noperm(BlockDriverState *from,
4825 BlockDriverState *to,
4826 bool auto_skip, Transaction *tran,
4827 Error **errp)
4829 BdrvChild *c, *next;
4831 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
4832 assert(c->bs == from);
4833 if (!should_update_child(c, to)) {
4834 if (auto_skip) {
4835 continue;
4837 error_setg(errp, "Should not change '%s' link to '%s'",
4838 c->name, from->node_name);
4839 return -EINVAL;
4841 if (c->frozen) {
4842 error_setg(errp, "Cannot change '%s' link to '%s'",
4843 c->name, from->node_name);
4844 return -EPERM;
4846 bdrv_replace_child_safe(c, to, tran);
4849 return 0;
4853 * With auto_skip=true bdrv_replace_node_common skips updating from parents
4854 * if it creates a parent-child relation loop or if parent is block-job.
4856 * With auto_skip=false the error is returned if from has a parent which should
4857 * not be updated.
4859 * With @detach_subchain=true @to must be in a backing chain of @from. In this
4860 * case backing link of the cow-parent of @to is removed.
4862 static int bdrv_replace_node_common(BlockDriverState *from,
4863 BlockDriverState *to,
4864 bool auto_skip, bool detach_subchain,
4865 Error **errp)
4867 Transaction *tran = tran_new();
4868 g_autoptr(GHashTable) found = NULL;
4869 g_autoptr(GSList) refresh_list = NULL;
4870 BlockDriverState *to_cow_parent;
4871 int ret;
4873 if (detach_subchain) {
4874 assert(bdrv_chain_contains(from, to));
4875 assert(from != to);
4876 for (to_cow_parent = from;
4877 bdrv_filter_or_cow_bs(to_cow_parent) != to;
4878 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
4884 /* Make sure that @from doesn't go away until we have successfully attached
4885 * all of its parents to @to. */
4886 bdrv_ref(from);
4888 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
4889 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
4890 bdrv_drained_begin(from);
4893 * Do the replacement without permission update.
4894 * Replacement may influence the permissions, we should calculate new
4895 * permissions based on new graph. If we fail, we'll roll-back the
4896 * replacement.
4898 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
4899 if (ret < 0) {
4900 goto out;
4903 if (detach_subchain) {
4904 bdrv_remove_filter_or_cow_child(to_cow_parent, tran);
4907 found = g_hash_table_new(NULL, NULL);
4909 refresh_list = bdrv_topological_dfs(refresh_list, found, to);
4910 refresh_list = bdrv_topological_dfs(refresh_list, found, from);
4912 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
4913 if (ret < 0) {
4914 goto out;
4917 ret = 0;
4919 out:
4920 tran_finalize(tran, ret);
4922 bdrv_drained_end(from);
4923 bdrv_unref(from);
4925 return ret;
4928 int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
4929 Error **errp)
4931 return bdrv_replace_node_common(from, to, true, false, errp);
4934 int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
4936 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
4937 errp);
4941 * Add new bs contents at the top of an image chain while the chain is
4942 * live, while keeping required fields on the top layer.
4944 * This will modify the BlockDriverState fields, and swap contents
4945 * between bs_new and bs_top. Both bs_new and bs_top are modified.
4947 * bs_new must not be attached to a BlockBackend and must not have backing
4948 * child.
4950 * This function does not create any image files.
4952 int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
4953 Error **errp)
4955 int ret;
4956 Transaction *tran = tran_new();
4958 assert(!bs_new->backing);
4960 ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
4961 &child_of_bds, bdrv_backing_role(bs_new),
4962 &bs_new->backing, tran, errp);
4963 if (ret < 0) {
4964 goto out;
4967 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
4968 if (ret < 0) {
4969 goto out;
4972 ret = bdrv_refresh_perms(bs_new, errp);
4973 out:
4974 tran_finalize(tran, ret);
4976 bdrv_refresh_limits(bs_top, NULL, NULL);
4978 return ret;
4981 static void bdrv_delete(BlockDriverState *bs)
4983 assert(bdrv_op_blocker_is_empty(bs));
4984 assert(!bs->refcnt);
4986 /* remove from list, if necessary */
4987 if (bs->node_name[0] != '\0') {
4988 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
4990 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
4992 bdrv_close(bs);
4994 g_free(bs);
4997 BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *node_options,
4998 int flags, Error **errp)
5000 BlockDriverState *new_node_bs;
5001 Error *local_err = NULL;
5003 new_node_bs = bdrv_open(NULL, NULL, node_options, flags, errp);
5004 if (new_node_bs == NULL) {
5005 error_prepend(errp, "Could not create node: ");
5006 return NULL;
5009 bdrv_drained_begin(bs);
5010 bdrv_replace_node(bs, new_node_bs, &local_err);
5011 bdrv_drained_end(bs);
5013 if (local_err) {
5014 bdrv_unref(new_node_bs);
5015 error_propagate(errp, local_err);
5016 return NULL;
5019 return new_node_bs;
5023 * Run consistency checks on an image
5025 * Returns 0 if the check could be completed (it doesn't mean that the image is
5026 * free of errors) or -errno when an internal error occurred. The results of the
5027 * check are stored in res.
5029 int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5030 BdrvCheckResult *res, BdrvCheckMode fix)
5032 if (bs->drv == NULL) {
5033 return -ENOMEDIUM;
5035 if (bs->drv->bdrv_co_check == NULL) {
5036 return -ENOTSUP;
5039 memset(res, 0, sizeof(*res));
5040 return bs->drv->bdrv_co_check(bs, res, fix);
5044 * Return values:
5045 * 0 - success
5046 * -EINVAL - backing format specified, but no file
5047 * -ENOSPC - can't update the backing file because no space is left in the
5048 * image file header
5049 * -ENOTSUP - format driver doesn't support changing the backing file
5051 int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
5052 const char *backing_fmt, bool warn)
5054 BlockDriver *drv = bs->drv;
5055 int ret;
5057 if (!drv) {
5058 return -ENOMEDIUM;
5061 /* Backing file format doesn't make sense without a backing file */
5062 if (backing_fmt && !backing_file) {
5063 return -EINVAL;
5066 if (warn && backing_file && !backing_fmt) {
5067 warn_report("Deprecated use of backing file without explicit "
5068 "backing format, use of this image requires "
5069 "potentially unsafe format probing");
5072 if (drv->bdrv_change_backing_file != NULL) {
5073 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
5074 } else {
5075 ret = -ENOTSUP;
5078 if (ret == 0) {
5079 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5080 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
5081 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5082 backing_file ?: "");
5084 return ret;
5088 * Finds the first non-filter node above bs in the chain between
5089 * active and bs. The returned node is either an immediate parent of
5090 * bs, or there are only filter nodes between the two.
5092 * Returns NULL if bs is not found in active's image chain,
5093 * or if active == bs.
5095 * Returns the bottommost base image if bs == NULL.
5097 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5098 BlockDriverState *bs)
5100 bs = bdrv_skip_filters(bs);
5101 active = bdrv_skip_filters(active);
5103 while (active) {
5104 BlockDriverState *next = bdrv_backing_chain_next(active);
5105 if (bs == next) {
5106 return active;
5108 active = next;
5111 return NULL;
5114 /* Given a BDS, searches for the base layer. */
5115 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5117 return bdrv_find_overlay(bs, NULL);
5121 * Return true if at least one of the COW (backing) and filter links
5122 * between @bs and @base is frozen. @errp is set if that's the case.
5123 * @base must be reachable from @bs, or NULL.
5125 bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5126 Error **errp)
5128 BlockDriverState *i;
5129 BdrvChild *child;
5131 for (i = bs; i != base; i = child_bs(child)) {
5132 child = bdrv_filter_or_cow_child(i);
5134 if (child && child->frozen) {
5135 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
5136 child->name, i->node_name, child->bs->node_name);
5137 return true;
5141 return false;
5145 * Freeze all COW (backing) and filter links between @bs and @base.
5146 * If any of the links is already frozen the operation is aborted and
5147 * none of the links are modified.
5148 * @base must be reachable from @bs, or NULL.
5149 * Returns 0 on success. On failure returns < 0 and sets @errp.
5151 int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5152 Error **errp)
5154 BlockDriverState *i;
5155 BdrvChild *child;
5157 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5158 return -EPERM;
5161 for (i = bs; i != base; i = child_bs(child)) {
5162 child = bdrv_filter_or_cow_child(i);
5163 if (child && child->bs->never_freeze) {
5164 error_setg(errp, "Cannot freeze '%s' link to '%s'",
5165 child->name, child->bs->node_name);
5166 return -EPERM;
5170 for (i = bs; i != base; i = child_bs(child)) {
5171 child = bdrv_filter_or_cow_child(i);
5172 if (child) {
5173 child->frozen = true;
5177 return 0;
5181 * Unfreeze all COW (backing) and filter links between @bs and @base.
5182 * The caller must ensure that all links are frozen before using this
5183 * function.
5184 * @base must be reachable from @bs, or NULL.
5186 void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5188 BlockDriverState *i;
5189 BdrvChild *child;
5191 for (i = bs; i != base; i = child_bs(child)) {
5192 child = bdrv_filter_or_cow_child(i);
5193 if (child) {
5194 assert(child->frozen);
5195 child->frozen = false;
5201 * Drops images above 'base' up to and including 'top', and sets the image
5202 * above 'top' to have base as its backing file.
5204 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5205 * information in 'bs' can be properly updated.
5207 * E.g., this will convert the following chain:
5208 * bottom <- base <- intermediate <- top <- active
5210 * to
5212 * bottom <- base <- active
5214 * It is allowed for bottom==base, in which case it converts:
5216 * base <- intermediate <- top <- active
5218 * to
5220 * base <- active
5222 * If backing_file_str is non-NULL, it will be used when modifying top's
5223 * overlay image metadata.
5225 * Error conditions:
5226 * if active == top, that is considered an error
5229 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5230 const char *backing_file_str)
5232 BlockDriverState *explicit_top = top;
5233 bool update_inherits_from;
5234 BdrvChild *c;
5235 Error *local_err = NULL;
5236 int ret = -EIO;
5237 g_autoptr(GSList) updated_children = NULL;
5238 GSList *p;
5240 bdrv_ref(top);
5241 bdrv_subtree_drained_begin(top);
5243 if (!top->drv || !base->drv) {
5244 goto exit;
5247 /* Make sure that base is in the backing chain of top */
5248 if (!bdrv_chain_contains(top, base)) {
5249 goto exit;
5252 /* If 'base' recursively inherits from 'top' then we should set
5253 * base->inherits_from to top->inherits_from after 'top' and all
5254 * other intermediate nodes have been dropped.
5255 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5256 * it because no one inherits from it. We use explicit_top for that. */
5257 explicit_top = bdrv_skip_implicit_filters(explicit_top);
5258 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5260 /* success - we can delete the intermediate states, and link top->base */
5261 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
5262 * we've figured out how they should work. */
5263 if (!backing_file_str) {
5264 bdrv_refresh_filename(base);
5265 backing_file_str = base->filename;
5268 QLIST_FOREACH(c, &top->parents, next_parent) {
5269 updated_children = g_slist_prepend(updated_children, c);
5273 * It seems correct to pass detach_subchain=true here, but it triggers
5274 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5275 * another drained section, which modify the graph (for example, removing
5276 * the child, which we keep in updated_children list). So, it's a TODO.
5278 * Note, bug triggered if pass detach_subchain=true here and run
5279 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5280 * That's a FIXME.
5282 bdrv_replace_node_common(top, base, false, false, &local_err);
5283 if (local_err) {
5284 error_report_err(local_err);
5285 goto exit;
5288 for (p = updated_children; p; p = p->next) {
5289 c = p->data;
5291 if (c->klass->update_filename) {
5292 ret = c->klass->update_filename(c, base, backing_file_str,
5293 &local_err);
5294 if (ret < 0) {
5296 * TODO: Actually, we want to rollback all previous iterations
5297 * of this loop, and (which is almost impossible) previous
5298 * bdrv_replace_node()...
5300 * Note, that c->klass->update_filename may lead to permission
5301 * update, so it's a bad idea to call it inside permission
5302 * update transaction of bdrv_replace_node.
5304 error_report_err(local_err);
5305 goto exit;
5310 if (update_inherits_from) {
5311 base->inherits_from = explicit_top->inherits_from;
5314 ret = 0;
5315 exit:
5316 bdrv_subtree_drained_end(top);
5317 bdrv_unref(top);
5318 return ret;
5322 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5323 * sums the size of all data-bearing children. (This excludes backing
5324 * children.)
5326 static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5328 BdrvChild *child;
5329 int64_t child_size, sum = 0;
5331 QLIST_FOREACH(child, &bs->children, next) {
5332 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5333 BDRV_CHILD_FILTERED))
5335 child_size = bdrv_get_allocated_file_size(child->bs);
5336 if (child_size < 0) {
5337 return child_size;
5339 sum += child_size;
5343 return sum;
5347 * Length of a allocated file in bytes. Sparse files are counted by actual
5348 * allocated space. Return < 0 if error or unknown.
5350 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5352 BlockDriver *drv = bs->drv;
5353 if (!drv) {
5354 return -ENOMEDIUM;
5356 if (drv->bdrv_get_allocated_file_size) {
5357 return drv->bdrv_get_allocated_file_size(bs);
5360 if (drv->bdrv_file_open) {
5362 * Protocol drivers default to -ENOTSUP (most of their data is
5363 * not stored in any of their children (if they even have any),
5364 * so there is no generic way to figure it out).
5366 return -ENOTSUP;
5367 } else if (drv->is_filter) {
5368 /* Filter drivers default to the size of their filtered child */
5369 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5370 } else {
5371 /* Other drivers default to summing their children's sizes */
5372 return bdrv_sum_allocated_file_size(bs);
5377 * bdrv_measure:
5378 * @drv: Format driver
5379 * @opts: Creation options for new image
5380 * @in_bs: Existing image containing data for new image (may be NULL)
5381 * @errp: Error object
5382 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5383 * or NULL on error
5385 * Calculate file size required to create a new image.
5387 * If @in_bs is given then space for allocated clusters and zero clusters
5388 * from that image are included in the calculation. If @opts contains a
5389 * backing file that is shared by @in_bs then backing clusters may be omitted
5390 * from the calculation.
5392 * If @in_bs is NULL then the calculation includes no allocated clusters
5393 * unless a preallocation option is given in @opts.
5395 * Note that @in_bs may use a different BlockDriver from @drv.
5397 * If an error occurs the @errp pointer is set.
5399 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5400 BlockDriverState *in_bs, Error **errp)
5402 if (!drv->bdrv_measure) {
5403 error_setg(errp, "Block driver '%s' does not support size measurement",
5404 drv->format_name);
5405 return NULL;
5408 return drv->bdrv_measure(opts, in_bs, errp);
5412 * Return number of sectors on success, -errno on error.
5414 int64_t bdrv_nb_sectors(BlockDriverState *bs)
5416 BlockDriver *drv = bs->drv;
5418 if (!drv)
5419 return -ENOMEDIUM;
5421 if (drv->has_variable_length) {
5422 int ret = refresh_total_sectors(bs, bs->total_sectors);
5423 if (ret < 0) {
5424 return ret;
5427 return bs->total_sectors;
5431 * Return length in bytes on success, -errno on error.
5432 * The length is always a multiple of BDRV_SECTOR_SIZE.
5434 int64_t bdrv_getlength(BlockDriverState *bs)
5436 int64_t ret = bdrv_nb_sectors(bs);
5438 if (ret < 0) {
5439 return ret;
5441 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5442 return -EFBIG;
5444 return ret * BDRV_SECTOR_SIZE;
5447 /* return 0 as number of sectors if no device present or error */
5448 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
5450 int64_t nb_sectors = bdrv_nb_sectors(bs);
5452 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
5455 bool bdrv_is_sg(BlockDriverState *bs)
5457 return bs->sg;
5461 * Return whether the given node supports compressed writes.
5463 bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5465 BlockDriverState *filtered;
5467 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5468 return false;
5471 filtered = bdrv_filter_bs(bs);
5472 if (filtered) {
5474 * Filters can only forward compressed writes, so we have to
5475 * check the child.
5477 return bdrv_supports_compressed_writes(filtered);
5480 return true;
5483 const char *bdrv_get_format_name(BlockDriverState *bs)
5485 return bs->drv ? bs->drv->format_name : NULL;
5488 static int qsort_strcmp(const void *a, const void *b)
5490 return strcmp(*(char *const *)a, *(char *const *)b);
5493 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
5494 void *opaque, bool read_only)
5496 BlockDriver *drv;
5497 int count = 0;
5498 int i;
5499 const char **formats = NULL;
5501 QLIST_FOREACH(drv, &bdrv_drivers, list) {
5502 if (drv->format_name) {
5503 bool found = false;
5504 int i = count;
5506 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5507 continue;
5510 while (formats && i && !found) {
5511 found = !strcmp(formats[--i], drv->format_name);
5514 if (!found) {
5515 formats = g_renew(const char *, formats, count + 1);
5516 formats[count++] = drv->format_name;
5521 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5522 const char *format_name = block_driver_modules[i].format_name;
5524 if (format_name) {
5525 bool found = false;
5526 int j = count;
5528 if (use_bdrv_whitelist &&
5529 !bdrv_format_is_whitelisted(format_name, read_only)) {
5530 continue;
5533 while (formats && j && !found) {
5534 found = !strcmp(formats[--j], format_name);
5537 if (!found) {
5538 formats = g_renew(const char *, formats, count + 1);
5539 formats[count++] = format_name;
5544 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5546 for (i = 0; i < count; i++) {
5547 it(opaque, formats[i]);
5550 g_free(formats);
5553 /* This function is to find a node in the bs graph */
5554 BlockDriverState *bdrv_find_node(const char *node_name)
5556 BlockDriverState *bs;
5558 assert(node_name);
5560 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5561 if (!strcmp(node_name, bs->node_name)) {
5562 return bs;
5565 return NULL;
5568 /* Put this QMP function here so it can access the static graph_bdrv_states. */
5569 BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5570 Error **errp)
5572 BlockDeviceInfoList *list;
5573 BlockDriverState *bs;
5575 list = NULL;
5576 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5577 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
5578 if (!info) {
5579 qapi_free_BlockDeviceInfoList(list);
5580 return NULL;
5582 QAPI_LIST_PREPEND(list, info);
5585 return list;
5588 typedef struct XDbgBlockGraphConstructor {
5589 XDbgBlockGraph *graph;
5590 GHashTable *graph_nodes;
5591 } XDbgBlockGraphConstructor;
5593 static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5595 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5597 gr->graph = g_new0(XDbgBlockGraph, 1);
5598 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5600 return gr;
5603 static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5605 XDbgBlockGraph *graph = gr->graph;
5607 g_hash_table_destroy(gr->graph_nodes);
5608 g_free(gr);
5610 return graph;
5613 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5615 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5617 if (ret != 0) {
5618 return ret;
5622 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5623 * answer of g_hash_table_lookup.
5625 ret = g_hash_table_size(gr->graph_nodes) + 1;
5626 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5628 return ret;
5631 static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5632 XDbgBlockGraphNodeType type, const char *name)
5634 XDbgBlockGraphNode *n;
5636 n = g_new0(XDbgBlockGraphNode, 1);
5638 n->id = xdbg_graph_node_num(gr, node);
5639 n->type = type;
5640 n->name = g_strdup(name);
5642 QAPI_LIST_PREPEND(gr->graph->nodes, n);
5645 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5646 const BdrvChild *child)
5648 BlockPermission qapi_perm;
5649 XDbgBlockGraphEdge *edge;
5651 edge = g_new0(XDbgBlockGraphEdge, 1);
5653 edge->parent = xdbg_graph_node_num(gr, parent);
5654 edge->child = xdbg_graph_node_num(gr, child->bs);
5655 edge->name = g_strdup(child->name);
5657 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5658 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5660 if (flag & child->perm) {
5661 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
5663 if (flag & child->shared_perm) {
5664 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
5668 QAPI_LIST_PREPEND(gr->graph->edges, edge);
5672 XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5674 BlockBackend *blk;
5675 BlockJob *job;
5676 BlockDriverState *bs;
5677 BdrvChild *child;
5678 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5680 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5681 char *allocated_name = NULL;
5682 const char *name = blk_name(blk);
5684 if (!*name) {
5685 name = allocated_name = blk_get_attached_dev_id(blk);
5687 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5688 name);
5689 g_free(allocated_name);
5690 if (blk_root(blk)) {
5691 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5695 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5696 GSList *el;
5698 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5699 job->job.id);
5700 for (el = job->nodes; el; el = el->next) {
5701 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5705 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5706 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5707 bs->node_name);
5708 QLIST_FOREACH(child, &bs->children, next) {
5709 xdbg_graph_add_edge(gr, bs, child);
5713 return xdbg_graph_finalize(gr);
5716 BlockDriverState *bdrv_lookup_bs(const char *device,
5717 const char *node_name,
5718 Error **errp)
5720 BlockBackend *blk;
5721 BlockDriverState *bs;
5723 if (device) {
5724 blk = blk_by_name(device);
5726 if (blk) {
5727 bs = blk_bs(blk);
5728 if (!bs) {
5729 error_setg(errp, "Device '%s' has no medium", device);
5732 return bs;
5736 if (node_name) {
5737 bs = bdrv_find_node(node_name);
5739 if (bs) {
5740 return bs;
5744 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
5745 device ? device : "",
5746 node_name ? node_name : "");
5747 return NULL;
5750 /* If 'base' is in the same chain as 'top', return true. Otherwise,
5751 * return false. If either argument is NULL, return false. */
5752 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
5754 while (top && top != base) {
5755 top = bdrv_filter_or_cow_bs(top);
5758 return top != NULL;
5761 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
5763 if (!bs) {
5764 return QTAILQ_FIRST(&graph_bdrv_states);
5766 return QTAILQ_NEXT(bs, node_list);
5769 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
5771 if (!bs) {
5772 return QTAILQ_FIRST(&all_bdrv_states);
5774 return QTAILQ_NEXT(bs, bs_list);
5777 const char *bdrv_get_node_name(const BlockDriverState *bs)
5779 return bs->node_name;
5782 const char *bdrv_get_parent_name(const BlockDriverState *bs)
5784 BdrvChild *c;
5785 const char *name;
5787 /* If multiple parents have a name, just pick the first one. */
5788 QLIST_FOREACH(c, &bs->parents, next_parent) {
5789 if (c->klass->get_name) {
5790 name = c->klass->get_name(c);
5791 if (name && *name) {
5792 return name;
5797 return NULL;
5800 /* TODO check what callers really want: bs->node_name or blk_name() */
5801 const char *bdrv_get_device_name(const BlockDriverState *bs)
5803 return bdrv_get_parent_name(bs) ?: "";
5806 /* This can be used to identify nodes that might not have a device
5807 * name associated. Since node and device names live in the same
5808 * namespace, the result is unambiguous. The exception is if both are
5809 * absent, then this returns an empty (non-null) string. */
5810 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
5812 return bdrv_get_parent_name(bs) ?: bs->node_name;
5815 int bdrv_get_flags(BlockDriverState *bs)
5817 return bs->open_flags;
5820 int bdrv_has_zero_init_1(BlockDriverState *bs)
5822 return 1;
5825 int bdrv_has_zero_init(BlockDriverState *bs)
5827 BlockDriverState *filtered;
5829 if (!bs->drv) {
5830 return 0;
5833 /* If BS is a copy on write image, it is initialized to
5834 the contents of the base image, which may not be zeroes. */
5835 if (bdrv_cow_child(bs)) {
5836 return 0;
5838 if (bs->drv->bdrv_has_zero_init) {
5839 return bs->drv->bdrv_has_zero_init(bs);
5842 filtered = bdrv_filter_bs(bs);
5843 if (filtered) {
5844 return bdrv_has_zero_init(filtered);
5847 /* safe default */
5848 return 0;
5851 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
5853 if (!(bs->open_flags & BDRV_O_UNMAP)) {
5854 return false;
5857 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
5860 void bdrv_get_backing_filename(BlockDriverState *bs,
5861 char *filename, int filename_size)
5863 pstrcpy(filename, filename_size, bs->backing_file);
5866 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5868 int ret;
5869 BlockDriver *drv = bs->drv;
5870 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
5871 if (!drv) {
5872 return -ENOMEDIUM;
5874 if (!drv->bdrv_get_info) {
5875 BlockDriverState *filtered = bdrv_filter_bs(bs);
5876 if (filtered) {
5877 return bdrv_get_info(filtered, bdi);
5879 return -ENOTSUP;
5881 memset(bdi, 0, sizeof(*bdi));
5882 ret = drv->bdrv_get_info(bs, bdi);
5883 if (ret < 0) {
5884 return ret;
5887 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
5888 return -EINVAL;
5891 return 0;
5894 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
5895 Error **errp)
5897 BlockDriver *drv = bs->drv;
5898 if (drv && drv->bdrv_get_specific_info) {
5899 return drv->bdrv_get_specific_info(bs, errp);
5901 return NULL;
5904 BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
5906 BlockDriver *drv = bs->drv;
5907 if (!drv || !drv->bdrv_get_specific_stats) {
5908 return NULL;
5910 return drv->bdrv_get_specific_stats(bs);
5913 void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
5915 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
5916 return;
5919 bs->drv->bdrv_debug_event(bs, event);
5922 static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
5924 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
5925 bs = bdrv_primary_bs(bs);
5928 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
5929 assert(bs->drv->bdrv_debug_remove_breakpoint);
5930 return bs;
5933 return NULL;
5936 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
5937 const char *tag)
5939 bs = bdrv_find_debug_node(bs);
5940 if (bs) {
5941 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
5944 return -ENOTSUP;
5947 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
5949 bs = bdrv_find_debug_node(bs);
5950 if (bs) {
5951 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
5954 return -ENOTSUP;
5957 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
5959 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
5960 bs = bdrv_primary_bs(bs);
5963 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
5964 return bs->drv->bdrv_debug_resume(bs, tag);
5967 return -ENOTSUP;
5970 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
5972 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
5973 bs = bdrv_primary_bs(bs);
5976 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
5977 return bs->drv->bdrv_debug_is_suspended(bs, tag);
5980 return false;
5983 /* backing_file can either be relative, or absolute, or a protocol. If it is
5984 * relative, it must be relative to the chain. So, passing in bs->filename
5985 * from a BDS as backing_file should not be done, as that may be relative to
5986 * the CWD rather than the chain. */
5987 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
5988 const char *backing_file)
5990 char *filename_full = NULL;
5991 char *backing_file_full = NULL;
5992 char *filename_tmp = NULL;
5993 int is_protocol = 0;
5994 bool filenames_refreshed = false;
5995 BlockDriverState *curr_bs = NULL;
5996 BlockDriverState *retval = NULL;
5997 BlockDriverState *bs_below;
5999 if (!bs || !bs->drv || !backing_file) {
6000 return NULL;
6003 filename_full = g_malloc(PATH_MAX);
6004 backing_file_full = g_malloc(PATH_MAX);
6006 is_protocol = path_has_protocol(backing_file);
6009 * Being largely a legacy function, skip any filters here
6010 * (because filters do not have normal filenames, so they cannot
6011 * match anyway; and allowing json:{} filenames is a bit out of
6012 * scope).
6014 for (curr_bs = bdrv_skip_filters(bs);
6015 bdrv_cow_child(curr_bs) != NULL;
6016 curr_bs = bs_below)
6018 bs_below = bdrv_backing_chain_next(curr_bs);
6020 if (bdrv_backing_overridden(curr_bs)) {
6022 * If the backing file was overridden, we can only compare
6023 * directly against the backing node's filename.
6026 if (!filenames_refreshed) {
6028 * This will automatically refresh all of the
6029 * filenames in the rest of the backing chain, so we
6030 * only need to do this once.
6032 bdrv_refresh_filename(bs_below);
6033 filenames_refreshed = true;
6036 if (strcmp(backing_file, bs_below->filename) == 0) {
6037 retval = bs_below;
6038 break;
6040 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6042 * If either of the filename paths is actually a protocol, then
6043 * compare unmodified paths; otherwise make paths relative.
6045 char *backing_file_full_ret;
6047 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
6048 retval = bs_below;
6049 break;
6051 /* Also check against the full backing filename for the image */
6052 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6053 NULL);
6054 if (backing_file_full_ret) {
6055 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6056 g_free(backing_file_full_ret);
6057 if (equal) {
6058 retval = bs_below;
6059 break;
6062 } else {
6063 /* If not an absolute filename path, make it relative to the current
6064 * image's filename path */
6065 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6066 NULL);
6067 /* We are going to compare canonicalized absolute pathnames */
6068 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6069 g_free(filename_tmp);
6070 continue;
6072 g_free(filename_tmp);
6074 /* We need to make sure the backing filename we are comparing against
6075 * is relative to the current image filename (or absolute) */
6076 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6077 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6078 g_free(filename_tmp);
6079 continue;
6081 g_free(filename_tmp);
6083 if (strcmp(backing_file_full, filename_full) == 0) {
6084 retval = bs_below;
6085 break;
6090 g_free(filename_full);
6091 g_free(backing_file_full);
6092 return retval;
6095 void bdrv_init(void)
6097 module_call_init(MODULE_INIT_BLOCK);
6100 void bdrv_init_with_whitelist(void)
6102 use_bdrv_whitelist = 1;
6103 bdrv_init();
6106 int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
6108 BdrvChild *child, *parent;
6109 Error *local_err = NULL;
6110 int ret;
6111 BdrvDirtyBitmap *bm;
6113 if (!bs->drv) {
6114 return -ENOMEDIUM;
6117 QLIST_FOREACH(child, &bs->children, next) {
6118 bdrv_co_invalidate_cache(child->bs, &local_err);
6119 if (local_err) {
6120 error_propagate(errp, local_err);
6121 return -EINVAL;
6126 * Update permissions, they may differ for inactive nodes.
6128 * Note that the required permissions of inactive images are always a
6129 * subset of the permissions required after activating the image. This
6130 * allows us to just get the permissions upfront without restricting
6131 * drv->bdrv_invalidate_cache().
6133 * It also means that in error cases, we don't have to try and revert to
6134 * the old permissions (which is an operation that could fail, too). We can
6135 * just keep the extended permissions for the next time that an activation
6136 * of the image is tried.
6138 if (bs->open_flags & BDRV_O_INACTIVE) {
6139 bs->open_flags &= ~BDRV_O_INACTIVE;
6140 ret = bdrv_refresh_perms(bs, errp);
6141 if (ret < 0) {
6142 bs->open_flags |= BDRV_O_INACTIVE;
6143 return ret;
6146 if (bs->drv->bdrv_co_invalidate_cache) {
6147 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6148 if (local_err) {
6149 bs->open_flags |= BDRV_O_INACTIVE;
6150 error_propagate(errp, local_err);
6151 return -EINVAL;
6155 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6156 bdrv_dirty_bitmap_skip_store(bm, false);
6159 ret = refresh_total_sectors(bs, bs->total_sectors);
6160 if (ret < 0) {
6161 bs->open_flags |= BDRV_O_INACTIVE;
6162 error_setg_errno(errp, -ret, "Could not refresh total sector count");
6163 return ret;
6167 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6168 if (parent->klass->activate) {
6169 parent->klass->activate(parent, &local_err);
6170 if (local_err) {
6171 bs->open_flags |= BDRV_O_INACTIVE;
6172 error_propagate(errp, local_err);
6173 return -EINVAL;
6178 return 0;
6181 void bdrv_invalidate_cache_all(Error **errp)
6183 BlockDriverState *bs;
6184 BdrvNextIterator it;
6186 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6187 AioContext *aio_context = bdrv_get_aio_context(bs);
6188 int ret;
6190 aio_context_acquire(aio_context);
6191 ret = bdrv_invalidate_cache(bs, errp);
6192 aio_context_release(aio_context);
6193 if (ret < 0) {
6194 bdrv_next_cleanup(&it);
6195 return;
6200 static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6202 BdrvChild *parent;
6204 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6205 if (parent->klass->parent_is_bds) {
6206 BlockDriverState *parent_bs = parent->opaque;
6207 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6208 return true;
6213 return false;
6216 static int bdrv_inactivate_recurse(BlockDriverState *bs)
6218 BdrvChild *child, *parent;
6219 int ret;
6221 if (!bs->drv) {
6222 return -ENOMEDIUM;
6225 /* Make sure that we don't inactivate a child before its parent.
6226 * It will be covered by recursion from the yet active parent. */
6227 if (bdrv_has_bds_parent(bs, true)) {
6228 return 0;
6231 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6233 /* Inactivate this node */
6234 if (bs->drv->bdrv_inactivate) {
6235 ret = bs->drv->bdrv_inactivate(bs);
6236 if (ret < 0) {
6237 return ret;
6241 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6242 if (parent->klass->inactivate) {
6243 ret = parent->klass->inactivate(parent);
6244 if (ret < 0) {
6245 return ret;
6250 bs->open_flags |= BDRV_O_INACTIVE;
6253 * Update permissions, they may differ for inactive nodes.
6254 * We only tried to loosen restrictions, so errors are not fatal, ignore
6255 * them.
6257 bdrv_refresh_perms(bs, NULL);
6259 /* Recursively inactivate children */
6260 QLIST_FOREACH(child, &bs->children, next) {
6261 ret = bdrv_inactivate_recurse(child->bs);
6262 if (ret < 0) {
6263 return ret;
6267 return 0;
6270 int bdrv_inactivate_all(void)
6272 BlockDriverState *bs = NULL;
6273 BdrvNextIterator it;
6274 int ret = 0;
6275 GSList *aio_ctxs = NULL, *ctx;
6277 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6278 AioContext *aio_context = bdrv_get_aio_context(bs);
6280 if (!g_slist_find(aio_ctxs, aio_context)) {
6281 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6282 aio_context_acquire(aio_context);
6286 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6287 /* Nodes with BDS parents are covered by recursion from the last
6288 * parent that gets inactivated. Don't inactivate them a second
6289 * time if that has already happened. */
6290 if (bdrv_has_bds_parent(bs, false)) {
6291 continue;
6293 ret = bdrv_inactivate_recurse(bs);
6294 if (ret < 0) {
6295 bdrv_next_cleanup(&it);
6296 goto out;
6300 out:
6301 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6302 AioContext *aio_context = ctx->data;
6303 aio_context_release(aio_context);
6305 g_slist_free(aio_ctxs);
6307 return ret;
6310 /**************************************************************/
6311 /* removable device support */
6314 * Return TRUE if the media is present
6316 bool bdrv_is_inserted(BlockDriverState *bs)
6318 BlockDriver *drv = bs->drv;
6319 BdrvChild *child;
6321 if (!drv) {
6322 return false;
6324 if (drv->bdrv_is_inserted) {
6325 return drv->bdrv_is_inserted(bs);
6327 QLIST_FOREACH(child, &bs->children, next) {
6328 if (!bdrv_is_inserted(child->bs)) {
6329 return false;
6332 return true;
6336 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6338 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
6340 BlockDriver *drv = bs->drv;
6342 if (drv && drv->bdrv_eject) {
6343 drv->bdrv_eject(bs, eject_flag);
6348 * Lock or unlock the media (if it is locked, the user won't be able
6349 * to eject it manually).
6351 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
6353 BlockDriver *drv = bs->drv;
6355 trace_bdrv_lock_medium(bs, locked);
6357 if (drv && drv->bdrv_lock_medium) {
6358 drv->bdrv_lock_medium(bs, locked);
6362 /* Get a reference to bs */
6363 void bdrv_ref(BlockDriverState *bs)
6365 bs->refcnt++;
6368 /* Release a previously grabbed reference to bs.
6369 * If after releasing, reference count is zero, the BlockDriverState is
6370 * deleted. */
6371 void bdrv_unref(BlockDriverState *bs)
6373 if (!bs) {
6374 return;
6376 assert(bs->refcnt > 0);
6377 if (--bs->refcnt == 0) {
6378 bdrv_delete(bs);
6382 struct BdrvOpBlocker {
6383 Error *reason;
6384 QLIST_ENTRY(BdrvOpBlocker) list;
6387 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6389 BdrvOpBlocker *blocker;
6390 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6391 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6392 blocker = QLIST_FIRST(&bs->op_blockers[op]);
6393 error_propagate_prepend(errp, error_copy(blocker->reason),
6394 "Node '%s' is busy: ",
6395 bdrv_get_device_or_node_name(bs));
6396 return true;
6398 return false;
6401 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6403 BdrvOpBlocker *blocker;
6404 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6406 blocker = g_new0(BdrvOpBlocker, 1);
6407 blocker->reason = reason;
6408 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6411 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6413 BdrvOpBlocker *blocker, *next;
6414 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6415 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6416 if (blocker->reason == reason) {
6417 QLIST_REMOVE(blocker, list);
6418 g_free(blocker);
6423 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6425 int i;
6426 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6427 bdrv_op_block(bs, i, reason);
6431 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6433 int i;
6434 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6435 bdrv_op_unblock(bs, i, reason);
6439 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6441 int i;
6443 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6444 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6445 return false;
6448 return true;
6451 void bdrv_img_create(const char *filename, const char *fmt,
6452 const char *base_filename, const char *base_fmt,
6453 char *options, uint64_t img_size, int flags, bool quiet,
6454 Error **errp)
6456 QemuOptsList *create_opts = NULL;
6457 QemuOpts *opts = NULL;
6458 const char *backing_fmt, *backing_file;
6459 int64_t size;
6460 BlockDriver *drv, *proto_drv;
6461 Error *local_err = NULL;
6462 int ret = 0;
6464 /* Find driver and parse its options */
6465 drv = bdrv_find_format(fmt);
6466 if (!drv) {
6467 error_setg(errp, "Unknown file format '%s'", fmt);
6468 return;
6471 proto_drv = bdrv_find_protocol(filename, true, errp);
6472 if (!proto_drv) {
6473 return;
6476 if (!drv->create_opts) {
6477 error_setg(errp, "Format driver '%s' does not support image creation",
6478 drv->format_name);
6479 return;
6482 if (!proto_drv->create_opts) {
6483 error_setg(errp, "Protocol driver '%s' does not support image creation",
6484 proto_drv->format_name);
6485 return;
6488 /* Create parameter list */
6489 create_opts = qemu_opts_append(create_opts, drv->create_opts);
6490 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
6492 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
6494 /* Parse -o options */
6495 if (options) {
6496 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
6497 goto out;
6501 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6502 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6503 } else if (img_size != UINT64_C(-1)) {
6504 error_setg(errp, "The image size must be specified only once");
6505 goto out;
6508 if (base_filename) {
6509 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
6510 NULL)) {
6511 error_setg(errp, "Backing file not supported for file format '%s'",
6512 fmt);
6513 goto out;
6517 if (base_fmt) {
6518 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
6519 error_setg(errp, "Backing file format not supported for file "
6520 "format '%s'", fmt);
6521 goto out;
6525 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6526 if (backing_file) {
6527 if (!strcmp(filename, backing_file)) {
6528 error_setg(errp, "Error: Trying to create an image with the "
6529 "same filename as the backing file");
6530 goto out;
6532 if (backing_file[0] == '\0') {
6533 error_setg(errp, "Expected backing file name, got empty string");
6534 goto out;
6538 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
6540 /* The size for the image must always be specified, unless we have a backing
6541 * file and we have not been forbidden from opening it. */
6542 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
6543 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6544 BlockDriverState *bs;
6545 char *full_backing;
6546 int back_flags;
6547 QDict *backing_options = NULL;
6549 full_backing =
6550 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6551 &local_err);
6552 if (local_err) {
6553 goto out;
6555 assert(full_backing);
6557 /* backing files always opened read-only */
6558 back_flags = flags;
6559 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
6561 backing_options = qdict_new();
6562 if (backing_fmt) {
6563 qdict_put_str(backing_options, "driver", backing_fmt);
6565 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
6567 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6568 &local_err);
6569 g_free(full_backing);
6570 if (!bs) {
6571 error_append_hint(&local_err, "Could not open backing image.\n");
6572 goto out;
6573 } else {
6574 if (!backing_fmt) {
6575 warn_report("Deprecated use of backing file without explicit "
6576 "backing format (detected format of %s)",
6577 bs->drv->format_name);
6578 if (bs->drv != &bdrv_raw) {
6580 * A probe of raw deserves the most attention:
6581 * leaving the backing format out of the image
6582 * will ensure bs->probed is set (ensuring we
6583 * don't accidentally commit into the backing
6584 * file), and allow more spots to warn the users
6585 * to fix their toolchain when opening this image
6586 * later. For other images, we can safely record
6587 * the format that we probed.
6589 backing_fmt = bs->drv->format_name;
6590 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, backing_fmt,
6591 NULL);
6594 if (size == -1) {
6595 /* Opened BS, have no size */
6596 size = bdrv_getlength(bs);
6597 if (size < 0) {
6598 error_setg_errno(errp, -size, "Could not get size of '%s'",
6599 backing_file);
6600 bdrv_unref(bs);
6601 goto out;
6603 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6605 bdrv_unref(bs);
6607 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6608 } else if (backing_file && !backing_fmt) {
6609 warn_report("Deprecated use of unopened backing file without "
6610 "explicit backing format, use of this image requires "
6611 "potentially unsafe format probing");
6614 if (size == -1) {
6615 error_setg(errp, "Image creation needs a size parameter");
6616 goto out;
6619 if (!quiet) {
6620 printf("Formatting '%s', fmt=%s ", filename, fmt);
6621 qemu_opts_print(opts, " ");
6622 puts("");
6623 fflush(stdout);
6626 ret = bdrv_create(drv, filename, opts, &local_err);
6628 if (ret == -EFBIG) {
6629 /* This is generally a better message than whatever the driver would
6630 * deliver (especially because of the cluster_size_hint), since that
6631 * is most probably not much different from "image too large". */
6632 const char *cluster_size_hint = "";
6633 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
6634 cluster_size_hint = " (try using a larger cluster size)";
6636 error_setg(errp, "The image size is too large for file format '%s'"
6637 "%s", fmt, cluster_size_hint);
6638 error_free(local_err);
6639 local_err = NULL;
6642 out:
6643 qemu_opts_del(opts);
6644 qemu_opts_free(create_opts);
6645 error_propagate(errp, local_err);
6648 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6650 return bs ? bs->aio_context : qemu_get_aio_context();
6653 AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
6655 Coroutine *self = qemu_coroutine_self();
6656 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
6657 AioContext *new_ctx;
6660 * Increase bs->in_flight to ensure that this operation is completed before
6661 * moving the node to a different AioContext. Read new_ctx only afterwards.
6663 bdrv_inc_in_flight(bs);
6665 new_ctx = bdrv_get_aio_context(bs);
6666 aio_co_reschedule_self(new_ctx);
6667 return old_ctx;
6670 void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
6672 aio_co_reschedule_self(old_ctx);
6673 bdrv_dec_in_flight(bs);
6676 void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
6678 AioContext *ctx = bdrv_get_aio_context(bs);
6680 /* In the main thread, bs->aio_context won't change concurrently */
6681 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6684 * We're in coroutine context, so we already hold the lock of the main
6685 * loop AioContext. Don't lock it twice to avoid deadlocks.
6687 assert(qemu_in_coroutine());
6688 if (ctx != qemu_get_aio_context()) {
6689 aio_context_acquire(ctx);
6693 void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
6695 AioContext *ctx = bdrv_get_aio_context(bs);
6697 assert(qemu_in_coroutine());
6698 if (ctx != qemu_get_aio_context()) {
6699 aio_context_release(ctx);
6703 void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6705 aio_co_enter(bdrv_get_aio_context(bs), co);
6708 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6710 QLIST_REMOVE(ban, list);
6711 g_free(ban);
6714 static void bdrv_detach_aio_context(BlockDriverState *bs)
6716 BdrvAioNotifier *baf, *baf_tmp;
6718 assert(!bs->walking_aio_notifiers);
6719 bs->walking_aio_notifiers = true;
6720 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6721 if (baf->deleted) {
6722 bdrv_do_remove_aio_context_notifier(baf);
6723 } else {
6724 baf->detach_aio_context(baf->opaque);
6727 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6728 * remove remaining aio notifiers if we aren't called again.
6730 bs->walking_aio_notifiers = false;
6732 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
6733 bs->drv->bdrv_detach_aio_context(bs);
6736 if (bs->quiesce_counter) {
6737 aio_enable_external(bs->aio_context);
6739 bs->aio_context = NULL;
6742 static void bdrv_attach_aio_context(BlockDriverState *bs,
6743 AioContext *new_context)
6745 BdrvAioNotifier *ban, *ban_tmp;
6747 if (bs->quiesce_counter) {
6748 aio_disable_external(new_context);
6751 bs->aio_context = new_context;
6753 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
6754 bs->drv->bdrv_attach_aio_context(bs, new_context);
6757 assert(!bs->walking_aio_notifiers);
6758 bs->walking_aio_notifiers = true;
6759 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
6760 if (ban->deleted) {
6761 bdrv_do_remove_aio_context_notifier(ban);
6762 } else {
6763 ban->attached_aio_context(new_context, ban->opaque);
6766 bs->walking_aio_notifiers = false;
6770 * Changes the AioContext used for fd handlers, timers, and BHs by this
6771 * BlockDriverState and all its children and parents.
6773 * Must be called from the main AioContext.
6775 * The caller must own the AioContext lock for the old AioContext of bs, but it
6776 * must not own the AioContext lock for new_context (unless new_context is the
6777 * same as the current context of bs).
6779 * @ignore will accumulate all visited BdrvChild object. The caller is
6780 * responsible for freeing the list afterwards.
6782 void bdrv_set_aio_context_ignore(BlockDriverState *bs,
6783 AioContext *new_context, GSList **ignore)
6785 AioContext *old_context = bdrv_get_aio_context(bs);
6786 GSList *children_to_process = NULL;
6787 GSList *parents_to_process = NULL;
6788 GSList *entry;
6789 BdrvChild *child, *parent;
6791 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6793 if (old_context == new_context) {
6794 return;
6797 bdrv_drained_begin(bs);
6799 QLIST_FOREACH(child, &bs->children, next) {
6800 if (g_slist_find(*ignore, child)) {
6801 continue;
6803 *ignore = g_slist_prepend(*ignore, child);
6804 children_to_process = g_slist_prepend(children_to_process, child);
6807 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6808 if (g_slist_find(*ignore, parent)) {
6809 continue;
6811 *ignore = g_slist_prepend(*ignore, parent);
6812 parents_to_process = g_slist_prepend(parents_to_process, parent);
6815 for (entry = children_to_process;
6816 entry != NULL;
6817 entry = g_slist_next(entry)) {
6818 child = entry->data;
6819 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
6821 g_slist_free(children_to_process);
6823 for (entry = parents_to_process;
6824 entry != NULL;
6825 entry = g_slist_next(entry)) {
6826 parent = entry->data;
6827 assert(parent->klass->set_aio_ctx);
6828 parent->klass->set_aio_ctx(parent, new_context, ignore);
6830 g_slist_free(parents_to_process);
6832 bdrv_detach_aio_context(bs);
6834 /* Acquire the new context, if necessary */
6835 if (qemu_get_aio_context() != new_context) {
6836 aio_context_acquire(new_context);
6839 bdrv_attach_aio_context(bs, new_context);
6842 * If this function was recursively called from
6843 * bdrv_set_aio_context_ignore(), there may be nodes in the
6844 * subtree that have not yet been moved to the new AioContext.
6845 * Release the old one so bdrv_drained_end() can poll them.
6847 if (qemu_get_aio_context() != old_context) {
6848 aio_context_release(old_context);
6851 bdrv_drained_end(bs);
6853 if (qemu_get_aio_context() != old_context) {
6854 aio_context_acquire(old_context);
6856 if (qemu_get_aio_context() != new_context) {
6857 aio_context_release(new_context);
6861 static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6862 GSList **ignore, Error **errp)
6864 if (g_slist_find(*ignore, c)) {
6865 return true;
6867 *ignore = g_slist_prepend(*ignore, c);
6870 * A BdrvChildClass that doesn't handle AioContext changes cannot
6871 * tolerate any AioContext changes
6873 if (!c->klass->can_set_aio_ctx) {
6874 char *user = bdrv_child_user_desc(c);
6875 error_setg(errp, "Changing iothreads is not supported by %s", user);
6876 g_free(user);
6877 return false;
6879 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
6880 assert(!errp || *errp);
6881 return false;
6883 return true;
6886 bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6887 GSList **ignore, Error **errp)
6889 if (g_slist_find(*ignore, c)) {
6890 return true;
6892 *ignore = g_slist_prepend(*ignore, c);
6893 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
6896 /* @ignore will accumulate all visited BdrvChild object. The caller is
6897 * responsible for freeing the list afterwards. */
6898 bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6899 GSList **ignore, Error **errp)
6901 BdrvChild *c;
6903 if (bdrv_get_aio_context(bs) == ctx) {
6904 return true;
6907 QLIST_FOREACH(c, &bs->parents, next_parent) {
6908 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
6909 return false;
6912 QLIST_FOREACH(c, &bs->children, next) {
6913 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
6914 return false;
6918 return true;
6921 int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6922 BdrvChild *ignore_child, Error **errp)
6924 GSList *ignore;
6925 bool ret;
6927 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6928 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
6929 g_slist_free(ignore);
6931 if (!ret) {
6932 return -EPERM;
6935 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6936 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
6937 g_slist_free(ignore);
6939 return 0;
6942 int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6943 Error **errp)
6945 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
6948 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
6949 void (*attached_aio_context)(AioContext *new_context, void *opaque),
6950 void (*detach_aio_context)(void *opaque), void *opaque)
6952 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
6953 *ban = (BdrvAioNotifier){
6954 .attached_aio_context = attached_aio_context,
6955 .detach_aio_context = detach_aio_context,
6956 .opaque = opaque
6959 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
6962 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
6963 void (*attached_aio_context)(AioContext *,
6964 void *),
6965 void (*detach_aio_context)(void *),
6966 void *opaque)
6968 BdrvAioNotifier *ban, *ban_next;
6970 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
6971 if (ban->attached_aio_context == attached_aio_context &&
6972 ban->detach_aio_context == detach_aio_context &&
6973 ban->opaque == opaque &&
6974 ban->deleted == false)
6976 if (bs->walking_aio_notifiers) {
6977 ban->deleted = true;
6978 } else {
6979 bdrv_do_remove_aio_context_notifier(ban);
6981 return;
6985 abort();
6988 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
6989 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
6990 bool force,
6991 Error **errp)
6993 if (!bs->drv) {
6994 error_setg(errp, "Node is ejected");
6995 return -ENOMEDIUM;
6997 if (!bs->drv->bdrv_amend_options) {
6998 error_setg(errp, "Block driver '%s' does not support option amendment",
6999 bs->drv->format_name);
7000 return -ENOTSUP;
7002 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7003 cb_opaque, force, errp);
7007 * This function checks whether the given @to_replace is allowed to be
7008 * replaced by a node that always shows the same data as @bs. This is
7009 * used for example to verify whether the mirror job can replace
7010 * @to_replace by the target mirrored from @bs.
7011 * To be replaceable, @bs and @to_replace may either be guaranteed to
7012 * always show the same data (because they are only connected through
7013 * filters), or some driver may allow replacing one of its children
7014 * because it can guarantee that this child's data is not visible at
7015 * all (for example, for dissenting quorum children that have no other
7016 * parents).
7018 bool bdrv_recurse_can_replace(BlockDriverState *bs,
7019 BlockDriverState *to_replace)
7021 BlockDriverState *filtered;
7023 if (!bs || !bs->drv) {
7024 return false;
7027 if (bs == to_replace) {
7028 return true;
7031 /* See what the driver can do */
7032 if (bs->drv->bdrv_recurse_can_replace) {
7033 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7036 /* For filters without an own implementation, we can recurse on our own */
7037 filtered = bdrv_filter_bs(bs);
7038 if (filtered) {
7039 return bdrv_recurse_can_replace(filtered, to_replace);
7042 /* Safe default */
7043 return false;
7047 * Check whether the given @node_name can be replaced by a node that
7048 * has the same data as @parent_bs. If so, return @node_name's BDS;
7049 * NULL otherwise.
7051 * @node_name must be a (recursive) *child of @parent_bs (or this
7052 * function will return NULL).
7054 * The result (whether the node can be replaced or not) is only valid
7055 * for as long as no graph or permission changes occur.
7057 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7058 const char *node_name, Error **errp)
7060 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
7061 AioContext *aio_context;
7063 if (!to_replace_bs) {
7064 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
7065 return NULL;
7068 aio_context = bdrv_get_aio_context(to_replace_bs);
7069 aio_context_acquire(aio_context);
7071 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
7072 to_replace_bs = NULL;
7073 goto out;
7076 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7077 * most non filter in order to prevent data corruption.
7078 * Another benefit is that this tests exclude backing files which are
7079 * blocked by the backing blockers.
7081 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7082 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7083 "because it cannot be guaranteed that doing so would not "
7084 "lead to an abrupt change of visible data",
7085 node_name, parent_bs->node_name);
7086 to_replace_bs = NULL;
7087 goto out;
7090 out:
7091 aio_context_release(aio_context);
7092 return to_replace_bs;
7096 * Iterates through the list of runtime option keys that are said to
7097 * be "strong" for a BDS. An option is called "strong" if it changes
7098 * a BDS's data. For example, the null block driver's "size" and
7099 * "read-zeroes" options are strong, but its "latency-ns" option is
7100 * not.
7102 * If a key returned by this function ends with a dot, all options
7103 * starting with that prefix are strong.
7105 static const char *const *strong_options(BlockDriverState *bs,
7106 const char *const *curopt)
7108 static const char *const global_options[] = {
7109 "driver", "filename", NULL
7112 if (!curopt) {
7113 return &global_options[0];
7116 curopt++;
7117 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7118 curopt = bs->drv->strong_runtime_opts;
7121 return (curopt && *curopt) ? curopt : NULL;
7125 * Copies all strong runtime options from bs->options to the given
7126 * QDict. The set of strong option keys is determined by invoking
7127 * strong_options().
7129 * Returns true iff any strong option was present in bs->options (and
7130 * thus copied to the target QDict) with the exception of "filename"
7131 * and "driver". The caller is expected to use this value to decide
7132 * whether the existence of strong options prevents the generation of
7133 * a plain filename.
7135 static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7137 bool found_any = false;
7138 const char *const *option_name = NULL;
7140 if (!bs->drv) {
7141 return false;
7144 while ((option_name = strong_options(bs, option_name))) {
7145 bool option_given = false;
7147 assert(strlen(*option_name) > 0);
7148 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7149 QObject *entry = qdict_get(bs->options, *option_name);
7150 if (!entry) {
7151 continue;
7154 qdict_put_obj(d, *option_name, qobject_ref(entry));
7155 option_given = true;
7156 } else {
7157 const QDictEntry *entry;
7158 for (entry = qdict_first(bs->options); entry;
7159 entry = qdict_next(bs->options, entry))
7161 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7162 qdict_put_obj(d, qdict_entry_key(entry),
7163 qobject_ref(qdict_entry_value(entry)));
7164 option_given = true;
7169 /* While "driver" and "filename" need to be included in a JSON filename,
7170 * their existence does not prohibit generation of a plain filename. */
7171 if (!found_any && option_given &&
7172 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7174 found_any = true;
7178 if (!qdict_haskey(d, "driver")) {
7179 /* Drivers created with bdrv_new_open_driver() may not have a
7180 * @driver option. Add it here. */
7181 qdict_put_str(d, "driver", bs->drv->format_name);
7184 return found_any;
7187 /* Note: This function may return false positives; it may return true
7188 * even if opening the backing file specified by bs's image header
7189 * would result in exactly bs->backing. */
7190 bool bdrv_backing_overridden(BlockDriverState *bs)
7192 if (bs->backing) {
7193 return strcmp(bs->auto_backing_file,
7194 bs->backing->bs->filename);
7195 } else {
7196 /* No backing BDS, so if the image header reports any backing
7197 * file, it must have been suppressed */
7198 return bs->auto_backing_file[0] != '\0';
7202 /* Updates the following BDS fields:
7203 * - exact_filename: A filename which may be used for opening a block device
7204 * which (mostly) equals the given BDS (even without any
7205 * other options; so reading and writing must return the same
7206 * results, but caching etc. may be different)
7207 * - full_open_options: Options which, when given when opening a block device
7208 * (without a filename), result in a BDS (mostly)
7209 * equalling the given one
7210 * - filename: If exact_filename is set, it is copied here. Otherwise,
7211 * full_open_options is converted to a JSON object, prefixed with
7212 * "json:" (for use through the JSON pseudo protocol) and put here.
7214 void bdrv_refresh_filename(BlockDriverState *bs)
7216 BlockDriver *drv = bs->drv;
7217 BdrvChild *child;
7218 BlockDriverState *primary_child_bs;
7219 QDict *opts;
7220 bool backing_overridden;
7221 bool generate_json_filename; /* Whether our default implementation should
7222 fill exact_filename (false) or not (true) */
7224 if (!drv) {
7225 return;
7228 /* This BDS's file name may depend on any of its children's file names, so
7229 * refresh those first */
7230 QLIST_FOREACH(child, &bs->children, next) {
7231 bdrv_refresh_filename(child->bs);
7234 if (bs->implicit) {
7235 /* For implicit nodes, just copy everything from the single child */
7236 child = QLIST_FIRST(&bs->children);
7237 assert(QLIST_NEXT(child, next) == NULL);
7239 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7240 child->bs->exact_filename);
7241 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7243 qobject_unref(bs->full_open_options);
7244 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7246 return;
7249 backing_overridden = bdrv_backing_overridden(bs);
7251 if (bs->open_flags & BDRV_O_NO_IO) {
7252 /* Without I/O, the backing file does not change anything.
7253 * Therefore, in such a case (primarily qemu-img), we can
7254 * pretend the backing file has not been overridden even if
7255 * it technically has been. */
7256 backing_overridden = false;
7259 /* Gather the options QDict */
7260 opts = qdict_new();
7261 generate_json_filename = append_strong_runtime_options(opts, bs);
7262 generate_json_filename |= backing_overridden;
7264 if (drv->bdrv_gather_child_options) {
7265 /* Some block drivers may not want to present all of their children's
7266 * options, or name them differently from BdrvChild.name */
7267 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7268 } else {
7269 QLIST_FOREACH(child, &bs->children, next) {
7270 if (child == bs->backing && !backing_overridden) {
7271 /* We can skip the backing BDS if it has not been overridden */
7272 continue;
7275 qdict_put(opts, child->name,
7276 qobject_ref(child->bs->full_open_options));
7279 if (backing_overridden && !bs->backing) {
7280 /* Force no backing file */
7281 qdict_put_null(opts, "backing");
7285 qobject_unref(bs->full_open_options);
7286 bs->full_open_options = opts;
7288 primary_child_bs = bdrv_primary_bs(bs);
7290 if (drv->bdrv_refresh_filename) {
7291 /* Obsolete information is of no use here, so drop the old file name
7292 * information before refreshing it */
7293 bs->exact_filename[0] = '\0';
7295 drv->bdrv_refresh_filename(bs);
7296 } else if (primary_child_bs) {
7298 * Try to reconstruct valid information from the underlying
7299 * file -- this only works for format nodes (filter nodes
7300 * cannot be probed and as such must be selected by the user
7301 * either through an options dict, or through a special
7302 * filename which the filter driver must construct in its
7303 * .bdrv_refresh_filename() implementation).
7306 bs->exact_filename[0] = '\0';
7309 * We can use the underlying file's filename if:
7310 * - it has a filename,
7311 * - the current BDS is not a filter,
7312 * - the file is a protocol BDS, and
7313 * - opening that file (as this BDS's format) will automatically create
7314 * the BDS tree we have right now, that is:
7315 * - the user did not significantly change this BDS's behavior with
7316 * some explicit (strong) options
7317 * - no non-file child of this BDS has been overridden by the user
7318 * Both of these conditions are represented by generate_json_filename.
7320 if (primary_child_bs->exact_filename[0] &&
7321 primary_child_bs->drv->bdrv_file_open &&
7322 !drv->is_filter && !generate_json_filename)
7324 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
7328 if (bs->exact_filename[0]) {
7329 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
7330 } else {
7331 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
7332 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
7333 json->str) >= sizeof(bs->filename)) {
7334 /* Give user a hint if we truncated things. */
7335 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7337 g_string_free(json, true);
7341 char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7343 BlockDriver *drv = bs->drv;
7344 BlockDriverState *child_bs;
7346 if (!drv) {
7347 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7348 return NULL;
7351 if (drv->bdrv_dirname) {
7352 return drv->bdrv_dirname(bs, errp);
7355 child_bs = bdrv_primary_bs(bs);
7356 if (child_bs) {
7357 return bdrv_dirname(child_bs, errp);
7360 bdrv_refresh_filename(bs);
7361 if (bs->exact_filename[0] != '\0') {
7362 return path_combine(bs->exact_filename, "");
7365 error_setg(errp, "Cannot generate a base directory for %s nodes",
7366 drv->format_name);
7367 return NULL;
7371 * Hot add/remove a BDS's child. So the user can take a child offline when
7372 * it is broken and take a new child online
7374 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7375 Error **errp)
7378 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7379 error_setg(errp, "The node %s does not support adding a child",
7380 bdrv_get_device_or_node_name(parent_bs));
7381 return;
7384 if (!QLIST_EMPTY(&child_bs->parents)) {
7385 error_setg(errp, "The node %s already has a parent",
7386 child_bs->node_name);
7387 return;
7390 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7393 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7395 BdrvChild *tmp;
7397 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7398 error_setg(errp, "The node %s does not support removing a child",
7399 bdrv_get_device_or_node_name(parent_bs));
7400 return;
7403 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7404 if (tmp == child) {
7405 break;
7409 if (!tmp) {
7410 error_setg(errp, "The node %s does not have a child named %s",
7411 bdrv_get_device_or_node_name(parent_bs),
7412 bdrv_get_device_or_node_name(child->bs));
7413 return;
7416 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7419 int bdrv_make_empty(BdrvChild *c, Error **errp)
7421 BlockDriver *drv = c->bs->drv;
7422 int ret;
7424 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7426 if (!drv->bdrv_make_empty) {
7427 error_setg(errp, "%s does not support emptying nodes",
7428 drv->format_name);
7429 return -ENOTSUP;
7432 ret = drv->bdrv_make_empty(c->bs);
7433 if (ret < 0) {
7434 error_setg_errno(errp, -ret, "Failed to empty %s",
7435 c->bs->filename);
7436 return ret;
7439 return 0;
7443 * Return the child that @bs acts as an overlay for, and from which data may be
7444 * copied in COW or COR operations. Usually this is the backing file.
7446 BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7448 if (!bs || !bs->drv) {
7449 return NULL;
7452 if (bs->drv->is_filter) {
7453 return NULL;
7456 if (!bs->backing) {
7457 return NULL;
7460 assert(bs->backing->role & BDRV_CHILD_COW);
7461 return bs->backing;
7465 * If @bs acts as a filter for exactly one of its children, return
7466 * that child.
7468 BdrvChild *bdrv_filter_child(BlockDriverState *bs)
7470 BdrvChild *c;
7472 if (!bs || !bs->drv) {
7473 return NULL;
7476 if (!bs->drv->is_filter) {
7477 return NULL;
7480 /* Only one of @backing or @file may be used */
7481 assert(!(bs->backing && bs->file));
7483 c = bs->backing ?: bs->file;
7484 if (!c) {
7485 return NULL;
7488 assert(c->role & BDRV_CHILD_FILTERED);
7489 return c;
7493 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7494 * whichever is non-NULL.
7496 * Return NULL if both are NULL.
7498 BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
7500 BdrvChild *cow_child = bdrv_cow_child(bs);
7501 BdrvChild *filter_child = bdrv_filter_child(bs);
7503 /* Filter nodes cannot have COW backing files */
7504 assert(!(cow_child && filter_child));
7506 return cow_child ?: filter_child;
7510 * Return the primary child of this node: For filters, that is the
7511 * filtered child. For other nodes, that is usually the child storing
7512 * metadata.
7513 * (A generally more helpful description is that this is (usually) the
7514 * child that has the same filename as @bs.)
7516 * Drivers do not necessarily have a primary child; for example quorum
7517 * does not.
7519 BdrvChild *bdrv_primary_child(BlockDriverState *bs)
7521 BdrvChild *c, *found = NULL;
7523 QLIST_FOREACH(c, &bs->children, next) {
7524 if (c->role & BDRV_CHILD_PRIMARY) {
7525 assert(!found);
7526 found = c;
7530 return found;
7533 static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
7534 bool stop_on_explicit_filter)
7536 BdrvChild *c;
7538 if (!bs) {
7539 return NULL;
7542 while (!(stop_on_explicit_filter && !bs->implicit)) {
7543 c = bdrv_filter_child(bs);
7544 if (!c) {
7546 * A filter that is embedded in a working block graph must
7547 * have a child. Assert this here so this function does
7548 * not return a filter node that is not expected by the
7549 * caller.
7551 assert(!bs->drv || !bs->drv->is_filter);
7552 break;
7554 bs = c->bs;
7557 * Note that this treats nodes with bs->drv == NULL as not being
7558 * filters (bs->drv == NULL should be replaced by something else
7559 * anyway).
7560 * The advantage of this behavior is that this function will thus
7561 * always return a non-NULL value (given a non-NULL @bs).
7564 return bs;
7568 * Return the first BDS that has not been added implicitly or that
7569 * does not have a filtered child down the chain starting from @bs
7570 * (including @bs itself).
7572 BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
7574 return bdrv_do_skip_filters(bs, true);
7578 * Return the first BDS that does not have a filtered child down the
7579 * chain starting from @bs (including @bs itself).
7581 BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
7583 return bdrv_do_skip_filters(bs, false);
7587 * For a backing chain, return the first non-filter backing image of
7588 * the first non-filter image.
7590 BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
7592 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));