block: drop tighten_restrictions
[qemu.git] / block.c
blobb57421a969717c3bf87af3aa2f78da8df27fe121
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 /* If non-zero, use only whitelisted block drivers */
86 static int use_bdrv_whitelist;
88 #ifdef _WIN32
89 static int is_windows_drive_prefix(const char *filename)
91 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
92 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
93 filename[1] == ':');
96 int is_windows_drive(const char *filename)
98 if (is_windows_drive_prefix(filename) &&
99 filename[2] == '\0')
100 return 1;
101 if (strstart(filename, "\\\\.\\", NULL) ||
102 strstart(filename, "//./", NULL))
103 return 1;
104 return 0;
106 #endif
108 size_t bdrv_opt_mem_align(BlockDriverState *bs)
110 if (!bs || !bs->drv) {
111 /* page size or 4k (hdd sector size) should be on the safe side */
112 return MAX(4096, qemu_real_host_page_size);
115 return bs->bl.opt_mem_alignment;
118 size_t bdrv_min_mem_align(BlockDriverState *bs)
120 if (!bs || !bs->drv) {
121 /* page size or 4k (hdd sector size) should be on the safe side */
122 return MAX(4096, qemu_real_host_page_size);
125 return bs->bl.min_mem_alignment;
128 /* check if the path starts with "<protocol>:" */
129 int path_has_protocol(const char *path)
131 const char *p;
133 #ifdef _WIN32
134 if (is_windows_drive(path) ||
135 is_windows_drive_prefix(path)) {
136 return 0;
138 p = path + strcspn(path, ":/\\");
139 #else
140 p = path + strcspn(path, ":/");
141 #endif
143 return *p == ':';
146 int path_is_absolute(const char *path)
148 #ifdef _WIN32
149 /* specific case for names like: "\\.\d:" */
150 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
151 return 1;
153 return (*path == '/' || *path == '\\');
154 #else
155 return (*path == '/');
156 #endif
159 /* if filename is absolute, just return its duplicate. Otherwise, build a
160 path to it by considering it is relative to base_path. URL are
161 supported. */
162 char *path_combine(const char *base_path, const char *filename)
164 const char *protocol_stripped = NULL;
165 const char *p, *p1;
166 char *result;
167 int len;
169 if (path_is_absolute(filename)) {
170 return g_strdup(filename);
173 if (path_has_protocol(base_path)) {
174 protocol_stripped = strchr(base_path, ':');
175 if (protocol_stripped) {
176 protocol_stripped++;
179 p = protocol_stripped ?: base_path;
181 p1 = strrchr(base_path, '/');
182 #ifdef _WIN32
184 const char *p2;
185 p2 = strrchr(base_path, '\\');
186 if (!p1 || p2 > p1) {
187 p1 = p2;
190 #endif
191 if (p1) {
192 p1++;
193 } else {
194 p1 = base_path;
196 if (p1 > p) {
197 p = p1;
199 len = p - base_path;
201 result = g_malloc(len + strlen(filename) + 1);
202 memcpy(result, base_path, len);
203 strcpy(result + len, filename);
205 return result;
209 * Helper function for bdrv_parse_filename() implementations to remove optional
210 * protocol prefixes (especially "file:") from a filename and for putting the
211 * stripped filename into the options QDict if there is such a prefix.
213 void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
214 QDict *options)
216 if (strstart(filename, prefix, &filename)) {
217 /* Stripping the explicit protocol prefix may result in a protocol
218 * prefix being (wrongly) detected (if the filename contains a colon) */
219 if (path_has_protocol(filename)) {
220 QString *fat_filename;
222 /* This means there is some colon before the first slash; therefore,
223 * this cannot be an absolute path */
224 assert(!path_is_absolute(filename));
226 /* And we can thus fix the protocol detection issue by prefixing it
227 * by "./" */
228 fat_filename = qstring_from_str("./");
229 qstring_append(fat_filename, filename);
231 assert(!path_has_protocol(qstring_get_str(fat_filename)));
233 qdict_put(options, "filename", fat_filename);
234 } else {
235 /* If no protocol prefix was detected, we can use the shortened
236 * filename as-is */
237 qdict_put_str(options, "filename", filename);
243 /* Returns whether the image file is opened as read-only. Note that this can
244 * return false and writing to the image file is still not possible because the
245 * image is inactivated. */
246 bool bdrv_is_read_only(BlockDriverState *bs)
248 return bs->read_only;
251 int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
252 bool ignore_allow_rdw, Error **errp)
254 /* Do not set read_only if copy_on_read is enabled */
255 if (bs->copy_on_read && read_only) {
256 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
257 bdrv_get_device_or_node_name(bs));
258 return -EINVAL;
261 /* Do not clear read_only if it is prohibited */
262 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
263 !ignore_allow_rdw)
265 error_setg(errp, "Node '%s' is read only",
266 bdrv_get_device_or_node_name(bs));
267 return -EPERM;
270 return 0;
274 * Called by a driver that can only provide a read-only image.
276 * Returns 0 if the node is already read-only or it could switch the node to
277 * read-only because BDRV_O_AUTO_RDONLY is set.
279 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
280 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
281 * is not NULL, it is used as the error message for the Error object.
283 int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
284 Error **errp)
286 int ret = 0;
288 if (!(bs->open_flags & BDRV_O_RDWR)) {
289 return 0;
291 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
292 goto fail;
295 ret = bdrv_can_set_read_only(bs, true, false, NULL);
296 if (ret < 0) {
297 goto fail;
300 bs->read_only = true;
301 bs->open_flags &= ~BDRV_O_RDWR;
303 return 0;
305 fail:
306 error_setg(errp, "%s", errmsg ?: "Image is read-only");
307 return -EACCES;
311 * If @backing is empty, this function returns NULL without setting
312 * @errp. In all other cases, NULL will only be returned with @errp
313 * set.
315 * Therefore, a return value of NULL without @errp set means that
316 * there is no backing file; if @errp is set, there is one but its
317 * absolute filename cannot be generated.
319 char *bdrv_get_full_backing_filename_from_filename(const char *backed,
320 const char *backing,
321 Error **errp)
323 if (backing[0] == '\0') {
324 return NULL;
325 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
326 return g_strdup(backing);
327 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
328 error_setg(errp, "Cannot use relative backing file names for '%s'",
329 backed);
330 return NULL;
331 } else {
332 return path_combine(backed, backing);
337 * If @filename is empty or NULL, this function returns NULL without
338 * setting @errp. In all other cases, NULL will only be returned with
339 * @errp set.
341 static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
342 const char *filename, Error **errp)
344 char *dir, *full_name;
346 if (!filename || filename[0] == '\0') {
347 return NULL;
348 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
349 return g_strdup(filename);
352 dir = bdrv_dirname(relative_to, errp);
353 if (!dir) {
354 return NULL;
357 full_name = g_strconcat(dir, filename, NULL);
358 g_free(dir);
359 return full_name;
362 char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
364 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
367 void bdrv_register(BlockDriver *bdrv)
369 assert(bdrv->format_name);
370 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
373 BlockDriverState *bdrv_new(void)
375 BlockDriverState *bs;
376 int i;
378 bs = g_new0(BlockDriverState, 1);
379 QLIST_INIT(&bs->dirty_bitmaps);
380 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
381 QLIST_INIT(&bs->op_blockers[i]);
383 notifier_with_return_list_init(&bs->before_write_notifiers);
384 qemu_co_mutex_init(&bs->reqs_lock);
385 qemu_mutex_init(&bs->dirty_bitmap_mutex);
386 bs->refcnt = 1;
387 bs->aio_context = qemu_get_aio_context();
389 qemu_co_queue_init(&bs->flush_queue);
391 for (i = 0; i < bdrv_drain_all_count; i++) {
392 bdrv_drained_begin(bs);
395 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
397 return bs;
400 static BlockDriver *bdrv_do_find_format(const char *format_name)
402 BlockDriver *drv1;
404 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
405 if (!strcmp(drv1->format_name, format_name)) {
406 return drv1;
410 return NULL;
413 BlockDriver *bdrv_find_format(const char *format_name)
415 BlockDriver *drv1;
416 int i;
418 drv1 = bdrv_do_find_format(format_name);
419 if (drv1) {
420 return drv1;
423 /* The driver isn't registered, maybe we need to load a module */
424 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
425 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
426 block_module_load_one(block_driver_modules[i].library_name);
427 break;
431 return bdrv_do_find_format(format_name);
434 static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
436 static const char *whitelist_rw[] = {
437 CONFIG_BDRV_RW_WHITELIST
438 NULL
440 static const char *whitelist_ro[] = {
441 CONFIG_BDRV_RO_WHITELIST
442 NULL
444 const char **p;
446 if (!whitelist_rw[0] && !whitelist_ro[0]) {
447 return 1; /* no whitelist, anything goes */
450 for (p = whitelist_rw; *p; p++) {
451 if (!strcmp(format_name, *p)) {
452 return 1;
455 if (read_only) {
456 for (p = whitelist_ro; *p; p++) {
457 if (!strcmp(format_name, *p)) {
458 return 1;
462 return 0;
465 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
467 return bdrv_format_is_whitelisted(drv->format_name, read_only);
470 bool bdrv_uses_whitelist(void)
472 return use_bdrv_whitelist;
475 typedef struct CreateCo {
476 BlockDriver *drv;
477 char *filename;
478 QemuOpts *opts;
479 int ret;
480 Error *err;
481 } CreateCo;
483 static void coroutine_fn bdrv_create_co_entry(void *opaque)
485 Error *local_err = NULL;
486 int ret;
488 CreateCo *cco = opaque;
489 assert(cco->drv);
491 ret = cco->drv->bdrv_co_create_opts(cco->drv,
492 cco->filename, cco->opts, &local_err);
493 error_propagate(&cco->err, local_err);
494 cco->ret = ret;
497 int bdrv_create(BlockDriver *drv, const char* filename,
498 QemuOpts *opts, Error **errp)
500 int ret;
502 Coroutine *co;
503 CreateCo cco = {
504 .drv = drv,
505 .filename = g_strdup(filename),
506 .opts = opts,
507 .ret = NOT_DONE,
508 .err = NULL,
511 if (!drv->bdrv_co_create_opts) {
512 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
513 ret = -ENOTSUP;
514 goto out;
517 if (qemu_in_coroutine()) {
518 /* Fast-path if already in coroutine context */
519 bdrv_create_co_entry(&cco);
520 } else {
521 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
522 qemu_coroutine_enter(co);
523 while (cco.ret == NOT_DONE) {
524 aio_poll(qemu_get_aio_context(), true);
528 ret = cco.ret;
529 if (ret < 0) {
530 if (cco.err) {
531 error_propagate(errp, cco.err);
532 } else {
533 error_setg_errno(errp, -ret, "Could not create image");
537 out:
538 g_free(cco.filename);
539 return ret;
543 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
544 * least the given @minimum_size.
546 * On success, return @blk's actual length.
547 * Otherwise, return -errno.
549 static int64_t create_file_fallback_truncate(BlockBackend *blk,
550 int64_t minimum_size, Error **errp)
552 Error *local_err = NULL;
553 int64_t size;
554 int ret;
556 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
557 &local_err);
558 if (ret < 0 && ret != -ENOTSUP) {
559 error_propagate(errp, local_err);
560 return ret;
563 size = blk_getlength(blk);
564 if (size < 0) {
565 error_free(local_err);
566 error_setg_errno(errp, -size,
567 "Failed to inquire the new image file's length");
568 return size;
571 if (size < minimum_size) {
572 /* Need to grow the image, but we failed to do that */
573 error_propagate(errp, local_err);
574 return -ENOTSUP;
577 error_free(local_err);
578 local_err = NULL;
580 return size;
584 * Helper function for bdrv_create_file_fallback(): Zero the first
585 * sector to remove any potentially pre-existing image header.
587 static int create_file_fallback_zero_first_sector(BlockBackend *blk,
588 int64_t current_size,
589 Error **errp)
591 int64_t bytes_to_clear;
592 int ret;
594 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
595 if (bytes_to_clear) {
596 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
597 if (ret < 0) {
598 error_setg_errno(errp, -ret,
599 "Failed to clear the new image's first sector");
600 return ret;
604 return 0;
608 * Simple implementation of bdrv_co_create_opts for protocol drivers
609 * which only support creation via opening a file
610 * (usually existing raw storage device)
612 int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
613 const char *filename,
614 QemuOpts *opts,
615 Error **errp)
617 BlockBackend *blk;
618 QDict *options;
619 int64_t size = 0;
620 char *buf = NULL;
621 PreallocMode prealloc;
622 Error *local_err = NULL;
623 int ret;
625 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
626 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
627 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
628 PREALLOC_MODE_OFF, &local_err);
629 g_free(buf);
630 if (local_err) {
631 error_propagate(errp, local_err);
632 return -EINVAL;
635 if (prealloc != PREALLOC_MODE_OFF) {
636 error_setg(errp, "Unsupported preallocation mode '%s'",
637 PreallocMode_str(prealloc));
638 return -ENOTSUP;
641 options = qdict_new();
642 qdict_put_str(options, "driver", drv->format_name);
644 blk = blk_new_open(filename, NULL, options,
645 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
646 if (!blk) {
647 error_prepend(errp, "Protocol driver '%s' does not support image "
648 "creation, and opening the image failed: ",
649 drv->format_name);
650 return -EINVAL;
653 size = create_file_fallback_truncate(blk, size, errp);
654 if (size < 0) {
655 ret = size;
656 goto out;
659 ret = create_file_fallback_zero_first_sector(blk, size, errp);
660 if (ret < 0) {
661 goto out;
664 ret = 0;
665 out:
666 blk_unref(blk);
667 return ret;
670 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
672 BlockDriver *drv;
674 drv = bdrv_find_protocol(filename, true, errp);
675 if (drv == NULL) {
676 return -ENOENT;
679 return bdrv_create(drv, filename, opts, errp);
682 int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
684 Error *local_err = NULL;
685 int ret;
687 assert(bs != NULL);
689 if (!bs->drv) {
690 error_setg(errp, "Block node '%s' is not opened", bs->filename);
691 return -ENOMEDIUM;
694 if (!bs->drv->bdrv_co_delete_file) {
695 error_setg(errp, "Driver '%s' does not support image deletion",
696 bs->drv->format_name);
697 return -ENOTSUP;
700 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
701 if (ret < 0) {
702 error_propagate(errp, local_err);
705 return ret;
709 * Try to get @bs's logical and physical block size.
710 * On success, store them in @bsz struct and return 0.
711 * On failure return -errno.
712 * @bs must not be empty.
714 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
716 BlockDriver *drv = bs->drv;
717 BlockDriverState *filtered = bdrv_filter_bs(bs);
719 if (drv && drv->bdrv_probe_blocksizes) {
720 return drv->bdrv_probe_blocksizes(bs, bsz);
721 } else if (filtered) {
722 return bdrv_probe_blocksizes(filtered, bsz);
725 return -ENOTSUP;
729 * Try to get @bs's geometry (cyls, heads, sectors).
730 * On success, store them in @geo struct and return 0.
731 * On failure return -errno.
732 * @bs must not be empty.
734 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
736 BlockDriver *drv = bs->drv;
737 BlockDriverState *filtered = bdrv_filter_bs(bs);
739 if (drv && drv->bdrv_probe_geometry) {
740 return drv->bdrv_probe_geometry(bs, geo);
741 } else if (filtered) {
742 return bdrv_probe_geometry(filtered, geo);
745 return -ENOTSUP;
749 * Create a uniquely-named empty temporary file.
750 * Return 0 upon success, otherwise a negative errno value.
752 int get_tmp_filename(char *filename, int size)
754 #ifdef _WIN32
755 char temp_dir[MAX_PATH];
756 /* GetTempFileName requires that its output buffer (4th param)
757 have length MAX_PATH or greater. */
758 assert(size >= MAX_PATH);
759 return (GetTempPath(MAX_PATH, temp_dir)
760 && GetTempFileName(temp_dir, "qem", 0, filename)
761 ? 0 : -GetLastError());
762 #else
763 int fd;
764 const char *tmpdir;
765 tmpdir = getenv("TMPDIR");
766 if (!tmpdir) {
767 tmpdir = "/var/tmp";
769 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
770 return -EOVERFLOW;
772 fd = mkstemp(filename);
773 if (fd < 0) {
774 return -errno;
776 if (close(fd) != 0) {
777 unlink(filename);
778 return -errno;
780 return 0;
781 #endif
785 * Detect host devices. By convention, /dev/cdrom[N] is always
786 * recognized as a host CDROM.
788 static BlockDriver *find_hdev_driver(const char *filename)
790 int score_max = 0, score;
791 BlockDriver *drv = NULL, *d;
793 QLIST_FOREACH(d, &bdrv_drivers, list) {
794 if (d->bdrv_probe_device) {
795 score = d->bdrv_probe_device(filename);
796 if (score > score_max) {
797 score_max = score;
798 drv = d;
803 return drv;
806 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
808 BlockDriver *drv1;
810 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
811 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
812 return drv1;
816 return NULL;
819 BlockDriver *bdrv_find_protocol(const char *filename,
820 bool allow_protocol_prefix,
821 Error **errp)
823 BlockDriver *drv1;
824 char protocol[128];
825 int len;
826 const char *p;
827 int i;
829 /* TODO Drivers without bdrv_file_open must be specified explicitly */
832 * XXX(hch): we really should not let host device detection
833 * override an explicit protocol specification, but moving this
834 * later breaks access to device names with colons in them.
835 * Thanks to the brain-dead persistent naming schemes on udev-
836 * based Linux systems those actually are quite common.
838 drv1 = find_hdev_driver(filename);
839 if (drv1) {
840 return drv1;
843 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
844 return &bdrv_file;
847 p = strchr(filename, ':');
848 assert(p != NULL);
849 len = p - filename;
850 if (len > sizeof(protocol) - 1)
851 len = sizeof(protocol) - 1;
852 memcpy(protocol, filename, len);
853 protocol[len] = '\0';
855 drv1 = bdrv_do_find_protocol(protocol);
856 if (drv1) {
857 return drv1;
860 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
861 if (block_driver_modules[i].protocol_name &&
862 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
863 block_module_load_one(block_driver_modules[i].library_name);
864 break;
868 drv1 = bdrv_do_find_protocol(protocol);
869 if (!drv1) {
870 error_setg(errp, "Unknown protocol '%s'", protocol);
872 return drv1;
876 * Guess image format by probing its contents.
877 * This is not a good idea when your image is raw (CVE-2008-2004), but
878 * we do it anyway for backward compatibility.
880 * @buf contains the image's first @buf_size bytes.
881 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
882 * but can be smaller if the image file is smaller)
883 * @filename is its filename.
885 * For all block drivers, call the bdrv_probe() method to get its
886 * probing score.
887 * Return the first block driver with the highest probing score.
889 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
890 const char *filename)
892 int score_max = 0, score;
893 BlockDriver *drv = NULL, *d;
895 QLIST_FOREACH(d, &bdrv_drivers, list) {
896 if (d->bdrv_probe) {
897 score = d->bdrv_probe(buf, buf_size, filename);
898 if (score > score_max) {
899 score_max = score;
900 drv = d;
905 return drv;
908 static int find_image_format(BlockBackend *file, const char *filename,
909 BlockDriver **pdrv, Error **errp)
911 BlockDriver *drv;
912 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
913 int ret = 0;
915 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
916 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
917 *pdrv = &bdrv_raw;
918 return ret;
921 ret = blk_pread(file, 0, buf, sizeof(buf));
922 if (ret < 0) {
923 error_setg_errno(errp, -ret, "Could not read image for determining its "
924 "format");
925 *pdrv = NULL;
926 return ret;
929 drv = bdrv_probe_all(buf, ret, filename);
930 if (!drv) {
931 error_setg(errp, "Could not determine image format: No compatible "
932 "driver found");
933 ret = -ENOENT;
935 *pdrv = drv;
936 return ret;
940 * Set the current 'total_sectors' value
941 * Return 0 on success, -errno on error.
943 int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
945 BlockDriver *drv = bs->drv;
947 if (!drv) {
948 return -ENOMEDIUM;
951 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
952 if (bdrv_is_sg(bs))
953 return 0;
955 /* query actual device if possible, otherwise just trust the hint */
956 if (drv->bdrv_getlength) {
957 int64_t length = drv->bdrv_getlength(bs);
958 if (length < 0) {
959 return length;
961 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
964 bs->total_sectors = hint;
966 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
967 return -EFBIG;
970 return 0;
974 * Combines a QDict of new block driver @options with any missing options taken
975 * from @old_options, so that leaving out an option defaults to its old value.
977 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
978 QDict *old_options)
980 if (bs->drv && bs->drv->bdrv_join_options) {
981 bs->drv->bdrv_join_options(options, old_options);
982 } else {
983 qdict_join(options, old_options, false);
987 static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
988 int open_flags,
989 Error **errp)
991 Error *local_err = NULL;
992 char *value = qemu_opt_get_del(opts, "detect-zeroes");
993 BlockdevDetectZeroesOptions detect_zeroes =
994 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
995 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
996 g_free(value);
997 if (local_err) {
998 error_propagate(errp, local_err);
999 return detect_zeroes;
1002 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1003 !(open_flags & BDRV_O_UNMAP))
1005 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1006 "without setting discard operation to unmap");
1009 return detect_zeroes;
1013 * Set open flags for aio engine
1015 * Return 0 on success, -1 if the engine specified is invalid
1017 int bdrv_parse_aio(const char *mode, int *flags)
1019 if (!strcmp(mode, "threads")) {
1020 /* do nothing, default */
1021 } else if (!strcmp(mode, "native")) {
1022 *flags |= BDRV_O_NATIVE_AIO;
1023 #ifdef CONFIG_LINUX_IO_URING
1024 } else if (!strcmp(mode, "io_uring")) {
1025 *flags |= BDRV_O_IO_URING;
1026 #endif
1027 } else {
1028 return -1;
1031 return 0;
1035 * Set open flags for a given discard mode
1037 * Return 0 on success, -1 if the discard mode was invalid.
1039 int bdrv_parse_discard_flags(const char *mode, int *flags)
1041 *flags &= ~BDRV_O_UNMAP;
1043 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1044 /* do nothing */
1045 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1046 *flags |= BDRV_O_UNMAP;
1047 } else {
1048 return -1;
1051 return 0;
1055 * Set open flags for a given cache mode
1057 * Return 0 on success, -1 if the cache mode was invalid.
1059 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
1061 *flags &= ~BDRV_O_CACHE_MASK;
1063 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
1064 *writethrough = false;
1065 *flags |= BDRV_O_NOCACHE;
1066 } else if (!strcmp(mode, "directsync")) {
1067 *writethrough = true;
1068 *flags |= BDRV_O_NOCACHE;
1069 } else if (!strcmp(mode, "writeback")) {
1070 *writethrough = false;
1071 } else if (!strcmp(mode, "unsafe")) {
1072 *writethrough = false;
1073 *flags |= BDRV_O_NO_FLUSH;
1074 } else if (!strcmp(mode, "writethrough")) {
1075 *writethrough = true;
1076 } else {
1077 return -1;
1080 return 0;
1083 static char *bdrv_child_get_parent_desc(BdrvChild *c)
1085 BlockDriverState *parent = c->opaque;
1086 return g_strdup(bdrv_get_device_or_node_name(parent));
1089 static void bdrv_child_cb_drained_begin(BdrvChild *child)
1091 BlockDriverState *bs = child->opaque;
1092 bdrv_do_drained_begin_quiesce(bs, NULL, false);
1095 static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1097 BlockDriverState *bs = child->opaque;
1098 return bdrv_drain_poll(bs, false, NULL, false);
1101 static void bdrv_child_cb_drained_end(BdrvChild *child,
1102 int *drained_end_counter)
1104 BlockDriverState *bs = child->opaque;
1105 bdrv_drained_end_no_poll(bs, drained_end_counter);
1108 static int bdrv_child_cb_inactivate(BdrvChild *child)
1110 BlockDriverState *bs = child->opaque;
1111 assert(bs->open_flags & BDRV_O_INACTIVE);
1112 return 0;
1115 static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1116 GSList **ignore, Error **errp)
1118 BlockDriverState *bs = child->opaque;
1119 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1122 static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1123 GSList **ignore)
1125 BlockDriverState *bs = child->opaque;
1126 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1130 * Returns the options and flags that a temporary snapshot should get, based on
1131 * the originally requested flags (the originally requested image will have
1132 * flags like a backing file)
1134 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1135 int parent_flags, QDict *parent_options)
1137 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1139 /* For temporary files, unconditional cache=unsafe is fine */
1140 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1141 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
1143 /* Copy the read-only and discard options from the parent */
1144 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1145 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
1147 /* aio=native doesn't work for cache.direct=off, so disable it for the
1148 * temporary snapshot */
1149 *child_flags &= ~BDRV_O_NATIVE_AIO;
1152 static void bdrv_backing_attach(BdrvChild *c)
1154 BlockDriverState *parent = c->opaque;
1155 BlockDriverState *backing_hd = c->bs;
1157 assert(!parent->backing_blocker);
1158 error_setg(&parent->backing_blocker,
1159 "node is used as backing hd of '%s'",
1160 bdrv_get_device_or_node_name(parent));
1162 bdrv_refresh_filename(backing_hd);
1164 parent->open_flags &= ~BDRV_O_NO_BACKING;
1166 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1167 /* Otherwise we won't be able to commit or stream */
1168 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1169 parent->backing_blocker);
1170 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1171 parent->backing_blocker);
1173 * We do backup in 3 ways:
1174 * 1. drive backup
1175 * The target bs is new opened, and the source is top BDS
1176 * 2. blockdev backup
1177 * Both the source and the target are top BDSes.
1178 * 3. internal backup(used for block replication)
1179 * Both the source and the target are backing file
1181 * In case 1 and 2, neither the source nor the target is the backing file.
1182 * In case 3, we will block the top BDS, so there is only one block job
1183 * for the top BDS and its backing chain.
1185 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1186 parent->backing_blocker);
1187 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1188 parent->backing_blocker);
1191 static void bdrv_backing_detach(BdrvChild *c)
1193 BlockDriverState *parent = c->opaque;
1195 assert(parent->backing_blocker);
1196 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1197 error_free(parent->backing_blocker);
1198 parent->backing_blocker = NULL;
1201 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1202 const char *filename, Error **errp)
1204 BlockDriverState *parent = c->opaque;
1205 bool read_only = bdrv_is_read_only(parent);
1206 int ret;
1208 if (read_only) {
1209 ret = bdrv_reopen_set_read_only(parent, false, errp);
1210 if (ret < 0) {
1211 return ret;
1215 ret = bdrv_change_backing_file(parent, filename,
1216 base->drv ? base->drv->format_name : "",
1217 false);
1218 if (ret < 0) {
1219 error_setg_errno(errp, -ret, "Could not update backing file link");
1222 if (read_only) {
1223 bdrv_reopen_set_read_only(parent, true, NULL);
1226 return ret;
1230 * Returns the options and flags that a generic child of a BDS should
1231 * get, based on the given options and flags for the parent BDS.
1233 static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1234 int *child_flags, QDict *child_options,
1235 int parent_flags, QDict *parent_options)
1237 int flags = parent_flags;
1240 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1241 * Generally, the question to answer is: Should this child be
1242 * format-probed by default?
1246 * Pure and non-filtered data children of non-format nodes should
1247 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1248 * set). This only affects a very limited set of drivers (namely
1249 * quorum and blkverify when this comment was written).
1250 * Force-clear BDRV_O_PROTOCOL then.
1252 if (!parent_is_format &&
1253 (role & BDRV_CHILD_DATA) &&
1254 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1256 flags &= ~BDRV_O_PROTOCOL;
1260 * All children of format nodes (except for COW children) and all
1261 * metadata children in general should never be format-probed.
1262 * Force-set BDRV_O_PROTOCOL then.
1264 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1265 (role & BDRV_CHILD_METADATA))
1267 flags |= BDRV_O_PROTOCOL;
1271 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1272 * the parent.
1274 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1275 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1276 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1278 if (role & BDRV_CHILD_COW) {
1279 /* backing files are opened read-only by default */
1280 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1281 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1282 } else {
1283 /* Inherit the read-only option from the parent if it's not set */
1284 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1285 qdict_copy_default(child_options, parent_options,
1286 BDRV_OPT_AUTO_READ_ONLY);
1290 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1291 * can default to enable it on lower layers regardless of the
1292 * parent option.
1294 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1296 /* Clear flags that only apply to the top layer */
1297 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1299 if (role & BDRV_CHILD_METADATA) {
1300 flags &= ~BDRV_O_NO_IO;
1302 if (role & BDRV_CHILD_COW) {
1303 flags &= ~BDRV_O_TEMPORARY;
1306 *child_flags = flags;
1309 static void bdrv_child_cb_attach(BdrvChild *child)
1311 BlockDriverState *bs = child->opaque;
1313 if (child->role & BDRV_CHILD_COW) {
1314 bdrv_backing_attach(child);
1317 bdrv_apply_subtree_drain(child, bs);
1320 static void bdrv_child_cb_detach(BdrvChild *child)
1322 BlockDriverState *bs = child->opaque;
1324 if (child->role & BDRV_CHILD_COW) {
1325 bdrv_backing_detach(child);
1328 bdrv_unapply_subtree_drain(child, bs);
1331 static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1332 const char *filename, Error **errp)
1334 if (c->role & BDRV_CHILD_COW) {
1335 return bdrv_backing_update_filename(c, base, filename, errp);
1337 return 0;
1340 const BdrvChildClass child_of_bds = {
1341 .parent_is_bds = true,
1342 .get_parent_desc = bdrv_child_get_parent_desc,
1343 .inherit_options = bdrv_inherited_options,
1344 .drained_begin = bdrv_child_cb_drained_begin,
1345 .drained_poll = bdrv_child_cb_drained_poll,
1346 .drained_end = bdrv_child_cb_drained_end,
1347 .attach = bdrv_child_cb_attach,
1348 .detach = bdrv_child_cb_detach,
1349 .inactivate = bdrv_child_cb_inactivate,
1350 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1351 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1352 .update_filename = bdrv_child_cb_update_filename,
1355 static int bdrv_open_flags(BlockDriverState *bs, int flags)
1357 int open_flags = flags;
1360 * Clear flags that are internal to the block layer before opening the
1361 * image.
1363 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1365 return open_flags;
1368 static void update_flags_from_options(int *flags, QemuOpts *opts)
1370 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
1372 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1373 *flags |= BDRV_O_NO_FLUSH;
1376 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1377 *flags |= BDRV_O_NOCACHE;
1380 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
1381 *flags |= BDRV_O_RDWR;
1384 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1385 *flags |= BDRV_O_AUTO_RDONLY;
1389 static void update_options_from_flags(QDict *options, int flags)
1391 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1392 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1394 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
1395 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1396 flags & BDRV_O_NO_FLUSH);
1398 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1399 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1401 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1402 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1403 flags & BDRV_O_AUTO_RDONLY);
1407 static void bdrv_assign_node_name(BlockDriverState *bs,
1408 const char *node_name,
1409 Error **errp)
1411 char *gen_node_name = NULL;
1413 if (!node_name) {
1414 node_name = gen_node_name = id_generate(ID_BLOCK);
1415 } else if (!id_wellformed(node_name)) {
1417 * Check for empty string or invalid characters, but not if it is
1418 * generated (generated names use characters not available to the user)
1420 error_setg(errp, "Invalid node name");
1421 return;
1424 /* takes care of avoiding namespaces collisions */
1425 if (blk_by_name(node_name)) {
1426 error_setg(errp, "node-name=%s is conflicting with a device id",
1427 node_name);
1428 goto out;
1431 /* takes care of avoiding duplicates node names */
1432 if (bdrv_find_node(node_name)) {
1433 error_setg(errp, "Duplicate node name");
1434 goto out;
1437 /* Make sure that the node name isn't truncated */
1438 if (strlen(node_name) >= sizeof(bs->node_name)) {
1439 error_setg(errp, "Node name too long");
1440 goto out;
1443 /* copy node name into the bs and insert it into the graph list */
1444 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1445 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
1446 out:
1447 g_free(gen_node_name);
1450 static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1451 const char *node_name, QDict *options,
1452 int open_flags, Error **errp)
1454 Error *local_err = NULL;
1455 int i, ret;
1457 bdrv_assign_node_name(bs, node_name, &local_err);
1458 if (local_err) {
1459 error_propagate(errp, local_err);
1460 return -EINVAL;
1463 bs->drv = drv;
1464 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1465 bs->opaque = g_malloc0(drv->instance_size);
1467 if (drv->bdrv_file_open) {
1468 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1469 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1470 } else if (drv->bdrv_open) {
1471 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1472 } else {
1473 ret = 0;
1476 if (ret < 0) {
1477 if (local_err) {
1478 error_propagate(errp, local_err);
1479 } else if (bs->filename[0]) {
1480 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1481 } else {
1482 error_setg_errno(errp, -ret, "Could not open image");
1484 goto open_failed;
1487 ret = refresh_total_sectors(bs, bs->total_sectors);
1488 if (ret < 0) {
1489 error_setg_errno(errp, -ret, "Could not refresh total sector count");
1490 return ret;
1493 bdrv_refresh_limits(bs, &local_err);
1494 if (local_err) {
1495 error_propagate(errp, local_err);
1496 return -EINVAL;
1499 assert(bdrv_opt_mem_align(bs) != 0);
1500 assert(bdrv_min_mem_align(bs) != 0);
1501 assert(is_power_of_2(bs->bl.request_alignment));
1503 for (i = 0; i < bs->quiesce_counter; i++) {
1504 if (drv->bdrv_co_drain_begin) {
1505 drv->bdrv_co_drain_begin(bs);
1509 return 0;
1510 open_failed:
1511 bs->drv = NULL;
1512 if (bs->file != NULL) {
1513 bdrv_unref_child(bs, bs->file);
1514 bs->file = NULL;
1516 g_free(bs->opaque);
1517 bs->opaque = NULL;
1518 return ret;
1521 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1522 int flags, Error **errp)
1524 BlockDriverState *bs;
1525 int ret;
1527 bs = bdrv_new();
1528 bs->open_flags = flags;
1529 bs->explicit_options = qdict_new();
1530 bs->options = qdict_new();
1531 bs->opaque = NULL;
1533 update_options_from_flags(bs->options, flags);
1535 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1536 if (ret < 0) {
1537 qobject_unref(bs->explicit_options);
1538 bs->explicit_options = NULL;
1539 qobject_unref(bs->options);
1540 bs->options = NULL;
1541 bdrv_unref(bs);
1542 return NULL;
1545 return bs;
1548 QemuOptsList bdrv_runtime_opts = {
1549 .name = "bdrv_common",
1550 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1551 .desc = {
1553 .name = "node-name",
1554 .type = QEMU_OPT_STRING,
1555 .help = "Node name of the block device node",
1558 .name = "driver",
1559 .type = QEMU_OPT_STRING,
1560 .help = "Block driver to use for the node",
1563 .name = BDRV_OPT_CACHE_DIRECT,
1564 .type = QEMU_OPT_BOOL,
1565 .help = "Bypass software writeback cache on the host",
1568 .name = BDRV_OPT_CACHE_NO_FLUSH,
1569 .type = QEMU_OPT_BOOL,
1570 .help = "Ignore flush requests",
1573 .name = BDRV_OPT_READ_ONLY,
1574 .type = QEMU_OPT_BOOL,
1575 .help = "Node is opened in read-only mode",
1578 .name = BDRV_OPT_AUTO_READ_ONLY,
1579 .type = QEMU_OPT_BOOL,
1580 .help = "Node can become read-only if opening read-write fails",
1583 .name = "detect-zeroes",
1584 .type = QEMU_OPT_STRING,
1585 .help = "try to optimize zero writes (off, on, unmap)",
1588 .name = BDRV_OPT_DISCARD,
1589 .type = QEMU_OPT_STRING,
1590 .help = "discard operation (ignore/off, unmap/on)",
1593 .name = BDRV_OPT_FORCE_SHARE,
1594 .type = QEMU_OPT_BOOL,
1595 .help = "always accept other writers (default: off)",
1597 { /* end of list */ }
1601 QemuOptsList bdrv_create_opts_simple = {
1602 .name = "simple-create-opts",
1603 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
1604 .desc = {
1606 .name = BLOCK_OPT_SIZE,
1607 .type = QEMU_OPT_SIZE,
1608 .help = "Virtual disk size"
1611 .name = BLOCK_OPT_PREALLOC,
1612 .type = QEMU_OPT_STRING,
1613 .help = "Preallocation mode (allowed values: off)"
1615 { /* end of list */ }
1620 * Common part for opening disk images and files
1622 * Removes all processed options from *options.
1624 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1625 QDict *options, Error **errp)
1627 int ret, open_flags;
1628 const char *filename;
1629 const char *driver_name = NULL;
1630 const char *node_name = NULL;
1631 const char *discard;
1632 QemuOpts *opts;
1633 BlockDriver *drv;
1634 Error *local_err = NULL;
1636 assert(bs->file == NULL);
1637 assert(options != NULL && bs->options != options);
1639 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1640 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
1641 ret = -EINVAL;
1642 goto fail_opts;
1645 update_flags_from_options(&bs->open_flags, opts);
1647 driver_name = qemu_opt_get(opts, "driver");
1648 drv = bdrv_find_format(driver_name);
1649 assert(drv != NULL);
1651 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1653 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1654 error_setg(errp,
1655 BDRV_OPT_FORCE_SHARE
1656 "=on can only be used with read-only images");
1657 ret = -EINVAL;
1658 goto fail_opts;
1661 if (file != NULL) {
1662 bdrv_refresh_filename(blk_bs(file));
1663 filename = blk_bs(file)->filename;
1664 } else {
1666 * Caution: while qdict_get_try_str() is fine, getting
1667 * non-string types would require more care. When @options
1668 * come from -blockdev or blockdev_add, its members are typed
1669 * according to the QAPI schema, but when they come from
1670 * -drive, they're all QString.
1672 filename = qdict_get_try_str(options, "filename");
1675 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1676 error_setg(errp, "The '%s' block driver requires a file name",
1677 drv->format_name);
1678 ret = -EINVAL;
1679 goto fail_opts;
1682 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1683 drv->format_name);
1685 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1687 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
1688 if (!bs->read_only && bdrv_is_whitelisted(drv, true)) {
1689 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1690 } else {
1691 ret = -ENOTSUP;
1693 if (ret < 0) {
1694 error_setg(errp,
1695 !bs->read_only && bdrv_is_whitelisted(drv, true)
1696 ? "Driver '%s' can only be used for read-only devices"
1697 : "Driver '%s' is not whitelisted",
1698 drv->format_name);
1699 goto fail_opts;
1703 /* bdrv_new() and bdrv_close() make it so */
1704 assert(qatomic_read(&bs->copy_on_read) == 0);
1706 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1707 if (!bs->read_only) {
1708 bdrv_enable_copy_on_read(bs);
1709 } else {
1710 error_setg(errp, "Can't use copy-on-read on read-only device");
1711 ret = -EINVAL;
1712 goto fail_opts;
1716 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
1717 if (discard != NULL) {
1718 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1719 error_setg(errp, "Invalid discard option");
1720 ret = -EINVAL;
1721 goto fail_opts;
1725 bs->detect_zeroes =
1726 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1727 if (local_err) {
1728 error_propagate(errp, local_err);
1729 ret = -EINVAL;
1730 goto fail_opts;
1733 if (filename != NULL) {
1734 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1735 } else {
1736 bs->filename[0] = '\0';
1738 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1740 /* Open the image, either directly or using a protocol */
1741 open_flags = bdrv_open_flags(bs, bs->open_flags);
1742 node_name = qemu_opt_get(opts, "node-name");
1744 assert(!drv->bdrv_file_open || file == NULL);
1745 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1746 if (ret < 0) {
1747 goto fail_opts;
1750 qemu_opts_del(opts);
1751 return 0;
1753 fail_opts:
1754 qemu_opts_del(opts);
1755 return ret;
1758 static QDict *parse_json_filename(const char *filename, Error **errp)
1760 QObject *options_obj;
1761 QDict *options;
1762 int ret;
1764 ret = strstart(filename, "json:", &filename);
1765 assert(ret);
1767 options_obj = qobject_from_json(filename, errp);
1768 if (!options_obj) {
1769 error_prepend(errp, "Could not parse the JSON options: ");
1770 return NULL;
1773 options = qobject_to(QDict, options_obj);
1774 if (!options) {
1775 qobject_unref(options_obj);
1776 error_setg(errp, "Invalid JSON object given");
1777 return NULL;
1780 qdict_flatten(options);
1782 return options;
1785 static void parse_json_protocol(QDict *options, const char **pfilename,
1786 Error **errp)
1788 QDict *json_options;
1789 Error *local_err = NULL;
1791 /* Parse json: pseudo-protocol */
1792 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1793 return;
1796 json_options = parse_json_filename(*pfilename, &local_err);
1797 if (local_err) {
1798 error_propagate(errp, local_err);
1799 return;
1802 /* Options given in the filename have lower priority than options
1803 * specified directly */
1804 qdict_join(options, json_options, false);
1805 qobject_unref(json_options);
1806 *pfilename = NULL;
1810 * Fills in default options for opening images and converts the legacy
1811 * filename/flags pair to option QDict entries.
1812 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1813 * block driver has been specified explicitly.
1815 static int bdrv_fill_options(QDict **options, const char *filename,
1816 int *flags, Error **errp)
1818 const char *drvname;
1819 bool protocol = *flags & BDRV_O_PROTOCOL;
1820 bool parse_filename = false;
1821 BlockDriver *drv = NULL;
1822 Error *local_err = NULL;
1825 * Caution: while qdict_get_try_str() is fine, getting non-string
1826 * types would require more care. When @options come from
1827 * -blockdev or blockdev_add, its members are typed according to
1828 * the QAPI schema, but when they come from -drive, they're all
1829 * QString.
1831 drvname = qdict_get_try_str(*options, "driver");
1832 if (drvname) {
1833 drv = bdrv_find_format(drvname);
1834 if (!drv) {
1835 error_setg(errp, "Unknown driver '%s'", drvname);
1836 return -ENOENT;
1838 /* If the user has explicitly specified the driver, this choice should
1839 * override the BDRV_O_PROTOCOL flag */
1840 protocol = drv->bdrv_file_open;
1843 if (protocol) {
1844 *flags |= BDRV_O_PROTOCOL;
1845 } else {
1846 *flags &= ~BDRV_O_PROTOCOL;
1849 /* Translate cache options from flags into options */
1850 update_options_from_flags(*options, *flags);
1852 /* Fetch the file name from the options QDict if necessary */
1853 if (protocol && filename) {
1854 if (!qdict_haskey(*options, "filename")) {
1855 qdict_put_str(*options, "filename", filename);
1856 parse_filename = true;
1857 } else {
1858 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1859 "the same time");
1860 return -EINVAL;
1864 /* Find the right block driver */
1865 /* See cautionary note on accessing @options above */
1866 filename = qdict_get_try_str(*options, "filename");
1868 if (!drvname && protocol) {
1869 if (filename) {
1870 drv = bdrv_find_protocol(filename, parse_filename, errp);
1871 if (!drv) {
1872 return -EINVAL;
1875 drvname = drv->format_name;
1876 qdict_put_str(*options, "driver", drvname);
1877 } else {
1878 error_setg(errp, "Must specify either driver or file");
1879 return -EINVAL;
1883 assert(drv || !protocol);
1885 /* Driver-specific filename parsing */
1886 if (drv && drv->bdrv_parse_filename && parse_filename) {
1887 drv->bdrv_parse_filename(filename, *options, &local_err);
1888 if (local_err) {
1889 error_propagate(errp, local_err);
1890 return -EINVAL;
1893 if (!drv->bdrv_needs_filename) {
1894 qdict_del(*options, "filename");
1898 return 0;
1901 static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1902 uint64_t perm, uint64_t shared,
1903 GSList *ignore_children, Error **errp);
1904 static void bdrv_child_abort_perm_update(BdrvChild *c);
1905 static void bdrv_child_set_perm(BdrvChild *c);
1907 typedef struct BlockReopenQueueEntry {
1908 bool prepared;
1909 bool perms_checked;
1910 BDRVReopenState state;
1911 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
1912 } BlockReopenQueueEntry;
1915 * Return the flags that @bs will have after the reopens in @q have
1916 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1917 * return the current flags.
1919 static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1921 BlockReopenQueueEntry *entry;
1923 if (q != NULL) {
1924 QTAILQ_FOREACH(entry, q, entry) {
1925 if (entry->state.bs == bs) {
1926 return entry->state.flags;
1931 return bs->open_flags;
1934 /* Returns whether the image file can be written to after the reopen queue @q
1935 * has been successfully applied, or right now if @q is NULL. */
1936 static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1937 BlockReopenQueue *q)
1939 int flags = bdrv_reopen_get_flags(q, bs);
1941 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1945 * Return whether the BDS can be written to. This is not necessarily
1946 * the same as !bdrv_is_read_only(bs), as inactivated images may not
1947 * be written to but do not count as read-only images.
1949 bool bdrv_is_writable(BlockDriverState *bs)
1951 return bdrv_is_writable_after_reopen(bs, NULL);
1954 static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
1955 BdrvChild *c, BdrvChildRole role,
1956 BlockReopenQueue *reopen_queue,
1957 uint64_t parent_perm, uint64_t parent_shared,
1958 uint64_t *nperm, uint64_t *nshared)
1960 assert(bs->drv && bs->drv->bdrv_child_perm);
1961 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
1962 parent_perm, parent_shared,
1963 nperm, nshared);
1964 /* TODO Take force_share from reopen_queue */
1965 if (child_bs && child_bs->force_share) {
1966 *nshared = BLK_PERM_ALL;
1971 * Check whether permissions on this node can be changed in a way that
1972 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1973 * permissions of all its parents. This involves checking whether all necessary
1974 * permission changes to child nodes can be performed.
1976 * A call to this function must always be followed by a call to bdrv_set_perm()
1977 * or bdrv_abort_perm_update().
1979 static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
1980 uint64_t cumulative_perms,
1981 uint64_t cumulative_shared_perms,
1982 GSList *ignore_children, Error **errp)
1984 BlockDriver *drv = bs->drv;
1985 BdrvChild *c;
1986 int ret;
1988 /* Write permissions never work with read-only images */
1989 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
1990 !bdrv_is_writable_after_reopen(bs, q))
1992 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
1993 error_setg(errp, "Block node is read-only");
1994 } else {
1995 uint64_t current_perms, current_shared;
1996 bdrv_get_cumulative_perm(bs, &current_perms, &current_shared);
1997 if (current_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
1998 error_setg(errp, "Cannot make block node read-only, there is "
1999 "a writer on it");
2000 } else {
2001 error_setg(errp, "Cannot make block node read-only and create "
2002 "a writer on it");
2006 return -EPERM;
2010 * Unaligned requests will automatically be aligned to bl.request_alignment
2011 * and without RESIZE we can't extend requests to write to space beyond the
2012 * end of the image, so it's required that the image size is aligned.
2014 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2015 !(cumulative_perms & BLK_PERM_RESIZE))
2017 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2018 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2019 "Image size is not a multiple of request "
2020 "alignment");
2021 return -EPERM;
2025 /* Check this node */
2026 if (!drv) {
2027 return 0;
2030 if (drv->bdrv_check_perm) {
2031 return drv->bdrv_check_perm(bs, cumulative_perms,
2032 cumulative_shared_perms, errp);
2035 /* Drivers that never have children can omit .bdrv_child_perm() */
2036 if (!drv->bdrv_child_perm) {
2037 assert(QLIST_EMPTY(&bs->children));
2038 return 0;
2041 /* Check all children */
2042 QLIST_FOREACH(c, &bs->children, next) {
2043 uint64_t cur_perm, cur_shared;
2045 bdrv_child_perm(bs, c->bs, c, c->role, q,
2046 cumulative_perms, cumulative_shared_perms,
2047 &cur_perm, &cur_shared);
2048 ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared, ignore_children,
2049 errp);
2050 if (ret < 0) {
2051 return ret;
2055 return 0;
2059 * Notifies drivers that after a previous bdrv_check_perm() call, the
2060 * permission update is not performed and any preparations made for it (e.g.
2061 * taken file locks) need to be undone.
2063 * This function recursively notifies all child nodes.
2065 static void bdrv_abort_perm_update(BlockDriverState *bs)
2067 BlockDriver *drv = bs->drv;
2068 BdrvChild *c;
2070 if (!drv) {
2071 return;
2074 if (drv->bdrv_abort_perm_update) {
2075 drv->bdrv_abort_perm_update(bs);
2078 QLIST_FOREACH(c, &bs->children, next) {
2079 bdrv_child_abort_perm_update(c);
2083 static void bdrv_set_perm(BlockDriverState *bs)
2085 uint64_t cumulative_perms, cumulative_shared_perms;
2086 BlockDriver *drv = bs->drv;
2087 BdrvChild *c;
2089 if (!drv) {
2090 return;
2093 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
2095 /* Update this node */
2096 if (drv->bdrv_set_perm) {
2097 drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2100 /* Drivers that never have children can omit .bdrv_child_perm() */
2101 if (!drv->bdrv_child_perm) {
2102 assert(QLIST_EMPTY(&bs->children));
2103 return;
2106 /* Update all children */
2107 QLIST_FOREACH(c, &bs->children, next) {
2108 bdrv_child_set_perm(c);
2112 void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2113 uint64_t *shared_perm)
2115 BdrvChild *c;
2116 uint64_t cumulative_perms = 0;
2117 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2119 QLIST_FOREACH(c, &bs->parents, next_parent) {
2120 cumulative_perms |= c->perm;
2121 cumulative_shared_perms &= c->shared_perm;
2124 *perm = cumulative_perms;
2125 *shared_perm = cumulative_shared_perms;
2128 static char *bdrv_child_user_desc(BdrvChild *c)
2130 if (c->klass->get_parent_desc) {
2131 return c->klass->get_parent_desc(c);
2134 return g_strdup("another user");
2137 char *bdrv_perm_names(uint64_t perm)
2139 struct perm_name {
2140 uint64_t perm;
2141 const char *name;
2142 } permissions[] = {
2143 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2144 { BLK_PERM_WRITE, "write" },
2145 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2146 { BLK_PERM_RESIZE, "resize" },
2147 { BLK_PERM_GRAPH_MOD, "change children" },
2148 { 0, NULL }
2151 GString *result = g_string_sized_new(30);
2152 struct perm_name *p;
2154 for (p = permissions; p->name; p++) {
2155 if (perm & p->perm) {
2156 if (result->len > 0) {
2157 g_string_append(result, ", ");
2159 g_string_append(result, p->name);
2163 return g_string_free(result, FALSE);
2167 * Checks whether a new reference to @bs can be added if the new user requires
2168 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
2169 * set, the BdrvChild objects in this list are ignored in the calculations;
2170 * this allows checking permission updates for an existing reference.
2172 * Needs to be followed by a call to either bdrv_set_perm() or
2173 * bdrv_abort_perm_update(). */
2174 static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
2175 uint64_t new_used_perm,
2176 uint64_t new_shared_perm,
2177 GSList *ignore_children,
2178 Error **errp)
2180 BdrvChild *c;
2181 uint64_t cumulative_perms = new_used_perm;
2182 uint64_t cumulative_shared_perms = new_shared_perm;
2185 /* There is no reason why anyone couldn't tolerate write_unchanged */
2186 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
2188 QLIST_FOREACH(c, &bs->parents, next_parent) {
2189 if (g_slist_find(ignore_children, c)) {
2190 continue;
2193 if ((new_used_perm & c->shared_perm) != new_used_perm) {
2194 char *user = bdrv_child_user_desc(c);
2195 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
2197 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
2198 "allow '%s' on %s",
2199 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2200 g_free(user);
2201 g_free(perm_names);
2202 return -EPERM;
2205 if ((c->perm & new_shared_perm) != c->perm) {
2206 char *user = bdrv_child_user_desc(c);
2207 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
2209 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
2210 "'%s' on %s",
2211 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2212 g_free(user);
2213 g_free(perm_names);
2214 return -EPERM;
2217 cumulative_perms |= c->perm;
2218 cumulative_shared_perms &= c->shared_perm;
2221 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
2222 ignore_children, errp);
2225 /* Needs to be followed by a call to either bdrv_child_set_perm() or
2226 * bdrv_child_abort_perm_update(). */
2227 static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
2228 uint64_t perm, uint64_t shared,
2229 GSList *ignore_children, Error **errp)
2231 int ret;
2233 ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
2234 ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
2235 g_slist_free(ignore_children);
2237 if (ret < 0) {
2238 return ret;
2241 if (!c->has_backup_perm) {
2242 c->has_backup_perm = true;
2243 c->backup_perm = c->perm;
2244 c->backup_shared_perm = c->shared_perm;
2247 * Note: it's OK if c->has_backup_perm was already set, as we can find the
2248 * same child twice during check_perm procedure
2251 c->perm = perm;
2252 c->shared_perm = shared;
2254 return 0;
2257 static void bdrv_child_set_perm(BdrvChild *c)
2259 c->has_backup_perm = false;
2261 bdrv_set_perm(c->bs);
2264 static void bdrv_child_abort_perm_update(BdrvChild *c)
2266 if (c->has_backup_perm) {
2267 c->perm = c->backup_perm;
2268 c->shared_perm = c->backup_shared_perm;
2269 c->has_backup_perm = false;
2272 bdrv_abort_perm_update(c->bs);
2275 static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp)
2277 int ret;
2278 uint64_t perm, shared_perm;
2280 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
2281 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, errp);
2282 if (ret < 0) {
2283 bdrv_abort_perm_update(bs);
2284 return ret;
2286 bdrv_set_perm(bs);
2288 return 0;
2291 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2292 Error **errp)
2294 Error *local_err = NULL;
2295 int ret;
2297 ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, &local_err);
2298 if (ret < 0) {
2299 bdrv_child_abort_perm_update(c);
2300 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2301 /* tighten permissions */
2302 error_propagate(errp, local_err);
2303 } else {
2305 * Our caller may intend to only loosen restrictions and
2306 * does not expect this function to fail. Errors are not
2307 * fatal in such a case, so we can just hide them from our
2308 * caller.
2310 error_free(local_err);
2311 ret = 0;
2313 return ret;
2316 bdrv_child_set_perm(c);
2318 return 0;
2321 int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2323 uint64_t parent_perms, parent_shared;
2324 uint64_t perms, shared;
2326 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
2327 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
2328 parent_perms, parent_shared, &perms, &shared);
2330 return bdrv_child_try_set_perm(c, perms, shared, errp);
2334 * Default implementation for .bdrv_child_perm() for block filters:
2335 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2336 * filtered child.
2338 static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
2339 BdrvChildRole role,
2340 BlockReopenQueue *reopen_queue,
2341 uint64_t perm, uint64_t shared,
2342 uint64_t *nperm, uint64_t *nshared)
2344 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2345 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
2348 static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
2349 BdrvChildRole role,
2350 BlockReopenQueue *reopen_queue,
2351 uint64_t perm, uint64_t shared,
2352 uint64_t *nperm, uint64_t *nshared)
2354 assert(role & BDRV_CHILD_COW);
2357 * We want consistent read from backing files if the parent needs it.
2358 * No other operations are performed on backing files.
2360 perm &= BLK_PERM_CONSISTENT_READ;
2363 * If the parent can deal with changing data, we're okay with a
2364 * writable and resizable backing file.
2365 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2367 if (shared & BLK_PERM_WRITE) {
2368 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2369 } else {
2370 shared = 0;
2373 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2374 BLK_PERM_WRITE_UNCHANGED;
2376 if (bs->open_flags & BDRV_O_INACTIVE) {
2377 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2380 *nperm = perm;
2381 *nshared = shared;
2384 static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
2385 BdrvChildRole role,
2386 BlockReopenQueue *reopen_queue,
2387 uint64_t perm, uint64_t shared,
2388 uint64_t *nperm, uint64_t *nshared)
2390 int flags;
2392 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
2394 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2397 * Apart from the modifications below, the same permissions are
2398 * forwarded and left alone as for filters
2400 bdrv_filter_default_perms(bs, c, role, reopen_queue,
2401 perm, shared, &perm, &shared);
2403 if (role & BDRV_CHILD_METADATA) {
2404 /* Format drivers may touch metadata even if the guest doesn't write */
2405 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2406 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2410 * bs->file always needs to be consistent because of the
2411 * metadata. We can never allow other users to resize or write
2412 * to it.
2414 if (!(flags & BDRV_O_NO_IO)) {
2415 perm |= BLK_PERM_CONSISTENT_READ;
2417 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2420 if (role & BDRV_CHILD_DATA) {
2422 * Technically, everything in this block is a subset of the
2423 * BDRV_CHILD_METADATA path taken above, and so this could
2424 * be an "else if" branch. However, that is not obvious, and
2425 * this function is not performance critical, therefore we let
2426 * this be an independent "if".
2430 * We cannot allow other users to resize the file because the
2431 * format driver might have some assumptions about the size
2432 * (e.g. because it is stored in metadata, or because the file
2433 * is split into fixed-size data files).
2435 shared &= ~BLK_PERM_RESIZE;
2438 * WRITE_UNCHANGED often cannot be performed as such on the
2439 * data file. For example, the qcow2 driver may still need to
2440 * write copied clusters on copy-on-read.
2442 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2443 perm |= BLK_PERM_WRITE;
2447 * If the data file is written to, the format driver may
2448 * expect to be able to resize it by writing beyond the EOF.
2450 if (perm & BLK_PERM_WRITE) {
2451 perm |= BLK_PERM_RESIZE;
2455 if (bs->open_flags & BDRV_O_INACTIVE) {
2456 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2459 *nperm = perm;
2460 *nshared = shared;
2463 void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
2464 BdrvChildRole role, BlockReopenQueue *reopen_queue,
2465 uint64_t perm, uint64_t shared,
2466 uint64_t *nperm, uint64_t *nshared)
2468 if (role & BDRV_CHILD_FILTERED) {
2469 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2470 BDRV_CHILD_COW)));
2471 bdrv_filter_default_perms(bs, c, role, reopen_queue,
2472 perm, shared, nperm, nshared);
2473 } else if (role & BDRV_CHILD_COW) {
2474 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
2475 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
2476 perm, shared, nperm, nshared);
2477 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
2478 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
2479 perm, shared, nperm, nshared);
2480 } else {
2481 g_assert_not_reached();
2485 uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2487 static const uint64_t permissions[] = {
2488 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2489 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2490 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2491 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2492 [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD,
2495 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2496 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2498 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2500 return permissions[qapi_perm];
2503 static void bdrv_replace_child_noperm(BdrvChild *child,
2504 BlockDriverState *new_bs)
2506 BlockDriverState *old_bs = child->bs;
2507 int new_bs_quiesce_counter;
2508 int drain_saldo;
2510 assert(!child->frozen);
2512 if (old_bs && new_bs) {
2513 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2516 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2517 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2520 * If the new child node is drained but the old one was not, flush
2521 * all outstanding requests to the old child node.
2523 while (drain_saldo > 0 && child->klass->drained_begin) {
2524 bdrv_parent_drained_begin_single(child, true);
2525 drain_saldo--;
2528 if (old_bs) {
2529 /* Detach first so that the recursive drain sections coming from @child
2530 * are already gone and we only end the drain sections that came from
2531 * elsewhere. */
2532 if (child->klass->detach) {
2533 child->klass->detach(child);
2535 QLIST_REMOVE(child, next_parent);
2538 child->bs = new_bs;
2540 if (new_bs) {
2541 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2544 * Detaching the old node may have led to the new node's
2545 * quiesce_counter having been decreased. Not a problem, we
2546 * just need to recognize this here and then invoke
2547 * drained_end appropriately more often.
2549 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2550 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
2552 /* Attach only after starting new drained sections, so that recursive
2553 * drain sections coming from @child don't get an extra .drained_begin
2554 * callback. */
2555 if (child->klass->attach) {
2556 child->klass->attach(child);
2561 * If the old child node was drained but the new one is not, allow
2562 * requests to come in only after the new node has been attached.
2564 while (drain_saldo < 0 && child->klass->drained_end) {
2565 bdrv_parent_drained_end_single(child);
2566 drain_saldo++;
2571 * Updates @child to change its reference to point to @new_bs, including
2572 * checking and applying the necessary permission updates both to the old node
2573 * and to @new_bs.
2575 * NULL is passed as @new_bs for removing the reference before freeing @child.
2577 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2578 * function uses bdrv_set_perm() to update the permissions according to the new
2579 * reference that @new_bs gets.
2581 * Callers must ensure that child->frozen is false.
2583 static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
2585 BlockDriverState *old_bs = child->bs;
2587 /* Asserts that child->frozen == false */
2588 bdrv_replace_child_noperm(child, new_bs);
2591 * Start with the new node's permissions. If @new_bs is a (direct
2592 * or indirect) child of @old_bs, we must complete the permission
2593 * update on @new_bs before we loosen the restrictions on @old_bs.
2594 * Otherwise, bdrv_check_perm() on @old_bs would re-initiate
2595 * updating the permissions of @new_bs, and thus not purely loosen
2596 * restrictions.
2598 if (new_bs) {
2599 bdrv_set_perm(new_bs);
2602 if (old_bs) {
2604 * Update permissions for old node. We're just taking a parent away, so
2605 * we're loosening restrictions. Errors of permission update are not
2606 * fatal in this case, ignore them.
2608 bdrv_refresh_perms(old_bs, NULL);
2610 /* When the parent requiring a non-default AioContext is removed, the
2611 * node moves back to the main AioContext */
2612 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
2617 * This function steals the reference to child_bs from the caller.
2618 * That reference is later dropped by bdrv_root_unref_child().
2620 * On failure NULL is returned, errp is set and the reference to
2621 * child_bs is also dropped.
2623 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
2624 * (unless @child_bs is already in @ctx).
2626 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2627 const char *child_name,
2628 const BdrvChildClass *child_class,
2629 BdrvChildRole child_role,
2630 AioContext *ctx,
2631 uint64_t perm, uint64_t shared_perm,
2632 void *opaque, Error **errp)
2634 BdrvChild *child;
2635 Error *local_err = NULL;
2636 int ret;
2638 ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
2639 if (ret < 0) {
2640 bdrv_abort_perm_update(child_bs);
2641 bdrv_unref(child_bs);
2642 return NULL;
2645 child = g_new(BdrvChild, 1);
2646 *child = (BdrvChild) {
2647 .bs = NULL,
2648 .name = g_strdup(child_name),
2649 .klass = child_class,
2650 .role = child_role,
2651 .perm = perm,
2652 .shared_perm = shared_perm,
2653 .opaque = opaque,
2656 /* If the AioContexts don't match, first try to move the subtree of
2657 * child_bs into the AioContext of the new parent. If this doesn't work,
2658 * try moving the parent into the AioContext of child_bs instead. */
2659 if (bdrv_get_aio_context(child_bs) != ctx) {
2660 ret = bdrv_try_set_aio_context(child_bs, ctx, &local_err);
2661 if (ret < 0 && child_class->can_set_aio_ctx) {
2662 GSList *ignore = g_slist_prepend(NULL, child);
2663 ctx = bdrv_get_aio_context(child_bs);
2664 if (child_class->can_set_aio_ctx(child, ctx, &ignore, NULL)) {
2665 error_free(local_err);
2666 ret = 0;
2667 g_slist_free(ignore);
2668 ignore = g_slist_prepend(NULL, child);
2669 child_class->set_aio_ctx(child, ctx, &ignore);
2671 g_slist_free(ignore);
2673 if (ret < 0) {
2674 error_propagate(errp, local_err);
2675 g_free(child);
2676 bdrv_abort_perm_update(child_bs);
2677 bdrv_unref(child_bs);
2678 return NULL;
2682 /* This performs the matching bdrv_set_perm() for the above check. */
2683 bdrv_replace_child(child, child_bs);
2685 return child;
2689 * This function transfers the reference to child_bs from the caller
2690 * to parent_bs. That reference is later dropped by parent_bs on
2691 * bdrv_close() or if someone calls bdrv_unref_child().
2693 * On failure NULL is returned, errp is set and the reference to
2694 * child_bs is also dropped.
2696 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2697 * hold the AioContext lock for @child_bs, but not for @parent_bs.
2699 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2700 BlockDriverState *child_bs,
2701 const char *child_name,
2702 const BdrvChildClass *child_class,
2703 BdrvChildRole child_role,
2704 Error **errp)
2706 BdrvChild *child;
2707 uint64_t perm, shared_perm;
2709 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2711 assert(parent_bs->drv);
2712 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2713 perm, shared_perm, &perm, &shared_perm);
2715 child = bdrv_root_attach_child(child_bs, child_name, child_class,
2716 child_role, bdrv_get_aio_context(parent_bs),
2717 perm, shared_perm, parent_bs, errp);
2718 if (child == NULL) {
2719 return NULL;
2722 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2723 return child;
2726 static void bdrv_detach_child(BdrvChild *child)
2728 QLIST_SAFE_REMOVE(child, next);
2730 bdrv_replace_child(child, NULL);
2732 g_free(child->name);
2733 g_free(child);
2736 /* Callers must ensure that child->frozen is false. */
2737 void bdrv_root_unref_child(BdrvChild *child)
2739 BlockDriverState *child_bs;
2741 child_bs = child->bs;
2742 bdrv_detach_child(child);
2743 bdrv_unref(child_bs);
2747 * Clear all inherits_from pointers from children and grandchildren of
2748 * @root that point to @root, where necessary.
2750 static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child)
2752 BdrvChild *c;
2754 if (child->bs->inherits_from == root) {
2756 * Remove inherits_from only when the last reference between root and
2757 * child->bs goes away.
2759 QLIST_FOREACH(c, &root->children, next) {
2760 if (c != child && c->bs == child->bs) {
2761 break;
2764 if (c == NULL) {
2765 child->bs->inherits_from = NULL;
2769 QLIST_FOREACH(c, &child->bs->children, next) {
2770 bdrv_unset_inherits_from(root, c);
2774 /* Callers must ensure that child->frozen is false. */
2775 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2777 if (child == NULL) {
2778 return;
2781 bdrv_unset_inherits_from(parent, child);
2782 bdrv_root_unref_child(child);
2786 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2788 BdrvChild *c;
2789 QLIST_FOREACH(c, &bs->parents, next_parent) {
2790 if (c->klass->change_media) {
2791 c->klass->change_media(c, load);
2796 /* Return true if you can reach parent going through child->inherits_from
2797 * recursively. If parent or child are NULL, return false */
2798 static bool bdrv_inherits_from_recursive(BlockDriverState *child,
2799 BlockDriverState *parent)
2801 while (child && child != parent) {
2802 child = child->inherits_from;
2805 return child != NULL;
2809 * Return the BdrvChildRole for @bs's backing child. bs->backing is
2810 * mostly used for COW backing children (role = COW), but also for
2811 * filtered children (role = FILTERED | PRIMARY).
2813 static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
2815 if (bs->drv && bs->drv->is_filter) {
2816 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
2817 } else {
2818 return BDRV_CHILD_COW;
2823 * Sets the bs->backing link of a BDS. A new reference is created; callers
2824 * which don't need their own reference any more must call bdrv_unref().
2826 void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2827 Error **errp)
2829 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
2830 bdrv_inherits_from_recursive(backing_hd, bs);
2832 if (bdrv_is_backing_chain_frozen(bs, child_bs(bs->backing), errp)) {
2833 return;
2836 if (backing_hd) {
2837 bdrv_ref(backing_hd);
2840 if (bs->backing) {
2841 /* Cannot be frozen, we checked that above */
2842 bdrv_unref_child(bs, bs->backing);
2843 bs->backing = NULL;
2846 if (!backing_hd) {
2847 goto out;
2850 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_of_bds,
2851 bdrv_backing_role(bs), errp);
2852 /* If backing_hd was already part of bs's backing chain, and
2853 * inherits_from pointed recursively to bs then let's update it to
2854 * point directly to bs (else it will become NULL). */
2855 if (bs->backing && update_inherits_from) {
2856 backing_hd->inherits_from = bs;
2859 out:
2860 bdrv_refresh_limits(bs, NULL);
2864 * Opens the backing file for a BlockDriverState if not yet open
2866 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2867 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2868 * itself, all options starting with "${bdref_key}." are considered part of the
2869 * BlockdevRef.
2871 * TODO Can this be unified with bdrv_open_image()?
2873 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2874 const char *bdref_key, Error **errp)
2876 char *backing_filename = NULL;
2877 char *bdref_key_dot;
2878 const char *reference = NULL;
2879 int ret = 0;
2880 bool implicit_backing = false;
2881 BlockDriverState *backing_hd;
2882 QDict *options;
2883 QDict *tmp_parent_options = NULL;
2884 Error *local_err = NULL;
2886 if (bs->backing != NULL) {
2887 goto free_exit;
2890 /* NULL means an empty set of options */
2891 if (parent_options == NULL) {
2892 tmp_parent_options = qdict_new();
2893 parent_options = tmp_parent_options;
2896 bs->open_flags &= ~BDRV_O_NO_BACKING;
2898 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2899 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2900 g_free(bdref_key_dot);
2903 * Caution: while qdict_get_try_str() is fine, getting non-string
2904 * types would require more care. When @parent_options come from
2905 * -blockdev or blockdev_add, its members are typed according to
2906 * the QAPI schema, but when they come from -drive, they're all
2907 * QString.
2909 reference = qdict_get_try_str(parent_options, bdref_key);
2910 if (reference || qdict_haskey(options, "file.filename")) {
2911 /* keep backing_filename NULL */
2912 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
2913 qobject_unref(options);
2914 goto free_exit;
2915 } else {
2916 if (qdict_size(options) == 0) {
2917 /* If the user specifies options that do not modify the
2918 * backing file's behavior, we might still consider it the
2919 * implicit backing file. But it's easier this way, and
2920 * just specifying some of the backing BDS's options is
2921 * only possible with -drive anyway (otherwise the QAPI
2922 * schema forces the user to specify everything). */
2923 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
2926 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
2927 if (local_err) {
2928 ret = -EINVAL;
2929 error_propagate(errp, local_err);
2930 qobject_unref(options);
2931 goto free_exit;
2935 if (!bs->drv || !bs->drv->supports_backing) {
2936 ret = -EINVAL;
2937 error_setg(errp, "Driver doesn't support backing files");
2938 qobject_unref(options);
2939 goto free_exit;
2942 if (!reference &&
2943 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
2944 qdict_put_str(options, "driver", bs->backing_format);
2947 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
2948 &child_of_bds, bdrv_backing_role(bs), errp);
2949 if (!backing_hd) {
2950 bs->open_flags |= BDRV_O_NO_BACKING;
2951 error_prepend(errp, "Could not open backing file: ");
2952 ret = -EINVAL;
2953 goto free_exit;
2956 if (implicit_backing) {
2957 bdrv_refresh_filename(backing_hd);
2958 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
2959 backing_hd->filename);
2962 /* Hook up the backing file link; drop our reference, bs owns the
2963 * backing_hd reference now */
2964 bdrv_set_backing_hd(bs, backing_hd, &local_err);
2965 bdrv_unref(backing_hd);
2966 if (local_err) {
2967 error_propagate(errp, local_err);
2968 ret = -EINVAL;
2969 goto free_exit;
2972 qdict_del(parent_options, bdref_key);
2974 free_exit:
2975 g_free(backing_filename);
2976 qobject_unref(tmp_parent_options);
2977 return ret;
2980 static BlockDriverState *
2981 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
2982 BlockDriverState *parent, const BdrvChildClass *child_class,
2983 BdrvChildRole child_role, bool allow_none, Error **errp)
2985 BlockDriverState *bs = NULL;
2986 QDict *image_options;
2987 char *bdref_key_dot;
2988 const char *reference;
2990 assert(child_class != NULL);
2992 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2993 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2994 g_free(bdref_key_dot);
2997 * Caution: while qdict_get_try_str() is fine, getting non-string
2998 * types would require more care. When @options come from
2999 * -blockdev or blockdev_add, its members are typed according to
3000 * the QAPI schema, but when they come from -drive, they're all
3001 * QString.
3003 reference = qdict_get_try_str(options, bdref_key);
3004 if (!filename && !reference && !qdict_size(image_options)) {
3005 if (!allow_none) {
3006 error_setg(errp, "A block device must be specified for \"%s\"",
3007 bdref_key);
3009 qobject_unref(image_options);
3010 goto done;
3013 bs = bdrv_open_inherit(filename, reference, image_options, 0,
3014 parent, child_class, child_role, errp);
3015 if (!bs) {
3016 goto done;
3019 done:
3020 qdict_del(options, bdref_key);
3021 return bs;
3025 * Opens a disk image whose options are given as BlockdevRef in another block
3026 * device's options.
3028 * If allow_none is true, no image will be opened if filename is false and no
3029 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3031 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3032 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3033 * itself, all options starting with "${bdref_key}." are considered part of the
3034 * BlockdevRef.
3036 * The BlockdevRef will be removed from the options QDict.
3038 BdrvChild *bdrv_open_child(const char *filename,
3039 QDict *options, const char *bdref_key,
3040 BlockDriverState *parent,
3041 const BdrvChildClass *child_class,
3042 BdrvChildRole child_role,
3043 bool allow_none, Error **errp)
3045 BlockDriverState *bs;
3047 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
3048 child_role, allow_none, errp);
3049 if (bs == NULL) {
3050 return NULL;
3053 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3054 errp);
3058 * TODO Future callers may need to specify parent/child_class in order for
3059 * option inheritance to work. Existing callers use it for the root node.
3061 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3063 BlockDriverState *bs = NULL;
3064 QObject *obj = NULL;
3065 QDict *qdict = NULL;
3066 const char *reference = NULL;
3067 Visitor *v = NULL;
3069 if (ref->type == QTYPE_QSTRING) {
3070 reference = ref->u.reference;
3071 } else {
3072 BlockdevOptions *options = &ref->u.definition;
3073 assert(ref->type == QTYPE_QDICT);
3075 v = qobject_output_visitor_new(&obj);
3076 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
3077 visit_complete(v, &obj);
3079 qdict = qobject_to(QDict, obj);
3080 qdict_flatten(qdict);
3082 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3083 * compatibility with other callers) rather than what we want as the
3084 * real defaults. Apply the defaults here instead. */
3085 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3086 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3087 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
3088 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3092 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
3093 obj = NULL;
3094 qobject_unref(obj);
3095 visit_free(v);
3096 return bs;
3099 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3100 int flags,
3101 QDict *snapshot_options,
3102 Error **errp)
3104 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
3105 char *tmp_filename = g_malloc0(PATH_MAX + 1);
3106 int64_t total_size;
3107 QemuOpts *opts = NULL;
3108 BlockDriverState *bs_snapshot = NULL;
3109 Error *local_err = NULL;
3110 int ret;
3112 /* if snapshot, we create a temporary backing file and open it
3113 instead of opening 'filename' directly */
3115 /* Get the required size from the image */
3116 total_size = bdrv_getlength(bs);
3117 if (total_size < 0) {
3118 error_setg_errno(errp, -total_size, "Could not get image size");
3119 goto out;
3122 /* Create the temporary image */
3123 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
3124 if (ret < 0) {
3125 error_setg_errno(errp, -ret, "Could not get temporary filename");
3126 goto out;
3129 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
3130 &error_abort);
3131 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
3132 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
3133 qemu_opts_del(opts);
3134 if (ret < 0) {
3135 error_prepend(errp, "Could not create temporary overlay '%s': ",
3136 tmp_filename);
3137 goto out;
3140 /* Prepare options QDict for the temporary file */
3141 qdict_put_str(snapshot_options, "file.driver", "file");
3142 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3143 qdict_put_str(snapshot_options, "driver", "qcow2");
3145 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
3146 snapshot_options = NULL;
3147 if (!bs_snapshot) {
3148 goto out;
3151 /* bdrv_append() consumes a strong reference to bs_snapshot
3152 * (i.e. it will call bdrv_unref() on it) even on error, so in
3153 * order to be able to return one, we have to increase
3154 * bs_snapshot's refcount here */
3155 bdrv_ref(bs_snapshot);
3156 bdrv_append(bs_snapshot, bs, &local_err);
3157 if (local_err) {
3158 error_propagate(errp, local_err);
3159 bs_snapshot = NULL;
3160 goto out;
3163 out:
3164 qobject_unref(snapshot_options);
3165 g_free(tmp_filename);
3166 return bs_snapshot;
3170 * Opens a disk image (raw, qcow2, vmdk, ...)
3172 * options is a QDict of options to pass to the block drivers, or NULL for an
3173 * empty set of options. The reference to the QDict belongs to the block layer
3174 * after the call (even on failure), so if the caller intends to reuse the
3175 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
3177 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3178 * If it is not NULL, the referenced BDS will be reused.
3180 * The reference parameter may be used to specify an existing block device which
3181 * should be opened. If specified, neither options nor a filename may be given,
3182 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
3184 static BlockDriverState *bdrv_open_inherit(const char *filename,
3185 const char *reference,
3186 QDict *options, int flags,
3187 BlockDriverState *parent,
3188 const BdrvChildClass *child_class,
3189 BdrvChildRole child_role,
3190 Error **errp)
3192 int ret;
3193 BlockBackend *file = NULL;
3194 BlockDriverState *bs;
3195 BlockDriver *drv = NULL;
3196 BdrvChild *child;
3197 const char *drvname;
3198 const char *backing;
3199 Error *local_err = NULL;
3200 QDict *snapshot_options = NULL;
3201 int snapshot_flags = 0;
3203 assert(!child_class || !flags);
3204 assert(!child_class == !parent);
3206 if (reference) {
3207 bool options_non_empty = options ? qdict_size(options) : false;
3208 qobject_unref(options);
3210 if (filename || options_non_empty) {
3211 error_setg(errp, "Cannot reference an existing block device with "
3212 "additional options or a new filename");
3213 return NULL;
3216 bs = bdrv_lookup_bs(reference, reference, errp);
3217 if (!bs) {
3218 return NULL;
3221 bdrv_ref(bs);
3222 return bs;
3225 bs = bdrv_new();
3227 /* NULL means an empty set of options */
3228 if (options == NULL) {
3229 options = qdict_new();
3232 /* json: syntax counts as explicit options, as if in the QDict */
3233 parse_json_protocol(options, &filename, &local_err);
3234 if (local_err) {
3235 goto fail;
3238 bs->explicit_options = qdict_clone_shallow(options);
3240 if (child_class) {
3241 bool parent_is_format;
3243 if (parent->drv) {
3244 parent_is_format = parent->drv->is_format;
3245 } else {
3247 * parent->drv is not set yet because this node is opened for
3248 * (potential) format probing. That means that @parent is going
3249 * to be a format node.
3251 parent_is_format = true;
3254 bs->inherits_from = parent;
3255 child_class->inherit_options(child_role, parent_is_format,
3256 &flags, options,
3257 parent->open_flags, parent->options);
3260 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
3261 if (ret < 0) {
3262 goto fail;
3266 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3267 * Caution: getting a boolean member of @options requires care.
3268 * When @options come from -blockdev or blockdev_add, members are
3269 * typed according to the QAPI schema, but when they come from
3270 * -drive, they're all QString.
3272 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3273 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3274 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3275 } else {
3276 flags &= ~BDRV_O_RDWR;
3279 if (flags & BDRV_O_SNAPSHOT) {
3280 snapshot_options = qdict_new();
3281 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3282 flags, options);
3283 /* Let bdrv_backing_options() override "read-only" */
3284 qdict_del(options, BDRV_OPT_READ_ONLY);
3285 bdrv_inherited_options(BDRV_CHILD_COW, true,
3286 &flags, options, flags, options);
3289 bs->open_flags = flags;
3290 bs->options = options;
3291 options = qdict_clone_shallow(options);
3293 /* Find the right image format driver */
3294 /* See cautionary note on accessing @options above */
3295 drvname = qdict_get_try_str(options, "driver");
3296 if (drvname) {
3297 drv = bdrv_find_format(drvname);
3298 if (!drv) {
3299 error_setg(errp, "Unknown driver: '%s'", drvname);
3300 goto fail;
3304 assert(drvname || !(flags & BDRV_O_PROTOCOL));
3306 /* See cautionary note on accessing @options above */
3307 backing = qdict_get_try_str(options, "backing");
3308 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3309 (backing && *backing == '\0'))
3311 if (backing) {
3312 warn_report("Use of \"backing\": \"\" is deprecated; "
3313 "use \"backing\": null instead");
3315 flags |= BDRV_O_NO_BACKING;
3316 qdict_del(bs->explicit_options, "backing");
3317 qdict_del(bs->options, "backing");
3318 qdict_del(options, "backing");
3321 /* Open image file without format layer. This BlockBackend is only used for
3322 * probing, the block drivers will do their own bdrv_open_child() for the
3323 * same BDS, which is why we put the node name back into options. */
3324 if ((flags & BDRV_O_PROTOCOL) == 0) {
3325 BlockDriverState *file_bs;
3327 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
3328 &child_of_bds, BDRV_CHILD_IMAGE,
3329 true, &local_err);
3330 if (local_err) {
3331 goto fail;
3333 if (file_bs != NULL) {
3334 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3335 * looking at the header to guess the image format. This works even
3336 * in cases where a guest would not see a consistent state. */
3337 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
3338 blk_insert_bs(file, file_bs, &local_err);
3339 bdrv_unref(file_bs);
3340 if (local_err) {
3341 goto fail;
3344 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
3348 /* Image format probing */
3349 bs->probed = !drv;
3350 if (!drv && file) {
3351 ret = find_image_format(file, filename, &drv, &local_err);
3352 if (ret < 0) {
3353 goto fail;
3356 * This option update would logically belong in bdrv_fill_options(),
3357 * but we first need to open bs->file for the probing to work, while
3358 * opening bs->file already requires the (mostly) final set of options
3359 * so that cache mode etc. can be inherited.
3361 * Adding the driver later is somewhat ugly, but it's not an option
3362 * that would ever be inherited, so it's correct. We just need to make
3363 * sure to update both bs->options (which has the full effective
3364 * options for bs) and options (which has file.* already removed).
3366 qdict_put_str(bs->options, "driver", drv->format_name);
3367 qdict_put_str(options, "driver", drv->format_name);
3368 } else if (!drv) {
3369 error_setg(errp, "Must specify either driver or file");
3370 goto fail;
3373 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3374 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3375 /* file must be NULL if a protocol BDS is about to be created
3376 * (the inverse results in an error message from bdrv_open_common()) */
3377 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3379 /* Open the image */
3380 ret = bdrv_open_common(bs, file, options, &local_err);
3381 if (ret < 0) {
3382 goto fail;
3385 if (file) {
3386 blk_unref(file);
3387 file = NULL;
3390 /* If there is a backing file, use it */
3391 if ((flags & BDRV_O_NO_BACKING) == 0) {
3392 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
3393 if (ret < 0) {
3394 goto close_and_fail;
3398 /* Remove all children options and references
3399 * from bs->options and bs->explicit_options */
3400 QLIST_FOREACH(child, &bs->children, next) {
3401 char *child_key_dot;
3402 child_key_dot = g_strdup_printf("%s.", child->name);
3403 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3404 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
3405 qdict_del(bs->explicit_options, child->name);
3406 qdict_del(bs->options, child->name);
3407 g_free(child_key_dot);
3410 /* Check if any unknown options were used */
3411 if (qdict_size(options) != 0) {
3412 const QDictEntry *entry = qdict_first(options);
3413 if (flags & BDRV_O_PROTOCOL) {
3414 error_setg(errp, "Block protocol '%s' doesn't support the option "
3415 "'%s'", drv->format_name, entry->key);
3416 } else {
3417 error_setg(errp,
3418 "Block format '%s' does not support the option '%s'",
3419 drv->format_name, entry->key);
3422 goto close_and_fail;
3425 bdrv_parent_cb_change_media(bs, true);
3427 qobject_unref(options);
3428 options = NULL;
3430 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3431 * temporary snapshot afterwards. */
3432 if (snapshot_flags) {
3433 BlockDriverState *snapshot_bs;
3434 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3435 snapshot_options, &local_err);
3436 snapshot_options = NULL;
3437 if (local_err) {
3438 goto close_and_fail;
3440 /* We are not going to return bs but the overlay on top of it
3441 * (snapshot_bs); thus, we have to drop the strong reference to bs
3442 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3443 * though, because the overlay still has a reference to it. */
3444 bdrv_unref(bs);
3445 bs = snapshot_bs;
3448 return bs;
3450 fail:
3451 blk_unref(file);
3452 qobject_unref(snapshot_options);
3453 qobject_unref(bs->explicit_options);
3454 qobject_unref(bs->options);
3455 qobject_unref(options);
3456 bs->options = NULL;
3457 bs->explicit_options = NULL;
3458 bdrv_unref(bs);
3459 error_propagate(errp, local_err);
3460 return NULL;
3462 close_and_fail:
3463 bdrv_unref(bs);
3464 qobject_unref(snapshot_options);
3465 qobject_unref(options);
3466 error_propagate(errp, local_err);
3467 return NULL;
3470 BlockDriverState *bdrv_open(const char *filename, const char *reference,
3471 QDict *options, int flags, Error **errp)
3473 return bdrv_open_inherit(filename, reference, options, flags, NULL,
3474 NULL, 0, errp);
3477 /* Return true if the NULL-terminated @list contains @str */
3478 static bool is_str_in_list(const char *str, const char *const *list)
3480 if (str && list) {
3481 int i;
3482 for (i = 0; list[i] != NULL; i++) {
3483 if (!strcmp(str, list[i])) {
3484 return true;
3488 return false;
3492 * Check that every option set in @bs->options is also set in
3493 * @new_opts.
3495 * Options listed in the common_options list and in
3496 * @bs->drv->mutable_opts are skipped.
3498 * Return 0 on success, otherwise return -EINVAL and set @errp.
3500 static int bdrv_reset_options_allowed(BlockDriverState *bs,
3501 const QDict *new_opts, Error **errp)
3503 const QDictEntry *e;
3504 /* These options are common to all block drivers and are handled
3505 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3506 const char *const common_options[] = {
3507 "node-name", "discard", "cache.direct", "cache.no-flush",
3508 "read-only", "auto-read-only", "detect-zeroes", NULL
3511 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
3512 if (!qdict_haskey(new_opts, e->key) &&
3513 !is_str_in_list(e->key, common_options) &&
3514 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
3515 error_setg(errp, "Option '%s' cannot be reset "
3516 "to its default value", e->key);
3517 return -EINVAL;
3521 return 0;
3525 * Returns true if @child can be reached recursively from @bs
3527 static bool bdrv_recurse_has_child(BlockDriverState *bs,
3528 BlockDriverState *child)
3530 BdrvChild *c;
3532 if (bs == child) {
3533 return true;
3536 QLIST_FOREACH(c, &bs->children, next) {
3537 if (bdrv_recurse_has_child(c->bs, child)) {
3538 return true;
3542 return false;
3546 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3547 * reopen of multiple devices.
3549 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
3550 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3551 * be created and initialized. This newly created BlockReopenQueue should be
3552 * passed back in for subsequent calls that are intended to be of the same
3553 * atomic 'set'.
3555 * bs is the BlockDriverState to add to the reopen queue.
3557 * options contains the changed options for the associated bs
3558 * (the BlockReopenQueue takes ownership)
3560 * flags contains the open flags for the associated bs
3562 * returns a pointer to bs_queue, which is either the newly allocated
3563 * bs_queue, or the existing bs_queue being used.
3565 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
3567 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
3568 BlockDriverState *bs,
3569 QDict *options,
3570 const BdrvChildClass *klass,
3571 BdrvChildRole role,
3572 bool parent_is_format,
3573 QDict *parent_options,
3574 int parent_flags,
3575 bool keep_old_opts)
3577 assert(bs != NULL);
3579 BlockReopenQueueEntry *bs_entry;
3580 BdrvChild *child;
3581 QDict *old_options, *explicit_options, *options_copy;
3582 int flags;
3583 QemuOpts *opts;
3585 /* Make sure that the caller remembered to use a drained section. This is
3586 * important to avoid graph changes between the recursive queuing here and
3587 * bdrv_reopen_multiple(). */
3588 assert(bs->quiesce_counter > 0);
3590 if (bs_queue == NULL) {
3591 bs_queue = g_new0(BlockReopenQueue, 1);
3592 QTAILQ_INIT(bs_queue);
3595 if (!options) {
3596 options = qdict_new();
3599 /* Check if this BlockDriverState is already in the queue */
3600 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
3601 if (bs == bs_entry->state.bs) {
3602 break;
3607 * Precedence of options:
3608 * 1. Explicitly passed in options (highest)
3609 * 2. Retained from explicitly set options of bs
3610 * 3. Inherited from parent node
3611 * 4. Retained from effective options of bs
3614 /* Old explicitly set values (don't overwrite by inherited value) */
3615 if (bs_entry || keep_old_opts) {
3616 old_options = qdict_clone_shallow(bs_entry ?
3617 bs_entry->state.explicit_options :
3618 bs->explicit_options);
3619 bdrv_join_options(bs, options, old_options);
3620 qobject_unref(old_options);
3623 explicit_options = qdict_clone_shallow(options);
3625 /* Inherit from parent node */
3626 if (parent_options) {
3627 flags = 0;
3628 klass->inherit_options(role, parent_is_format, &flags, options,
3629 parent_flags, parent_options);
3630 } else {
3631 flags = bdrv_get_flags(bs);
3634 if (keep_old_opts) {
3635 /* Old values are used for options that aren't set yet */
3636 old_options = qdict_clone_shallow(bs->options);
3637 bdrv_join_options(bs, options, old_options);
3638 qobject_unref(old_options);
3641 /* We have the final set of options so let's update the flags */
3642 options_copy = qdict_clone_shallow(options);
3643 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3644 qemu_opts_absorb_qdict(opts, options_copy, NULL);
3645 update_flags_from_options(&flags, opts);
3646 qemu_opts_del(opts);
3647 qobject_unref(options_copy);
3649 /* bdrv_open_inherit() sets and clears some additional flags internally */
3650 flags &= ~BDRV_O_PROTOCOL;
3651 if (flags & BDRV_O_RDWR) {
3652 flags |= BDRV_O_ALLOW_RDWR;
3655 if (!bs_entry) {
3656 bs_entry = g_new0(BlockReopenQueueEntry, 1);
3657 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
3658 } else {
3659 qobject_unref(bs_entry->state.options);
3660 qobject_unref(bs_entry->state.explicit_options);
3663 bs_entry->state.bs = bs;
3664 bs_entry->state.options = options;
3665 bs_entry->state.explicit_options = explicit_options;
3666 bs_entry->state.flags = flags;
3668 /* This needs to be overwritten in bdrv_reopen_prepare() */
3669 bs_entry->state.perm = UINT64_MAX;
3670 bs_entry->state.shared_perm = 0;
3673 * If keep_old_opts is false then it means that unspecified
3674 * options must be reset to their original value. We don't allow
3675 * resetting 'backing' but we need to know if the option is
3676 * missing in order to decide if we have to return an error.
3678 if (!keep_old_opts) {
3679 bs_entry->state.backing_missing =
3680 !qdict_haskey(options, "backing") &&
3681 !qdict_haskey(options, "backing.driver");
3684 QLIST_FOREACH(child, &bs->children, next) {
3685 QDict *new_child_options = NULL;
3686 bool child_keep_old = keep_old_opts;
3688 /* reopen can only change the options of block devices that were
3689 * implicitly created and inherited options. For other (referenced)
3690 * block devices, a syntax like "backing.foo" results in an error. */
3691 if (child->bs->inherits_from != bs) {
3692 continue;
3695 /* Check if the options contain a child reference */
3696 if (qdict_haskey(options, child->name)) {
3697 const char *childref = qdict_get_try_str(options, child->name);
3699 * The current child must not be reopened if the child
3700 * reference is null or points to a different node.
3702 if (g_strcmp0(childref, child->bs->node_name)) {
3703 continue;
3706 * If the child reference points to the current child then
3707 * reopen it with its existing set of options (note that
3708 * it can still inherit new options from the parent).
3710 child_keep_old = true;
3711 } else {
3712 /* Extract child options ("child-name.*") */
3713 char *child_key_dot = g_strdup_printf("%s.", child->name);
3714 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
3715 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
3716 g_free(child_key_dot);
3719 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
3720 child->klass, child->role, bs->drv->is_format,
3721 options, flags, child_keep_old);
3724 return bs_queue;
3727 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
3728 BlockDriverState *bs,
3729 QDict *options, bool keep_old_opts)
3731 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
3732 NULL, 0, keep_old_opts);
3736 * Reopen multiple BlockDriverStates atomically & transactionally.
3738 * The queue passed in (bs_queue) must have been built up previous
3739 * via bdrv_reopen_queue().
3741 * Reopens all BDS specified in the queue, with the appropriate
3742 * flags. All devices are prepared for reopen, and failure of any
3743 * device will cause all device changes to be abandoned, and intermediate
3744 * data cleaned up.
3746 * If all devices prepare successfully, then the changes are committed
3747 * to all devices.
3749 * All affected nodes must be drained between bdrv_reopen_queue() and
3750 * bdrv_reopen_multiple().
3752 int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
3754 int ret = -1;
3755 BlockReopenQueueEntry *bs_entry, *next;
3757 assert(bs_queue != NULL);
3759 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
3760 assert(bs_entry->state.bs->quiesce_counter > 0);
3761 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, errp)) {
3762 goto cleanup;
3764 bs_entry->prepared = true;
3767 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
3768 BDRVReopenState *state = &bs_entry->state;
3769 ret = bdrv_check_perm(state->bs, bs_queue, state->perm,
3770 state->shared_perm, NULL, errp);
3771 if (ret < 0) {
3772 goto cleanup_perm;
3774 /* Check if new_backing_bs would accept the new permissions */
3775 if (state->replace_backing_bs && state->new_backing_bs) {
3776 uint64_t nperm, nshared;
3777 bdrv_child_perm(state->bs, state->new_backing_bs,
3778 NULL, bdrv_backing_role(state->bs),
3779 bs_queue, state->perm, state->shared_perm,
3780 &nperm, &nshared);
3781 ret = bdrv_check_update_perm(state->new_backing_bs, NULL,
3782 nperm, nshared, NULL, errp);
3783 if (ret < 0) {
3784 goto cleanup_perm;
3787 bs_entry->perms_checked = true;
3791 * If we reach this point, we have success and just need to apply the
3792 * changes.
3794 * Reverse order is used to comfort qcow2 driver: on commit it need to write
3795 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
3796 * children are usually goes after parents in reopen-queue, so go from last
3797 * to first element.
3799 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
3800 bdrv_reopen_commit(&bs_entry->state);
3803 ret = 0;
3804 cleanup_perm:
3805 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3806 BDRVReopenState *state = &bs_entry->state;
3808 if (!bs_entry->perms_checked) {
3809 continue;
3812 if (ret == 0) {
3813 uint64_t perm, shared;
3815 bdrv_get_cumulative_perm(state->bs, &perm, &shared);
3816 assert(perm == state->perm);
3817 assert(shared == state->shared_perm);
3819 bdrv_set_perm(state->bs);
3820 } else {
3821 bdrv_abort_perm_update(state->bs);
3822 if (state->replace_backing_bs && state->new_backing_bs) {
3823 bdrv_abort_perm_update(state->new_backing_bs);
3828 if (ret == 0) {
3829 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
3830 BlockDriverState *bs = bs_entry->state.bs;
3832 if (bs->drv->bdrv_reopen_commit_post)
3833 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
3836 cleanup:
3837 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3838 if (ret) {
3839 if (bs_entry->prepared) {
3840 bdrv_reopen_abort(&bs_entry->state);
3842 qobject_unref(bs_entry->state.explicit_options);
3843 qobject_unref(bs_entry->state.options);
3845 if (bs_entry->state.new_backing_bs) {
3846 bdrv_unref(bs_entry->state.new_backing_bs);
3848 g_free(bs_entry);
3850 g_free(bs_queue);
3852 return ret;
3855 int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
3856 Error **errp)
3858 int ret;
3859 BlockReopenQueue *queue;
3860 QDict *opts = qdict_new();
3862 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
3864 bdrv_subtree_drained_begin(bs);
3865 queue = bdrv_reopen_queue(NULL, bs, opts, true);
3866 ret = bdrv_reopen_multiple(queue, errp);
3867 bdrv_subtree_drained_end(bs);
3869 return ret;
3872 static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3873 BdrvChild *c)
3875 BlockReopenQueueEntry *entry;
3877 QTAILQ_FOREACH(entry, q, entry) {
3878 BlockDriverState *bs = entry->state.bs;
3879 BdrvChild *child;
3881 QLIST_FOREACH(child, &bs->children, next) {
3882 if (child == c) {
3883 return entry;
3888 return NULL;
3891 static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3892 uint64_t *perm, uint64_t *shared)
3894 BdrvChild *c;
3895 BlockReopenQueueEntry *parent;
3896 uint64_t cumulative_perms = 0;
3897 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3899 QLIST_FOREACH(c, &bs->parents, next_parent) {
3900 parent = find_parent_in_reopen_queue(q, c);
3901 if (!parent) {
3902 cumulative_perms |= c->perm;
3903 cumulative_shared_perms &= c->shared_perm;
3904 } else {
3905 uint64_t nperm, nshared;
3907 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
3908 parent->state.perm, parent->state.shared_perm,
3909 &nperm, &nshared);
3911 cumulative_perms |= nperm;
3912 cumulative_shared_perms &= nshared;
3915 *perm = cumulative_perms;
3916 *shared = cumulative_shared_perms;
3919 static bool bdrv_reopen_can_attach(BlockDriverState *parent,
3920 BdrvChild *child,
3921 BlockDriverState *new_child,
3922 Error **errp)
3924 AioContext *parent_ctx = bdrv_get_aio_context(parent);
3925 AioContext *child_ctx = bdrv_get_aio_context(new_child);
3926 GSList *ignore;
3927 bool ret;
3929 ignore = g_slist_prepend(NULL, child);
3930 ret = bdrv_can_set_aio_context(new_child, parent_ctx, &ignore, NULL);
3931 g_slist_free(ignore);
3932 if (ret) {
3933 return ret;
3936 ignore = g_slist_prepend(NULL, child);
3937 ret = bdrv_can_set_aio_context(parent, child_ctx, &ignore, errp);
3938 g_slist_free(ignore);
3939 return ret;
3943 * Take a BDRVReopenState and check if the value of 'backing' in the
3944 * reopen_state->options QDict is valid or not.
3946 * If 'backing' is missing from the QDict then return 0.
3948 * If 'backing' contains the node name of the backing file of
3949 * reopen_state->bs then return 0.
3951 * If 'backing' contains a different node name (or is null) then check
3952 * whether the current backing file can be replaced with the new one.
3953 * If that's the case then reopen_state->replace_backing_bs is set to
3954 * true and reopen_state->new_backing_bs contains a pointer to the new
3955 * backing BlockDriverState (or NULL).
3957 * Return 0 on success, otherwise return < 0 and set @errp.
3959 static int bdrv_reopen_parse_backing(BDRVReopenState *reopen_state,
3960 Error **errp)
3962 BlockDriverState *bs = reopen_state->bs;
3963 BlockDriverState *overlay_bs, *below_bs, *new_backing_bs;
3964 QObject *value;
3965 const char *str;
3967 value = qdict_get(reopen_state->options, "backing");
3968 if (value == NULL) {
3969 return 0;
3972 switch (qobject_type(value)) {
3973 case QTYPE_QNULL:
3974 new_backing_bs = NULL;
3975 break;
3976 case QTYPE_QSTRING:
3977 str = qobject_get_try_str(value);
3978 new_backing_bs = bdrv_lookup_bs(NULL, str, errp);
3979 if (new_backing_bs == NULL) {
3980 return -EINVAL;
3981 } else if (bdrv_recurse_has_child(new_backing_bs, bs)) {
3982 error_setg(errp, "Making '%s' a backing file of '%s' "
3983 "would create a cycle", str, bs->node_name);
3984 return -EINVAL;
3986 break;
3987 default:
3988 /* 'backing' does not allow any other data type */
3989 g_assert_not_reached();
3993 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
3994 * bdrv_reopen_commit() won't fail.
3996 if (new_backing_bs) {
3997 if (!bdrv_reopen_can_attach(bs, bs->backing, new_backing_bs, errp)) {
3998 return -EINVAL;
4003 * Ensure that @bs can really handle backing files, because we are
4004 * about to give it one (or swap the existing one)
4006 if (bs->drv->is_filter) {
4007 /* Filters always have a file or a backing child */
4008 if (!bs->backing) {
4009 error_setg(errp, "'%s' is a %s filter node that does not support a "
4010 "backing child", bs->node_name, bs->drv->format_name);
4011 return -EINVAL;
4013 } else if (!bs->drv->supports_backing) {
4014 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
4015 "files", bs->drv->format_name, bs->node_name);
4016 return -EINVAL;
4020 * Find the "actual" backing file by skipping all links that point
4021 * to an implicit node, if any (e.g. a commit filter node).
4022 * We cannot use any of the bdrv_skip_*() functions here because
4023 * those return the first explicit node, while we are looking for
4024 * its overlay here.
4026 overlay_bs = bs;
4027 for (below_bs = bdrv_filter_or_cow_bs(overlay_bs);
4028 below_bs && below_bs->implicit;
4029 below_bs = bdrv_filter_or_cow_bs(overlay_bs))
4031 overlay_bs = below_bs;
4034 /* If we want to replace the backing file we need some extra checks */
4035 if (new_backing_bs != bdrv_filter_or_cow_bs(overlay_bs)) {
4036 /* Check for implicit nodes between bs and its backing file */
4037 if (bs != overlay_bs) {
4038 error_setg(errp, "Cannot change backing link if '%s' has "
4039 "an implicit backing file", bs->node_name);
4040 return -EPERM;
4043 * Check if the backing link that we want to replace is frozen.
4044 * Note that
4045 * bdrv_filter_or_cow_child(overlay_bs) == overlay_bs->backing,
4046 * because we know that overlay_bs == bs, and that @bs
4047 * either is a filter that uses ->backing or a COW format BDS
4048 * with bs->drv->supports_backing == true.
4050 if (bdrv_is_backing_chain_frozen(overlay_bs,
4051 child_bs(overlay_bs->backing), errp))
4053 return -EPERM;
4055 reopen_state->replace_backing_bs = true;
4056 if (new_backing_bs) {
4057 bdrv_ref(new_backing_bs);
4058 reopen_state->new_backing_bs = new_backing_bs;
4062 return 0;
4066 * Prepares a BlockDriverState for reopen. All changes are staged in the
4067 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4068 * the block driver layer .bdrv_reopen_prepare()
4070 * bs is the BlockDriverState to reopen
4071 * flags are the new open flags
4072 * queue is the reopen queue
4074 * Returns 0 on success, non-zero on error. On error errp will be set
4075 * as well.
4077 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4078 * It is the responsibility of the caller to then call the abort() or
4079 * commit() for any other BDS that have been left in a prepare() state
4082 int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
4083 Error **errp)
4085 int ret = -1;
4086 int old_flags;
4087 Error *local_err = NULL;
4088 BlockDriver *drv;
4089 QemuOpts *opts;
4090 QDict *orig_reopen_opts;
4091 char *discard = NULL;
4092 bool read_only;
4093 bool drv_prepared = false;
4095 assert(reopen_state != NULL);
4096 assert(reopen_state->bs->drv != NULL);
4097 drv = reopen_state->bs->drv;
4099 /* This function and each driver's bdrv_reopen_prepare() remove
4100 * entries from reopen_state->options as they are processed, so
4101 * we need to make a copy of the original QDict. */
4102 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4104 /* Process generic block layer options */
4105 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4106 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
4107 ret = -EINVAL;
4108 goto error;
4111 /* This was already called in bdrv_reopen_queue_child() so the flags
4112 * are up-to-date. This time we simply want to remove the options from
4113 * QemuOpts in order to indicate that they have been processed. */
4114 old_flags = reopen_state->flags;
4115 update_flags_from_options(&reopen_state->flags, opts);
4116 assert(old_flags == reopen_state->flags);
4118 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
4119 if (discard != NULL) {
4120 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4121 error_setg(errp, "Invalid discard option");
4122 ret = -EINVAL;
4123 goto error;
4127 reopen_state->detect_zeroes =
4128 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4129 if (local_err) {
4130 error_propagate(errp, local_err);
4131 ret = -EINVAL;
4132 goto error;
4135 /* All other options (including node-name and driver) must be unchanged.
4136 * Put them back into the QDict, so that they are checked at the end
4137 * of this function. */
4138 qemu_opts_to_qdict(opts, reopen_state->options);
4140 /* If we are to stay read-only, do not allow permission change
4141 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4142 * not set, or if the BDS still has copy_on_read enabled */
4143 read_only = !(reopen_state->flags & BDRV_O_RDWR);
4144 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
4145 if (local_err) {
4146 error_propagate(errp, local_err);
4147 goto error;
4150 /* Calculate required permissions after reopening */
4151 bdrv_reopen_perm(queue, reopen_state->bs,
4152 &reopen_state->perm, &reopen_state->shared_perm);
4154 ret = bdrv_flush(reopen_state->bs);
4155 if (ret) {
4156 error_setg_errno(errp, -ret, "Error flushing drive");
4157 goto error;
4160 if (drv->bdrv_reopen_prepare) {
4162 * If a driver-specific option is missing, it means that we
4163 * should reset it to its default value.
4164 * But not all options allow that, so we need to check it first.
4166 ret = bdrv_reset_options_allowed(reopen_state->bs,
4167 reopen_state->options, errp);
4168 if (ret) {
4169 goto error;
4172 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4173 if (ret) {
4174 if (local_err != NULL) {
4175 error_propagate(errp, local_err);
4176 } else {
4177 bdrv_refresh_filename(reopen_state->bs);
4178 error_setg(errp, "failed while preparing to reopen image '%s'",
4179 reopen_state->bs->filename);
4181 goto error;
4183 } else {
4184 /* It is currently mandatory to have a bdrv_reopen_prepare()
4185 * handler for each supported drv. */
4186 error_setg(errp, "Block format '%s' used by node '%s' "
4187 "does not support reopening files", drv->format_name,
4188 bdrv_get_device_or_node_name(reopen_state->bs));
4189 ret = -1;
4190 goto error;
4193 drv_prepared = true;
4196 * We must provide the 'backing' option if the BDS has a backing
4197 * file or if the image file has a backing file name as part of
4198 * its metadata. Otherwise the 'backing' option can be omitted.
4200 if (drv->supports_backing && reopen_state->backing_missing &&
4201 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
4202 error_setg(errp, "backing is missing for '%s'",
4203 reopen_state->bs->node_name);
4204 ret = -EINVAL;
4205 goto error;
4209 * Allow changing the 'backing' option. The new value can be
4210 * either a reference to an existing node (using its node name)
4211 * or NULL to simply detach the current backing file.
4213 ret = bdrv_reopen_parse_backing(reopen_state, errp);
4214 if (ret < 0) {
4215 goto error;
4217 qdict_del(reopen_state->options, "backing");
4219 /* Options that are not handled are only okay if they are unchanged
4220 * compared to the old state. It is expected that some options are only
4221 * used for the initial open, but not reopen (e.g. filename) */
4222 if (qdict_size(reopen_state->options)) {
4223 const QDictEntry *entry = qdict_first(reopen_state->options);
4225 do {
4226 QObject *new = entry->value;
4227 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
4229 /* Allow child references (child_name=node_name) as long as they
4230 * point to the current child (i.e. everything stays the same). */
4231 if (qobject_type(new) == QTYPE_QSTRING) {
4232 BdrvChild *child;
4233 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4234 if (!strcmp(child->name, entry->key)) {
4235 break;
4239 if (child) {
4240 const char *str = qobject_get_try_str(new);
4241 if (!strcmp(child->bs->node_name, str)) {
4242 continue; /* Found child with this name, skip option */
4248 * TODO: When using -drive to specify blockdev options, all values
4249 * will be strings; however, when using -blockdev, blockdev-add or
4250 * filenames using the json:{} pseudo-protocol, they will be
4251 * correctly typed.
4252 * In contrast, reopening options are (currently) always strings
4253 * (because you can only specify them through qemu-io; all other
4254 * callers do not specify any options).
4255 * Therefore, when using anything other than -drive to create a BDS,
4256 * this cannot detect non-string options as unchanged, because
4257 * qobject_is_equal() always returns false for objects of different
4258 * type. In the future, this should be remedied by correctly typing
4259 * all options. For now, this is not too big of an issue because
4260 * the user can simply omit options which cannot be changed anyway,
4261 * so they will stay unchanged.
4263 if (!qobject_is_equal(new, old)) {
4264 error_setg(errp, "Cannot change the option '%s'", entry->key);
4265 ret = -EINVAL;
4266 goto error;
4268 } while ((entry = qdict_next(reopen_state->options, entry)));
4271 ret = 0;
4273 /* Restore the original reopen_state->options QDict */
4274 qobject_unref(reopen_state->options);
4275 reopen_state->options = qobject_ref(orig_reopen_opts);
4277 error:
4278 if (ret < 0 && drv_prepared) {
4279 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4280 * call drv->bdrv_reopen_abort() before signaling an error
4281 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4282 * when the respective bdrv_reopen_prepare() has failed) */
4283 if (drv->bdrv_reopen_abort) {
4284 drv->bdrv_reopen_abort(reopen_state);
4287 qemu_opts_del(opts);
4288 qobject_unref(orig_reopen_opts);
4289 g_free(discard);
4290 return ret;
4294 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4295 * makes them final by swapping the staging BlockDriverState contents into
4296 * the active BlockDriverState contents.
4298 void bdrv_reopen_commit(BDRVReopenState *reopen_state)
4300 BlockDriver *drv;
4301 BlockDriverState *bs;
4302 BdrvChild *child;
4304 assert(reopen_state != NULL);
4305 bs = reopen_state->bs;
4306 drv = bs->drv;
4307 assert(drv != NULL);
4309 /* If there are any driver level actions to take */
4310 if (drv->bdrv_reopen_commit) {
4311 drv->bdrv_reopen_commit(reopen_state);
4314 /* set BDS specific flags now */
4315 qobject_unref(bs->explicit_options);
4316 qobject_unref(bs->options);
4318 bs->explicit_options = reopen_state->explicit_options;
4319 bs->options = reopen_state->options;
4320 bs->open_flags = reopen_state->flags;
4321 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
4322 bs->detect_zeroes = reopen_state->detect_zeroes;
4324 if (reopen_state->replace_backing_bs) {
4325 qdict_del(bs->explicit_options, "backing");
4326 qdict_del(bs->options, "backing");
4329 /* Remove child references from bs->options and bs->explicit_options.
4330 * Child options were already removed in bdrv_reopen_queue_child() */
4331 QLIST_FOREACH(child, &bs->children, next) {
4332 qdict_del(bs->explicit_options, child->name);
4333 qdict_del(bs->options, child->name);
4337 * Change the backing file if a new one was specified. We do this
4338 * after updating bs->options, so bdrv_refresh_filename() (called
4339 * from bdrv_set_backing_hd()) has the new values.
4341 if (reopen_state->replace_backing_bs) {
4342 BlockDriverState *old_backing_bs = child_bs(bs->backing);
4343 assert(!old_backing_bs || !old_backing_bs->implicit);
4344 /* Abort the permission update on the backing bs we're detaching */
4345 if (old_backing_bs) {
4346 bdrv_abort_perm_update(old_backing_bs);
4348 bdrv_set_backing_hd(bs, reopen_state->new_backing_bs, &error_abort);
4351 bdrv_refresh_limits(bs, NULL);
4355 * Abort the reopen, and delete and free the staged changes in
4356 * reopen_state
4358 void bdrv_reopen_abort(BDRVReopenState *reopen_state)
4360 BlockDriver *drv;
4362 assert(reopen_state != NULL);
4363 drv = reopen_state->bs->drv;
4364 assert(drv != NULL);
4366 if (drv->bdrv_reopen_abort) {
4367 drv->bdrv_reopen_abort(reopen_state);
4372 static void bdrv_close(BlockDriverState *bs)
4374 BdrvAioNotifier *ban, *ban_next;
4375 BdrvChild *child, *next;
4377 assert(!bs->refcnt);
4379 bdrv_drained_begin(bs); /* complete I/O */
4380 bdrv_flush(bs);
4381 bdrv_drain(bs); /* in case flush left pending I/O */
4383 if (bs->drv) {
4384 if (bs->drv->bdrv_close) {
4385 /* Must unfreeze all children, so bdrv_unref_child() works */
4386 bs->drv->bdrv_close(bs);
4388 bs->drv = NULL;
4391 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
4392 bdrv_unref_child(bs, child);
4395 bs->backing = NULL;
4396 bs->file = NULL;
4397 g_free(bs->opaque);
4398 bs->opaque = NULL;
4399 qatomic_set(&bs->copy_on_read, 0);
4400 bs->backing_file[0] = '\0';
4401 bs->backing_format[0] = '\0';
4402 bs->total_sectors = 0;
4403 bs->encrypted = false;
4404 bs->sg = false;
4405 qobject_unref(bs->options);
4406 qobject_unref(bs->explicit_options);
4407 bs->options = NULL;
4408 bs->explicit_options = NULL;
4409 qobject_unref(bs->full_open_options);
4410 bs->full_open_options = NULL;
4412 bdrv_release_named_dirty_bitmaps(bs);
4413 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4415 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4416 g_free(ban);
4418 QLIST_INIT(&bs->aio_notifiers);
4419 bdrv_drained_end(bs);
4422 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4423 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4424 * gets called.
4426 if (bs->quiesce_counter) {
4427 bdrv_drain_all_end_quiesce(bs);
4431 void bdrv_close_all(void)
4433 assert(job_next(NULL) == NULL);
4434 blk_exp_close_all();
4436 /* Drop references from requests still in flight, such as canceled block
4437 * jobs whose AIO context has not been polled yet */
4438 bdrv_drain_all();
4440 blk_remove_all_bs();
4441 blockdev_close_all_bdrv_states();
4443 assert(QTAILQ_EMPTY(&all_bdrv_states));
4446 static bool should_update_child(BdrvChild *c, BlockDriverState *to)
4448 GQueue *queue;
4449 GHashTable *found;
4450 bool ret;
4452 if (c->klass->stay_at_node) {
4453 return false;
4456 /* If the child @c belongs to the BDS @to, replacing the current
4457 * c->bs by @to would mean to create a loop.
4459 * Such a case occurs when appending a BDS to a backing chain.
4460 * For instance, imagine the following chain:
4462 * guest device -> node A -> further backing chain...
4464 * Now we create a new BDS B which we want to put on top of this
4465 * chain, so we first attach A as its backing node:
4467 * node B
4470 * guest device -> node A -> further backing chain...
4472 * Finally we want to replace A by B. When doing that, we want to
4473 * replace all pointers to A by pointers to B -- except for the
4474 * pointer from B because (1) that would create a loop, and (2)
4475 * that pointer should simply stay intact:
4477 * guest device -> node B
4480 * node A -> further backing chain...
4482 * In general, when replacing a node A (c->bs) by a node B (@to),
4483 * if A is a child of B, that means we cannot replace A by B there
4484 * because that would create a loop. Silently detaching A from B
4485 * is also not really an option. So overall just leaving A in
4486 * place there is the most sensible choice.
4488 * We would also create a loop in any cases where @c is only
4489 * indirectly referenced by @to. Prevent this by returning false
4490 * if @c is found (by breadth-first search) anywhere in the whole
4491 * subtree of @to.
4494 ret = true;
4495 found = g_hash_table_new(NULL, NULL);
4496 g_hash_table_add(found, to);
4497 queue = g_queue_new();
4498 g_queue_push_tail(queue, to);
4500 while (!g_queue_is_empty(queue)) {
4501 BlockDriverState *v = g_queue_pop_head(queue);
4502 BdrvChild *c2;
4504 QLIST_FOREACH(c2, &v->children, next) {
4505 if (c2 == c) {
4506 ret = false;
4507 break;
4510 if (g_hash_table_contains(found, c2->bs)) {
4511 continue;
4514 g_queue_push_tail(queue, c2->bs);
4515 g_hash_table_add(found, c2->bs);
4519 g_queue_free(queue);
4520 g_hash_table_destroy(found);
4522 return ret;
4526 * With auto_skip=true bdrv_replace_node_common skips updating from parents
4527 * if it creates a parent-child relation loop or if parent is block-job.
4529 * With auto_skip=false the error is returned if from has a parent which should
4530 * not be updated.
4532 static void bdrv_replace_node_common(BlockDriverState *from,
4533 BlockDriverState *to,
4534 bool auto_skip, Error **errp)
4536 BdrvChild *c, *next;
4537 GSList *list = NULL, *p;
4538 uint64_t perm = 0, shared = BLK_PERM_ALL;
4539 int ret;
4541 /* Make sure that @from doesn't go away until we have successfully attached
4542 * all of its parents to @to. */
4543 bdrv_ref(from);
4545 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
4546 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
4547 bdrv_drained_begin(from);
4549 /* Put all parents into @list and calculate their cumulative permissions */
4550 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
4551 assert(c->bs == from);
4552 if (!should_update_child(c, to)) {
4553 if (auto_skip) {
4554 continue;
4556 error_setg(errp, "Should not change '%s' link to '%s'",
4557 c->name, from->node_name);
4558 goto out;
4560 if (c->frozen) {
4561 error_setg(errp, "Cannot change '%s' link to '%s'",
4562 c->name, from->node_name);
4563 goto out;
4565 list = g_slist_prepend(list, c);
4566 perm |= c->perm;
4567 shared &= c->shared_perm;
4570 /* Check whether the required permissions can be granted on @to, ignoring
4571 * all BdrvChild in @list so that they can't block themselves. */
4572 ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
4573 if (ret < 0) {
4574 bdrv_abort_perm_update(to);
4575 goto out;
4578 /* Now actually perform the change. We performed the permission check for
4579 * all elements of @list at once, so set the permissions all at once at the
4580 * very end. */
4581 for (p = list; p != NULL; p = p->next) {
4582 c = p->data;
4584 bdrv_ref(to);
4585 bdrv_replace_child_noperm(c, to);
4586 bdrv_unref(from);
4589 bdrv_set_perm(to);
4591 out:
4592 g_slist_free(list);
4593 bdrv_drained_end(from);
4594 bdrv_unref(from);
4597 void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
4598 Error **errp)
4600 return bdrv_replace_node_common(from, to, true, errp);
4604 * Add new bs contents at the top of an image chain while the chain is
4605 * live, while keeping required fields on the top layer.
4607 * This will modify the BlockDriverState fields, and swap contents
4608 * between bs_new and bs_top. Both bs_new and bs_top are modified.
4610 * bs_new must not be attached to a BlockBackend.
4612 * This function does not create any image files.
4614 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
4615 * that's what the callers commonly need. bs_new will be referenced by the old
4616 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
4617 * reference of its own, it must call bdrv_ref().
4619 void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
4620 Error **errp)
4622 Error *local_err = NULL;
4624 bdrv_set_backing_hd(bs_new, bs_top, &local_err);
4625 if (local_err) {
4626 error_propagate(errp, local_err);
4627 goto out;
4630 bdrv_replace_node(bs_top, bs_new, &local_err);
4631 if (local_err) {
4632 error_propagate(errp, local_err);
4633 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
4634 goto out;
4637 /* bs_new is now referenced by its new parents, we don't need the
4638 * additional reference any more. */
4639 out:
4640 bdrv_unref(bs_new);
4643 static void bdrv_delete(BlockDriverState *bs)
4645 assert(bdrv_op_blocker_is_empty(bs));
4646 assert(!bs->refcnt);
4648 /* remove from list, if necessary */
4649 if (bs->node_name[0] != '\0') {
4650 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
4652 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
4654 bdrv_close(bs);
4656 g_free(bs);
4660 * Run consistency checks on an image
4662 * Returns 0 if the check could be completed (it doesn't mean that the image is
4663 * free of errors) or -errno when an internal error occurred. The results of the
4664 * check are stored in res.
4666 int coroutine_fn bdrv_co_check(BlockDriverState *bs,
4667 BdrvCheckResult *res, BdrvCheckMode fix)
4669 if (bs->drv == NULL) {
4670 return -ENOMEDIUM;
4672 if (bs->drv->bdrv_co_check == NULL) {
4673 return -ENOTSUP;
4676 memset(res, 0, sizeof(*res));
4677 return bs->drv->bdrv_co_check(bs, res, fix);
4681 * Return values:
4682 * 0 - success
4683 * -EINVAL - backing format specified, but no file
4684 * -ENOSPC - can't update the backing file because no space is left in the
4685 * image file header
4686 * -ENOTSUP - format driver doesn't support changing the backing file
4688 int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
4689 const char *backing_fmt, bool warn)
4691 BlockDriver *drv = bs->drv;
4692 int ret;
4694 if (!drv) {
4695 return -ENOMEDIUM;
4698 /* Backing file format doesn't make sense without a backing file */
4699 if (backing_fmt && !backing_file) {
4700 return -EINVAL;
4703 if (warn && backing_file && !backing_fmt) {
4704 warn_report("Deprecated use of backing file without explicit "
4705 "backing format, use of this image requires "
4706 "potentially unsafe format probing");
4709 if (drv->bdrv_change_backing_file != NULL) {
4710 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
4711 } else {
4712 ret = -ENOTSUP;
4715 if (ret == 0) {
4716 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
4717 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
4718 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
4719 backing_file ?: "");
4721 return ret;
4725 * Finds the first non-filter node above bs in the chain between
4726 * active and bs. The returned node is either an immediate parent of
4727 * bs, or there are only filter nodes between the two.
4729 * Returns NULL if bs is not found in active's image chain,
4730 * or if active == bs.
4732 * Returns the bottommost base image if bs == NULL.
4734 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
4735 BlockDriverState *bs)
4737 bs = bdrv_skip_filters(bs);
4738 active = bdrv_skip_filters(active);
4740 while (active) {
4741 BlockDriverState *next = bdrv_backing_chain_next(active);
4742 if (bs == next) {
4743 return active;
4745 active = next;
4748 return NULL;
4751 /* Given a BDS, searches for the base layer. */
4752 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
4754 return bdrv_find_overlay(bs, NULL);
4758 * Return true if at least one of the COW (backing) and filter links
4759 * between @bs and @base is frozen. @errp is set if that's the case.
4760 * @base must be reachable from @bs, or NULL.
4762 bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
4763 Error **errp)
4765 BlockDriverState *i;
4766 BdrvChild *child;
4768 for (i = bs; i != base; i = child_bs(child)) {
4769 child = bdrv_filter_or_cow_child(i);
4771 if (child && child->frozen) {
4772 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
4773 child->name, i->node_name, child->bs->node_name);
4774 return true;
4778 return false;
4782 * Freeze all COW (backing) and filter links between @bs and @base.
4783 * If any of the links is already frozen the operation is aborted and
4784 * none of the links are modified.
4785 * @base must be reachable from @bs, or NULL.
4786 * Returns 0 on success. On failure returns < 0 and sets @errp.
4788 int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
4789 Error **errp)
4791 BlockDriverState *i;
4792 BdrvChild *child;
4794 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
4795 return -EPERM;
4798 for (i = bs; i != base; i = child_bs(child)) {
4799 child = bdrv_filter_or_cow_child(i);
4800 if (child && child->bs->never_freeze) {
4801 error_setg(errp, "Cannot freeze '%s' link to '%s'",
4802 child->name, child->bs->node_name);
4803 return -EPERM;
4807 for (i = bs; i != base; i = child_bs(child)) {
4808 child = bdrv_filter_or_cow_child(i);
4809 if (child) {
4810 child->frozen = true;
4814 return 0;
4818 * Unfreeze all COW (backing) and filter links between @bs and @base.
4819 * The caller must ensure that all links are frozen before using this
4820 * function.
4821 * @base must be reachable from @bs, or NULL.
4823 void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
4825 BlockDriverState *i;
4826 BdrvChild *child;
4828 for (i = bs; i != base; i = child_bs(child)) {
4829 child = bdrv_filter_or_cow_child(i);
4830 if (child) {
4831 assert(child->frozen);
4832 child->frozen = false;
4838 * Drops images above 'base' up to and including 'top', and sets the image
4839 * above 'top' to have base as its backing file.
4841 * Requires that the overlay to 'top' is opened r/w, so that the backing file
4842 * information in 'bs' can be properly updated.
4844 * E.g., this will convert the following chain:
4845 * bottom <- base <- intermediate <- top <- active
4847 * to
4849 * bottom <- base <- active
4851 * It is allowed for bottom==base, in which case it converts:
4853 * base <- intermediate <- top <- active
4855 * to
4857 * base <- active
4859 * If backing_file_str is non-NULL, it will be used when modifying top's
4860 * overlay image metadata.
4862 * Error conditions:
4863 * if active == top, that is considered an error
4866 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
4867 const char *backing_file_str)
4869 BlockDriverState *explicit_top = top;
4870 bool update_inherits_from;
4871 BdrvChild *c;
4872 Error *local_err = NULL;
4873 int ret = -EIO;
4874 g_autoptr(GSList) updated_children = NULL;
4875 GSList *p;
4877 bdrv_ref(top);
4878 bdrv_subtree_drained_begin(top);
4880 if (!top->drv || !base->drv) {
4881 goto exit;
4884 /* Make sure that base is in the backing chain of top */
4885 if (!bdrv_chain_contains(top, base)) {
4886 goto exit;
4889 /* If 'base' recursively inherits from 'top' then we should set
4890 * base->inherits_from to top->inherits_from after 'top' and all
4891 * other intermediate nodes have been dropped.
4892 * If 'top' is an implicit node (e.g. "commit_top") we should skip
4893 * it because no one inherits from it. We use explicit_top for that. */
4894 explicit_top = bdrv_skip_implicit_filters(explicit_top);
4895 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
4897 /* success - we can delete the intermediate states, and link top->base */
4898 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
4899 * we've figured out how they should work. */
4900 if (!backing_file_str) {
4901 bdrv_refresh_filename(base);
4902 backing_file_str = base->filename;
4905 QLIST_FOREACH(c, &top->parents, next_parent) {
4906 updated_children = g_slist_prepend(updated_children, c);
4909 bdrv_replace_node_common(top, base, false, &local_err);
4910 if (local_err) {
4911 error_report_err(local_err);
4912 goto exit;
4915 for (p = updated_children; p; p = p->next) {
4916 c = p->data;
4918 if (c->klass->update_filename) {
4919 ret = c->klass->update_filename(c, base, backing_file_str,
4920 &local_err);
4921 if (ret < 0) {
4923 * TODO: Actually, we want to rollback all previous iterations
4924 * of this loop, and (which is almost impossible) previous
4925 * bdrv_replace_node()...
4927 * Note, that c->klass->update_filename may lead to permission
4928 * update, so it's a bad idea to call it inside permission
4929 * update transaction of bdrv_replace_node.
4931 error_report_err(local_err);
4932 goto exit;
4937 if (update_inherits_from) {
4938 base->inherits_from = explicit_top->inherits_from;
4941 ret = 0;
4942 exit:
4943 bdrv_subtree_drained_end(top);
4944 bdrv_unref(top);
4945 return ret;
4949 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
4950 * sums the size of all data-bearing children. (This excludes backing
4951 * children.)
4953 static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
4955 BdrvChild *child;
4956 int64_t child_size, sum = 0;
4958 QLIST_FOREACH(child, &bs->children, next) {
4959 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
4960 BDRV_CHILD_FILTERED))
4962 child_size = bdrv_get_allocated_file_size(child->bs);
4963 if (child_size < 0) {
4964 return child_size;
4966 sum += child_size;
4970 return sum;
4974 * Length of a allocated file in bytes. Sparse files are counted by actual
4975 * allocated space. Return < 0 if error or unknown.
4977 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
4979 BlockDriver *drv = bs->drv;
4980 if (!drv) {
4981 return -ENOMEDIUM;
4983 if (drv->bdrv_get_allocated_file_size) {
4984 return drv->bdrv_get_allocated_file_size(bs);
4987 if (drv->bdrv_file_open) {
4989 * Protocol drivers default to -ENOTSUP (most of their data is
4990 * not stored in any of their children (if they even have any),
4991 * so there is no generic way to figure it out).
4993 return -ENOTSUP;
4994 } else if (drv->is_filter) {
4995 /* Filter drivers default to the size of their filtered child */
4996 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
4997 } else {
4998 /* Other drivers default to summing their children's sizes */
4999 return bdrv_sum_allocated_file_size(bs);
5004 * bdrv_measure:
5005 * @drv: Format driver
5006 * @opts: Creation options for new image
5007 * @in_bs: Existing image containing data for new image (may be NULL)
5008 * @errp: Error object
5009 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5010 * or NULL on error
5012 * Calculate file size required to create a new image.
5014 * If @in_bs is given then space for allocated clusters and zero clusters
5015 * from that image are included in the calculation. If @opts contains a
5016 * backing file that is shared by @in_bs then backing clusters may be omitted
5017 * from the calculation.
5019 * If @in_bs is NULL then the calculation includes no allocated clusters
5020 * unless a preallocation option is given in @opts.
5022 * Note that @in_bs may use a different BlockDriver from @drv.
5024 * If an error occurs the @errp pointer is set.
5026 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5027 BlockDriverState *in_bs, Error **errp)
5029 if (!drv->bdrv_measure) {
5030 error_setg(errp, "Block driver '%s' does not support size measurement",
5031 drv->format_name);
5032 return NULL;
5035 return drv->bdrv_measure(opts, in_bs, errp);
5039 * Return number of sectors on success, -errno on error.
5041 int64_t bdrv_nb_sectors(BlockDriverState *bs)
5043 BlockDriver *drv = bs->drv;
5045 if (!drv)
5046 return -ENOMEDIUM;
5048 if (drv->has_variable_length) {
5049 int ret = refresh_total_sectors(bs, bs->total_sectors);
5050 if (ret < 0) {
5051 return ret;
5054 return bs->total_sectors;
5058 * Return length in bytes on success, -errno on error.
5059 * The length is always a multiple of BDRV_SECTOR_SIZE.
5061 int64_t bdrv_getlength(BlockDriverState *bs)
5063 int64_t ret = bdrv_nb_sectors(bs);
5065 if (ret < 0) {
5066 return ret;
5068 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5069 return -EFBIG;
5071 return ret * BDRV_SECTOR_SIZE;
5074 /* return 0 as number of sectors if no device present or error */
5075 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
5077 int64_t nb_sectors = bdrv_nb_sectors(bs);
5079 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
5082 bool bdrv_is_sg(BlockDriverState *bs)
5084 return bs->sg;
5088 * Return whether the given node supports compressed writes.
5090 bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5092 BlockDriverState *filtered;
5094 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5095 return false;
5098 filtered = bdrv_filter_bs(bs);
5099 if (filtered) {
5101 * Filters can only forward compressed writes, so we have to
5102 * check the child.
5104 return bdrv_supports_compressed_writes(filtered);
5107 return true;
5110 const char *bdrv_get_format_name(BlockDriverState *bs)
5112 return bs->drv ? bs->drv->format_name : NULL;
5115 static int qsort_strcmp(const void *a, const void *b)
5117 return strcmp(*(char *const *)a, *(char *const *)b);
5120 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
5121 void *opaque, bool read_only)
5123 BlockDriver *drv;
5124 int count = 0;
5125 int i;
5126 const char **formats = NULL;
5128 QLIST_FOREACH(drv, &bdrv_drivers, list) {
5129 if (drv->format_name) {
5130 bool found = false;
5131 int i = count;
5133 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5134 continue;
5137 while (formats && i && !found) {
5138 found = !strcmp(formats[--i], drv->format_name);
5141 if (!found) {
5142 formats = g_renew(const char *, formats, count + 1);
5143 formats[count++] = drv->format_name;
5148 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5149 const char *format_name = block_driver_modules[i].format_name;
5151 if (format_name) {
5152 bool found = false;
5153 int j = count;
5155 if (use_bdrv_whitelist &&
5156 !bdrv_format_is_whitelisted(format_name, read_only)) {
5157 continue;
5160 while (formats && j && !found) {
5161 found = !strcmp(formats[--j], format_name);
5164 if (!found) {
5165 formats = g_renew(const char *, formats, count + 1);
5166 formats[count++] = format_name;
5171 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5173 for (i = 0; i < count; i++) {
5174 it(opaque, formats[i]);
5177 g_free(formats);
5180 /* This function is to find a node in the bs graph */
5181 BlockDriverState *bdrv_find_node(const char *node_name)
5183 BlockDriverState *bs;
5185 assert(node_name);
5187 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5188 if (!strcmp(node_name, bs->node_name)) {
5189 return bs;
5192 return NULL;
5195 /* Put this QMP function here so it can access the static graph_bdrv_states. */
5196 BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5197 Error **errp)
5199 BlockDeviceInfoList *list;
5200 BlockDriverState *bs;
5202 list = NULL;
5203 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5204 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
5205 if (!info) {
5206 qapi_free_BlockDeviceInfoList(list);
5207 return NULL;
5209 QAPI_LIST_PREPEND(list, info);
5212 return list;
5215 typedef struct XDbgBlockGraphConstructor {
5216 XDbgBlockGraph *graph;
5217 GHashTable *graph_nodes;
5218 } XDbgBlockGraphConstructor;
5220 static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5222 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5224 gr->graph = g_new0(XDbgBlockGraph, 1);
5225 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5227 return gr;
5230 static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5232 XDbgBlockGraph *graph = gr->graph;
5234 g_hash_table_destroy(gr->graph_nodes);
5235 g_free(gr);
5237 return graph;
5240 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5242 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5244 if (ret != 0) {
5245 return ret;
5249 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5250 * answer of g_hash_table_lookup.
5252 ret = g_hash_table_size(gr->graph_nodes) + 1;
5253 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5255 return ret;
5258 static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5259 XDbgBlockGraphNodeType type, const char *name)
5261 XDbgBlockGraphNode *n;
5263 n = g_new0(XDbgBlockGraphNode, 1);
5265 n->id = xdbg_graph_node_num(gr, node);
5266 n->type = type;
5267 n->name = g_strdup(name);
5269 QAPI_LIST_PREPEND(gr->graph->nodes, n);
5272 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5273 const BdrvChild *child)
5275 BlockPermission qapi_perm;
5276 XDbgBlockGraphEdge *edge;
5278 edge = g_new0(XDbgBlockGraphEdge, 1);
5280 edge->parent = xdbg_graph_node_num(gr, parent);
5281 edge->child = xdbg_graph_node_num(gr, child->bs);
5282 edge->name = g_strdup(child->name);
5284 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5285 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5287 if (flag & child->perm) {
5288 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
5290 if (flag & child->shared_perm) {
5291 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
5295 QAPI_LIST_PREPEND(gr->graph->edges, edge);
5299 XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5301 BlockBackend *blk;
5302 BlockJob *job;
5303 BlockDriverState *bs;
5304 BdrvChild *child;
5305 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5307 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5308 char *allocated_name = NULL;
5309 const char *name = blk_name(blk);
5311 if (!*name) {
5312 name = allocated_name = blk_get_attached_dev_id(blk);
5314 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5315 name);
5316 g_free(allocated_name);
5317 if (blk_root(blk)) {
5318 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5322 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5323 GSList *el;
5325 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5326 job->job.id);
5327 for (el = job->nodes; el; el = el->next) {
5328 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5332 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5333 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5334 bs->node_name);
5335 QLIST_FOREACH(child, &bs->children, next) {
5336 xdbg_graph_add_edge(gr, bs, child);
5340 return xdbg_graph_finalize(gr);
5343 BlockDriverState *bdrv_lookup_bs(const char *device,
5344 const char *node_name,
5345 Error **errp)
5347 BlockBackend *blk;
5348 BlockDriverState *bs;
5350 if (device) {
5351 blk = blk_by_name(device);
5353 if (blk) {
5354 bs = blk_bs(blk);
5355 if (!bs) {
5356 error_setg(errp, "Device '%s' has no medium", device);
5359 return bs;
5363 if (node_name) {
5364 bs = bdrv_find_node(node_name);
5366 if (bs) {
5367 return bs;
5371 error_setg(errp, "Cannot find device=%s nor node_name=%s",
5372 device ? device : "",
5373 node_name ? node_name : "");
5374 return NULL;
5377 /* If 'base' is in the same chain as 'top', return true. Otherwise,
5378 * return false. If either argument is NULL, return false. */
5379 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
5381 while (top && top != base) {
5382 top = bdrv_filter_or_cow_bs(top);
5385 return top != NULL;
5388 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
5390 if (!bs) {
5391 return QTAILQ_FIRST(&graph_bdrv_states);
5393 return QTAILQ_NEXT(bs, node_list);
5396 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
5398 if (!bs) {
5399 return QTAILQ_FIRST(&all_bdrv_states);
5401 return QTAILQ_NEXT(bs, bs_list);
5404 const char *bdrv_get_node_name(const BlockDriverState *bs)
5406 return bs->node_name;
5409 const char *bdrv_get_parent_name(const BlockDriverState *bs)
5411 BdrvChild *c;
5412 const char *name;
5414 /* If multiple parents have a name, just pick the first one. */
5415 QLIST_FOREACH(c, &bs->parents, next_parent) {
5416 if (c->klass->get_name) {
5417 name = c->klass->get_name(c);
5418 if (name && *name) {
5419 return name;
5424 return NULL;
5427 /* TODO check what callers really want: bs->node_name or blk_name() */
5428 const char *bdrv_get_device_name(const BlockDriverState *bs)
5430 return bdrv_get_parent_name(bs) ?: "";
5433 /* This can be used to identify nodes that might not have a device
5434 * name associated. Since node and device names live in the same
5435 * namespace, the result is unambiguous. The exception is if both are
5436 * absent, then this returns an empty (non-null) string. */
5437 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
5439 return bdrv_get_parent_name(bs) ?: bs->node_name;
5442 int bdrv_get_flags(BlockDriverState *bs)
5444 return bs->open_flags;
5447 int bdrv_has_zero_init_1(BlockDriverState *bs)
5449 return 1;
5452 int bdrv_has_zero_init(BlockDriverState *bs)
5454 BlockDriverState *filtered;
5456 if (!bs->drv) {
5457 return 0;
5460 /* If BS is a copy on write image, it is initialized to
5461 the contents of the base image, which may not be zeroes. */
5462 if (bdrv_cow_child(bs)) {
5463 return 0;
5465 if (bs->drv->bdrv_has_zero_init) {
5466 return bs->drv->bdrv_has_zero_init(bs);
5469 filtered = bdrv_filter_bs(bs);
5470 if (filtered) {
5471 return bdrv_has_zero_init(filtered);
5474 /* safe default */
5475 return 0;
5478 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
5480 if (!(bs->open_flags & BDRV_O_UNMAP)) {
5481 return false;
5484 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
5487 void bdrv_get_backing_filename(BlockDriverState *bs,
5488 char *filename, int filename_size)
5490 pstrcpy(filename, filename_size, bs->backing_file);
5493 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5495 int ret;
5496 BlockDriver *drv = bs->drv;
5497 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
5498 if (!drv) {
5499 return -ENOMEDIUM;
5501 if (!drv->bdrv_get_info) {
5502 BlockDriverState *filtered = bdrv_filter_bs(bs);
5503 if (filtered) {
5504 return bdrv_get_info(filtered, bdi);
5506 return -ENOTSUP;
5508 memset(bdi, 0, sizeof(*bdi));
5509 ret = drv->bdrv_get_info(bs, bdi);
5510 if (ret < 0) {
5511 return ret;
5514 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
5515 return -EINVAL;
5518 return 0;
5521 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
5522 Error **errp)
5524 BlockDriver *drv = bs->drv;
5525 if (drv && drv->bdrv_get_specific_info) {
5526 return drv->bdrv_get_specific_info(bs, errp);
5528 return NULL;
5531 BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
5533 BlockDriver *drv = bs->drv;
5534 if (!drv || !drv->bdrv_get_specific_stats) {
5535 return NULL;
5537 return drv->bdrv_get_specific_stats(bs);
5540 void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
5542 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
5543 return;
5546 bs->drv->bdrv_debug_event(bs, event);
5549 static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
5551 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
5552 bs = bdrv_primary_bs(bs);
5555 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
5556 assert(bs->drv->bdrv_debug_remove_breakpoint);
5557 return bs;
5560 return NULL;
5563 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
5564 const char *tag)
5566 bs = bdrv_find_debug_node(bs);
5567 if (bs) {
5568 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
5571 return -ENOTSUP;
5574 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
5576 bs = bdrv_find_debug_node(bs);
5577 if (bs) {
5578 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
5581 return -ENOTSUP;
5584 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
5586 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
5587 bs = bdrv_primary_bs(bs);
5590 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
5591 return bs->drv->bdrv_debug_resume(bs, tag);
5594 return -ENOTSUP;
5597 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
5599 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
5600 bs = bdrv_primary_bs(bs);
5603 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
5604 return bs->drv->bdrv_debug_is_suspended(bs, tag);
5607 return false;
5610 /* backing_file can either be relative, or absolute, or a protocol. If it is
5611 * relative, it must be relative to the chain. So, passing in bs->filename
5612 * from a BDS as backing_file should not be done, as that may be relative to
5613 * the CWD rather than the chain. */
5614 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
5615 const char *backing_file)
5617 char *filename_full = NULL;
5618 char *backing_file_full = NULL;
5619 char *filename_tmp = NULL;
5620 int is_protocol = 0;
5621 bool filenames_refreshed = false;
5622 BlockDriverState *curr_bs = NULL;
5623 BlockDriverState *retval = NULL;
5624 BlockDriverState *bs_below;
5626 if (!bs || !bs->drv || !backing_file) {
5627 return NULL;
5630 filename_full = g_malloc(PATH_MAX);
5631 backing_file_full = g_malloc(PATH_MAX);
5633 is_protocol = path_has_protocol(backing_file);
5636 * Being largely a legacy function, skip any filters here
5637 * (because filters do not have normal filenames, so they cannot
5638 * match anyway; and allowing json:{} filenames is a bit out of
5639 * scope).
5641 for (curr_bs = bdrv_skip_filters(bs);
5642 bdrv_cow_child(curr_bs) != NULL;
5643 curr_bs = bs_below)
5645 bs_below = bdrv_backing_chain_next(curr_bs);
5647 if (bdrv_backing_overridden(curr_bs)) {
5649 * If the backing file was overridden, we can only compare
5650 * directly against the backing node's filename.
5653 if (!filenames_refreshed) {
5655 * This will automatically refresh all of the
5656 * filenames in the rest of the backing chain, so we
5657 * only need to do this once.
5659 bdrv_refresh_filename(bs_below);
5660 filenames_refreshed = true;
5663 if (strcmp(backing_file, bs_below->filename) == 0) {
5664 retval = bs_below;
5665 break;
5667 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
5669 * If either of the filename paths is actually a protocol, then
5670 * compare unmodified paths; otherwise make paths relative.
5672 char *backing_file_full_ret;
5674 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
5675 retval = bs_below;
5676 break;
5678 /* Also check against the full backing filename for the image */
5679 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
5680 NULL);
5681 if (backing_file_full_ret) {
5682 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
5683 g_free(backing_file_full_ret);
5684 if (equal) {
5685 retval = bs_below;
5686 break;
5689 } else {
5690 /* If not an absolute filename path, make it relative to the current
5691 * image's filename path */
5692 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
5693 NULL);
5694 /* We are going to compare canonicalized absolute pathnames */
5695 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
5696 g_free(filename_tmp);
5697 continue;
5699 g_free(filename_tmp);
5701 /* We need to make sure the backing filename we are comparing against
5702 * is relative to the current image filename (or absolute) */
5703 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
5704 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
5705 g_free(filename_tmp);
5706 continue;
5708 g_free(filename_tmp);
5710 if (strcmp(backing_file_full, filename_full) == 0) {
5711 retval = bs_below;
5712 break;
5717 g_free(filename_full);
5718 g_free(backing_file_full);
5719 return retval;
5722 void bdrv_init(void)
5724 module_call_init(MODULE_INIT_BLOCK);
5727 void bdrv_init_with_whitelist(void)
5729 use_bdrv_whitelist = 1;
5730 bdrv_init();
5733 int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
5735 BdrvChild *child, *parent;
5736 Error *local_err = NULL;
5737 int ret;
5738 BdrvDirtyBitmap *bm;
5740 if (!bs->drv) {
5741 return -ENOMEDIUM;
5744 QLIST_FOREACH(child, &bs->children, next) {
5745 bdrv_co_invalidate_cache(child->bs, &local_err);
5746 if (local_err) {
5747 error_propagate(errp, local_err);
5748 return -EINVAL;
5753 * Update permissions, they may differ for inactive nodes.
5755 * Note that the required permissions of inactive images are always a
5756 * subset of the permissions required after activating the image. This
5757 * allows us to just get the permissions upfront without restricting
5758 * drv->bdrv_invalidate_cache().
5760 * It also means that in error cases, we don't have to try and revert to
5761 * the old permissions (which is an operation that could fail, too). We can
5762 * just keep the extended permissions for the next time that an activation
5763 * of the image is tried.
5765 if (bs->open_flags & BDRV_O_INACTIVE) {
5766 bs->open_flags &= ~BDRV_O_INACTIVE;
5767 ret = bdrv_refresh_perms(bs, errp);
5768 if (ret < 0) {
5769 bs->open_flags |= BDRV_O_INACTIVE;
5770 return ret;
5773 if (bs->drv->bdrv_co_invalidate_cache) {
5774 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
5775 if (local_err) {
5776 bs->open_flags |= BDRV_O_INACTIVE;
5777 error_propagate(errp, local_err);
5778 return -EINVAL;
5782 FOR_EACH_DIRTY_BITMAP(bs, bm) {
5783 bdrv_dirty_bitmap_skip_store(bm, false);
5786 ret = refresh_total_sectors(bs, bs->total_sectors);
5787 if (ret < 0) {
5788 bs->open_flags |= BDRV_O_INACTIVE;
5789 error_setg_errno(errp, -ret, "Could not refresh total sector count");
5790 return ret;
5794 QLIST_FOREACH(parent, &bs->parents, next_parent) {
5795 if (parent->klass->activate) {
5796 parent->klass->activate(parent, &local_err);
5797 if (local_err) {
5798 bs->open_flags |= BDRV_O_INACTIVE;
5799 error_propagate(errp, local_err);
5800 return -EINVAL;
5805 return 0;
5808 void bdrv_invalidate_cache_all(Error **errp)
5810 BlockDriverState *bs;
5811 BdrvNextIterator it;
5813 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5814 AioContext *aio_context = bdrv_get_aio_context(bs);
5815 int ret;
5817 aio_context_acquire(aio_context);
5818 ret = bdrv_invalidate_cache(bs, errp);
5819 aio_context_release(aio_context);
5820 if (ret < 0) {
5821 bdrv_next_cleanup(&it);
5822 return;
5827 static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
5829 BdrvChild *parent;
5831 QLIST_FOREACH(parent, &bs->parents, next_parent) {
5832 if (parent->klass->parent_is_bds) {
5833 BlockDriverState *parent_bs = parent->opaque;
5834 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
5835 return true;
5840 return false;
5843 static int bdrv_inactivate_recurse(BlockDriverState *bs)
5845 BdrvChild *child, *parent;
5846 int ret;
5848 if (!bs->drv) {
5849 return -ENOMEDIUM;
5852 /* Make sure that we don't inactivate a child before its parent.
5853 * It will be covered by recursion from the yet active parent. */
5854 if (bdrv_has_bds_parent(bs, true)) {
5855 return 0;
5858 assert(!(bs->open_flags & BDRV_O_INACTIVE));
5860 /* Inactivate this node */
5861 if (bs->drv->bdrv_inactivate) {
5862 ret = bs->drv->bdrv_inactivate(bs);
5863 if (ret < 0) {
5864 return ret;
5868 QLIST_FOREACH(parent, &bs->parents, next_parent) {
5869 if (parent->klass->inactivate) {
5870 ret = parent->klass->inactivate(parent);
5871 if (ret < 0) {
5872 return ret;
5877 bs->open_flags |= BDRV_O_INACTIVE;
5880 * Update permissions, they may differ for inactive nodes.
5881 * We only tried to loosen restrictions, so errors are not fatal, ignore
5882 * them.
5884 bdrv_refresh_perms(bs, NULL);
5886 /* Recursively inactivate children */
5887 QLIST_FOREACH(child, &bs->children, next) {
5888 ret = bdrv_inactivate_recurse(child->bs);
5889 if (ret < 0) {
5890 return ret;
5894 return 0;
5897 int bdrv_inactivate_all(void)
5899 BlockDriverState *bs = NULL;
5900 BdrvNextIterator it;
5901 int ret = 0;
5902 GSList *aio_ctxs = NULL, *ctx;
5904 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5905 AioContext *aio_context = bdrv_get_aio_context(bs);
5907 if (!g_slist_find(aio_ctxs, aio_context)) {
5908 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
5909 aio_context_acquire(aio_context);
5913 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5914 /* Nodes with BDS parents are covered by recursion from the last
5915 * parent that gets inactivated. Don't inactivate them a second
5916 * time if that has already happened. */
5917 if (bdrv_has_bds_parent(bs, false)) {
5918 continue;
5920 ret = bdrv_inactivate_recurse(bs);
5921 if (ret < 0) {
5922 bdrv_next_cleanup(&it);
5923 goto out;
5927 out:
5928 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
5929 AioContext *aio_context = ctx->data;
5930 aio_context_release(aio_context);
5932 g_slist_free(aio_ctxs);
5934 return ret;
5937 /**************************************************************/
5938 /* removable device support */
5941 * Return TRUE if the media is present
5943 bool bdrv_is_inserted(BlockDriverState *bs)
5945 BlockDriver *drv = bs->drv;
5946 BdrvChild *child;
5948 if (!drv) {
5949 return false;
5951 if (drv->bdrv_is_inserted) {
5952 return drv->bdrv_is_inserted(bs);
5954 QLIST_FOREACH(child, &bs->children, next) {
5955 if (!bdrv_is_inserted(child->bs)) {
5956 return false;
5959 return true;
5963 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
5965 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
5967 BlockDriver *drv = bs->drv;
5969 if (drv && drv->bdrv_eject) {
5970 drv->bdrv_eject(bs, eject_flag);
5975 * Lock or unlock the media (if it is locked, the user won't be able
5976 * to eject it manually).
5978 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
5980 BlockDriver *drv = bs->drv;
5982 trace_bdrv_lock_medium(bs, locked);
5984 if (drv && drv->bdrv_lock_medium) {
5985 drv->bdrv_lock_medium(bs, locked);
5989 /* Get a reference to bs */
5990 void bdrv_ref(BlockDriverState *bs)
5992 bs->refcnt++;
5995 /* Release a previously grabbed reference to bs.
5996 * If after releasing, reference count is zero, the BlockDriverState is
5997 * deleted. */
5998 void bdrv_unref(BlockDriverState *bs)
6000 if (!bs) {
6001 return;
6003 assert(bs->refcnt > 0);
6004 if (--bs->refcnt == 0) {
6005 bdrv_delete(bs);
6009 struct BdrvOpBlocker {
6010 Error *reason;
6011 QLIST_ENTRY(BdrvOpBlocker) list;
6014 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6016 BdrvOpBlocker *blocker;
6017 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6018 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6019 blocker = QLIST_FIRST(&bs->op_blockers[op]);
6020 error_propagate_prepend(errp, error_copy(blocker->reason),
6021 "Node '%s' is busy: ",
6022 bdrv_get_device_or_node_name(bs));
6023 return true;
6025 return false;
6028 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6030 BdrvOpBlocker *blocker;
6031 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6033 blocker = g_new0(BdrvOpBlocker, 1);
6034 blocker->reason = reason;
6035 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6038 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6040 BdrvOpBlocker *blocker, *next;
6041 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6042 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6043 if (blocker->reason == reason) {
6044 QLIST_REMOVE(blocker, list);
6045 g_free(blocker);
6050 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6052 int i;
6053 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6054 bdrv_op_block(bs, i, reason);
6058 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6060 int i;
6061 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6062 bdrv_op_unblock(bs, i, reason);
6066 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6068 int i;
6070 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6071 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6072 return false;
6075 return true;
6078 void bdrv_img_create(const char *filename, const char *fmt,
6079 const char *base_filename, const char *base_fmt,
6080 char *options, uint64_t img_size, int flags, bool quiet,
6081 Error **errp)
6083 QemuOptsList *create_opts = NULL;
6084 QemuOpts *opts = NULL;
6085 const char *backing_fmt, *backing_file;
6086 int64_t size;
6087 BlockDriver *drv, *proto_drv;
6088 Error *local_err = NULL;
6089 int ret = 0;
6091 /* Find driver and parse its options */
6092 drv = bdrv_find_format(fmt);
6093 if (!drv) {
6094 error_setg(errp, "Unknown file format '%s'", fmt);
6095 return;
6098 proto_drv = bdrv_find_protocol(filename, true, errp);
6099 if (!proto_drv) {
6100 return;
6103 if (!drv->create_opts) {
6104 error_setg(errp, "Format driver '%s' does not support image creation",
6105 drv->format_name);
6106 return;
6109 if (!proto_drv->create_opts) {
6110 error_setg(errp, "Protocol driver '%s' does not support image creation",
6111 proto_drv->format_name);
6112 return;
6115 /* Create parameter list */
6116 create_opts = qemu_opts_append(create_opts, drv->create_opts);
6117 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
6119 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
6121 /* Parse -o options */
6122 if (options) {
6123 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
6124 goto out;
6128 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6129 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6130 } else if (img_size != UINT64_C(-1)) {
6131 error_setg(errp, "The image size must be specified only once");
6132 goto out;
6135 if (base_filename) {
6136 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
6137 NULL)) {
6138 error_setg(errp, "Backing file not supported for file format '%s'",
6139 fmt);
6140 goto out;
6144 if (base_fmt) {
6145 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
6146 error_setg(errp, "Backing file format not supported for file "
6147 "format '%s'", fmt);
6148 goto out;
6152 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6153 if (backing_file) {
6154 if (!strcmp(filename, backing_file)) {
6155 error_setg(errp, "Error: Trying to create an image with the "
6156 "same filename as the backing file");
6157 goto out;
6159 if (backing_file[0] == '\0') {
6160 error_setg(errp, "Expected backing file name, got empty string");
6161 goto out;
6165 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
6167 /* The size for the image must always be specified, unless we have a backing
6168 * file and we have not been forbidden from opening it. */
6169 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
6170 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6171 BlockDriverState *bs;
6172 char *full_backing;
6173 int back_flags;
6174 QDict *backing_options = NULL;
6176 full_backing =
6177 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6178 &local_err);
6179 if (local_err) {
6180 goto out;
6182 assert(full_backing);
6184 /* backing files always opened read-only */
6185 back_flags = flags;
6186 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
6188 backing_options = qdict_new();
6189 if (backing_fmt) {
6190 qdict_put_str(backing_options, "driver", backing_fmt);
6192 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
6194 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6195 &local_err);
6196 g_free(full_backing);
6197 if (!bs) {
6198 error_append_hint(&local_err, "Could not open backing image.\n");
6199 goto out;
6200 } else {
6201 if (!backing_fmt) {
6202 warn_report("Deprecated use of backing file without explicit "
6203 "backing format (detected format of %s)",
6204 bs->drv->format_name);
6205 if (bs->drv != &bdrv_raw) {
6207 * A probe of raw deserves the most attention:
6208 * leaving the backing format out of the image
6209 * will ensure bs->probed is set (ensuring we
6210 * don't accidentally commit into the backing
6211 * file), and allow more spots to warn the users
6212 * to fix their toolchain when opening this image
6213 * later. For other images, we can safely record
6214 * the format that we probed.
6216 backing_fmt = bs->drv->format_name;
6217 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, backing_fmt,
6218 NULL);
6221 if (size == -1) {
6222 /* Opened BS, have no size */
6223 size = bdrv_getlength(bs);
6224 if (size < 0) {
6225 error_setg_errno(errp, -size, "Could not get size of '%s'",
6226 backing_file);
6227 bdrv_unref(bs);
6228 goto out;
6230 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6232 bdrv_unref(bs);
6234 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6235 } else if (backing_file && !backing_fmt) {
6236 warn_report("Deprecated use of unopened backing file without "
6237 "explicit backing format, use of this image requires "
6238 "potentially unsafe format probing");
6241 if (size == -1) {
6242 error_setg(errp, "Image creation needs a size parameter");
6243 goto out;
6246 if (!quiet) {
6247 printf("Formatting '%s', fmt=%s ", filename, fmt);
6248 qemu_opts_print(opts, " ");
6249 puts("");
6250 fflush(stdout);
6253 ret = bdrv_create(drv, filename, opts, &local_err);
6255 if (ret == -EFBIG) {
6256 /* This is generally a better message than whatever the driver would
6257 * deliver (especially because of the cluster_size_hint), since that
6258 * is most probably not much different from "image too large". */
6259 const char *cluster_size_hint = "";
6260 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
6261 cluster_size_hint = " (try using a larger cluster size)";
6263 error_setg(errp, "The image size is too large for file format '%s'"
6264 "%s", fmt, cluster_size_hint);
6265 error_free(local_err);
6266 local_err = NULL;
6269 out:
6270 qemu_opts_del(opts);
6271 qemu_opts_free(create_opts);
6272 error_propagate(errp, local_err);
6275 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6277 return bs ? bs->aio_context : qemu_get_aio_context();
6280 AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
6282 Coroutine *self = qemu_coroutine_self();
6283 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
6284 AioContext *new_ctx;
6287 * Increase bs->in_flight to ensure that this operation is completed before
6288 * moving the node to a different AioContext. Read new_ctx only afterwards.
6290 bdrv_inc_in_flight(bs);
6292 new_ctx = bdrv_get_aio_context(bs);
6293 aio_co_reschedule_self(new_ctx);
6294 return old_ctx;
6297 void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
6299 aio_co_reschedule_self(old_ctx);
6300 bdrv_dec_in_flight(bs);
6303 void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
6305 AioContext *ctx = bdrv_get_aio_context(bs);
6307 /* In the main thread, bs->aio_context won't change concurrently */
6308 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6311 * We're in coroutine context, so we already hold the lock of the main
6312 * loop AioContext. Don't lock it twice to avoid deadlocks.
6314 assert(qemu_in_coroutine());
6315 if (ctx != qemu_get_aio_context()) {
6316 aio_context_acquire(ctx);
6320 void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
6322 AioContext *ctx = bdrv_get_aio_context(bs);
6324 assert(qemu_in_coroutine());
6325 if (ctx != qemu_get_aio_context()) {
6326 aio_context_release(ctx);
6330 void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6332 aio_co_enter(bdrv_get_aio_context(bs), co);
6335 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6337 QLIST_REMOVE(ban, list);
6338 g_free(ban);
6341 static void bdrv_detach_aio_context(BlockDriverState *bs)
6343 BdrvAioNotifier *baf, *baf_tmp;
6345 assert(!bs->walking_aio_notifiers);
6346 bs->walking_aio_notifiers = true;
6347 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6348 if (baf->deleted) {
6349 bdrv_do_remove_aio_context_notifier(baf);
6350 } else {
6351 baf->detach_aio_context(baf->opaque);
6354 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6355 * remove remaining aio notifiers if we aren't called again.
6357 bs->walking_aio_notifiers = false;
6359 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
6360 bs->drv->bdrv_detach_aio_context(bs);
6363 if (bs->quiesce_counter) {
6364 aio_enable_external(bs->aio_context);
6366 bs->aio_context = NULL;
6369 static void bdrv_attach_aio_context(BlockDriverState *bs,
6370 AioContext *new_context)
6372 BdrvAioNotifier *ban, *ban_tmp;
6374 if (bs->quiesce_counter) {
6375 aio_disable_external(new_context);
6378 bs->aio_context = new_context;
6380 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
6381 bs->drv->bdrv_attach_aio_context(bs, new_context);
6384 assert(!bs->walking_aio_notifiers);
6385 bs->walking_aio_notifiers = true;
6386 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
6387 if (ban->deleted) {
6388 bdrv_do_remove_aio_context_notifier(ban);
6389 } else {
6390 ban->attached_aio_context(new_context, ban->opaque);
6393 bs->walking_aio_notifiers = false;
6397 * Changes the AioContext used for fd handlers, timers, and BHs by this
6398 * BlockDriverState and all its children and parents.
6400 * Must be called from the main AioContext.
6402 * The caller must own the AioContext lock for the old AioContext of bs, but it
6403 * must not own the AioContext lock for new_context (unless new_context is the
6404 * same as the current context of bs).
6406 * @ignore will accumulate all visited BdrvChild object. The caller is
6407 * responsible for freeing the list afterwards.
6409 void bdrv_set_aio_context_ignore(BlockDriverState *bs,
6410 AioContext *new_context, GSList **ignore)
6412 AioContext *old_context = bdrv_get_aio_context(bs);
6413 BdrvChild *child;
6415 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6417 if (old_context == new_context) {
6418 return;
6421 bdrv_drained_begin(bs);
6423 QLIST_FOREACH(child, &bs->children, next) {
6424 if (g_slist_find(*ignore, child)) {
6425 continue;
6427 *ignore = g_slist_prepend(*ignore, child);
6428 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
6430 QLIST_FOREACH(child, &bs->parents, next_parent) {
6431 if (g_slist_find(*ignore, child)) {
6432 continue;
6434 assert(child->klass->set_aio_ctx);
6435 *ignore = g_slist_prepend(*ignore, child);
6436 child->klass->set_aio_ctx(child, new_context, ignore);
6439 bdrv_detach_aio_context(bs);
6441 /* Acquire the new context, if necessary */
6442 if (qemu_get_aio_context() != new_context) {
6443 aio_context_acquire(new_context);
6446 bdrv_attach_aio_context(bs, new_context);
6449 * If this function was recursively called from
6450 * bdrv_set_aio_context_ignore(), there may be nodes in the
6451 * subtree that have not yet been moved to the new AioContext.
6452 * Release the old one so bdrv_drained_end() can poll them.
6454 if (qemu_get_aio_context() != old_context) {
6455 aio_context_release(old_context);
6458 bdrv_drained_end(bs);
6460 if (qemu_get_aio_context() != old_context) {
6461 aio_context_acquire(old_context);
6463 if (qemu_get_aio_context() != new_context) {
6464 aio_context_release(new_context);
6468 static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6469 GSList **ignore, Error **errp)
6471 if (g_slist_find(*ignore, c)) {
6472 return true;
6474 *ignore = g_slist_prepend(*ignore, c);
6477 * A BdrvChildClass that doesn't handle AioContext changes cannot
6478 * tolerate any AioContext changes
6480 if (!c->klass->can_set_aio_ctx) {
6481 char *user = bdrv_child_user_desc(c);
6482 error_setg(errp, "Changing iothreads is not supported by %s", user);
6483 g_free(user);
6484 return false;
6486 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
6487 assert(!errp || *errp);
6488 return false;
6490 return true;
6493 bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6494 GSList **ignore, Error **errp)
6496 if (g_slist_find(*ignore, c)) {
6497 return true;
6499 *ignore = g_slist_prepend(*ignore, c);
6500 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
6503 /* @ignore will accumulate all visited BdrvChild object. The caller is
6504 * responsible for freeing the list afterwards. */
6505 bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6506 GSList **ignore, Error **errp)
6508 BdrvChild *c;
6510 if (bdrv_get_aio_context(bs) == ctx) {
6511 return true;
6514 QLIST_FOREACH(c, &bs->parents, next_parent) {
6515 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
6516 return false;
6519 QLIST_FOREACH(c, &bs->children, next) {
6520 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
6521 return false;
6525 return true;
6528 int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6529 BdrvChild *ignore_child, Error **errp)
6531 GSList *ignore;
6532 bool ret;
6534 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6535 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
6536 g_slist_free(ignore);
6538 if (!ret) {
6539 return -EPERM;
6542 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6543 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
6544 g_slist_free(ignore);
6546 return 0;
6549 int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6550 Error **errp)
6552 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
6555 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
6556 void (*attached_aio_context)(AioContext *new_context, void *opaque),
6557 void (*detach_aio_context)(void *opaque), void *opaque)
6559 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
6560 *ban = (BdrvAioNotifier){
6561 .attached_aio_context = attached_aio_context,
6562 .detach_aio_context = detach_aio_context,
6563 .opaque = opaque
6566 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
6569 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
6570 void (*attached_aio_context)(AioContext *,
6571 void *),
6572 void (*detach_aio_context)(void *),
6573 void *opaque)
6575 BdrvAioNotifier *ban, *ban_next;
6577 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
6578 if (ban->attached_aio_context == attached_aio_context &&
6579 ban->detach_aio_context == detach_aio_context &&
6580 ban->opaque == opaque &&
6581 ban->deleted == false)
6583 if (bs->walking_aio_notifiers) {
6584 ban->deleted = true;
6585 } else {
6586 bdrv_do_remove_aio_context_notifier(ban);
6588 return;
6592 abort();
6595 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
6596 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
6597 bool force,
6598 Error **errp)
6600 if (!bs->drv) {
6601 error_setg(errp, "Node is ejected");
6602 return -ENOMEDIUM;
6604 if (!bs->drv->bdrv_amend_options) {
6605 error_setg(errp, "Block driver '%s' does not support option amendment",
6606 bs->drv->format_name);
6607 return -ENOTSUP;
6609 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
6610 cb_opaque, force, errp);
6614 * This function checks whether the given @to_replace is allowed to be
6615 * replaced by a node that always shows the same data as @bs. This is
6616 * used for example to verify whether the mirror job can replace
6617 * @to_replace by the target mirrored from @bs.
6618 * To be replaceable, @bs and @to_replace may either be guaranteed to
6619 * always show the same data (because they are only connected through
6620 * filters), or some driver may allow replacing one of its children
6621 * because it can guarantee that this child's data is not visible at
6622 * all (for example, for dissenting quorum children that have no other
6623 * parents).
6625 bool bdrv_recurse_can_replace(BlockDriverState *bs,
6626 BlockDriverState *to_replace)
6628 BlockDriverState *filtered;
6630 if (!bs || !bs->drv) {
6631 return false;
6634 if (bs == to_replace) {
6635 return true;
6638 /* See what the driver can do */
6639 if (bs->drv->bdrv_recurse_can_replace) {
6640 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
6643 /* For filters without an own implementation, we can recurse on our own */
6644 filtered = bdrv_filter_bs(bs);
6645 if (filtered) {
6646 return bdrv_recurse_can_replace(filtered, to_replace);
6649 /* Safe default */
6650 return false;
6654 * Check whether the given @node_name can be replaced by a node that
6655 * has the same data as @parent_bs. If so, return @node_name's BDS;
6656 * NULL otherwise.
6658 * @node_name must be a (recursive) *child of @parent_bs (or this
6659 * function will return NULL).
6661 * The result (whether the node can be replaced or not) is only valid
6662 * for as long as no graph or permission changes occur.
6664 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
6665 const char *node_name, Error **errp)
6667 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
6668 AioContext *aio_context;
6670 if (!to_replace_bs) {
6671 error_setg(errp, "Node name '%s' not found", node_name);
6672 return NULL;
6675 aio_context = bdrv_get_aio_context(to_replace_bs);
6676 aio_context_acquire(aio_context);
6678 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
6679 to_replace_bs = NULL;
6680 goto out;
6683 /* We don't want arbitrary node of the BDS chain to be replaced only the top
6684 * most non filter in order to prevent data corruption.
6685 * Another benefit is that this tests exclude backing files which are
6686 * blocked by the backing blockers.
6688 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
6689 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
6690 "because it cannot be guaranteed that doing so would not "
6691 "lead to an abrupt change of visible data",
6692 node_name, parent_bs->node_name);
6693 to_replace_bs = NULL;
6694 goto out;
6697 out:
6698 aio_context_release(aio_context);
6699 return to_replace_bs;
6703 * Iterates through the list of runtime option keys that are said to
6704 * be "strong" for a BDS. An option is called "strong" if it changes
6705 * a BDS's data. For example, the null block driver's "size" and
6706 * "read-zeroes" options are strong, but its "latency-ns" option is
6707 * not.
6709 * If a key returned by this function ends with a dot, all options
6710 * starting with that prefix are strong.
6712 static const char *const *strong_options(BlockDriverState *bs,
6713 const char *const *curopt)
6715 static const char *const global_options[] = {
6716 "driver", "filename", NULL
6719 if (!curopt) {
6720 return &global_options[0];
6723 curopt++;
6724 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
6725 curopt = bs->drv->strong_runtime_opts;
6728 return (curopt && *curopt) ? curopt : NULL;
6732 * Copies all strong runtime options from bs->options to the given
6733 * QDict. The set of strong option keys is determined by invoking
6734 * strong_options().
6736 * Returns true iff any strong option was present in bs->options (and
6737 * thus copied to the target QDict) with the exception of "filename"
6738 * and "driver". The caller is expected to use this value to decide
6739 * whether the existence of strong options prevents the generation of
6740 * a plain filename.
6742 static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
6744 bool found_any = false;
6745 const char *const *option_name = NULL;
6747 if (!bs->drv) {
6748 return false;
6751 while ((option_name = strong_options(bs, option_name))) {
6752 bool option_given = false;
6754 assert(strlen(*option_name) > 0);
6755 if ((*option_name)[strlen(*option_name) - 1] != '.') {
6756 QObject *entry = qdict_get(bs->options, *option_name);
6757 if (!entry) {
6758 continue;
6761 qdict_put_obj(d, *option_name, qobject_ref(entry));
6762 option_given = true;
6763 } else {
6764 const QDictEntry *entry;
6765 for (entry = qdict_first(bs->options); entry;
6766 entry = qdict_next(bs->options, entry))
6768 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
6769 qdict_put_obj(d, qdict_entry_key(entry),
6770 qobject_ref(qdict_entry_value(entry)));
6771 option_given = true;
6776 /* While "driver" and "filename" need to be included in a JSON filename,
6777 * their existence does not prohibit generation of a plain filename. */
6778 if (!found_any && option_given &&
6779 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
6781 found_any = true;
6785 if (!qdict_haskey(d, "driver")) {
6786 /* Drivers created with bdrv_new_open_driver() may not have a
6787 * @driver option. Add it here. */
6788 qdict_put_str(d, "driver", bs->drv->format_name);
6791 return found_any;
6794 /* Note: This function may return false positives; it may return true
6795 * even if opening the backing file specified by bs's image header
6796 * would result in exactly bs->backing. */
6797 bool bdrv_backing_overridden(BlockDriverState *bs)
6799 if (bs->backing) {
6800 return strcmp(bs->auto_backing_file,
6801 bs->backing->bs->filename);
6802 } else {
6803 /* No backing BDS, so if the image header reports any backing
6804 * file, it must have been suppressed */
6805 return bs->auto_backing_file[0] != '\0';
6809 /* Updates the following BDS fields:
6810 * - exact_filename: A filename which may be used for opening a block device
6811 * which (mostly) equals the given BDS (even without any
6812 * other options; so reading and writing must return the same
6813 * results, but caching etc. may be different)
6814 * - full_open_options: Options which, when given when opening a block device
6815 * (without a filename), result in a BDS (mostly)
6816 * equalling the given one
6817 * - filename: If exact_filename is set, it is copied here. Otherwise,
6818 * full_open_options is converted to a JSON object, prefixed with
6819 * "json:" (for use through the JSON pseudo protocol) and put here.
6821 void bdrv_refresh_filename(BlockDriverState *bs)
6823 BlockDriver *drv = bs->drv;
6824 BdrvChild *child;
6825 BlockDriverState *primary_child_bs;
6826 QDict *opts;
6827 bool backing_overridden;
6828 bool generate_json_filename; /* Whether our default implementation should
6829 fill exact_filename (false) or not (true) */
6831 if (!drv) {
6832 return;
6835 /* This BDS's file name may depend on any of its children's file names, so
6836 * refresh those first */
6837 QLIST_FOREACH(child, &bs->children, next) {
6838 bdrv_refresh_filename(child->bs);
6841 if (bs->implicit) {
6842 /* For implicit nodes, just copy everything from the single child */
6843 child = QLIST_FIRST(&bs->children);
6844 assert(QLIST_NEXT(child, next) == NULL);
6846 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
6847 child->bs->exact_filename);
6848 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
6850 qobject_unref(bs->full_open_options);
6851 bs->full_open_options = qobject_ref(child->bs->full_open_options);
6853 return;
6856 backing_overridden = bdrv_backing_overridden(bs);
6858 if (bs->open_flags & BDRV_O_NO_IO) {
6859 /* Without I/O, the backing file does not change anything.
6860 * Therefore, in such a case (primarily qemu-img), we can
6861 * pretend the backing file has not been overridden even if
6862 * it technically has been. */
6863 backing_overridden = false;
6866 /* Gather the options QDict */
6867 opts = qdict_new();
6868 generate_json_filename = append_strong_runtime_options(opts, bs);
6869 generate_json_filename |= backing_overridden;
6871 if (drv->bdrv_gather_child_options) {
6872 /* Some block drivers may not want to present all of their children's
6873 * options, or name them differently from BdrvChild.name */
6874 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
6875 } else {
6876 QLIST_FOREACH(child, &bs->children, next) {
6877 if (child == bs->backing && !backing_overridden) {
6878 /* We can skip the backing BDS if it has not been overridden */
6879 continue;
6882 qdict_put(opts, child->name,
6883 qobject_ref(child->bs->full_open_options));
6886 if (backing_overridden && !bs->backing) {
6887 /* Force no backing file */
6888 qdict_put_null(opts, "backing");
6892 qobject_unref(bs->full_open_options);
6893 bs->full_open_options = opts;
6895 primary_child_bs = bdrv_primary_bs(bs);
6897 if (drv->bdrv_refresh_filename) {
6898 /* Obsolete information is of no use here, so drop the old file name
6899 * information before refreshing it */
6900 bs->exact_filename[0] = '\0';
6902 drv->bdrv_refresh_filename(bs);
6903 } else if (primary_child_bs) {
6905 * Try to reconstruct valid information from the underlying
6906 * file -- this only works for format nodes (filter nodes
6907 * cannot be probed and as such must be selected by the user
6908 * either through an options dict, or through a special
6909 * filename which the filter driver must construct in its
6910 * .bdrv_refresh_filename() implementation).
6913 bs->exact_filename[0] = '\0';
6916 * We can use the underlying file's filename if:
6917 * - it has a filename,
6918 * - the current BDS is not a filter,
6919 * - the file is a protocol BDS, and
6920 * - opening that file (as this BDS's format) will automatically create
6921 * the BDS tree we have right now, that is:
6922 * - the user did not significantly change this BDS's behavior with
6923 * some explicit (strong) options
6924 * - no non-file child of this BDS has been overridden by the user
6925 * Both of these conditions are represented by generate_json_filename.
6927 if (primary_child_bs->exact_filename[0] &&
6928 primary_child_bs->drv->bdrv_file_open &&
6929 !drv->is_filter && !generate_json_filename)
6931 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
6935 if (bs->exact_filename[0]) {
6936 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
6937 } else {
6938 QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
6939 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
6940 qstring_get_str(json)) >= sizeof(bs->filename)) {
6941 /* Give user a hint if we truncated things. */
6942 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
6944 qobject_unref(json);
6948 char *bdrv_dirname(BlockDriverState *bs, Error **errp)
6950 BlockDriver *drv = bs->drv;
6951 BlockDriverState *child_bs;
6953 if (!drv) {
6954 error_setg(errp, "Node '%s' is ejected", bs->node_name);
6955 return NULL;
6958 if (drv->bdrv_dirname) {
6959 return drv->bdrv_dirname(bs, errp);
6962 child_bs = bdrv_primary_bs(bs);
6963 if (child_bs) {
6964 return bdrv_dirname(child_bs, errp);
6967 bdrv_refresh_filename(bs);
6968 if (bs->exact_filename[0] != '\0') {
6969 return path_combine(bs->exact_filename, "");
6972 error_setg(errp, "Cannot generate a base directory for %s nodes",
6973 drv->format_name);
6974 return NULL;
6978 * Hot add/remove a BDS's child. So the user can take a child offline when
6979 * it is broken and take a new child online
6981 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
6982 Error **errp)
6985 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
6986 error_setg(errp, "The node %s does not support adding a child",
6987 bdrv_get_device_or_node_name(parent_bs));
6988 return;
6991 if (!QLIST_EMPTY(&child_bs->parents)) {
6992 error_setg(errp, "The node %s already has a parent",
6993 child_bs->node_name);
6994 return;
6997 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7000 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7002 BdrvChild *tmp;
7004 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7005 error_setg(errp, "The node %s does not support removing a child",
7006 bdrv_get_device_or_node_name(parent_bs));
7007 return;
7010 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7011 if (tmp == child) {
7012 break;
7016 if (!tmp) {
7017 error_setg(errp, "The node %s does not have a child named %s",
7018 bdrv_get_device_or_node_name(parent_bs),
7019 bdrv_get_device_or_node_name(child->bs));
7020 return;
7023 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7026 int bdrv_make_empty(BdrvChild *c, Error **errp)
7028 BlockDriver *drv = c->bs->drv;
7029 int ret;
7031 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7033 if (!drv->bdrv_make_empty) {
7034 error_setg(errp, "%s does not support emptying nodes",
7035 drv->format_name);
7036 return -ENOTSUP;
7039 ret = drv->bdrv_make_empty(c->bs);
7040 if (ret < 0) {
7041 error_setg_errno(errp, -ret, "Failed to empty %s",
7042 c->bs->filename);
7043 return ret;
7046 return 0;
7050 * Return the child that @bs acts as an overlay for, and from which data may be
7051 * copied in COW or COR operations. Usually this is the backing file.
7053 BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7055 if (!bs || !bs->drv) {
7056 return NULL;
7059 if (bs->drv->is_filter) {
7060 return NULL;
7063 if (!bs->backing) {
7064 return NULL;
7067 assert(bs->backing->role & BDRV_CHILD_COW);
7068 return bs->backing;
7072 * If @bs acts as a filter for exactly one of its children, return
7073 * that child.
7075 BdrvChild *bdrv_filter_child(BlockDriverState *bs)
7077 BdrvChild *c;
7079 if (!bs || !bs->drv) {
7080 return NULL;
7083 if (!bs->drv->is_filter) {
7084 return NULL;
7087 /* Only one of @backing or @file may be used */
7088 assert(!(bs->backing && bs->file));
7090 c = bs->backing ?: bs->file;
7091 if (!c) {
7092 return NULL;
7095 assert(c->role & BDRV_CHILD_FILTERED);
7096 return c;
7100 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7101 * whichever is non-NULL.
7103 * Return NULL if both are NULL.
7105 BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
7107 BdrvChild *cow_child = bdrv_cow_child(bs);
7108 BdrvChild *filter_child = bdrv_filter_child(bs);
7110 /* Filter nodes cannot have COW backing files */
7111 assert(!(cow_child && filter_child));
7113 return cow_child ?: filter_child;
7117 * Return the primary child of this node: For filters, that is the
7118 * filtered child. For other nodes, that is usually the child storing
7119 * metadata.
7120 * (A generally more helpful description is that this is (usually) the
7121 * child that has the same filename as @bs.)
7123 * Drivers do not necessarily have a primary child; for example quorum
7124 * does not.
7126 BdrvChild *bdrv_primary_child(BlockDriverState *bs)
7128 BdrvChild *c, *found = NULL;
7130 QLIST_FOREACH(c, &bs->children, next) {
7131 if (c->role & BDRV_CHILD_PRIMARY) {
7132 assert(!found);
7133 found = c;
7137 return found;
7140 static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
7141 bool stop_on_explicit_filter)
7143 BdrvChild *c;
7145 if (!bs) {
7146 return NULL;
7149 while (!(stop_on_explicit_filter && !bs->implicit)) {
7150 c = bdrv_filter_child(bs);
7151 if (!c) {
7153 * A filter that is embedded in a working block graph must
7154 * have a child. Assert this here so this function does
7155 * not return a filter node that is not expected by the
7156 * caller.
7158 assert(!bs->drv || !bs->drv->is_filter);
7159 break;
7161 bs = c->bs;
7164 * Note that this treats nodes with bs->drv == NULL as not being
7165 * filters (bs->drv == NULL should be replaced by something else
7166 * anyway).
7167 * The advantage of this behavior is that this function will thus
7168 * always return a non-NULL value (given a non-NULL @bs).
7171 return bs;
7175 * Return the first BDS that has not been added implicitly or that
7176 * does not have a filtered child down the chain starting from @bs
7177 * (including @bs itself).
7179 BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
7181 return bdrv_do_skip_filters(bs, true);
7185 * Return the first BDS that does not have a filtered child down the
7186 * chain starting from @bs (including @bs itself).
7188 BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
7190 return bdrv_do_skip_filters(bs, false);
7194 * For a backing chain, return the first non-filter backing image of
7195 * the first non-filter image.
7197 BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
7199 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));