block: trickle down the fallback image creation function use to the block drivers
[qemu/ar7.git] / block.c
blobaf3faf664ea9a4d02b6a93528a066a9c4a100cd7
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/nbd.h"
30 #include "block/qdict.h"
31 #include "qemu/error-report.h"
32 #include "module_block.h"
33 #include "qemu/main-loop.h"
34 #include "qemu/module.h"
35 #include "qapi/error.h"
36 #include "qapi/qmp/qdict.h"
37 #include "qapi/qmp/qjson.h"
38 #include "qapi/qmp/qnull.h"
39 #include "qapi/qmp/qstring.h"
40 #include "qapi/qobject-output-visitor.h"
41 #include "qapi/qapi-visit-block-core.h"
42 #include "sysemu/block-backend.h"
43 #include "sysemu/sysemu.h"
44 #include "qemu/notify.h"
45 #include "qemu/option.h"
46 #include "qemu/coroutine.h"
47 #include "block/qapi.h"
48 #include "qemu/timer.h"
49 #include "qemu/cutils.h"
50 #include "qemu/id.h"
52 #ifdef CONFIG_BSD
53 #include <sys/ioctl.h>
54 #include <sys/queue.h>
55 #ifndef __DragonFly__
56 #include <sys/disk.h>
57 #endif
58 #endif
60 #ifdef _WIN32
61 #include <windows.h>
62 #endif
64 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
66 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
67 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
69 static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
70 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
72 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
73 QLIST_HEAD_INITIALIZER(bdrv_drivers);
75 static BlockDriverState *bdrv_open_inherit(const char *filename,
76 const char *reference,
77 QDict *options, int flags,
78 BlockDriverState *parent,
79 const BdrvChildRole *child_role,
80 Error **errp);
82 /* If non-zero, use only whitelisted block drivers */
83 static int use_bdrv_whitelist;
85 #ifdef _WIN32
86 static int is_windows_drive_prefix(const char *filename)
88 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
89 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
90 filename[1] == ':');
93 int is_windows_drive(const char *filename)
95 if (is_windows_drive_prefix(filename) &&
96 filename[2] == '\0')
97 return 1;
98 if (strstart(filename, "\\\\.\\", NULL) ||
99 strstart(filename, "//./", NULL))
100 return 1;
101 return 0;
103 #endif
105 size_t bdrv_opt_mem_align(BlockDriverState *bs)
107 if (!bs || !bs->drv) {
108 /* page size or 4k (hdd sector size) should be on the safe side */
109 return MAX(4096, qemu_real_host_page_size);
112 return bs->bl.opt_mem_alignment;
115 size_t bdrv_min_mem_align(BlockDriverState *bs)
117 if (!bs || !bs->drv) {
118 /* page size or 4k (hdd sector size) should be on the safe side */
119 return MAX(4096, qemu_real_host_page_size);
122 return bs->bl.min_mem_alignment;
125 /* check if the path starts with "<protocol>:" */
126 int path_has_protocol(const char *path)
128 const char *p;
130 #ifdef _WIN32
131 if (is_windows_drive(path) ||
132 is_windows_drive_prefix(path)) {
133 return 0;
135 p = path + strcspn(path, ":/\\");
136 #else
137 p = path + strcspn(path, ":/");
138 #endif
140 return *p == ':';
143 int path_is_absolute(const char *path)
145 #ifdef _WIN32
146 /* specific case for names like: "\\.\d:" */
147 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
148 return 1;
150 return (*path == '/' || *path == '\\');
151 #else
152 return (*path == '/');
153 #endif
156 /* if filename is absolute, just return its duplicate. Otherwise, build a
157 path to it by considering it is relative to base_path. URL are
158 supported. */
159 char *path_combine(const char *base_path, const char *filename)
161 const char *protocol_stripped = NULL;
162 const char *p, *p1;
163 char *result;
164 int len;
166 if (path_is_absolute(filename)) {
167 return g_strdup(filename);
170 if (path_has_protocol(base_path)) {
171 protocol_stripped = strchr(base_path, ':');
172 if (protocol_stripped) {
173 protocol_stripped++;
176 p = protocol_stripped ?: base_path;
178 p1 = strrchr(base_path, '/');
179 #ifdef _WIN32
181 const char *p2;
182 p2 = strrchr(base_path, '\\');
183 if (!p1 || p2 > p1) {
184 p1 = p2;
187 #endif
188 if (p1) {
189 p1++;
190 } else {
191 p1 = base_path;
193 if (p1 > p) {
194 p = p1;
196 len = p - base_path;
198 result = g_malloc(len + strlen(filename) + 1);
199 memcpy(result, base_path, len);
200 strcpy(result + len, filename);
202 return result;
206 * Helper function for bdrv_parse_filename() implementations to remove optional
207 * protocol prefixes (especially "file:") from a filename and for putting the
208 * stripped filename into the options QDict if there is such a prefix.
210 void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
211 QDict *options)
213 if (strstart(filename, prefix, &filename)) {
214 /* Stripping the explicit protocol prefix may result in a protocol
215 * prefix being (wrongly) detected (if the filename contains a colon) */
216 if (path_has_protocol(filename)) {
217 QString *fat_filename;
219 /* This means there is some colon before the first slash; therefore,
220 * this cannot be an absolute path */
221 assert(!path_is_absolute(filename));
223 /* And we can thus fix the protocol detection issue by prefixing it
224 * by "./" */
225 fat_filename = qstring_from_str("./");
226 qstring_append(fat_filename, filename);
228 assert(!path_has_protocol(qstring_get_str(fat_filename)));
230 qdict_put(options, "filename", fat_filename);
231 } else {
232 /* If no protocol prefix was detected, we can use the shortened
233 * filename as-is */
234 qdict_put_str(options, "filename", filename);
240 /* Returns whether the image file is opened as read-only. Note that this can
241 * return false and writing to the image file is still not possible because the
242 * image is inactivated. */
243 bool bdrv_is_read_only(BlockDriverState *bs)
245 return bs->read_only;
248 int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
249 bool ignore_allow_rdw, Error **errp)
251 /* Do not set read_only if copy_on_read is enabled */
252 if (bs->copy_on_read && read_only) {
253 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
254 bdrv_get_device_or_node_name(bs));
255 return -EINVAL;
258 /* Do not clear read_only if it is prohibited */
259 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
260 !ignore_allow_rdw)
262 error_setg(errp, "Node '%s' is read only",
263 bdrv_get_device_or_node_name(bs));
264 return -EPERM;
267 return 0;
271 * Called by a driver that can only provide a read-only image.
273 * Returns 0 if the node is already read-only or it could switch the node to
274 * read-only because BDRV_O_AUTO_RDONLY is set.
276 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
277 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
278 * is not NULL, it is used as the error message for the Error object.
280 int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
281 Error **errp)
283 int ret = 0;
285 if (!(bs->open_flags & BDRV_O_RDWR)) {
286 return 0;
288 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
289 goto fail;
292 ret = bdrv_can_set_read_only(bs, true, false, NULL);
293 if (ret < 0) {
294 goto fail;
297 bs->read_only = true;
298 bs->open_flags &= ~BDRV_O_RDWR;
300 return 0;
302 fail:
303 error_setg(errp, "%s", errmsg ?: "Image is read-only");
304 return -EACCES;
308 * If @backing is empty, this function returns NULL without setting
309 * @errp. In all other cases, NULL will only be returned with @errp
310 * set.
312 * Therefore, a return value of NULL without @errp set means that
313 * there is no backing file; if @errp is set, there is one but its
314 * absolute filename cannot be generated.
316 char *bdrv_get_full_backing_filename_from_filename(const char *backed,
317 const char *backing,
318 Error **errp)
320 if (backing[0] == '\0') {
321 return NULL;
322 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
323 return g_strdup(backing);
324 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
325 error_setg(errp, "Cannot use relative backing file names for '%s'",
326 backed);
327 return NULL;
328 } else {
329 return path_combine(backed, backing);
334 * If @filename is empty or NULL, this function returns NULL without
335 * setting @errp. In all other cases, NULL will only be returned with
336 * @errp set.
338 static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
339 const char *filename, Error **errp)
341 char *dir, *full_name;
343 if (!filename || filename[0] == '\0') {
344 return NULL;
345 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
346 return g_strdup(filename);
349 dir = bdrv_dirname(relative_to, errp);
350 if (!dir) {
351 return NULL;
354 full_name = g_strconcat(dir, filename, NULL);
355 g_free(dir);
356 return full_name;
359 char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
361 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
364 void bdrv_register(BlockDriver *bdrv)
366 assert(bdrv->format_name);
367 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
370 BlockDriverState *bdrv_new(void)
372 BlockDriverState *bs;
373 int i;
375 bs = g_new0(BlockDriverState, 1);
376 QLIST_INIT(&bs->dirty_bitmaps);
377 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
378 QLIST_INIT(&bs->op_blockers[i]);
380 notifier_with_return_list_init(&bs->before_write_notifiers);
381 qemu_co_mutex_init(&bs->reqs_lock);
382 qemu_mutex_init(&bs->dirty_bitmap_mutex);
383 bs->refcnt = 1;
384 bs->aio_context = qemu_get_aio_context();
386 qemu_co_queue_init(&bs->flush_queue);
388 for (i = 0; i < bdrv_drain_all_count; i++) {
389 bdrv_drained_begin(bs);
392 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
394 return bs;
397 static BlockDriver *bdrv_do_find_format(const char *format_name)
399 BlockDriver *drv1;
401 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
402 if (!strcmp(drv1->format_name, format_name)) {
403 return drv1;
407 return NULL;
410 BlockDriver *bdrv_find_format(const char *format_name)
412 BlockDriver *drv1;
413 int i;
415 drv1 = bdrv_do_find_format(format_name);
416 if (drv1) {
417 return drv1;
420 /* The driver isn't registered, maybe we need to load a module */
421 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
422 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
423 block_module_load_one(block_driver_modules[i].library_name);
424 break;
428 return bdrv_do_find_format(format_name);
431 static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
433 static const char *whitelist_rw[] = {
434 CONFIG_BDRV_RW_WHITELIST
436 static const char *whitelist_ro[] = {
437 CONFIG_BDRV_RO_WHITELIST
439 const char **p;
441 if (!whitelist_rw[0] && !whitelist_ro[0]) {
442 return 1; /* no whitelist, anything goes */
445 for (p = whitelist_rw; *p; p++) {
446 if (!strcmp(format_name, *p)) {
447 return 1;
450 if (read_only) {
451 for (p = whitelist_ro; *p; p++) {
452 if (!strcmp(format_name, *p)) {
453 return 1;
457 return 0;
460 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
462 return bdrv_format_is_whitelisted(drv->format_name, read_only);
465 bool bdrv_uses_whitelist(void)
467 return use_bdrv_whitelist;
470 typedef struct CreateCo {
471 BlockDriver *drv;
472 char *filename;
473 QemuOpts *opts;
474 int ret;
475 Error *err;
476 } CreateCo;
478 static void coroutine_fn bdrv_create_co_entry(void *opaque)
480 Error *local_err = NULL;
481 int ret;
483 CreateCo *cco = opaque;
484 assert(cco->drv);
486 ret = cco->drv->bdrv_co_create_opts(cco->drv,
487 cco->filename, cco->opts, &local_err);
488 error_propagate(&cco->err, local_err);
489 cco->ret = ret;
492 int bdrv_create(BlockDriver *drv, const char* filename,
493 QemuOpts *opts, Error **errp)
495 int ret;
497 Coroutine *co;
498 CreateCo cco = {
499 .drv = drv,
500 .filename = g_strdup(filename),
501 .opts = opts,
502 .ret = NOT_DONE,
503 .err = NULL,
506 if (!drv->bdrv_co_create_opts) {
507 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
508 ret = -ENOTSUP;
509 goto out;
512 if (qemu_in_coroutine()) {
513 /* Fast-path if already in coroutine context */
514 bdrv_create_co_entry(&cco);
515 } else {
516 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
517 qemu_coroutine_enter(co);
518 while (cco.ret == NOT_DONE) {
519 aio_poll(qemu_get_aio_context(), true);
523 ret = cco.ret;
524 if (ret < 0) {
525 if (cco.err) {
526 error_propagate(errp, cco.err);
527 } else {
528 error_setg_errno(errp, -ret, "Could not create image");
532 out:
533 g_free(cco.filename);
534 return ret;
538 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
539 * least the given @minimum_size.
541 * On success, return @blk's actual length.
542 * Otherwise, return -errno.
544 static int64_t create_file_fallback_truncate(BlockBackend *blk,
545 int64_t minimum_size, Error **errp)
547 Error *local_err = NULL;
548 int64_t size;
549 int ret;
551 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, &local_err);
552 if (ret < 0 && ret != -ENOTSUP) {
553 error_propagate(errp, local_err);
554 return ret;
557 size = blk_getlength(blk);
558 if (size < 0) {
559 error_free(local_err);
560 error_setg_errno(errp, -size,
561 "Failed to inquire the new image file's length");
562 return size;
565 if (size < minimum_size) {
566 /* Need to grow the image, but we failed to do that */
567 error_propagate(errp, local_err);
568 return -ENOTSUP;
571 error_free(local_err);
572 local_err = NULL;
574 return size;
578 * Helper function for bdrv_create_file_fallback(): Zero the first
579 * sector to remove any potentially pre-existing image header.
581 static int create_file_fallback_zero_first_sector(BlockBackend *blk,
582 int64_t current_size,
583 Error **errp)
585 int64_t bytes_to_clear;
586 int ret;
588 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
589 if (bytes_to_clear) {
590 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
591 if (ret < 0) {
592 error_setg_errno(errp, -ret,
593 "Failed to clear the new image's first sector");
594 return ret;
598 return 0;
602 * Simple implementation of bdrv_co_create_opts for protocol drivers
603 * which only support creation via opening a file
604 * (usually existing raw storage device)
606 int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
607 const char *filename,
608 QemuOpts *opts,
609 Error **errp)
611 BlockBackend *blk;
612 QDict *options;
613 int64_t size = 0;
614 char *buf = NULL;
615 PreallocMode prealloc;
616 Error *local_err = NULL;
617 int ret;
619 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
620 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
621 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
622 PREALLOC_MODE_OFF, &local_err);
623 g_free(buf);
624 if (local_err) {
625 error_propagate(errp, local_err);
626 return -EINVAL;
629 if (prealloc != PREALLOC_MODE_OFF) {
630 error_setg(errp, "Unsupported preallocation mode '%s'",
631 PreallocMode_str(prealloc));
632 return -ENOTSUP;
635 options = qdict_new();
636 qdict_put_str(options, "driver", drv->format_name);
638 blk = blk_new_open(filename, NULL, options,
639 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
640 if (!blk) {
641 error_prepend(errp, "Protocol driver '%s' does not support image "
642 "creation, and opening the image failed: ",
643 drv->format_name);
644 return -EINVAL;
647 size = create_file_fallback_truncate(blk, size, errp);
648 if (size < 0) {
649 ret = size;
650 goto out;
653 ret = create_file_fallback_zero_first_sector(blk, size, errp);
654 if (ret < 0) {
655 goto out;
658 ret = 0;
659 out:
660 blk_unref(blk);
661 return ret;
664 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
666 BlockDriver *drv;
668 drv = bdrv_find_protocol(filename, true, errp);
669 if (drv == NULL) {
670 return -ENOENT;
673 return bdrv_create(drv, filename, opts, errp);
676 int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
678 Error *local_err = NULL;
679 int ret;
681 assert(bs != NULL);
683 if (!bs->drv) {
684 error_setg(errp, "Block node '%s' is not opened", bs->filename);
685 return -ENOMEDIUM;
688 if (!bs->drv->bdrv_co_delete_file) {
689 error_setg(errp, "Driver '%s' does not support image deletion",
690 bs->drv->format_name);
691 return -ENOTSUP;
694 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
695 if (ret < 0) {
696 error_propagate(errp, local_err);
699 return ret;
703 * Try to get @bs's logical and physical block size.
704 * On success, store them in @bsz struct and return 0.
705 * On failure return -errno.
706 * @bs must not be empty.
708 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
710 BlockDriver *drv = bs->drv;
712 if (drv && drv->bdrv_probe_blocksizes) {
713 return drv->bdrv_probe_blocksizes(bs, bsz);
714 } else if (drv && drv->is_filter && bs->file) {
715 return bdrv_probe_blocksizes(bs->file->bs, bsz);
718 return -ENOTSUP;
722 * Try to get @bs's geometry (cyls, heads, sectors).
723 * On success, store them in @geo struct and return 0.
724 * On failure return -errno.
725 * @bs must not be empty.
727 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
729 BlockDriver *drv = bs->drv;
731 if (drv && drv->bdrv_probe_geometry) {
732 return drv->bdrv_probe_geometry(bs, geo);
733 } else if (drv && drv->is_filter && bs->file) {
734 return bdrv_probe_geometry(bs->file->bs, geo);
737 return -ENOTSUP;
741 * Create a uniquely-named empty temporary file.
742 * Return 0 upon success, otherwise a negative errno value.
744 int get_tmp_filename(char *filename, int size)
746 #ifdef _WIN32
747 char temp_dir[MAX_PATH];
748 /* GetTempFileName requires that its output buffer (4th param)
749 have length MAX_PATH or greater. */
750 assert(size >= MAX_PATH);
751 return (GetTempPath(MAX_PATH, temp_dir)
752 && GetTempFileName(temp_dir, "qem", 0, filename)
753 ? 0 : -GetLastError());
754 #else
755 int fd;
756 const char *tmpdir;
757 tmpdir = getenv("TMPDIR");
758 if (!tmpdir) {
759 tmpdir = "/var/tmp";
761 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
762 return -EOVERFLOW;
764 fd = mkstemp(filename);
765 if (fd < 0) {
766 return -errno;
768 if (close(fd) != 0) {
769 unlink(filename);
770 return -errno;
772 return 0;
773 #endif
777 * Detect host devices. By convention, /dev/cdrom[N] is always
778 * recognized as a host CDROM.
780 static BlockDriver *find_hdev_driver(const char *filename)
782 int score_max = 0, score;
783 BlockDriver *drv = NULL, *d;
785 QLIST_FOREACH(d, &bdrv_drivers, list) {
786 if (d->bdrv_probe_device) {
787 score = d->bdrv_probe_device(filename);
788 if (score > score_max) {
789 score_max = score;
790 drv = d;
795 return drv;
798 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
800 BlockDriver *drv1;
802 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
803 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
804 return drv1;
808 return NULL;
811 BlockDriver *bdrv_find_protocol(const char *filename,
812 bool allow_protocol_prefix,
813 Error **errp)
815 BlockDriver *drv1;
816 char protocol[128];
817 int len;
818 const char *p;
819 int i;
821 /* TODO Drivers without bdrv_file_open must be specified explicitly */
824 * XXX(hch): we really should not let host device detection
825 * override an explicit protocol specification, but moving this
826 * later breaks access to device names with colons in them.
827 * Thanks to the brain-dead persistent naming schemes on udev-
828 * based Linux systems those actually are quite common.
830 drv1 = find_hdev_driver(filename);
831 if (drv1) {
832 return drv1;
835 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
836 return &bdrv_file;
839 p = strchr(filename, ':');
840 assert(p != NULL);
841 len = p - filename;
842 if (len > sizeof(protocol) - 1)
843 len = sizeof(protocol) - 1;
844 memcpy(protocol, filename, len);
845 protocol[len] = '\0';
847 drv1 = bdrv_do_find_protocol(protocol);
848 if (drv1) {
849 return drv1;
852 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
853 if (block_driver_modules[i].protocol_name &&
854 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
855 block_module_load_one(block_driver_modules[i].library_name);
856 break;
860 drv1 = bdrv_do_find_protocol(protocol);
861 if (!drv1) {
862 error_setg(errp, "Unknown protocol '%s'", protocol);
864 return drv1;
868 * Guess image format by probing its contents.
869 * This is not a good idea when your image is raw (CVE-2008-2004), but
870 * we do it anyway for backward compatibility.
872 * @buf contains the image's first @buf_size bytes.
873 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
874 * but can be smaller if the image file is smaller)
875 * @filename is its filename.
877 * For all block drivers, call the bdrv_probe() method to get its
878 * probing score.
879 * Return the first block driver with the highest probing score.
881 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
882 const char *filename)
884 int score_max = 0, score;
885 BlockDriver *drv = NULL, *d;
887 QLIST_FOREACH(d, &bdrv_drivers, list) {
888 if (d->bdrv_probe) {
889 score = d->bdrv_probe(buf, buf_size, filename);
890 if (score > score_max) {
891 score_max = score;
892 drv = d;
897 return drv;
900 static int find_image_format(BlockBackend *file, const char *filename,
901 BlockDriver **pdrv, Error **errp)
903 BlockDriver *drv;
904 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
905 int ret = 0;
907 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
908 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
909 *pdrv = &bdrv_raw;
910 return ret;
913 ret = blk_pread(file, 0, buf, sizeof(buf));
914 if (ret < 0) {
915 error_setg_errno(errp, -ret, "Could not read image for determining its "
916 "format");
917 *pdrv = NULL;
918 return ret;
921 drv = bdrv_probe_all(buf, ret, filename);
922 if (!drv) {
923 error_setg(errp, "Could not determine image format: No compatible "
924 "driver found");
925 ret = -ENOENT;
927 *pdrv = drv;
928 return ret;
932 * Set the current 'total_sectors' value
933 * Return 0 on success, -errno on error.
935 int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
937 BlockDriver *drv = bs->drv;
939 if (!drv) {
940 return -ENOMEDIUM;
943 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
944 if (bdrv_is_sg(bs))
945 return 0;
947 /* query actual device if possible, otherwise just trust the hint */
948 if (drv->bdrv_getlength) {
949 int64_t length = drv->bdrv_getlength(bs);
950 if (length < 0) {
951 return length;
953 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
956 bs->total_sectors = hint;
957 return 0;
961 * Combines a QDict of new block driver @options with any missing options taken
962 * from @old_options, so that leaving out an option defaults to its old value.
964 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
965 QDict *old_options)
967 if (bs->drv && bs->drv->bdrv_join_options) {
968 bs->drv->bdrv_join_options(options, old_options);
969 } else {
970 qdict_join(options, old_options, false);
974 static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
975 int open_flags,
976 Error **errp)
978 Error *local_err = NULL;
979 char *value = qemu_opt_get_del(opts, "detect-zeroes");
980 BlockdevDetectZeroesOptions detect_zeroes =
981 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
982 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
983 g_free(value);
984 if (local_err) {
985 error_propagate(errp, local_err);
986 return detect_zeroes;
989 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
990 !(open_flags & BDRV_O_UNMAP))
992 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
993 "without setting discard operation to unmap");
996 return detect_zeroes;
1000 * Set open flags for aio engine
1002 * Return 0 on success, -1 if the engine specified is invalid
1004 int bdrv_parse_aio(const char *mode, int *flags)
1006 if (!strcmp(mode, "threads")) {
1007 /* do nothing, default */
1008 } else if (!strcmp(mode, "native")) {
1009 *flags |= BDRV_O_NATIVE_AIO;
1010 #ifdef CONFIG_LINUX_IO_URING
1011 } else if (!strcmp(mode, "io_uring")) {
1012 *flags |= BDRV_O_IO_URING;
1013 #endif
1014 } else {
1015 return -1;
1018 return 0;
1022 * Set open flags for a given discard mode
1024 * Return 0 on success, -1 if the discard mode was invalid.
1026 int bdrv_parse_discard_flags(const char *mode, int *flags)
1028 *flags &= ~BDRV_O_UNMAP;
1030 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1031 /* do nothing */
1032 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1033 *flags |= BDRV_O_UNMAP;
1034 } else {
1035 return -1;
1038 return 0;
1042 * Set open flags for a given cache mode
1044 * Return 0 on success, -1 if the cache mode was invalid.
1046 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
1048 *flags &= ~BDRV_O_CACHE_MASK;
1050 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
1051 *writethrough = false;
1052 *flags |= BDRV_O_NOCACHE;
1053 } else if (!strcmp(mode, "directsync")) {
1054 *writethrough = true;
1055 *flags |= BDRV_O_NOCACHE;
1056 } else if (!strcmp(mode, "writeback")) {
1057 *writethrough = false;
1058 } else if (!strcmp(mode, "unsafe")) {
1059 *writethrough = false;
1060 *flags |= BDRV_O_NO_FLUSH;
1061 } else if (!strcmp(mode, "writethrough")) {
1062 *writethrough = true;
1063 } else {
1064 return -1;
1067 return 0;
1070 static char *bdrv_child_get_parent_desc(BdrvChild *c)
1072 BlockDriverState *parent = c->opaque;
1073 return g_strdup(bdrv_get_device_or_node_name(parent));
1076 static void bdrv_child_cb_drained_begin(BdrvChild *child)
1078 BlockDriverState *bs = child->opaque;
1079 bdrv_do_drained_begin_quiesce(bs, NULL, false);
1082 static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1084 BlockDriverState *bs = child->opaque;
1085 return bdrv_drain_poll(bs, false, NULL, false);
1088 static void bdrv_child_cb_drained_end(BdrvChild *child,
1089 int *drained_end_counter)
1091 BlockDriverState *bs = child->opaque;
1092 bdrv_drained_end_no_poll(bs, drained_end_counter);
1095 static void bdrv_child_cb_attach(BdrvChild *child)
1097 BlockDriverState *bs = child->opaque;
1098 bdrv_apply_subtree_drain(child, bs);
1101 static void bdrv_child_cb_detach(BdrvChild *child)
1103 BlockDriverState *bs = child->opaque;
1104 bdrv_unapply_subtree_drain(child, bs);
1107 static int bdrv_child_cb_inactivate(BdrvChild *child)
1109 BlockDriverState *bs = child->opaque;
1110 assert(bs->open_flags & BDRV_O_INACTIVE);
1111 return 0;
1114 static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1115 GSList **ignore, Error **errp)
1117 BlockDriverState *bs = child->opaque;
1118 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1121 static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1122 GSList **ignore)
1124 BlockDriverState *bs = child->opaque;
1125 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1129 * Returns the options and flags that a temporary snapshot should get, based on
1130 * the originally requested flags (the originally requested image will have
1131 * flags like a backing file)
1133 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1134 int parent_flags, QDict *parent_options)
1136 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1138 /* For temporary files, unconditional cache=unsafe is fine */
1139 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1140 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
1142 /* Copy the read-only and discard options from the parent */
1143 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1144 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
1146 /* aio=native doesn't work for cache.direct=off, so disable it for the
1147 * temporary snapshot */
1148 *child_flags &= ~BDRV_O_NATIVE_AIO;
1152 * Returns the options and flags that bs->file should get if a protocol driver
1153 * is expected, based on the given options and flags for the parent BDS
1155 static void bdrv_inherited_options(int *child_flags, QDict *child_options,
1156 int parent_flags, QDict *parent_options)
1158 int flags = parent_flags;
1160 /* Enable protocol handling, disable format probing for bs->file */
1161 flags |= BDRV_O_PROTOCOL;
1163 /* If the cache mode isn't explicitly set, inherit direct and no-flush from
1164 * the parent. */
1165 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1166 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1167 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1169 /* Inherit the read-only option from the parent if it's not set */
1170 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1171 qdict_copy_default(child_options, parent_options, BDRV_OPT_AUTO_READ_ONLY);
1173 /* Our block drivers take care to send flushes and respect unmap policy,
1174 * so we can default to enable both on lower layers regardless of the
1175 * corresponding parent options. */
1176 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1178 /* Clear flags that only apply to the top layer */
1179 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
1180 BDRV_O_NO_IO);
1182 *child_flags = flags;
1185 const BdrvChildRole child_file = {
1186 .parent_is_bds = true,
1187 .get_parent_desc = bdrv_child_get_parent_desc,
1188 .inherit_options = bdrv_inherited_options,
1189 .drained_begin = bdrv_child_cb_drained_begin,
1190 .drained_poll = bdrv_child_cb_drained_poll,
1191 .drained_end = bdrv_child_cb_drained_end,
1192 .attach = bdrv_child_cb_attach,
1193 .detach = bdrv_child_cb_detach,
1194 .inactivate = bdrv_child_cb_inactivate,
1195 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1196 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1200 * Returns the options and flags that bs->file should get if the use of formats
1201 * (and not only protocols) is permitted for it, based on the given options and
1202 * flags for the parent BDS
1204 static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
1205 int parent_flags, QDict *parent_options)
1207 child_file.inherit_options(child_flags, child_options,
1208 parent_flags, parent_options);
1210 *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
1213 const BdrvChildRole child_format = {
1214 .parent_is_bds = true,
1215 .get_parent_desc = bdrv_child_get_parent_desc,
1216 .inherit_options = bdrv_inherited_fmt_options,
1217 .drained_begin = bdrv_child_cb_drained_begin,
1218 .drained_poll = bdrv_child_cb_drained_poll,
1219 .drained_end = bdrv_child_cb_drained_end,
1220 .attach = bdrv_child_cb_attach,
1221 .detach = bdrv_child_cb_detach,
1222 .inactivate = bdrv_child_cb_inactivate,
1223 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1224 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1227 static void bdrv_backing_attach(BdrvChild *c)
1229 BlockDriverState *parent = c->opaque;
1230 BlockDriverState *backing_hd = c->bs;
1232 assert(!parent->backing_blocker);
1233 error_setg(&parent->backing_blocker,
1234 "node is used as backing hd of '%s'",
1235 bdrv_get_device_or_node_name(parent));
1237 bdrv_refresh_filename(backing_hd);
1239 parent->open_flags &= ~BDRV_O_NO_BACKING;
1240 pstrcpy(parent->backing_file, sizeof(parent->backing_file),
1241 backing_hd->filename);
1242 pstrcpy(parent->backing_format, sizeof(parent->backing_format),
1243 backing_hd->drv ? backing_hd->drv->format_name : "");
1245 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1246 /* Otherwise we won't be able to commit or stream */
1247 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1248 parent->backing_blocker);
1249 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1250 parent->backing_blocker);
1252 * We do backup in 3 ways:
1253 * 1. drive backup
1254 * The target bs is new opened, and the source is top BDS
1255 * 2. blockdev backup
1256 * Both the source and the target are top BDSes.
1257 * 3. internal backup(used for block replication)
1258 * Both the source and the target are backing file
1260 * In case 1 and 2, neither the source nor the target is the backing file.
1261 * In case 3, we will block the top BDS, so there is only one block job
1262 * for the top BDS and its backing chain.
1264 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1265 parent->backing_blocker);
1266 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1267 parent->backing_blocker);
1269 bdrv_child_cb_attach(c);
1272 static void bdrv_backing_detach(BdrvChild *c)
1274 BlockDriverState *parent = c->opaque;
1276 assert(parent->backing_blocker);
1277 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1278 error_free(parent->backing_blocker);
1279 parent->backing_blocker = NULL;
1281 bdrv_child_cb_detach(c);
1285 * Returns the options and flags that bs->backing should get, based on the
1286 * given options and flags for the parent BDS
1288 static void bdrv_backing_options(int *child_flags, QDict *child_options,
1289 int parent_flags, QDict *parent_options)
1291 int flags = parent_flags;
1293 /* The cache mode is inherited unmodified for backing files; except WCE,
1294 * which is only applied on the top level (BlockBackend) */
1295 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1296 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1297 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1299 /* backing files always opened read-only */
1300 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1301 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1302 flags &= ~BDRV_O_COPY_ON_READ;
1304 /* snapshot=on is handled on the top layer */
1305 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
1307 *child_flags = flags;
1310 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1311 const char *filename, Error **errp)
1313 BlockDriverState *parent = c->opaque;
1314 bool read_only = bdrv_is_read_only(parent);
1315 int ret;
1317 if (read_only) {
1318 ret = bdrv_reopen_set_read_only(parent, false, errp);
1319 if (ret < 0) {
1320 return ret;
1324 ret = bdrv_change_backing_file(parent, filename,
1325 base->drv ? base->drv->format_name : "");
1326 if (ret < 0) {
1327 error_setg_errno(errp, -ret, "Could not update backing file link");
1330 if (read_only) {
1331 bdrv_reopen_set_read_only(parent, true, NULL);
1334 return ret;
1337 const BdrvChildRole child_backing = {
1338 .parent_is_bds = true,
1339 .get_parent_desc = bdrv_child_get_parent_desc,
1340 .attach = bdrv_backing_attach,
1341 .detach = bdrv_backing_detach,
1342 .inherit_options = bdrv_backing_options,
1343 .drained_begin = bdrv_child_cb_drained_begin,
1344 .drained_poll = bdrv_child_cb_drained_poll,
1345 .drained_end = bdrv_child_cb_drained_end,
1346 .inactivate = bdrv_child_cb_inactivate,
1347 .update_filename = bdrv_backing_update_filename,
1348 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1349 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1352 static int bdrv_open_flags(BlockDriverState *bs, int flags)
1354 int open_flags = flags;
1357 * Clear flags that are internal to the block layer before opening the
1358 * image.
1360 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1362 return open_flags;
1365 static void update_flags_from_options(int *flags, QemuOpts *opts)
1367 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
1369 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1370 *flags |= BDRV_O_NO_FLUSH;
1373 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1374 *flags |= BDRV_O_NOCACHE;
1377 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
1378 *flags |= BDRV_O_RDWR;
1381 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1382 *flags |= BDRV_O_AUTO_RDONLY;
1386 static void update_options_from_flags(QDict *options, int flags)
1388 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1389 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1391 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
1392 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1393 flags & BDRV_O_NO_FLUSH);
1395 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1396 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1398 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1399 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1400 flags & BDRV_O_AUTO_RDONLY);
1404 static void bdrv_assign_node_name(BlockDriverState *bs,
1405 const char *node_name,
1406 Error **errp)
1408 char *gen_node_name = NULL;
1410 if (!node_name) {
1411 node_name = gen_node_name = id_generate(ID_BLOCK);
1412 } else if (!id_wellformed(node_name)) {
1414 * Check for empty string or invalid characters, but not if it is
1415 * generated (generated names use characters not available to the user)
1417 error_setg(errp, "Invalid node name");
1418 return;
1421 /* takes care of avoiding namespaces collisions */
1422 if (blk_by_name(node_name)) {
1423 error_setg(errp, "node-name=%s is conflicting with a device id",
1424 node_name);
1425 goto out;
1428 /* takes care of avoiding duplicates node names */
1429 if (bdrv_find_node(node_name)) {
1430 error_setg(errp, "Duplicate node name");
1431 goto out;
1434 /* Make sure that the node name isn't truncated */
1435 if (strlen(node_name) >= sizeof(bs->node_name)) {
1436 error_setg(errp, "Node name too long");
1437 goto out;
1440 /* copy node name into the bs and insert it into the graph list */
1441 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1442 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
1443 out:
1444 g_free(gen_node_name);
1447 static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1448 const char *node_name, QDict *options,
1449 int open_flags, Error **errp)
1451 Error *local_err = NULL;
1452 int i, ret;
1454 bdrv_assign_node_name(bs, node_name, &local_err);
1455 if (local_err) {
1456 error_propagate(errp, local_err);
1457 return -EINVAL;
1460 bs->drv = drv;
1461 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1462 bs->opaque = g_malloc0(drv->instance_size);
1464 if (drv->bdrv_file_open) {
1465 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1466 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1467 } else if (drv->bdrv_open) {
1468 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1469 } else {
1470 ret = 0;
1473 if (ret < 0) {
1474 if (local_err) {
1475 error_propagate(errp, local_err);
1476 } else if (bs->filename[0]) {
1477 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1478 } else {
1479 error_setg_errno(errp, -ret, "Could not open image");
1481 goto open_failed;
1484 ret = refresh_total_sectors(bs, bs->total_sectors);
1485 if (ret < 0) {
1486 error_setg_errno(errp, -ret, "Could not refresh total sector count");
1487 return ret;
1490 bdrv_refresh_limits(bs, &local_err);
1491 if (local_err) {
1492 error_propagate(errp, local_err);
1493 return -EINVAL;
1496 assert(bdrv_opt_mem_align(bs) != 0);
1497 assert(bdrv_min_mem_align(bs) != 0);
1498 assert(is_power_of_2(bs->bl.request_alignment));
1500 for (i = 0; i < bs->quiesce_counter; i++) {
1501 if (drv->bdrv_co_drain_begin) {
1502 drv->bdrv_co_drain_begin(bs);
1506 return 0;
1507 open_failed:
1508 bs->drv = NULL;
1509 if (bs->file != NULL) {
1510 bdrv_unref_child(bs, bs->file);
1511 bs->file = NULL;
1513 g_free(bs->opaque);
1514 bs->opaque = NULL;
1515 return ret;
1518 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1519 int flags, Error **errp)
1521 BlockDriverState *bs;
1522 int ret;
1524 bs = bdrv_new();
1525 bs->open_flags = flags;
1526 bs->explicit_options = qdict_new();
1527 bs->options = qdict_new();
1528 bs->opaque = NULL;
1530 update_options_from_flags(bs->options, flags);
1532 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1533 if (ret < 0) {
1534 qobject_unref(bs->explicit_options);
1535 bs->explicit_options = NULL;
1536 qobject_unref(bs->options);
1537 bs->options = NULL;
1538 bdrv_unref(bs);
1539 return NULL;
1542 return bs;
1545 QemuOptsList bdrv_runtime_opts = {
1546 .name = "bdrv_common",
1547 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1548 .desc = {
1550 .name = "node-name",
1551 .type = QEMU_OPT_STRING,
1552 .help = "Node name of the block device node",
1555 .name = "driver",
1556 .type = QEMU_OPT_STRING,
1557 .help = "Block driver to use for the node",
1560 .name = BDRV_OPT_CACHE_DIRECT,
1561 .type = QEMU_OPT_BOOL,
1562 .help = "Bypass software writeback cache on the host",
1565 .name = BDRV_OPT_CACHE_NO_FLUSH,
1566 .type = QEMU_OPT_BOOL,
1567 .help = "Ignore flush requests",
1570 .name = BDRV_OPT_READ_ONLY,
1571 .type = QEMU_OPT_BOOL,
1572 .help = "Node is opened in read-only mode",
1575 .name = BDRV_OPT_AUTO_READ_ONLY,
1576 .type = QEMU_OPT_BOOL,
1577 .help = "Node can become read-only if opening read-write fails",
1580 .name = "detect-zeroes",
1581 .type = QEMU_OPT_STRING,
1582 .help = "try to optimize zero writes (off, on, unmap)",
1585 .name = BDRV_OPT_DISCARD,
1586 .type = QEMU_OPT_STRING,
1587 .help = "discard operation (ignore/off, unmap/on)",
1590 .name = BDRV_OPT_FORCE_SHARE,
1591 .type = QEMU_OPT_BOOL,
1592 .help = "always accept other writers (default: off)",
1594 { /* end of list */ }
1598 QemuOptsList bdrv_create_opts_simple = {
1599 .name = "simple-create-opts",
1600 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
1601 .desc = {
1603 .name = BLOCK_OPT_SIZE,
1604 .type = QEMU_OPT_SIZE,
1605 .help = "Virtual disk size"
1608 .name = BLOCK_OPT_PREALLOC,
1609 .type = QEMU_OPT_STRING,
1610 .help = "Preallocation mode (allowed values: off)"
1612 { /* end of list */ }
1617 * Common part for opening disk images and files
1619 * Removes all processed options from *options.
1621 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1622 QDict *options, Error **errp)
1624 int ret, open_flags;
1625 const char *filename;
1626 const char *driver_name = NULL;
1627 const char *node_name = NULL;
1628 const char *discard;
1629 QemuOpts *opts;
1630 BlockDriver *drv;
1631 Error *local_err = NULL;
1633 assert(bs->file == NULL);
1634 assert(options != NULL && bs->options != options);
1636 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1637 qemu_opts_absorb_qdict(opts, options, &local_err);
1638 if (local_err) {
1639 error_propagate(errp, local_err);
1640 ret = -EINVAL;
1641 goto fail_opts;
1644 update_flags_from_options(&bs->open_flags, opts);
1646 driver_name = qemu_opt_get(opts, "driver");
1647 drv = bdrv_find_format(driver_name);
1648 assert(drv != NULL);
1650 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1652 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1653 error_setg(errp,
1654 BDRV_OPT_FORCE_SHARE
1655 "=on can only be used with read-only images");
1656 ret = -EINVAL;
1657 goto fail_opts;
1660 if (file != NULL) {
1661 bdrv_refresh_filename(blk_bs(file));
1662 filename = blk_bs(file)->filename;
1663 } else {
1665 * Caution: while qdict_get_try_str() is fine, getting
1666 * non-string types would require more care. When @options
1667 * come from -blockdev or blockdev_add, its members are typed
1668 * according to the QAPI schema, but when they come from
1669 * -drive, they're all QString.
1671 filename = qdict_get_try_str(options, "filename");
1674 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1675 error_setg(errp, "The '%s' block driver requires a file name",
1676 drv->format_name);
1677 ret = -EINVAL;
1678 goto fail_opts;
1681 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1682 drv->format_name);
1684 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1686 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
1687 if (!bs->read_only && bdrv_is_whitelisted(drv, true)) {
1688 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1689 } else {
1690 ret = -ENOTSUP;
1692 if (ret < 0) {
1693 error_setg(errp,
1694 !bs->read_only && bdrv_is_whitelisted(drv, true)
1695 ? "Driver '%s' can only be used for read-only devices"
1696 : "Driver '%s' is not whitelisted",
1697 drv->format_name);
1698 goto fail_opts;
1702 /* bdrv_new() and bdrv_close() make it so */
1703 assert(atomic_read(&bs->copy_on_read) == 0);
1705 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1706 if (!bs->read_only) {
1707 bdrv_enable_copy_on_read(bs);
1708 } else {
1709 error_setg(errp, "Can't use copy-on-read on read-only device");
1710 ret = -EINVAL;
1711 goto fail_opts;
1715 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
1716 if (discard != NULL) {
1717 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1718 error_setg(errp, "Invalid discard option");
1719 ret = -EINVAL;
1720 goto fail_opts;
1724 bs->detect_zeroes =
1725 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1726 if (local_err) {
1727 error_propagate(errp, local_err);
1728 ret = -EINVAL;
1729 goto fail_opts;
1732 if (filename != NULL) {
1733 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1734 } else {
1735 bs->filename[0] = '\0';
1737 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1739 /* Open the image, either directly or using a protocol */
1740 open_flags = bdrv_open_flags(bs, bs->open_flags);
1741 node_name = qemu_opt_get(opts, "node-name");
1743 assert(!drv->bdrv_file_open || file == NULL);
1744 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1745 if (ret < 0) {
1746 goto fail_opts;
1749 qemu_opts_del(opts);
1750 return 0;
1752 fail_opts:
1753 qemu_opts_del(opts);
1754 return ret;
1757 static QDict *parse_json_filename(const char *filename, Error **errp)
1759 QObject *options_obj;
1760 QDict *options;
1761 int ret;
1763 ret = strstart(filename, "json:", &filename);
1764 assert(ret);
1766 options_obj = qobject_from_json(filename, errp);
1767 if (!options_obj) {
1768 error_prepend(errp, "Could not parse the JSON options: ");
1769 return NULL;
1772 options = qobject_to(QDict, options_obj);
1773 if (!options) {
1774 qobject_unref(options_obj);
1775 error_setg(errp, "Invalid JSON object given");
1776 return NULL;
1779 qdict_flatten(options);
1781 return options;
1784 static void parse_json_protocol(QDict *options, const char **pfilename,
1785 Error **errp)
1787 QDict *json_options;
1788 Error *local_err = NULL;
1790 /* Parse json: pseudo-protocol */
1791 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1792 return;
1795 json_options = parse_json_filename(*pfilename, &local_err);
1796 if (local_err) {
1797 error_propagate(errp, local_err);
1798 return;
1801 /* Options given in the filename have lower priority than options
1802 * specified directly */
1803 qdict_join(options, json_options, false);
1804 qobject_unref(json_options);
1805 *pfilename = NULL;
1809 * Fills in default options for opening images and converts the legacy
1810 * filename/flags pair to option QDict entries.
1811 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1812 * block driver has been specified explicitly.
1814 static int bdrv_fill_options(QDict **options, const char *filename,
1815 int *flags, Error **errp)
1817 const char *drvname;
1818 bool protocol = *flags & BDRV_O_PROTOCOL;
1819 bool parse_filename = false;
1820 BlockDriver *drv = NULL;
1821 Error *local_err = NULL;
1824 * Caution: while qdict_get_try_str() is fine, getting non-string
1825 * types would require more care. When @options come from
1826 * -blockdev or blockdev_add, its members are typed according to
1827 * the QAPI schema, but when they come from -drive, they're all
1828 * QString.
1830 drvname = qdict_get_try_str(*options, "driver");
1831 if (drvname) {
1832 drv = bdrv_find_format(drvname);
1833 if (!drv) {
1834 error_setg(errp, "Unknown driver '%s'", drvname);
1835 return -ENOENT;
1837 /* If the user has explicitly specified the driver, this choice should
1838 * override the BDRV_O_PROTOCOL flag */
1839 protocol = drv->bdrv_file_open;
1842 if (protocol) {
1843 *flags |= BDRV_O_PROTOCOL;
1844 } else {
1845 *flags &= ~BDRV_O_PROTOCOL;
1848 /* Translate cache options from flags into options */
1849 update_options_from_flags(*options, *flags);
1851 /* Fetch the file name from the options QDict if necessary */
1852 if (protocol && filename) {
1853 if (!qdict_haskey(*options, "filename")) {
1854 qdict_put_str(*options, "filename", filename);
1855 parse_filename = true;
1856 } else {
1857 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1858 "the same time");
1859 return -EINVAL;
1863 /* Find the right block driver */
1864 /* See cautionary note on accessing @options above */
1865 filename = qdict_get_try_str(*options, "filename");
1867 if (!drvname && protocol) {
1868 if (filename) {
1869 drv = bdrv_find_protocol(filename, parse_filename, errp);
1870 if (!drv) {
1871 return -EINVAL;
1874 drvname = drv->format_name;
1875 qdict_put_str(*options, "driver", drvname);
1876 } else {
1877 error_setg(errp, "Must specify either driver or file");
1878 return -EINVAL;
1882 assert(drv || !protocol);
1884 /* Driver-specific filename parsing */
1885 if (drv && drv->bdrv_parse_filename && parse_filename) {
1886 drv->bdrv_parse_filename(filename, *options, &local_err);
1887 if (local_err) {
1888 error_propagate(errp, local_err);
1889 return -EINVAL;
1892 if (!drv->bdrv_needs_filename) {
1893 qdict_del(*options, "filename");
1897 return 0;
1900 static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1901 uint64_t perm, uint64_t shared,
1902 GSList *ignore_children,
1903 bool *tighten_restrictions, Error **errp);
1904 static void bdrv_child_abort_perm_update(BdrvChild *c);
1905 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
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, const 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 * Will set *tighten_restrictions to true if and only if new permissions have to
1977 * be taken or currently shared permissions are to be unshared. Otherwise,
1978 * errors are not fatal as long as the caller accepts that the restrictions
1979 * remain tighter than they need to be. The caller still has to abort the
1980 * transaction.
1981 * @tighten_restrictions cannot be used together with @q: When reopening, we may
1982 * encounter fatal errors even though no restrictions are to be tightened. For
1983 * example, changing a node from RW to RO will fail if the WRITE permission is
1984 * to be kept.
1986 * A call to this function must always be followed by a call to bdrv_set_perm()
1987 * or bdrv_abort_perm_update().
1989 static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
1990 uint64_t cumulative_perms,
1991 uint64_t cumulative_shared_perms,
1992 GSList *ignore_children,
1993 bool *tighten_restrictions, Error **errp)
1995 BlockDriver *drv = bs->drv;
1996 BdrvChild *c;
1997 int ret;
1999 assert(!q || !tighten_restrictions);
2001 if (tighten_restrictions) {
2002 uint64_t current_perms, current_shared;
2003 uint64_t added_perms, removed_shared_perms;
2005 bdrv_get_cumulative_perm(bs, &current_perms, &current_shared);
2007 added_perms = cumulative_perms & ~current_perms;
2008 removed_shared_perms = current_shared & ~cumulative_shared_perms;
2010 *tighten_restrictions = added_perms || removed_shared_perms;
2013 /* Write permissions never work with read-only images */
2014 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2015 !bdrv_is_writable_after_reopen(bs, q))
2017 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2018 error_setg(errp, "Block node is read-only");
2019 } else {
2020 uint64_t current_perms, current_shared;
2021 bdrv_get_cumulative_perm(bs, &current_perms, &current_shared);
2022 if (current_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
2023 error_setg(errp, "Cannot make block node read-only, there is "
2024 "a writer on it");
2025 } else {
2026 error_setg(errp, "Cannot make block node read-only and create "
2027 "a writer on it");
2031 return -EPERM;
2034 /* Check this node */
2035 if (!drv) {
2036 return 0;
2039 if (drv->bdrv_check_perm) {
2040 return drv->bdrv_check_perm(bs, cumulative_perms,
2041 cumulative_shared_perms, errp);
2044 /* Drivers that never have children can omit .bdrv_child_perm() */
2045 if (!drv->bdrv_child_perm) {
2046 assert(QLIST_EMPTY(&bs->children));
2047 return 0;
2050 /* Check all children */
2051 QLIST_FOREACH(c, &bs->children, next) {
2052 uint64_t cur_perm, cur_shared;
2053 bool child_tighten_restr;
2055 bdrv_child_perm(bs, c->bs, c, c->role, q,
2056 cumulative_perms, cumulative_shared_perms,
2057 &cur_perm, &cur_shared);
2058 ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared, ignore_children,
2059 tighten_restrictions ? &child_tighten_restr
2060 : NULL,
2061 errp);
2062 if (tighten_restrictions) {
2063 *tighten_restrictions |= child_tighten_restr;
2065 if (ret < 0) {
2066 return ret;
2070 return 0;
2074 * Notifies drivers that after a previous bdrv_check_perm() call, the
2075 * permission update is not performed and any preparations made for it (e.g.
2076 * taken file locks) need to be undone.
2078 * This function recursively notifies all child nodes.
2080 static void bdrv_abort_perm_update(BlockDriverState *bs)
2082 BlockDriver *drv = bs->drv;
2083 BdrvChild *c;
2085 if (!drv) {
2086 return;
2089 if (drv->bdrv_abort_perm_update) {
2090 drv->bdrv_abort_perm_update(bs);
2093 QLIST_FOREACH(c, &bs->children, next) {
2094 bdrv_child_abort_perm_update(c);
2098 static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
2099 uint64_t cumulative_shared_perms)
2101 BlockDriver *drv = bs->drv;
2102 BdrvChild *c;
2104 if (!drv) {
2105 return;
2108 /* Update this node */
2109 if (drv->bdrv_set_perm) {
2110 drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2113 /* Drivers that never have children can omit .bdrv_child_perm() */
2114 if (!drv->bdrv_child_perm) {
2115 assert(QLIST_EMPTY(&bs->children));
2116 return;
2119 /* Update all children */
2120 QLIST_FOREACH(c, &bs->children, next) {
2121 uint64_t cur_perm, cur_shared;
2122 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
2123 cumulative_perms, cumulative_shared_perms,
2124 &cur_perm, &cur_shared);
2125 bdrv_child_set_perm(c, cur_perm, cur_shared);
2129 void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2130 uint64_t *shared_perm)
2132 BdrvChild *c;
2133 uint64_t cumulative_perms = 0;
2134 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2136 QLIST_FOREACH(c, &bs->parents, next_parent) {
2137 cumulative_perms |= c->perm;
2138 cumulative_shared_perms &= c->shared_perm;
2141 *perm = cumulative_perms;
2142 *shared_perm = cumulative_shared_perms;
2145 static char *bdrv_child_user_desc(BdrvChild *c)
2147 if (c->role->get_parent_desc) {
2148 return c->role->get_parent_desc(c);
2151 return g_strdup("another user");
2154 char *bdrv_perm_names(uint64_t perm)
2156 struct perm_name {
2157 uint64_t perm;
2158 const char *name;
2159 } permissions[] = {
2160 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2161 { BLK_PERM_WRITE, "write" },
2162 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2163 { BLK_PERM_RESIZE, "resize" },
2164 { BLK_PERM_GRAPH_MOD, "change children" },
2165 { 0, NULL }
2168 GString *result = g_string_sized_new(30);
2169 struct perm_name *p;
2171 for (p = permissions; p->name; p++) {
2172 if (perm & p->perm) {
2173 if (result->len > 0) {
2174 g_string_append(result, ", ");
2176 g_string_append(result, p->name);
2180 return g_string_free(result, FALSE);
2184 * Checks whether a new reference to @bs can be added if the new user requires
2185 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
2186 * set, the BdrvChild objects in this list are ignored in the calculations;
2187 * this allows checking permission updates for an existing reference.
2189 * See bdrv_check_perm() for the semantics of @tighten_restrictions.
2191 * Needs to be followed by a call to either bdrv_set_perm() or
2192 * bdrv_abort_perm_update(). */
2193 static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
2194 uint64_t new_used_perm,
2195 uint64_t new_shared_perm,
2196 GSList *ignore_children,
2197 bool *tighten_restrictions,
2198 Error **errp)
2200 BdrvChild *c;
2201 uint64_t cumulative_perms = new_used_perm;
2202 uint64_t cumulative_shared_perms = new_shared_perm;
2204 assert(!q || !tighten_restrictions);
2206 /* There is no reason why anyone couldn't tolerate write_unchanged */
2207 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
2209 QLIST_FOREACH(c, &bs->parents, next_parent) {
2210 if (g_slist_find(ignore_children, c)) {
2211 continue;
2214 if ((new_used_perm & c->shared_perm) != new_used_perm) {
2215 char *user = bdrv_child_user_desc(c);
2216 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
2218 if (tighten_restrictions) {
2219 *tighten_restrictions = true;
2222 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
2223 "allow '%s' on %s",
2224 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2225 g_free(user);
2226 g_free(perm_names);
2227 return -EPERM;
2230 if ((c->perm & new_shared_perm) != c->perm) {
2231 char *user = bdrv_child_user_desc(c);
2232 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
2234 if (tighten_restrictions) {
2235 *tighten_restrictions = true;
2238 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
2239 "'%s' on %s",
2240 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2241 g_free(user);
2242 g_free(perm_names);
2243 return -EPERM;
2246 cumulative_perms |= c->perm;
2247 cumulative_shared_perms &= c->shared_perm;
2250 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
2251 ignore_children, tighten_restrictions, errp);
2254 /* Needs to be followed by a call to either bdrv_child_set_perm() or
2255 * bdrv_child_abort_perm_update(). */
2256 static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
2257 uint64_t perm, uint64_t shared,
2258 GSList *ignore_children,
2259 bool *tighten_restrictions, Error **errp)
2261 int ret;
2263 ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
2264 ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children,
2265 tighten_restrictions, errp);
2266 g_slist_free(ignore_children);
2268 if (ret < 0) {
2269 return ret;
2272 if (!c->has_backup_perm) {
2273 c->has_backup_perm = true;
2274 c->backup_perm = c->perm;
2275 c->backup_shared_perm = c->shared_perm;
2278 * Note: it's OK if c->has_backup_perm was already set, as we can find the
2279 * same child twice during check_perm procedure
2282 c->perm = perm;
2283 c->shared_perm = shared;
2285 return 0;
2288 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
2290 uint64_t cumulative_perms, cumulative_shared_perms;
2292 c->has_backup_perm = false;
2294 c->perm = perm;
2295 c->shared_perm = shared;
2297 bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
2298 &cumulative_shared_perms);
2299 bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
2302 static void bdrv_child_abort_perm_update(BdrvChild *c)
2304 if (c->has_backup_perm) {
2305 c->perm = c->backup_perm;
2306 c->shared_perm = c->backup_shared_perm;
2307 c->has_backup_perm = false;
2310 bdrv_abort_perm_update(c->bs);
2313 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2314 Error **errp)
2316 Error *local_err = NULL;
2317 int ret;
2318 bool tighten_restrictions;
2320 ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL,
2321 &tighten_restrictions, &local_err);
2322 if (ret < 0) {
2323 bdrv_child_abort_perm_update(c);
2324 if (tighten_restrictions) {
2325 error_propagate(errp, local_err);
2326 } else {
2328 * Our caller may intend to only loosen restrictions and
2329 * does not expect this function to fail. Errors are not
2330 * fatal in such a case, so we can just hide them from our
2331 * caller.
2333 error_free(local_err);
2334 ret = 0;
2336 return ret;
2339 bdrv_child_set_perm(c, perm, shared);
2341 return 0;
2344 int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2346 uint64_t parent_perms, parent_shared;
2347 uint64_t perms, shared;
2349 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
2350 bdrv_child_perm(bs, c->bs, c, c->role, NULL, parent_perms, parent_shared,
2351 &perms, &shared);
2353 return bdrv_child_try_set_perm(c, perms, shared, errp);
2356 void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
2357 const BdrvChildRole *role,
2358 BlockReopenQueue *reopen_queue,
2359 uint64_t perm, uint64_t shared,
2360 uint64_t *nperm, uint64_t *nshared)
2362 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2363 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
2366 void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
2367 const BdrvChildRole *role,
2368 BlockReopenQueue *reopen_queue,
2369 uint64_t perm, uint64_t shared,
2370 uint64_t *nperm, uint64_t *nshared)
2372 bool backing = (role == &child_backing);
2373 assert(role == &child_backing || role == &child_file);
2375 if (!backing) {
2376 int flags = bdrv_reopen_get_flags(reopen_queue, bs);
2378 /* Apart from the modifications below, the same permissions are
2379 * forwarded and left alone as for filters */
2380 bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
2381 &perm, &shared);
2383 /* Format drivers may touch metadata even if the guest doesn't write */
2384 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2385 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2388 /* bs->file always needs to be consistent because of the metadata. We
2389 * can never allow other users to resize or write to it. */
2390 if (!(flags & BDRV_O_NO_IO)) {
2391 perm |= BLK_PERM_CONSISTENT_READ;
2393 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2394 } else {
2395 /* We want consistent read from backing files if the parent needs it.
2396 * No other operations are performed on backing files. */
2397 perm &= BLK_PERM_CONSISTENT_READ;
2399 /* If the parent can deal with changing data, we're okay with a
2400 * writable and resizable backing file. */
2401 /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
2402 if (shared & BLK_PERM_WRITE) {
2403 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2404 } else {
2405 shared = 0;
2408 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2409 BLK_PERM_WRITE_UNCHANGED;
2412 if (bs->open_flags & BDRV_O_INACTIVE) {
2413 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2416 *nperm = perm;
2417 *nshared = shared;
2420 uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2422 static const uint64_t permissions[] = {
2423 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2424 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2425 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2426 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2427 [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD,
2430 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2431 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2433 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2435 return permissions[qapi_perm];
2438 static void bdrv_replace_child_noperm(BdrvChild *child,
2439 BlockDriverState *new_bs)
2441 BlockDriverState *old_bs = child->bs;
2442 int new_bs_quiesce_counter;
2443 int drain_saldo;
2445 assert(!child->frozen);
2447 if (old_bs && new_bs) {
2448 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2451 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2452 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2455 * If the new child node is drained but the old one was not, flush
2456 * all outstanding requests to the old child node.
2458 while (drain_saldo > 0 && child->role->drained_begin) {
2459 bdrv_parent_drained_begin_single(child, true);
2460 drain_saldo--;
2463 if (old_bs) {
2464 /* Detach first so that the recursive drain sections coming from @child
2465 * are already gone and we only end the drain sections that came from
2466 * elsewhere. */
2467 if (child->role->detach) {
2468 child->role->detach(child);
2470 QLIST_REMOVE(child, next_parent);
2473 child->bs = new_bs;
2475 if (new_bs) {
2476 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2479 * Detaching the old node may have led to the new node's
2480 * quiesce_counter having been decreased. Not a problem, we
2481 * just need to recognize this here and then invoke
2482 * drained_end appropriately more often.
2484 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2485 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
2487 /* Attach only after starting new drained sections, so that recursive
2488 * drain sections coming from @child don't get an extra .drained_begin
2489 * callback. */
2490 if (child->role->attach) {
2491 child->role->attach(child);
2496 * If the old child node was drained but the new one is not, allow
2497 * requests to come in only after the new node has been attached.
2499 while (drain_saldo < 0 && child->role->drained_end) {
2500 bdrv_parent_drained_end_single(child);
2501 drain_saldo++;
2506 * Updates @child to change its reference to point to @new_bs, including
2507 * checking and applying the necessary permisson updates both to the old node
2508 * and to @new_bs.
2510 * NULL is passed as @new_bs for removing the reference before freeing @child.
2512 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2513 * function uses bdrv_set_perm() to update the permissions according to the new
2514 * reference that @new_bs gets.
2516 static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
2518 BlockDriverState *old_bs = child->bs;
2519 uint64_t perm, shared_perm;
2521 bdrv_replace_child_noperm(child, new_bs);
2524 * Start with the new node's permissions. If @new_bs is a (direct
2525 * or indirect) child of @old_bs, we must complete the permission
2526 * update on @new_bs before we loosen the restrictions on @old_bs.
2527 * Otherwise, bdrv_check_perm() on @old_bs would re-initiate
2528 * updating the permissions of @new_bs, and thus not purely loosen
2529 * restrictions.
2531 if (new_bs) {
2532 bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2533 bdrv_set_perm(new_bs, perm, shared_perm);
2536 if (old_bs) {
2537 /* Update permissions for old node. This is guaranteed to succeed
2538 * because we're just taking a parent away, so we're loosening
2539 * restrictions. */
2540 bool tighten_restrictions;
2541 int ret;
2543 bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
2544 ret = bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL,
2545 &tighten_restrictions, NULL);
2546 assert(tighten_restrictions == false);
2547 if (ret < 0) {
2548 /* We only tried to loosen restrictions, so errors are not fatal */
2549 bdrv_abort_perm_update(old_bs);
2550 } else {
2551 bdrv_set_perm(old_bs, perm, shared_perm);
2554 /* When the parent requiring a non-default AioContext is removed, the
2555 * node moves back to the main AioContext */
2556 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
2561 * This function steals the reference to child_bs from the caller.
2562 * That reference is later dropped by bdrv_root_unref_child().
2564 * On failure NULL is returned, errp is set and the reference to
2565 * child_bs is also dropped.
2567 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
2568 * (unless @child_bs is already in @ctx).
2570 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2571 const char *child_name,
2572 const BdrvChildRole *child_role,
2573 AioContext *ctx,
2574 uint64_t perm, uint64_t shared_perm,
2575 void *opaque, Error **errp)
2577 BdrvChild *child;
2578 Error *local_err = NULL;
2579 int ret;
2581 ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, NULL,
2582 errp);
2583 if (ret < 0) {
2584 bdrv_abort_perm_update(child_bs);
2585 bdrv_unref(child_bs);
2586 return NULL;
2589 child = g_new(BdrvChild, 1);
2590 *child = (BdrvChild) {
2591 .bs = NULL,
2592 .name = g_strdup(child_name),
2593 .role = child_role,
2594 .perm = perm,
2595 .shared_perm = shared_perm,
2596 .opaque = opaque,
2599 /* If the AioContexts don't match, first try to move the subtree of
2600 * child_bs into the AioContext of the new parent. If this doesn't work,
2601 * try moving the parent into the AioContext of child_bs instead. */
2602 if (bdrv_get_aio_context(child_bs) != ctx) {
2603 ret = bdrv_try_set_aio_context(child_bs, ctx, &local_err);
2604 if (ret < 0 && child_role->can_set_aio_ctx) {
2605 GSList *ignore = g_slist_prepend(NULL, child);
2606 ctx = bdrv_get_aio_context(child_bs);
2607 if (child_role->can_set_aio_ctx(child, ctx, &ignore, NULL)) {
2608 error_free(local_err);
2609 ret = 0;
2610 g_slist_free(ignore);
2611 ignore = g_slist_prepend(NULL, child);
2612 child_role->set_aio_ctx(child, ctx, &ignore);
2614 g_slist_free(ignore);
2616 if (ret < 0) {
2617 error_propagate(errp, local_err);
2618 g_free(child);
2619 bdrv_abort_perm_update(child_bs);
2620 return NULL;
2624 /* This performs the matching bdrv_set_perm() for the above check. */
2625 bdrv_replace_child(child, child_bs);
2627 return child;
2631 * This function transfers the reference to child_bs from the caller
2632 * to parent_bs. That reference is later dropped by parent_bs on
2633 * bdrv_close() or if someone calls bdrv_unref_child().
2635 * On failure NULL is returned, errp is set and the reference to
2636 * child_bs is also dropped.
2638 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2639 * hold the AioContext lock for @child_bs, but not for @parent_bs.
2641 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2642 BlockDriverState *child_bs,
2643 const char *child_name,
2644 const BdrvChildRole *child_role,
2645 Error **errp)
2647 BdrvChild *child;
2648 uint64_t perm, shared_perm;
2650 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2652 assert(parent_bs->drv);
2653 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2654 perm, shared_perm, &perm, &shared_perm);
2656 child = bdrv_root_attach_child(child_bs, child_name, child_role,
2657 bdrv_get_aio_context(parent_bs),
2658 perm, shared_perm, parent_bs, errp);
2659 if (child == NULL) {
2660 return NULL;
2663 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2664 return child;
2667 static void bdrv_detach_child(BdrvChild *child)
2669 QLIST_SAFE_REMOVE(child, next);
2671 bdrv_replace_child(child, NULL);
2673 g_free(child->name);
2674 g_free(child);
2677 void bdrv_root_unref_child(BdrvChild *child)
2679 BlockDriverState *child_bs;
2681 child_bs = child->bs;
2682 bdrv_detach_child(child);
2683 bdrv_unref(child_bs);
2687 * Clear all inherits_from pointers from children and grandchildren of
2688 * @root that point to @root, where necessary.
2690 static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child)
2692 BdrvChild *c;
2694 if (child->bs->inherits_from == root) {
2696 * Remove inherits_from only when the last reference between root and
2697 * child->bs goes away.
2699 QLIST_FOREACH(c, &root->children, next) {
2700 if (c != child && c->bs == child->bs) {
2701 break;
2704 if (c == NULL) {
2705 child->bs->inherits_from = NULL;
2709 QLIST_FOREACH(c, &child->bs->children, next) {
2710 bdrv_unset_inherits_from(root, c);
2714 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2716 if (child == NULL) {
2717 return;
2720 bdrv_unset_inherits_from(parent, child);
2721 bdrv_root_unref_child(child);
2725 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2727 BdrvChild *c;
2728 QLIST_FOREACH(c, &bs->parents, next_parent) {
2729 if (c->role->change_media) {
2730 c->role->change_media(c, load);
2735 /* Return true if you can reach parent going through child->inherits_from
2736 * recursively. If parent or child are NULL, return false */
2737 static bool bdrv_inherits_from_recursive(BlockDriverState *child,
2738 BlockDriverState *parent)
2740 while (child && child != parent) {
2741 child = child->inherits_from;
2744 return child != NULL;
2748 * Sets the backing file link of a BDS. A new reference is created; callers
2749 * which don't need their own reference any more must call bdrv_unref().
2751 void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2752 Error **errp)
2754 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
2755 bdrv_inherits_from_recursive(backing_hd, bs);
2757 if (bdrv_is_backing_chain_frozen(bs, backing_bs(bs), errp)) {
2758 return;
2761 if (backing_hd) {
2762 bdrv_ref(backing_hd);
2765 if (bs->backing) {
2766 bdrv_unref_child(bs, bs->backing);
2767 bs->backing = NULL;
2770 if (!backing_hd) {
2771 goto out;
2774 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
2775 errp);
2776 /* If backing_hd was already part of bs's backing chain, and
2777 * inherits_from pointed recursively to bs then let's update it to
2778 * point directly to bs (else it will become NULL). */
2779 if (bs->backing && update_inherits_from) {
2780 backing_hd->inherits_from = bs;
2783 out:
2784 bdrv_refresh_limits(bs, NULL);
2788 * Opens the backing file for a BlockDriverState if not yet open
2790 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2791 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2792 * itself, all options starting with "${bdref_key}." are considered part of the
2793 * BlockdevRef.
2795 * TODO Can this be unified with bdrv_open_image()?
2797 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2798 const char *bdref_key, Error **errp)
2800 char *backing_filename = NULL;
2801 char *bdref_key_dot;
2802 const char *reference = NULL;
2803 int ret = 0;
2804 bool implicit_backing = false;
2805 BlockDriverState *backing_hd;
2806 QDict *options;
2807 QDict *tmp_parent_options = NULL;
2808 Error *local_err = NULL;
2810 if (bs->backing != NULL) {
2811 goto free_exit;
2814 /* NULL means an empty set of options */
2815 if (parent_options == NULL) {
2816 tmp_parent_options = qdict_new();
2817 parent_options = tmp_parent_options;
2820 bs->open_flags &= ~BDRV_O_NO_BACKING;
2822 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2823 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2824 g_free(bdref_key_dot);
2827 * Caution: while qdict_get_try_str() is fine, getting non-string
2828 * types would require more care. When @parent_options come from
2829 * -blockdev or blockdev_add, its members are typed according to
2830 * the QAPI schema, but when they come from -drive, they're all
2831 * QString.
2833 reference = qdict_get_try_str(parent_options, bdref_key);
2834 if (reference || qdict_haskey(options, "file.filename")) {
2835 /* keep backing_filename NULL */
2836 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
2837 qobject_unref(options);
2838 goto free_exit;
2839 } else {
2840 if (qdict_size(options) == 0) {
2841 /* If the user specifies options that do not modify the
2842 * backing file's behavior, we might still consider it the
2843 * implicit backing file. But it's easier this way, and
2844 * just specifying some of the backing BDS's options is
2845 * only possible with -drive anyway (otherwise the QAPI
2846 * schema forces the user to specify everything). */
2847 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
2850 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
2851 if (local_err) {
2852 ret = -EINVAL;
2853 error_propagate(errp, local_err);
2854 qobject_unref(options);
2855 goto free_exit;
2859 if (!bs->drv || !bs->drv->supports_backing) {
2860 ret = -EINVAL;
2861 error_setg(errp, "Driver doesn't support backing files");
2862 qobject_unref(options);
2863 goto free_exit;
2866 if (!reference &&
2867 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
2868 qdict_put_str(options, "driver", bs->backing_format);
2871 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
2872 &child_backing, errp);
2873 if (!backing_hd) {
2874 bs->open_flags |= BDRV_O_NO_BACKING;
2875 error_prepend(errp, "Could not open backing file: ");
2876 ret = -EINVAL;
2877 goto free_exit;
2880 if (implicit_backing) {
2881 bdrv_refresh_filename(backing_hd);
2882 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
2883 backing_hd->filename);
2886 /* Hook up the backing file link; drop our reference, bs owns the
2887 * backing_hd reference now */
2888 bdrv_set_backing_hd(bs, backing_hd, &local_err);
2889 bdrv_unref(backing_hd);
2890 if (local_err) {
2891 error_propagate(errp, local_err);
2892 ret = -EINVAL;
2893 goto free_exit;
2896 qdict_del(parent_options, bdref_key);
2898 free_exit:
2899 g_free(backing_filename);
2900 qobject_unref(tmp_parent_options);
2901 return ret;
2904 static BlockDriverState *
2905 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
2906 BlockDriverState *parent, const BdrvChildRole *child_role,
2907 bool allow_none, Error **errp)
2909 BlockDriverState *bs = NULL;
2910 QDict *image_options;
2911 char *bdref_key_dot;
2912 const char *reference;
2914 assert(child_role != NULL);
2916 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2917 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2918 g_free(bdref_key_dot);
2921 * Caution: while qdict_get_try_str() is fine, getting non-string
2922 * types would require more care. When @options come from
2923 * -blockdev or blockdev_add, its members are typed according to
2924 * the QAPI schema, but when they come from -drive, they're all
2925 * QString.
2927 reference = qdict_get_try_str(options, bdref_key);
2928 if (!filename && !reference && !qdict_size(image_options)) {
2929 if (!allow_none) {
2930 error_setg(errp, "A block device must be specified for \"%s\"",
2931 bdref_key);
2933 qobject_unref(image_options);
2934 goto done;
2937 bs = bdrv_open_inherit(filename, reference, image_options, 0,
2938 parent, child_role, errp);
2939 if (!bs) {
2940 goto done;
2943 done:
2944 qdict_del(options, bdref_key);
2945 return bs;
2949 * Opens a disk image whose options are given as BlockdevRef in another block
2950 * device's options.
2952 * If allow_none is true, no image will be opened if filename is false and no
2953 * BlockdevRef is given. NULL will be returned, but errp remains unset.
2955 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
2956 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2957 * itself, all options starting with "${bdref_key}." are considered part of the
2958 * BlockdevRef.
2960 * The BlockdevRef will be removed from the options QDict.
2962 BdrvChild *bdrv_open_child(const char *filename,
2963 QDict *options, const char *bdref_key,
2964 BlockDriverState *parent,
2965 const BdrvChildRole *child_role,
2966 bool allow_none, Error **errp)
2968 BlockDriverState *bs;
2970 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
2971 allow_none, errp);
2972 if (bs == NULL) {
2973 return NULL;
2976 return bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
2979 /* TODO Future callers may need to specify parent/child_role in order for
2980 * option inheritance to work. Existing callers use it for the root node. */
2981 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2983 BlockDriverState *bs = NULL;
2984 Error *local_err = NULL;
2985 QObject *obj = NULL;
2986 QDict *qdict = NULL;
2987 const char *reference = NULL;
2988 Visitor *v = NULL;
2990 if (ref->type == QTYPE_QSTRING) {
2991 reference = ref->u.reference;
2992 } else {
2993 BlockdevOptions *options = &ref->u.definition;
2994 assert(ref->type == QTYPE_QDICT);
2996 v = qobject_output_visitor_new(&obj);
2997 visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2998 if (local_err) {
2999 error_propagate(errp, local_err);
3000 goto fail;
3002 visit_complete(v, &obj);
3004 qdict = qobject_to(QDict, obj);
3005 qdict_flatten(qdict);
3007 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3008 * compatibility with other callers) rather than what we want as the
3009 * real defaults. Apply the defaults here instead. */
3010 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3011 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3012 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
3013 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3017 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
3018 obj = NULL;
3020 fail:
3021 qobject_unref(obj);
3022 visit_free(v);
3023 return bs;
3026 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3027 int flags,
3028 QDict *snapshot_options,
3029 Error **errp)
3031 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
3032 char *tmp_filename = g_malloc0(PATH_MAX + 1);
3033 int64_t total_size;
3034 QemuOpts *opts = NULL;
3035 BlockDriverState *bs_snapshot = NULL;
3036 Error *local_err = NULL;
3037 int ret;
3039 /* if snapshot, we create a temporary backing file and open it
3040 instead of opening 'filename' directly */
3042 /* Get the required size from the image */
3043 total_size = bdrv_getlength(bs);
3044 if (total_size < 0) {
3045 error_setg_errno(errp, -total_size, "Could not get image size");
3046 goto out;
3049 /* Create the temporary image */
3050 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
3051 if (ret < 0) {
3052 error_setg_errno(errp, -ret, "Could not get temporary filename");
3053 goto out;
3056 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
3057 &error_abort);
3058 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
3059 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
3060 qemu_opts_del(opts);
3061 if (ret < 0) {
3062 error_prepend(errp, "Could not create temporary overlay '%s': ",
3063 tmp_filename);
3064 goto out;
3067 /* Prepare options QDict for the temporary file */
3068 qdict_put_str(snapshot_options, "file.driver", "file");
3069 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3070 qdict_put_str(snapshot_options, "driver", "qcow2");
3072 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
3073 snapshot_options = NULL;
3074 if (!bs_snapshot) {
3075 goto out;
3078 /* bdrv_append() consumes a strong reference to bs_snapshot
3079 * (i.e. it will call bdrv_unref() on it) even on error, so in
3080 * order to be able to return one, we have to increase
3081 * bs_snapshot's refcount here */
3082 bdrv_ref(bs_snapshot);
3083 bdrv_append(bs_snapshot, bs, &local_err);
3084 if (local_err) {
3085 error_propagate(errp, local_err);
3086 bs_snapshot = NULL;
3087 goto out;
3090 out:
3091 qobject_unref(snapshot_options);
3092 g_free(tmp_filename);
3093 return bs_snapshot;
3097 * Opens a disk image (raw, qcow2, vmdk, ...)
3099 * options is a QDict of options to pass to the block drivers, or NULL for an
3100 * empty set of options. The reference to the QDict belongs to the block layer
3101 * after the call (even on failure), so if the caller intends to reuse the
3102 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
3104 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3105 * If it is not NULL, the referenced BDS will be reused.
3107 * The reference parameter may be used to specify an existing block device which
3108 * should be opened. If specified, neither options nor a filename may be given,
3109 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
3111 static BlockDriverState *bdrv_open_inherit(const char *filename,
3112 const char *reference,
3113 QDict *options, int flags,
3114 BlockDriverState *parent,
3115 const BdrvChildRole *child_role,
3116 Error **errp)
3118 int ret;
3119 BlockBackend *file = NULL;
3120 BlockDriverState *bs;
3121 BlockDriver *drv = NULL;
3122 BdrvChild *child;
3123 const char *drvname;
3124 const char *backing;
3125 Error *local_err = NULL;
3126 QDict *snapshot_options = NULL;
3127 int snapshot_flags = 0;
3129 assert(!child_role || !flags);
3130 assert(!child_role == !parent);
3132 if (reference) {
3133 bool options_non_empty = options ? qdict_size(options) : false;
3134 qobject_unref(options);
3136 if (filename || options_non_empty) {
3137 error_setg(errp, "Cannot reference an existing block device with "
3138 "additional options or a new filename");
3139 return NULL;
3142 bs = bdrv_lookup_bs(reference, reference, errp);
3143 if (!bs) {
3144 return NULL;
3147 bdrv_ref(bs);
3148 return bs;
3151 bs = bdrv_new();
3153 /* NULL means an empty set of options */
3154 if (options == NULL) {
3155 options = qdict_new();
3158 /* json: syntax counts as explicit options, as if in the QDict */
3159 parse_json_protocol(options, &filename, &local_err);
3160 if (local_err) {
3161 goto fail;
3164 bs->explicit_options = qdict_clone_shallow(options);
3166 if (child_role) {
3167 bs->inherits_from = parent;
3168 child_role->inherit_options(&flags, options,
3169 parent->open_flags, parent->options);
3172 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
3173 if (local_err) {
3174 goto fail;
3178 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3179 * Caution: getting a boolean member of @options requires care.
3180 * When @options come from -blockdev or blockdev_add, members are
3181 * typed according to the QAPI schema, but when they come from
3182 * -drive, they're all QString.
3184 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3185 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3186 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3187 } else {
3188 flags &= ~BDRV_O_RDWR;
3191 if (flags & BDRV_O_SNAPSHOT) {
3192 snapshot_options = qdict_new();
3193 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3194 flags, options);
3195 /* Let bdrv_backing_options() override "read-only" */
3196 qdict_del(options, BDRV_OPT_READ_ONLY);
3197 bdrv_backing_options(&flags, options, flags, options);
3200 bs->open_flags = flags;
3201 bs->options = options;
3202 options = qdict_clone_shallow(options);
3204 /* Find the right image format driver */
3205 /* See cautionary note on accessing @options above */
3206 drvname = qdict_get_try_str(options, "driver");
3207 if (drvname) {
3208 drv = bdrv_find_format(drvname);
3209 if (!drv) {
3210 error_setg(errp, "Unknown driver: '%s'", drvname);
3211 goto fail;
3215 assert(drvname || !(flags & BDRV_O_PROTOCOL));
3217 /* See cautionary note on accessing @options above */
3218 backing = qdict_get_try_str(options, "backing");
3219 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3220 (backing && *backing == '\0'))
3222 if (backing) {
3223 warn_report("Use of \"backing\": \"\" is deprecated; "
3224 "use \"backing\": null instead");
3226 flags |= BDRV_O_NO_BACKING;
3227 qdict_del(bs->explicit_options, "backing");
3228 qdict_del(bs->options, "backing");
3229 qdict_del(options, "backing");
3232 /* Open image file without format layer. This BlockBackend is only used for
3233 * probing, the block drivers will do their own bdrv_open_child() for the
3234 * same BDS, which is why we put the node name back into options. */
3235 if ((flags & BDRV_O_PROTOCOL) == 0) {
3236 BlockDriverState *file_bs;
3238 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
3239 &child_file, true, &local_err);
3240 if (local_err) {
3241 goto fail;
3243 if (file_bs != NULL) {
3244 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3245 * looking at the header to guess the image format. This works even
3246 * in cases where a guest would not see a consistent state. */
3247 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
3248 blk_insert_bs(file, file_bs, &local_err);
3249 bdrv_unref(file_bs);
3250 if (local_err) {
3251 goto fail;
3254 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
3258 /* Image format probing */
3259 bs->probed = !drv;
3260 if (!drv && file) {
3261 ret = find_image_format(file, filename, &drv, &local_err);
3262 if (ret < 0) {
3263 goto fail;
3266 * This option update would logically belong in bdrv_fill_options(),
3267 * but we first need to open bs->file for the probing to work, while
3268 * opening bs->file already requires the (mostly) final set of options
3269 * so that cache mode etc. can be inherited.
3271 * Adding the driver later is somewhat ugly, but it's not an option
3272 * that would ever be inherited, so it's correct. We just need to make
3273 * sure to update both bs->options (which has the full effective
3274 * options for bs) and options (which has file.* already removed).
3276 qdict_put_str(bs->options, "driver", drv->format_name);
3277 qdict_put_str(options, "driver", drv->format_name);
3278 } else if (!drv) {
3279 error_setg(errp, "Must specify either driver or file");
3280 goto fail;
3283 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3284 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3285 /* file must be NULL if a protocol BDS is about to be created
3286 * (the inverse results in an error message from bdrv_open_common()) */
3287 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3289 /* Open the image */
3290 ret = bdrv_open_common(bs, file, options, &local_err);
3291 if (ret < 0) {
3292 goto fail;
3295 if (file) {
3296 blk_unref(file);
3297 file = NULL;
3300 /* If there is a backing file, use it */
3301 if ((flags & BDRV_O_NO_BACKING) == 0) {
3302 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
3303 if (ret < 0) {
3304 goto close_and_fail;
3308 /* Remove all children options and references
3309 * from bs->options and bs->explicit_options */
3310 QLIST_FOREACH(child, &bs->children, next) {
3311 char *child_key_dot;
3312 child_key_dot = g_strdup_printf("%s.", child->name);
3313 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3314 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
3315 qdict_del(bs->explicit_options, child->name);
3316 qdict_del(bs->options, child->name);
3317 g_free(child_key_dot);
3320 /* Check if any unknown options were used */
3321 if (qdict_size(options) != 0) {
3322 const QDictEntry *entry = qdict_first(options);
3323 if (flags & BDRV_O_PROTOCOL) {
3324 error_setg(errp, "Block protocol '%s' doesn't support the option "
3325 "'%s'", drv->format_name, entry->key);
3326 } else {
3327 error_setg(errp,
3328 "Block format '%s' does not support the option '%s'",
3329 drv->format_name, entry->key);
3332 goto close_and_fail;
3335 bdrv_parent_cb_change_media(bs, true);
3337 qobject_unref(options);
3338 options = NULL;
3340 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3341 * temporary snapshot afterwards. */
3342 if (snapshot_flags) {
3343 BlockDriverState *snapshot_bs;
3344 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3345 snapshot_options, &local_err);
3346 snapshot_options = NULL;
3347 if (local_err) {
3348 goto close_and_fail;
3350 /* We are not going to return bs but the overlay on top of it
3351 * (snapshot_bs); thus, we have to drop the strong reference to bs
3352 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3353 * though, because the overlay still has a reference to it. */
3354 bdrv_unref(bs);
3355 bs = snapshot_bs;
3358 return bs;
3360 fail:
3361 blk_unref(file);
3362 qobject_unref(snapshot_options);
3363 qobject_unref(bs->explicit_options);
3364 qobject_unref(bs->options);
3365 qobject_unref(options);
3366 bs->options = NULL;
3367 bs->explicit_options = NULL;
3368 bdrv_unref(bs);
3369 error_propagate(errp, local_err);
3370 return NULL;
3372 close_and_fail:
3373 bdrv_unref(bs);
3374 qobject_unref(snapshot_options);
3375 qobject_unref(options);
3376 error_propagate(errp, local_err);
3377 return NULL;
3380 BlockDriverState *bdrv_open(const char *filename, const char *reference,
3381 QDict *options, int flags, Error **errp)
3383 return bdrv_open_inherit(filename, reference, options, flags, NULL,
3384 NULL, errp);
3387 /* Return true if the NULL-terminated @list contains @str */
3388 static bool is_str_in_list(const char *str, const char *const *list)
3390 if (str && list) {
3391 int i;
3392 for (i = 0; list[i] != NULL; i++) {
3393 if (!strcmp(str, list[i])) {
3394 return true;
3398 return false;
3402 * Check that every option set in @bs->options is also set in
3403 * @new_opts.
3405 * Options listed in the common_options list and in
3406 * @bs->drv->mutable_opts are skipped.
3408 * Return 0 on success, otherwise return -EINVAL and set @errp.
3410 static int bdrv_reset_options_allowed(BlockDriverState *bs,
3411 const QDict *new_opts, Error **errp)
3413 const QDictEntry *e;
3414 /* These options are common to all block drivers and are handled
3415 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3416 const char *const common_options[] = {
3417 "node-name", "discard", "cache.direct", "cache.no-flush",
3418 "read-only", "auto-read-only", "detect-zeroes", NULL
3421 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
3422 if (!qdict_haskey(new_opts, e->key) &&
3423 !is_str_in_list(e->key, common_options) &&
3424 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
3425 error_setg(errp, "Option '%s' cannot be reset "
3426 "to its default value", e->key);
3427 return -EINVAL;
3431 return 0;
3435 * Returns true if @child can be reached recursively from @bs
3437 static bool bdrv_recurse_has_child(BlockDriverState *bs,
3438 BlockDriverState *child)
3440 BdrvChild *c;
3442 if (bs == child) {
3443 return true;
3446 QLIST_FOREACH(c, &bs->children, next) {
3447 if (bdrv_recurse_has_child(c->bs, child)) {
3448 return true;
3452 return false;
3456 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3457 * reopen of multiple devices.
3459 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
3460 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3461 * be created and initialized. This newly created BlockReopenQueue should be
3462 * passed back in for subsequent calls that are intended to be of the same
3463 * atomic 'set'.
3465 * bs is the BlockDriverState to add to the reopen queue.
3467 * options contains the changed options for the associated bs
3468 * (the BlockReopenQueue takes ownership)
3470 * flags contains the open flags for the associated bs
3472 * returns a pointer to bs_queue, which is either the newly allocated
3473 * bs_queue, or the existing bs_queue being used.
3475 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
3477 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
3478 BlockDriverState *bs,
3479 QDict *options,
3480 const BdrvChildRole *role,
3481 QDict *parent_options,
3482 int parent_flags,
3483 bool keep_old_opts)
3485 assert(bs != NULL);
3487 BlockReopenQueueEntry *bs_entry;
3488 BdrvChild *child;
3489 QDict *old_options, *explicit_options, *options_copy;
3490 int flags;
3491 QemuOpts *opts;
3493 /* Make sure that the caller remembered to use a drained section. This is
3494 * important to avoid graph changes between the recursive queuing here and
3495 * bdrv_reopen_multiple(). */
3496 assert(bs->quiesce_counter > 0);
3498 if (bs_queue == NULL) {
3499 bs_queue = g_new0(BlockReopenQueue, 1);
3500 QTAILQ_INIT(bs_queue);
3503 if (!options) {
3504 options = qdict_new();
3507 /* Check if this BlockDriverState is already in the queue */
3508 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
3509 if (bs == bs_entry->state.bs) {
3510 break;
3515 * Precedence of options:
3516 * 1. Explicitly passed in options (highest)
3517 * 2. Retained from explicitly set options of bs
3518 * 3. Inherited from parent node
3519 * 4. Retained from effective options of bs
3522 /* Old explicitly set values (don't overwrite by inherited value) */
3523 if (bs_entry || keep_old_opts) {
3524 old_options = qdict_clone_shallow(bs_entry ?
3525 bs_entry->state.explicit_options :
3526 bs->explicit_options);
3527 bdrv_join_options(bs, options, old_options);
3528 qobject_unref(old_options);
3531 explicit_options = qdict_clone_shallow(options);
3533 /* Inherit from parent node */
3534 if (parent_options) {
3535 flags = 0;
3536 role->inherit_options(&flags, options, parent_flags, parent_options);
3537 } else {
3538 flags = bdrv_get_flags(bs);
3541 if (keep_old_opts) {
3542 /* Old values are used for options that aren't set yet */
3543 old_options = qdict_clone_shallow(bs->options);
3544 bdrv_join_options(bs, options, old_options);
3545 qobject_unref(old_options);
3548 /* We have the final set of options so let's update the flags */
3549 options_copy = qdict_clone_shallow(options);
3550 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3551 qemu_opts_absorb_qdict(opts, options_copy, NULL);
3552 update_flags_from_options(&flags, opts);
3553 qemu_opts_del(opts);
3554 qobject_unref(options_copy);
3556 /* bdrv_open_inherit() sets and clears some additional flags internally */
3557 flags &= ~BDRV_O_PROTOCOL;
3558 if (flags & BDRV_O_RDWR) {
3559 flags |= BDRV_O_ALLOW_RDWR;
3562 if (!bs_entry) {
3563 bs_entry = g_new0(BlockReopenQueueEntry, 1);
3564 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
3565 } else {
3566 qobject_unref(bs_entry->state.options);
3567 qobject_unref(bs_entry->state.explicit_options);
3570 bs_entry->state.bs = bs;
3571 bs_entry->state.options = options;
3572 bs_entry->state.explicit_options = explicit_options;
3573 bs_entry->state.flags = flags;
3575 /* This needs to be overwritten in bdrv_reopen_prepare() */
3576 bs_entry->state.perm = UINT64_MAX;
3577 bs_entry->state.shared_perm = 0;
3580 * If keep_old_opts is false then it means that unspecified
3581 * options must be reset to their original value. We don't allow
3582 * resetting 'backing' but we need to know if the option is
3583 * missing in order to decide if we have to return an error.
3585 if (!keep_old_opts) {
3586 bs_entry->state.backing_missing =
3587 !qdict_haskey(options, "backing") &&
3588 !qdict_haskey(options, "backing.driver");
3591 QLIST_FOREACH(child, &bs->children, next) {
3592 QDict *new_child_options = NULL;
3593 bool child_keep_old = keep_old_opts;
3595 /* reopen can only change the options of block devices that were
3596 * implicitly created and inherited options. For other (referenced)
3597 * block devices, a syntax like "backing.foo" results in an error. */
3598 if (child->bs->inherits_from != bs) {
3599 continue;
3602 /* Check if the options contain a child reference */
3603 if (qdict_haskey(options, child->name)) {
3604 const char *childref = qdict_get_try_str(options, child->name);
3606 * The current child must not be reopened if the child
3607 * reference is null or points to a different node.
3609 if (g_strcmp0(childref, child->bs->node_name)) {
3610 continue;
3613 * If the child reference points to the current child then
3614 * reopen it with its existing set of options (note that
3615 * it can still inherit new options from the parent).
3617 child_keep_old = true;
3618 } else {
3619 /* Extract child options ("child-name.*") */
3620 char *child_key_dot = g_strdup_printf("%s.", child->name);
3621 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
3622 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
3623 g_free(child_key_dot);
3626 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
3627 child->role, options, flags, child_keep_old);
3630 return bs_queue;
3633 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
3634 BlockDriverState *bs,
3635 QDict *options, bool keep_old_opts)
3637 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, NULL, 0,
3638 keep_old_opts);
3642 * Reopen multiple BlockDriverStates atomically & transactionally.
3644 * The queue passed in (bs_queue) must have been built up previous
3645 * via bdrv_reopen_queue().
3647 * Reopens all BDS specified in the queue, with the appropriate
3648 * flags. All devices are prepared for reopen, and failure of any
3649 * device will cause all device changes to be abandoned, and intermediate
3650 * data cleaned up.
3652 * If all devices prepare successfully, then the changes are committed
3653 * to all devices.
3655 * All affected nodes must be drained between bdrv_reopen_queue() and
3656 * bdrv_reopen_multiple().
3658 int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
3660 int ret = -1;
3661 BlockReopenQueueEntry *bs_entry, *next;
3663 assert(bs_queue != NULL);
3665 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
3666 assert(bs_entry->state.bs->quiesce_counter > 0);
3667 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, errp)) {
3668 goto cleanup;
3670 bs_entry->prepared = true;
3673 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
3674 BDRVReopenState *state = &bs_entry->state;
3675 ret = bdrv_check_perm(state->bs, bs_queue, state->perm,
3676 state->shared_perm, NULL, NULL, errp);
3677 if (ret < 0) {
3678 goto cleanup_perm;
3680 /* Check if new_backing_bs would accept the new permissions */
3681 if (state->replace_backing_bs && state->new_backing_bs) {
3682 uint64_t nperm, nshared;
3683 bdrv_child_perm(state->bs, state->new_backing_bs,
3684 NULL, &child_backing, bs_queue,
3685 state->perm, state->shared_perm,
3686 &nperm, &nshared);
3687 ret = bdrv_check_update_perm(state->new_backing_bs, NULL,
3688 nperm, nshared, NULL, NULL, errp);
3689 if (ret < 0) {
3690 goto cleanup_perm;
3693 bs_entry->perms_checked = true;
3697 * If we reach this point, we have success and just need to apply the
3698 * changes.
3700 * Reverse order is used to comfort qcow2 driver: on commit it need to write
3701 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
3702 * children are usually goes after parents in reopen-queue, so go from last
3703 * to first element.
3705 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
3706 bdrv_reopen_commit(&bs_entry->state);
3709 ret = 0;
3710 cleanup_perm:
3711 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3712 BDRVReopenState *state = &bs_entry->state;
3714 if (!bs_entry->perms_checked) {
3715 continue;
3718 if (ret == 0) {
3719 bdrv_set_perm(state->bs, state->perm, state->shared_perm);
3720 } else {
3721 bdrv_abort_perm_update(state->bs);
3722 if (state->replace_backing_bs && state->new_backing_bs) {
3723 bdrv_abort_perm_update(state->new_backing_bs);
3728 if (ret == 0) {
3729 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
3730 BlockDriverState *bs = bs_entry->state.bs;
3732 if (bs->drv->bdrv_reopen_commit_post)
3733 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
3736 cleanup:
3737 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3738 if (ret) {
3739 if (bs_entry->prepared) {
3740 bdrv_reopen_abort(&bs_entry->state);
3742 qobject_unref(bs_entry->state.explicit_options);
3743 qobject_unref(bs_entry->state.options);
3745 if (bs_entry->state.new_backing_bs) {
3746 bdrv_unref(bs_entry->state.new_backing_bs);
3748 g_free(bs_entry);
3750 g_free(bs_queue);
3752 return ret;
3755 int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
3756 Error **errp)
3758 int ret;
3759 BlockReopenQueue *queue;
3760 QDict *opts = qdict_new();
3762 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
3764 bdrv_subtree_drained_begin(bs);
3765 queue = bdrv_reopen_queue(NULL, bs, opts, true);
3766 ret = bdrv_reopen_multiple(queue, errp);
3767 bdrv_subtree_drained_end(bs);
3769 return ret;
3772 static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3773 BdrvChild *c)
3775 BlockReopenQueueEntry *entry;
3777 QTAILQ_FOREACH(entry, q, entry) {
3778 BlockDriverState *bs = entry->state.bs;
3779 BdrvChild *child;
3781 QLIST_FOREACH(child, &bs->children, next) {
3782 if (child == c) {
3783 return entry;
3788 return NULL;
3791 static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3792 uint64_t *perm, uint64_t *shared)
3794 BdrvChild *c;
3795 BlockReopenQueueEntry *parent;
3796 uint64_t cumulative_perms = 0;
3797 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3799 QLIST_FOREACH(c, &bs->parents, next_parent) {
3800 parent = find_parent_in_reopen_queue(q, c);
3801 if (!parent) {
3802 cumulative_perms |= c->perm;
3803 cumulative_shared_perms &= c->shared_perm;
3804 } else {
3805 uint64_t nperm, nshared;
3807 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
3808 parent->state.perm, parent->state.shared_perm,
3809 &nperm, &nshared);
3811 cumulative_perms |= nperm;
3812 cumulative_shared_perms &= nshared;
3815 *perm = cumulative_perms;
3816 *shared = cumulative_shared_perms;
3819 static bool bdrv_reopen_can_attach(BlockDriverState *parent,
3820 BdrvChild *child,
3821 BlockDriverState *new_child,
3822 Error **errp)
3824 AioContext *parent_ctx = bdrv_get_aio_context(parent);
3825 AioContext *child_ctx = bdrv_get_aio_context(new_child);
3826 GSList *ignore;
3827 bool ret;
3829 ignore = g_slist_prepend(NULL, child);
3830 ret = bdrv_can_set_aio_context(new_child, parent_ctx, &ignore, NULL);
3831 g_slist_free(ignore);
3832 if (ret) {
3833 return ret;
3836 ignore = g_slist_prepend(NULL, child);
3837 ret = bdrv_can_set_aio_context(parent, child_ctx, &ignore, errp);
3838 g_slist_free(ignore);
3839 return ret;
3843 * Take a BDRVReopenState and check if the value of 'backing' in the
3844 * reopen_state->options QDict is valid or not.
3846 * If 'backing' is missing from the QDict then return 0.
3848 * If 'backing' contains the node name of the backing file of
3849 * reopen_state->bs then return 0.
3851 * If 'backing' contains a different node name (or is null) then check
3852 * whether the current backing file can be replaced with the new one.
3853 * If that's the case then reopen_state->replace_backing_bs is set to
3854 * true and reopen_state->new_backing_bs contains a pointer to the new
3855 * backing BlockDriverState (or NULL).
3857 * Return 0 on success, otherwise return < 0 and set @errp.
3859 static int bdrv_reopen_parse_backing(BDRVReopenState *reopen_state,
3860 Error **errp)
3862 BlockDriverState *bs = reopen_state->bs;
3863 BlockDriverState *overlay_bs, *new_backing_bs;
3864 QObject *value;
3865 const char *str;
3867 value = qdict_get(reopen_state->options, "backing");
3868 if (value == NULL) {
3869 return 0;
3872 switch (qobject_type(value)) {
3873 case QTYPE_QNULL:
3874 new_backing_bs = NULL;
3875 break;
3876 case QTYPE_QSTRING:
3877 str = qobject_get_try_str(value);
3878 new_backing_bs = bdrv_lookup_bs(NULL, str, errp);
3879 if (new_backing_bs == NULL) {
3880 return -EINVAL;
3881 } else if (bdrv_recurse_has_child(new_backing_bs, bs)) {
3882 error_setg(errp, "Making '%s' a backing file of '%s' "
3883 "would create a cycle", str, bs->node_name);
3884 return -EINVAL;
3886 break;
3887 default:
3888 /* 'backing' does not allow any other data type */
3889 g_assert_not_reached();
3893 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
3894 * bdrv_reopen_commit() won't fail.
3896 if (new_backing_bs) {
3897 if (!bdrv_reopen_can_attach(bs, bs->backing, new_backing_bs, errp)) {
3898 return -EINVAL;
3903 * Find the "actual" backing file by skipping all links that point
3904 * to an implicit node, if any (e.g. a commit filter node).
3906 overlay_bs = bs;
3907 while (backing_bs(overlay_bs) && backing_bs(overlay_bs)->implicit) {
3908 overlay_bs = backing_bs(overlay_bs);
3911 /* If we want to replace the backing file we need some extra checks */
3912 if (new_backing_bs != backing_bs(overlay_bs)) {
3913 /* Check for implicit nodes between bs and its backing file */
3914 if (bs != overlay_bs) {
3915 error_setg(errp, "Cannot change backing link if '%s' has "
3916 "an implicit backing file", bs->node_name);
3917 return -EPERM;
3919 /* Check if the backing link that we want to replace is frozen */
3920 if (bdrv_is_backing_chain_frozen(overlay_bs, backing_bs(overlay_bs),
3921 errp)) {
3922 return -EPERM;
3924 reopen_state->replace_backing_bs = true;
3925 if (new_backing_bs) {
3926 bdrv_ref(new_backing_bs);
3927 reopen_state->new_backing_bs = new_backing_bs;
3931 return 0;
3935 * Prepares a BlockDriverState for reopen. All changes are staged in the
3936 * 'opaque' field of the BDRVReopenState, which is used and allocated by
3937 * the block driver layer .bdrv_reopen_prepare()
3939 * bs is the BlockDriverState to reopen
3940 * flags are the new open flags
3941 * queue is the reopen queue
3943 * Returns 0 on success, non-zero on error. On error errp will be set
3944 * as well.
3946 * On failure, bdrv_reopen_abort() will be called to clean up any data.
3947 * It is the responsibility of the caller to then call the abort() or
3948 * commit() for any other BDS that have been left in a prepare() state
3951 int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3952 Error **errp)
3954 int ret = -1;
3955 int old_flags;
3956 Error *local_err = NULL;
3957 BlockDriver *drv;
3958 QemuOpts *opts;
3959 QDict *orig_reopen_opts;
3960 char *discard = NULL;
3961 bool read_only;
3962 bool drv_prepared = false;
3964 assert(reopen_state != NULL);
3965 assert(reopen_state->bs->drv != NULL);
3966 drv = reopen_state->bs->drv;
3968 /* This function and each driver's bdrv_reopen_prepare() remove
3969 * entries from reopen_state->options as they are processed, so
3970 * we need to make a copy of the original QDict. */
3971 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
3973 /* Process generic block layer options */
3974 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3975 qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3976 if (local_err) {
3977 error_propagate(errp, local_err);
3978 ret = -EINVAL;
3979 goto error;
3982 /* This was already called in bdrv_reopen_queue_child() so the flags
3983 * are up-to-date. This time we simply want to remove the options from
3984 * QemuOpts in order to indicate that they have been processed. */
3985 old_flags = reopen_state->flags;
3986 update_flags_from_options(&reopen_state->flags, opts);
3987 assert(old_flags == reopen_state->flags);
3989 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
3990 if (discard != NULL) {
3991 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
3992 error_setg(errp, "Invalid discard option");
3993 ret = -EINVAL;
3994 goto error;
3998 reopen_state->detect_zeroes =
3999 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4000 if (local_err) {
4001 error_propagate(errp, local_err);
4002 ret = -EINVAL;
4003 goto error;
4006 /* All other options (including node-name and driver) must be unchanged.
4007 * Put them back into the QDict, so that they are checked at the end
4008 * of this function. */
4009 qemu_opts_to_qdict(opts, reopen_state->options);
4011 /* If we are to stay read-only, do not allow permission change
4012 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4013 * not set, or if the BDS still has copy_on_read enabled */
4014 read_only = !(reopen_state->flags & BDRV_O_RDWR);
4015 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
4016 if (local_err) {
4017 error_propagate(errp, local_err);
4018 goto error;
4021 /* Calculate required permissions after reopening */
4022 bdrv_reopen_perm(queue, reopen_state->bs,
4023 &reopen_state->perm, &reopen_state->shared_perm);
4025 ret = bdrv_flush(reopen_state->bs);
4026 if (ret) {
4027 error_setg_errno(errp, -ret, "Error flushing drive");
4028 goto error;
4031 if (drv->bdrv_reopen_prepare) {
4033 * If a driver-specific option is missing, it means that we
4034 * should reset it to its default value.
4035 * But not all options allow that, so we need to check it first.
4037 ret = bdrv_reset_options_allowed(reopen_state->bs,
4038 reopen_state->options, errp);
4039 if (ret) {
4040 goto error;
4043 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4044 if (ret) {
4045 if (local_err != NULL) {
4046 error_propagate(errp, local_err);
4047 } else {
4048 bdrv_refresh_filename(reopen_state->bs);
4049 error_setg(errp, "failed while preparing to reopen image '%s'",
4050 reopen_state->bs->filename);
4052 goto error;
4054 } else {
4055 /* It is currently mandatory to have a bdrv_reopen_prepare()
4056 * handler for each supported drv. */
4057 error_setg(errp, "Block format '%s' used by node '%s' "
4058 "does not support reopening files", drv->format_name,
4059 bdrv_get_device_or_node_name(reopen_state->bs));
4060 ret = -1;
4061 goto error;
4064 drv_prepared = true;
4067 * We must provide the 'backing' option if the BDS has a backing
4068 * file or if the image file has a backing file name as part of
4069 * its metadata. Otherwise the 'backing' option can be omitted.
4071 if (drv->supports_backing && reopen_state->backing_missing &&
4072 (backing_bs(reopen_state->bs) || reopen_state->bs->backing_file[0])) {
4073 error_setg(errp, "backing is missing for '%s'",
4074 reopen_state->bs->node_name);
4075 ret = -EINVAL;
4076 goto error;
4080 * Allow changing the 'backing' option. The new value can be
4081 * either a reference to an existing node (using its node name)
4082 * or NULL to simply detach the current backing file.
4084 ret = bdrv_reopen_parse_backing(reopen_state, errp);
4085 if (ret < 0) {
4086 goto error;
4088 qdict_del(reopen_state->options, "backing");
4090 /* Options that are not handled are only okay if they are unchanged
4091 * compared to the old state. It is expected that some options are only
4092 * used for the initial open, but not reopen (e.g. filename) */
4093 if (qdict_size(reopen_state->options)) {
4094 const QDictEntry *entry = qdict_first(reopen_state->options);
4096 do {
4097 QObject *new = entry->value;
4098 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
4100 /* Allow child references (child_name=node_name) as long as they
4101 * point to the current child (i.e. everything stays the same). */
4102 if (qobject_type(new) == QTYPE_QSTRING) {
4103 BdrvChild *child;
4104 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4105 if (!strcmp(child->name, entry->key)) {
4106 break;
4110 if (child) {
4111 const char *str = qobject_get_try_str(new);
4112 if (!strcmp(child->bs->node_name, str)) {
4113 continue; /* Found child with this name, skip option */
4119 * TODO: When using -drive to specify blockdev options, all values
4120 * will be strings; however, when using -blockdev, blockdev-add or
4121 * filenames using the json:{} pseudo-protocol, they will be
4122 * correctly typed.
4123 * In contrast, reopening options are (currently) always strings
4124 * (because you can only specify them through qemu-io; all other
4125 * callers do not specify any options).
4126 * Therefore, when using anything other than -drive to create a BDS,
4127 * this cannot detect non-string options as unchanged, because
4128 * qobject_is_equal() always returns false for objects of different
4129 * type. In the future, this should be remedied by correctly typing
4130 * all options. For now, this is not too big of an issue because
4131 * the user can simply omit options which cannot be changed anyway,
4132 * so they will stay unchanged.
4134 if (!qobject_is_equal(new, old)) {
4135 error_setg(errp, "Cannot change the option '%s'", entry->key);
4136 ret = -EINVAL;
4137 goto error;
4139 } while ((entry = qdict_next(reopen_state->options, entry)));
4142 ret = 0;
4144 /* Restore the original reopen_state->options QDict */
4145 qobject_unref(reopen_state->options);
4146 reopen_state->options = qobject_ref(orig_reopen_opts);
4148 error:
4149 if (ret < 0 && drv_prepared) {
4150 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4151 * call drv->bdrv_reopen_abort() before signaling an error
4152 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4153 * when the respective bdrv_reopen_prepare() has failed) */
4154 if (drv->bdrv_reopen_abort) {
4155 drv->bdrv_reopen_abort(reopen_state);
4158 qemu_opts_del(opts);
4159 qobject_unref(orig_reopen_opts);
4160 g_free(discard);
4161 return ret;
4165 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4166 * makes them final by swapping the staging BlockDriverState contents into
4167 * the active BlockDriverState contents.
4169 void bdrv_reopen_commit(BDRVReopenState *reopen_state)
4171 BlockDriver *drv;
4172 BlockDriverState *bs;
4173 BdrvChild *child;
4175 assert(reopen_state != NULL);
4176 bs = reopen_state->bs;
4177 drv = bs->drv;
4178 assert(drv != NULL);
4180 /* If there are any driver level actions to take */
4181 if (drv->bdrv_reopen_commit) {
4182 drv->bdrv_reopen_commit(reopen_state);
4185 /* set BDS specific flags now */
4186 qobject_unref(bs->explicit_options);
4187 qobject_unref(bs->options);
4189 bs->explicit_options = reopen_state->explicit_options;
4190 bs->options = reopen_state->options;
4191 bs->open_flags = reopen_state->flags;
4192 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
4193 bs->detect_zeroes = reopen_state->detect_zeroes;
4195 if (reopen_state->replace_backing_bs) {
4196 qdict_del(bs->explicit_options, "backing");
4197 qdict_del(bs->options, "backing");
4200 /* Remove child references from bs->options and bs->explicit_options.
4201 * Child options were already removed in bdrv_reopen_queue_child() */
4202 QLIST_FOREACH(child, &bs->children, next) {
4203 qdict_del(bs->explicit_options, child->name);
4204 qdict_del(bs->options, child->name);
4208 * Change the backing file if a new one was specified. We do this
4209 * after updating bs->options, so bdrv_refresh_filename() (called
4210 * from bdrv_set_backing_hd()) has the new values.
4212 if (reopen_state->replace_backing_bs) {
4213 BlockDriverState *old_backing_bs = backing_bs(bs);
4214 assert(!old_backing_bs || !old_backing_bs->implicit);
4215 /* Abort the permission update on the backing bs we're detaching */
4216 if (old_backing_bs) {
4217 bdrv_abort_perm_update(old_backing_bs);
4219 bdrv_set_backing_hd(bs, reopen_state->new_backing_bs, &error_abort);
4222 bdrv_refresh_limits(bs, NULL);
4226 * Abort the reopen, and delete and free the staged changes in
4227 * reopen_state
4229 void bdrv_reopen_abort(BDRVReopenState *reopen_state)
4231 BlockDriver *drv;
4233 assert(reopen_state != NULL);
4234 drv = reopen_state->bs->drv;
4235 assert(drv != NULL);
4237 if (drv->bdrv_reopen_abort) {
4238 drv->bdrv_reopen_abort(reopen_state);
4243 static void bdrv_close(BlockDriverState *bs)
4245 BdrvAioNotifier *ban, *ban_next;
4246 BdrvChild *child, *next;
4248 assert(!bs->refcnt);
4250 bdrv_drained_begin(bs); /* complete I/O */
4251 bdrv_flush(bs);
4252 bdrv_drain(bs); /* in case flush left pending I/O */
4254 if (bs->drv) {
4255 if (bs->drv->bdrv_close) {
4256 bs->drv->bdrv_close(bs);
4258 bs->drv = NULL;
4261 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
4262 bdrv_unref_child(bs, child);
4265 bs->backing = NULL;
4266 bs->file = NULL;
4267 g_free(bs->opaque);
4268 bs->opaque = NULL;
4269 atomic_set(&bs->copy_on_read, 0);
4270 bs->backing_file[0] = '\0';
4271 bs->backing_format[0] = '\0';
4272 bs->total_sectors = 0;
4273 bs->encrypted = false;
4274 bs->sg = false;
4275 qobject_unref(bs->options);
4276 qobject_unref(bs->explicit_options);
4277 bs->options = NULL;
4278 bs->explicit_options = NULL;
4279 qobject_unref(bs->full_open_options);
4280 bs->full_open_options = NULL;
4282 bdrv_release_named_dirty_bitmaps(bs);
4283 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4285 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4286 g_free(ban);
4288 QLIST_INIT(&bs->aio_notifiers);
4289 bdrv_drained_end(bs);
4292 void bdrv_close_all(void)
4294 assert(job_next(NULL) == NULL);
4295 nbd_export_close_all();
4297 /* Drop references from requests still in flight, such as canceled block
4298 * jobs whose AIO context has not been polled yet */
4299 bdrv_drain_all();
4301 blk_remove_all_bs();
4302 blockdev_close_all_bdrv_states();
4304 assert(QTAILQ_EMPTY(&all_bdrv_states));
4307 static bool should_update_child(BdrvChild *c, BlockDriverState *to)
4309 GQueue *queue;
4310 GHashTable *found;
4311 bool ret;
4313 if (c->role->stay_at_node) {
4314 return false;
4317 /* If the child @c belongs to the BDS @to, replacing the current
4318 * c->bs by @to would mean to create a loop.
4320 * Such a case occurs when appending a BDS to a backing chain.
4321 * For instance, imagine the following chain:
4323 * guest device -> node A -> further backing chain...
4325 * Now we create a new BDS B which we want to put on top of this
4326 * chain, so we first attach A as its backing node:
4328 * node B
4331 * guest device -> node A -> further backing chain...
4333 * Finally we want to replace A by B. When doing that, we want to
4334 * replace all pointers to A by pointers to B -- except for the
4335 * pointer from B because (1) that would create a loop, and (2)
4336 * that pointer should simply stay intact:
4338 * guest device -> node B
4341 * node A -> further backing chain...
4343 * In general, when replacing a node A (c->bs) by a node B (@to),
4344 * if A is a child of B, that means we cannot replace A by B there
4345 * because that would create a loop. Silently detaching A from B
4346 * is also not really an option. So overall just leaving A in
4347 * place there is the most sensible choice.
4349 * We would also create a loop in any cases where @c is only
4350 * indirectly referenced by @to. Prevent this by returning false
4351 * if @c is found (by breadth-first search) anywhere in the whole
4352 * subtree of @to.
4355 ret = true;
4356 found = g_hash_table_new(NULL, NULL);
4357 g_hash_table_add(found, to);
4358 queue = g_queue_new();
4359 g_queue_push_tail(queue, to);
4361 while (!g_queue_is_empty(queue)) {
4362 BlockDriverState *v = g_queue_pop_head(queue);
4363 BdrvChild *c2;
4365 QLIST_FOREACH(c2, &v->children, next) {
4366 if (c2 == c) {
4367 ret = false;
4368 break;
4371 if (g_hash_table_contains(found, c2->bs)) {
4372 continue;
4375 g_queue_push_tail(queue, c2->bs);
4376 g_hash_table_add(found, c2->bs);
4380 g_queue_free(queue);
4381 g_hash_table_destroy(found);
4383 return ret;
4386 void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
4387 Error **errp)
4389 BdrvChild *c, *next;
4390 GSList *list = NULL, *p;
4391 uint64_t perm = 0, shared = BLK_PERM_ALL;
4392 int ret;
4394 /* Make sure that @from doesn't go away until we have successfully attached
4395 * all of its parents to @to. */
4396 bdrv_ref(from);
4398 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
4399 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
4400 bdrv_drained_begin(from);
4402 /* Put all parents into @list and calculate their cumulative permissions */
4403 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
4404 assert(c->bs == from);
4405 if (!should_update_child(c, to)) {
4406 continue;
4408 if (c->frozen) {
4409 error_setg(errp, "Cannot change '%s' link to '%s'",
4410 c->name, from->node_name);
4411 goto out;
4413 list = g_slist_prepend(list, c);
4414 perm |= c->perm;
4415 shared &= c->shared_perm;
4418 /* Check whether the required permissions can be granted on @to, ignoring
4419 * all BdrvChild in @list so that they can't block themselves. */
4420 ret = bdrv_check_update_perm(to, NULL, perm, shared, list, NULL, errp);
4421 if (ret < 0) {
4422 bdrv_abort_perm_update(to);
4423 goto out;
4426 /* Now actually perform the change. We performed the permission check for
4427 * all elements of @list at once, so set the permissions all at once at the
4428 * very end. */
4429 for (p = list; p != NULL; p = p->next) {
4430 c = p->data;
4432 bdrv_ref(to);
4433 bdrv_replace_child_noperm(c, to);
4434 bdrv_unref(from);
4437 bdrv_get_cumulative_perm(to, &perm, &shared);
4438 bdrv_set_perm(to, perm, shared);
4440 out:
4441 g_slist_free(list);
4442 bdrv_drained_end(from);
4443 bdrv_unref(from);
4447 * Add new bs contents at the top of an image chain while the chain is
4448 * live, while keeping required fields on the top layer.
4450 * This will modify the BlockDriverState fields, and swap contents
4451 * between bs_new and bs_top. Both bs_new and bs_top are modified.
4453 * bs_new must not be attached to a BlockBackend.
4455 * This function does not create any image files.
4457 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
4458 * that's what the callers commonly need. bs_new will be referenced by the old
4459 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
4460 * reference of its own, it must call bdrv_ref().
4462 void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
4463 Error **errp)
4465 Error *local_err = NULL;
4467 bdrv_set_backing_hd(bs_new, bs_top, &local_err);
4468 if (local_err) {
4469 error_propagate(errp, local_err);
4470 goto out;
4473 bdrv_replace_node(bs_top, bs_new, &local_err);
4474 if (local_err) {
4475 error_propagate(errp, local_err);
4476 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
4477 goto out;
4480 /* bs_new is now referenced by its new parents, we don't need the
4481 * additional reference any more. */
4482 out:
4483 bdrv_unref(bs_new);
4486 static void bdrv_delete(BlockDriverState *bs)
4488 assert(bdrv_op_blocker_is_empty(bs));
4489 assert(!bs->refcnt);
4491 /* remove from list, if necessary */
4492 if (bs->node_name[0] != '\0') {
4493 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
4495 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
4497 bdrv_close(bs);
4499 g_free(bs);
4503 * Run consistency checks on an image
4505 * Returns 0 if the check could be completed (it doesn't mean that the image is
4506 * free of errors) or -errno when an internal error occurred. The results of the
4507 * check are stored in res.
4509 static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
4510 BdrvCheckResult *res, BdrvCheckMode fix)
4512 if (bs->drv == NULL) {
4513 return -ENOMEDIUM;
4515 if (bs->drv->bdrv_co_check == NULL) {
4516 return -ENOTSUP;
4519 memset(res, 0, sizeof(*res));
4520 return bs->drv->bdrv_co_check(bs, res, fix);
4523 typedef struct CheckCo {
4524 BlockDriverState *bs;
4525 BdrvCheckResult *res;
4526 BdrvCheckMode fix;
4527 int ret;
4528 } CheckCo;
4530 static void coroutine_fn bdrv_check_co_entry(void *opaque)
4532 CheckCo *cco = opaque;
4533 cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
4534 aio_wait_kick();
4537 int bdrv_check(BlockDriverState *bs,
4538 BdrvCheckResult *res, BdrvCheckMode fix)
4540 Coroutine *co;
4541 CheckCo cco = {
4542 .bs = bs,
4543 .res = res,
4544 .ret = -EINPROGRESS,
4545 .fix = fix,
4548 if (qemu_in_coroutine()) {
4549 /* Fast-path if already in coroutine context */
4550 bdrv_check_co_entry(&cco);
4551 } else {
4552 co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
4553 bdrv_coroutine_enter(bs, co);
4554 BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
4557 return cco.ret;
4561 * Return values:
4562 * 0 - success
4563 * -EINVAL - backing format specified, but no file
4564 * -ENOSPC - can't update the backing file because no space is left in the
4565 * image file header
4566 * -ENOTSUP - format driver doesn't support changing the backing file
4568 int bdrv_change_backing_file(BlockDriverState *bs,
4569 const char *backing_file, const char *backing_fmt)
4571 BlockDriver *drv = bs->drv;
4572 int ret;
4574 if (!drv) {
4575 return -ENOMEDIUM;
4578 /* Backing file format doesn't make sense without a backing file */
4579 if (backing_fmt && !backing_file) {
4580 return -EINVAL;
4583 if (drv->bdrv_change_backing_file != NULL) {
4584 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
4585 } else {
4586 ret = -ENOTSUP;
4589 if (ret == 0) {
4590 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
4591 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
4592 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
4593 backing_file ?: "");
4595 return ret;
4599 * Finds the image layer in the chain that has 'bs' as its backing file.
4601 * active is the current topmost image.
4603 * Returns NULL if bs is not found in active's image chain,
4604 * or if active == bs.
4606 * Returns the bottommost base image if bs == NULL.
4608 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
4609 BlockDriverState *bs)
4611 while (active && bs != backing_bs(active)) {
4612 active = backing_bs(active);
4615 return active;
4618 /* Given a BDS, searches for the base layer. */
4619 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
4621 return bdrv_find_overlay(bs, NULL);
4625 * Return true if at least one of the backing links between @bs and
4626 * @base is frozen. @errp is set if that's the case.
4627 * @base must be reachable from @bs, or NULL.
4629 bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
4630 Error **errp)
4632 BlockDriverState *i;
4634 for (i = bs; i != base; i = backing_bs(i)) {
4635 if (i->backing && i->backing->frozen) {
4636 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
4637 i->backing->name, i->node_name,
4638 backing_bs(i)->node_name);
4639 return true;
4643 return false;
4647 * Freeze all backing links between @bs and @base.
4648 * If any of the links is already frozen the operation is aborted and
4649 * none of the links are modified.
4650 * @base must be reachable from @bs, or NULL.
4651 * Returns 0 on success. On failure returns < 0 and sets @errp.
4653 int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
4654 Error **errp)
4656 BlockDriverState *i;
4658 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
4659 return -EPERM;
4662 for (i = bs; i != base; i = backing_bs(i)) {
4663 if (i->backing && backing_bs(i)->never_freeze) {
4664 error_setg(errp, "Cannot freeze '%s' link to '%s'",
4665 i->backing->name, backing_bs(i)->node_name);
4666 return -EPERM;
4670 for (i = bs; i != base; i = backing_bs(i)) {
4671 if (i->backing) {
4672 i->backing->frozen = true;
4676 return 0;
4680 * Unfreeze all backing links between @bs and @base. The caller must
4681 * ensure that all links are frozen before using this function.
4682 * @base must be reachable from @bs, or NULL.
4684 void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
4686 BlockDriverState *i;
4688 for (i = bs; i != base; i = backing_bs(i)) {
4689 if (i->backing) {
4690 assert(i->backing->frozen);
4691 i->backing->frozen = false;
4697 * Drops images above 'base' up to and including 'top', and sets the image
4698 * above 'top' to have base as its backing file.
4700 * Requires that the overlay to 'top' is opened r/w, so that the backing file
4701 * information in 'bs' can be properly updated.
4703 * E.g., this will convert the following chain:
4704 * bottom <- base <- intermediate <- top <- active
4706 * to
4708 * bottom <- base <- active
4710 * It is allowed for bottom==base, in which case it converts:
4712 * base <- intermediate <- top <- active
4714 * to
4716 * base <- active
4718 * If backing_file_str is non-NULL, it will be used when modifying top's
4719 * overlay image metadata.
4721 * Error conditions:
4722 * if active == top, that is considered an error
4725 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
4726 const char *backing_file_str)
4728 BlockDriverState *explicit_top = top;
4729 bool update_inherits_from;
4730 BdrvChild *c, *next;
4731 Error *local_err = NULL;
4732 int ret = -EIO;
4734 bdrv_ref(top);
4735 bdrv_subtree_drained_begin(top);
4737 if (!top->drv || !base->drv) {
4738 goto exit;
4741 /* Make sure that base is in the backing chain of top */
4742 if (!bdrv_chain_contains(top, base)) {
4743 goto exit;
4746 /* This function changes all links that point to top and makes
4747 * them point to base. Check that none of them is frozen. */
4748 QLIST_FOREACH(c, &top->parents, next_parent) {
4749 if (c->frozen) {
4750 goto exit;
4754 /* If 'base' recursively inherits from 'top' then we should set
4755 * base->inherits_from to top->inherits_from after 'top' and all
4756 * other intermediate nodes have been dropped.
4757 * If 'top' is an implicit node (e.g. "commit_top") we should skip
4758 * it because no one inherits from it. We use explicit_top for that. */
4759 while (explicit_top && explicit_top->implicit) {
4760 explicit_top = backing_bs(explicit_top);
4762 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
4764 /* success - we can delete the intermediate states, and link top->base */
4765 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
4766 * we've figured out how they should work. */
4767 if (!backing_file_str) {
4768 bdrv_refresh_filename(base);
4769 backing_file_str = base->filename;
4772 QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
4773 /* Check whether we are allowed to switch c from top to base */
4774 GSList *ignore_children = g_slist_prepend(NULL, c);
4775 ret = bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
4776 ignore_children, NULL, &local_err);
4777 g_slist_free(ignore_children);
4778 if (ret < 0) {
4779 error_report_err(local_err);
4780 goto exit;
4783 /* If so, update the backing file path in the image file */
4784 if (c->role->update_filename) {
4785 ret = c->role->update_filename(c, base, backing_file_str,
4786 &local_err);
4787 if (ret < 0) {
4788 bdrv_abort_perm_update(base);
4789 error_report_err(local_err);
4790 goto exit;
4794 /* Do the actual switch in the in-memory graph.
4795 * Completes bdrv_check_update_perm() transaction internally. */
4796 bdrv_ref(base);
4797 bdrv_replace_child(c, base);
4798 bdrv_unref(top);
4801 if (update_inherits_from) {
4802 base->inherits_from = explicit_top->inherits_from;
4805 ret = 0;
4806 exit:
4807 bdrv_subtree_drained_end(top);
4808 bdrv_unref(top);
4809 return ret;
4813 * Length of a allocated file in bytes. Sparse files are counted by actual
4814 * allocated space. Return < 0 if error or unknown.
4816 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
4818 BlockDriver *drv = bs->drv;
4819 if (!drv) {
4820 return -ENOMEDIUM;
4822 if (drv->bdrv_get_allocated_file_size) {
4823 return drv->bdrv_get_allocated_file_size(bs);
4825 if (bs->file) {
4826 return bdrv_get_allocated_file_size(bs->file->bs);
4828 return -ENOTSUP;
4832 * bdrv_measure:
4833 * @drv: Format driver
4834 * @opts: Creation options for new image
4835 * @in_bs: Existing image containing data for new image (may be NULL)
4836 * @errp: Error object
4837 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
4838 * or NULL on error
4840 * Calculate file size required to create a new image.
4842 * If @in_bs is given then space for allocated clusters and zero clusters
4843 * from that image are included in the calculation. If @opts contains a
4844 * backing file that is shared by @in_bs then backing clusters may be omitted
4845 * from the calculation.
4847 * If @in_bs is NULL then the calculation includes no allocated clusters
4848 * unless a preallocation option is given in @opts.
4850 * Note that @in_bs may use a different BlockDriver from @drv.
4852 * If an error occurs the @errp pointer is set.
4854 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
4855 BlockDriverState *in_bs, Error **errp)
4857 if (!drv->bdrv_measure) {
4858 error_setg(errp, "Block driver '%s' does not support size measurement",
4859 drv->format_name);
4860 return NULL;
4863 return drv->bdrv_measure(opts, in_bs, errp);
4867 * Return number of sectors on success, -errno on error.
4869 int64_t bdrv_nb_sectors(BlockDriverState *bs)
4871 BlockDriver *drv = bs->drv;
4873 if (!drv)
4874 return -ENOMEDIUM;
4876 if (drv->has_variable_length) {
4877 int ret = refresh_total_sectors(bs, bs->total_sectors);
4878 if (ret < 0) {
4879 return ret;
4882 return bs->total_sectors;
4886 * Return length in bytes on success, -errno on error.
4887 * The length is always a multiple of BDRV_SECTOR_SIZE.
4889 int64_t bdrv_getlength(BlockDriverState *bs)
4891 int64_t ret = bdrv_nb_sectors(bs);
4893 ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
4894 return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
4897 /* return 0 as number of sectors if no device present or error */
4898 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
4900 int64_t nb_sectors = bdrv_nb_sectors(bs);
4902 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
4905 bool bdrv_is_sg(BlockDriverState *bs)
4907 return bs->sg;
4910 bool bdrv_is_encrypted(BlockDriverState *bs)
4912 if (bs->backing && bs->backing->bs->encrypted) {
4913 return true;
4915 return bs->encrypted;
4918 const char *bdrv_get_format_name(BlockDriverState *bs)
4920 return bs->drv ? bs->drv->format_name : NULL;
4923 static int qsort_strcmp(const void *a, const void *b)
4925 return strcmp(*(char *const *)a, *(char *const *)b);
4928 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
4929 void *opaque, bool read_only)
4931 BlockDriver *drv;
4932 int count = 0;
4933 int i;
4934 const char **formats = NULL;
4936 QLIST_FOREACH(drv, &bdrv_drivers, list) {
4937 if (drv->format_name) {
4938 bool found = false;
4939 int i = count;
4941 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
4942 continue;
4945 while (formats && i && !found) {
4946 found = !strcmp(formats[--i], drv->format_name);
4949 if (!found) {
4950 formats = g_renew(const char *, formats, count + 1);
4951 formats[count++] = drv->format_name;
4956 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
4957 const char *format_name = block_driver_modules[i].format_name;
4959 if (format_name) {
4960 bool found = false;
4961 int j = count;
4963 if (use_bdrv_whitelist &&
4964 !bdrv_format_is_whitelisted(format_name, read_only)) {
4965 continue;
4968 while (formats && j && !found) {
4969 found = !strcmp(formats[--j], format_name);
4972 if (!found) {
4973 formats = g_renew(const char *, formats, count + 1);
4974 formats[count++] = format_name;
4979 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
4981 for (i = 0; i < count; i++) {
4982 it(opaque, formats[i]);
4985 g_free(formats);
4988 /* This function is to find a node in the bs graph */
4989 BlockDriverState *bdrv_find_node(const char *node_name)
4991 BlockDriverState *bs;
4993 assert(node_name);
4995 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4996 if (!strcmp(node_name, bs->node_name)) {
4997 return bs;
5000 return NULL;
5003 /* Put this QMP function here so it can access the static graph_bdrv_states. */
5004 BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5005 Error **errp)
5007 BlockDeviceInfoList *list, *entry;
5008 BlockDriverState *bs;
5010 list = NULL;
5011 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5012 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
5013 if (!info) {
5014 qapi_free_BlockDeviceInfoList(list);
5015 return NULL;
5017 entry = g_malloc0(sizeof(*entry));
5018 entry->value = info;
5019 entry->next = list;
5020 list = entry;
5023 return list;
5026 #define QAPI_LIST_ADD(list, element) do { \
5027 typeof(list) _tmp = g_new(typeof(*(list)), 1); \
5028 _tmp->value = (element); \
5029 _tmp->next = (list); \
5030 (list) = _tmp; \
5031 } while (0)
5033 typedef struct XDbgBlockGraphConstructor {
5034 XDbgBlockGraph *graph;
5035 GHashTable *graph_nodes;
5036 } XDbgBlockGraphConstructor;
5038 static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5040 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5042 gr->graph = g_new0(XDbgBlockGraph, 1);
5043 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5045 return gr;
5048 static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5050 XDbgBlockGraph *graph = gr->graph;
5052 g_hash_table_destroy(gr->graph_nodes);
5053 g_free(gr);
5055 return graph;
5058 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5060 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5062 if (ret != 0) {
5063 return ret;
5067 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5068 * answer of g_hash_table_lookup.
5070 ret = g_hash_table_size(gr->graph_nodes) + 1;
5071 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5073 return ret;
5076 static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5077 XDbgBlockGraphNodeType type, const char *name)
5079 XDbgBlockGraphNode *n;
5081 n = g_new0(XDbgBlockGraphNode, 1);
5083 n->id = xdbg_graph_node_num(gr, node);
5084 n->type = type;
5085 n->name = g_strdup(name);
5087 QAPI_LIST_ADD(gr->graph->nodes, n);
5090 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5091 const BdrvChild *child)
5093 BlockPermission qapi_perm;
5094 XDbgBlockGraphEdge *edge;
5096 edge = g_new0(XDbgBlockGraphEdge, 1);
5098 edge->parent = xdbg_graph_node_num(gr, parent);
5099 edge->child = xdbg_graph_node_num(gr, child->bs);
5100 edge->name = g_strdup(child->name);
5102 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5103 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5105 if (flag & child->perm) {
5106 QAPI_LIST_ADD(edge->perm, qapi_perm);
5108 if (flag & child->shared_perm) {
5109 QAPI_LIST_ADD(edge->shared_perm, qapi_perm);
5113 QAPI_LIST_ADD(gr->graph->edges, edge);
5117 XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5119 BlockBackend *blk;
5120 BlockJob *job;
5121 BlockDriverState *bs;
5122 BdrvChild *child;
5123 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5125 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5126 char *allocated_name = NULL;
5127 const char *name = blk_name(blk);
5129 if (!*name) {
5130 name = allocated_name = blk_get_attached_dev_id(blk);
5132 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5133 name);
5134 g_free(allocated_name);
5135 if (blk_root(blk)) {
5136 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5140 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5141 GSList *el;
5143 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5144 job->job.id);
5145 for (el = job->nodes; el; el = el->next) {
5146 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5150 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5151 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5152 bs->node_name);
5153 QLIST_FOREACH(child, &bs->children, next) {
5154 xdbg_graph_add_edge(gr, bs, child);
5158 return xdbg_graph_finalize(gr);
5161 BlockDriverState *bdrv_lookup_bs(const char *device,
5162 const char *node_name,
5163 Error **errp)
5165 BlockBackend *blk;
5166 BlockDriverState *bs;
5168 if (device) {
5169 blk = blk_by_name(device);
5171 if (blk) {
5172 bs = blk_bs(blk);
5173 if (!bs) {
5174 error_setg(errp, "Device '%s' has no medium", device);
5177 return bs;
5181 if (node_name) {
5182 bs = bdrv_find_node(node_name);
5184 if (bs) {
5185 return bs;
5189 error_setg(errp, "Cannot find device=%s nor node_name=%s",
5190 device ? device : "",
5191 node_name ? node_name : "");
5192 return NULL;
5195 /* If 'base' is in the same chain as 'top', return true. Otherwise,
5196 * return false. If either argument is NULL, return false. */
5197 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
5199 while (top && top != base) {
5200 top = backing_bs(top);
5203 return top != NULL;
5206 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
5208 if (!bs) {
5209 return QTAILQ_FIRST(&graph_bdrv_states);
5211 return QTAILQ_NEXT(bs, node_list);
5214 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
5216 if (!bs) {
5217 return QTAILQ_FIRST(&all_bdrv_states);
5219 return QTAILQ_NEXT(bs, bs_list);
5222 const char *bdrv_get_node_name(const BlockDriverState *bs)
5224 return bs->node_name;
5227 const char *bdrv_get_parent_name(const BlockDriverState *bs)
5229 BdrvChild *c;
5230 const char *name;
5232 /* If multiple parents have a name, just pick the first one. */
5233 QLIST_FOREACH(c, &bs->parents, next_parent) {
5234 if (c->role->get_name) {
5235 name = c->role->get_name(c);
5236 if (name && *name) {
5237 return name;
5242 return NULL;
5245 /* TODO check what callers really want: bs->node_name or blk_name() */
5246 const char *bdrv_get_device_name(const BlockDriverState *bs)
5248 return bdrv_get_parent_name(bs) ?: "";
5251 /* This can be used to identify nodes that might not have a device
5252 * name associated. Since node and device names live in the same
5253 * namespace, the result is unambiguous. The exception is if both are
5254 * absent, then this returns an empty (non-null) string. */
5255 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
5257 return bdrv_get_parent_name(bs) ?: bs->node_name;
5260 int bdrv_get_flags(BlockDriverState *bs)
5262 return bs->open_flags;
5265 int bdrv_has_zero_init_1(BlockDriverState *bs)
5267 return 1;
5270 int bdrv_has_zero_init(BlockDriverState *bs)
5272 if (!bs->drv) {
5273 return 0;
5276 /* If BS is a copy on write image, it is initialized to
5277 the contents of the base image, which may not be zeroes. */
5278 if (bs->backing) {
5279 return 0;
5281 if (bs->drv->bdrv_has_zero_init) {
5282 return bs->drv->bdrv_has_zero_init(bs);
5284 if (bs->file && bs->drv->is_filter) {
5285 return bdrv_has_zero_init(bs->file->bs);
5288 /* safe default */
5289 return 0;
5292 int bdrv_has_zero_init_truncate(BlockDriverState *bs)
5294 if (!bs->drv) {
5295 return 0;
5298 if (bs->backing) {
5299 /* Depends on the backing image length, but better safe than sorry */
5300 return 0;
5302 if (bs->drv->bdrv_has_zero_init_truncate) {
5303 return bs->drv->bdrv_has_zero_init_truncate(bs);
5305 if (bs->file && bs->drv->is_filter) {
5306 return bdrv_has_zero_init_truncate(bs->file->bs);
5309 /* safe default */
5310 return 0;
5313 bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
5315 BlockDriverInfo bdi;
5317 if (bs->backing) {
5318 return false;
5321 if (bdrv_get_info(bs, &bdi) == 0) {
5322 return bdi.unallocated_blocks_are_zero;
5325 return false;
5328 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
5330 if (!(bs->open_flags & BDRV_O_UNMAP)) {
5331 return false;
5334 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
5337 void bdrv_get_backing_filename(BlockDriverState *bs,
5338 char *filename, int filename_size)
5340 pstrcpy(filename, filename_size, bs->backing_file);
5343 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5345 BlockDriver *drv = bs->drv;
5346 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
5347 if (!drv) {
5348 return -ENOMEDIUM;
5350 if (!drv->bdrv_get_info) {
5351 if (bs->file && drv->is_filter) {
5352 return bdrv_get_info(bs->file->bs, bdi);
5354 return -ENOTSUP;
5356 memset(bdi, 0, sizeof(*bdi));
5357 return drv->bdrv_get_info(bs, bdi);
5360 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
5361 Error **errp)
5363 BlockDriver *drv = bs->drv;
5364 if (drv && drv->bdrv_get_specific_info) {
5365 return drv->bdrv_get_specific_info(bs, errp);
5367 return NULL;
5370 BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
5372 BlockDriver *drv = bs->drv;
5373 if (!drv || !drv->bdrv_get_specific_stats) {
5374 return NULL;
5376 return drv->bdrv_get_specific_stats(bs);
5379 void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
5381 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
5382 return;
5385 bs->drv->bdrv_debug_event(bs, event);
5388 static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
5390 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
5391 if (bs->file) {
5392 bs = bs->file->bs;
5393 continue;
5396 if (bs->drv->is_filter && bs->backing) {
5397 bs = bs->backing->bs;
5398 continue;
5401 break;
5404 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
5405 assert(bs->drv->bdrv_debug_remove_breakpoint);
5406 return bs;
5409 return NULL;
5412 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
5413 const char *tag)
5415 bs = bdrv_find_debug_node(bs);
5416 if (bs) {
5417 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
5420 return -ENOTSUP;
5423 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
5425 bs = bdrv_find_debug_node(bs);
5426 if (bs) {
5427 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
5430 return -ENOTSUP;
5433 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
5435 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
5436 bs = bs->file ? bs->file->bs : NULL;
5439 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
5440 return bs->drv->bdrv_debug_resume(bs, tag);
5443 return -ENOTSUP;
5446 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
5448 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
5449 bs = bs->file ? bs->file->bs : NULL;
5452 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
5453 return bs->drv->bdrv_debug_is_suspended(bs, tag);
5456 return false;
5459 /* backing_file can either be relative, or absolute, or a protocol. If it is
5460 * relative, it must be relative to the chain. So, passing in bs->filename
5461 * from a BDS as backing_file should not be done, as that may be relative to
5462 * the CWD rather than the chain. */
5463 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
5464 const char *backing_file)
5466 char *filename_full = NULL;
5467 char *backing_file_full = NULL;
5468 char *filename_tmp = NULL;
5469 int is_protocol = 0;
5470 BlockDriverState *curr_bs = NULL;
5471 BlockDriverState *retval = NULL;
5473 if (!bs || !bs->drv || !backing_file) {
5474 return NULL;
5477 filename_full = g_malloc(PATH_MAX);
5478 backing_file_full = g_malloc(PATH_MAX);
5480 is_protocol = path_has_protocol(backing_file);
5482 for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
5484 /* If either of the filename paths is actually a protocol, then
5485 * compare unmodified paths; otherwise make paths relative */
5486 if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
5487 char *backing_file_full_ret;
5489 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
5490 retval = curr_bs->backing->bs;
5491 break;
5493 /* Also check against the full backing filename for the image */
5494 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
5495 NULL);
5496 if (backing_file_full_ret) {
5497 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
5498 g_free(backing_file_full_ret);
5499 if (equal) {
5500 retval = curr_bs->backing->bs;
5501 break;
5504 } else {
5505 /* If not an absolute filename path, make it relative to the current
5506 * image's filename path */
5507 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
5508 NULL);
5509 /* We are going to compare canonicalized absolute pathnames */
5510 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
5511 g_free(filename_tmp);
5512 continue;
5514 g_free(filename_tmp);
5516 /* We need to make sure the backing filename we are comparing against
5517 * is relative to the current image filename (or absolute) */
5518 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
5519 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
5520 g_free(filename_tmp);
5521 continue;
5523 g_free(filename_tmp);
5525 if (strcmp(backing_file_full, filename_full) == 0) {
5526 retval = curr_bs->backing->bs;
5527 break;
5532 g_free(filename_full);
5533 g_free(backing_file_full);
5534 return retval;
5537 void bdrv_init(void)
5539 module_call_init(MODULE_INIT_BLOCK);
5542 void bdrv_init_with_whitelist(void)
5544 use_bdrv_whitelist = 1;
5545 bdrv_init();
5548 static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
5549 Error **errp)
5551 BdrvChild *child, *parent;
5552 uint64_t perm, shared_perm;
5553 Error *local_err = NULL;
5554 int ret;
5555 BdrvDirtyBitmap *bm;
5557 if (!bs->drv) {
5558 return;
5561 QLIST_FOREACH(child, &bs->children, next) {
5562 bdrv_co_invalidate_cache(child->bs, &local_err);
5563 if (local_err) {
5564 error_propagate(errp, local_err);
5565 return;
5570 * Update permissions, they may differ for inactive nodes.
5572 * Note that the required permissions of inactive images are always a
5573 * subset of the permissions required after activating the image. This
5574 * allows us to just get the permissions upfront without restricting
5575 * drv->bdrv_invalidate_cache().
5577 * It also means that in error cases, we don't have to try and revert to
5578 * the old permissions (which is an operation that could fail, too). We can
5579 * just keep the extended permissions for the next time that an activation
5580 * of the image is tried.
5582 if (bs->open_flags & BDRV_O_INACTIVE) {
5583 bs->open_flags &= ~BDRV_O_INACTIVE;
5584 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
5585 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, NULL, &local_err);
5586 if (ret < 0) {
5587 bs->open_flags |= BDRV_O_INACTIVE;
5588 error_propagate(errp, local_err);
5589 return;
5591 bdrv_set_perm(bs, perm, shared_perm);
5593 if (bs->drv->bdrv_co_invalidate_cache) {
5594 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
5595 if (local_err) {
5596 bs->open_flags |= BDRV_O_INACTIVE;
5597 error_propagate(errp, local_err);
5598 return;
5602 FOR_EACH_DIRTY_BITMAP(bs, bm) {
5603 bdrv_dirty_bitmap_skip_store(bm, false);
5606 ret = refresh_total_sectors(bs, bs->total_sectors);
5607 if (ret < 0) {
5608 bs->open_flags |= BDRV_O_INACTIVE;
5609 error_setg_errno(errp, -ret, "Could not refresh total sector count");
5610 return;
5614 QLIST_FOREACH(parent, &bs->parents, next_parent) {
5615 if (parent->role->activate) {
5616 parent->role->activate(parent, &local_err);
5617 if (local_err) {
5618 bs->open_flags |= BDRV_O_INACTIVE;
5619 error_propagate(errp, local_err);
5620 return;
5626 typedef struct InvalidateCacheCo {
5627 BlockDriverState *bs;
5628 Error **errp;
5629 bool done;
5630 } InvalidateCacheCo;
5632 static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
5634 InvalidateCacheCo *ico = opaque;
5635 bdrv_co_invalidate_cache(ico->bs, ico->errp);
5636 ico->done = true;
5637 aio_wait_kick();
5640 void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
5642 Coroutine *co;
5643 InvalidateCacheCo ico = {
5644 .bs = bs,
5645 .done = false,
5646 .errp = errp
5649 if (qemu_in_coroutine()) {
5650 /* Fast-path if already in coroutine context */
5651 bdrv_invalidate_cache_co_entry(&ico);
5652 } else {
5653 co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
5654 bdrv_coroutine_enter(bs, co);
5655 BDRV_POLL_WHILE(bs, !ico.done);
5659 void bdrv_invalidate_cache_all(Error **errp)
5661 BlockDriverState *bs;
5662 Error *local_err = NULL;
5663 BdrvNextIterator it;
5665 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5666 AioContext *aio_context = bdrv_get_aio_context(bs);
5668 aio_context_acquire(aio_context);
5669 bdrv_invalidate_cache(bs, &local_err);
5670 aio_context_release(aio_context);
5671 if (local_err) {
5672 error_propagate(errp, local_err);
5673 bdrv_next_cleanup(&it);
5674 return;
5679 static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
5681 BdrvChild *parent;
5683 QLIST_FOREACH(parent, &bs->parents, next_parent) {
5684 if (parent->role->parent_is_bds) {
5685 BlockDriverState *parent_bs = parent->opaque;
5686 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
5687 return true;
5692 return false;
5695 static int bdrv_inactivate_recurse(BlockDriverState *bs)
5697 BdrvChild *child, *parent;
5698 bool tighten_restrictions;
5699 uint64_t perm, shared_perm;
5700 int ret;
5702 if (!bs->drv) {
5703 return -ENOMEDIUM;
5706 /* Make sure that we don't inactivate a child before its parent.
5707 * It will be covered by recursion from the yet active parent. */
5708 if (bdrv_has_bds_parent(bs, true)) {
5709 return 0;
5712 assert(!(bs->open_flags & BDRV_O_INACTIVE));
5714 /* Inactivate this node */
5715 if (bs->drv->bdrv_inactivate) {
5716 ret = bs->drv->bdrv_inactivate(bs);
5717 if (ret < 0) {
5718 return ret;
5722 QLIST_FOREACH(parent, &bs->parents, next_parent) {
5723 if (parent->role->inactivate) {
5724 ret = parent->role->inactivate(parent);
5725 if (ret < 0) {
5726 return ret;
5731 bs->open_flags |= BDRV_O_INACTIVE;
5733 /* Update permissions, they may differ for inactive nodes */
5734 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
5735 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL,
5736 &tighten_restrictions, NULL);
5737 assert(tighten_restrictions == false);
5738 if (ret < 0) {
5739 /* We only tried to loosen restrictions, so errors are not fatal */
5740 bdrv_abort_perm_update(bs);
5741 } else {
5742 bdrv_set_perm(bs, perm, shared_perm);
5746 /* Recursively inactivate children */
5747 QLIST_FOREACH(child, &bs->children, next) {
5748 ret = bdrv_inactivate_recurse(child->bs);
5749 if (ret < 0) {
5750 return ret;
5754 return 0;
5757 int bdrv_inactivate_all(void)
5759 BlockDriverState *bs = NULL;
5760 BdrvNextIterator it;
5761 int ret = 0;
5762 GSList *aio_ctxs = NULL, *ctx;
5764 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5765 AioContext *aio_context = bdrv_get_aio_context(bs);
5767 if (!g_slist_find(aio_ctxs, aio_context)) {
5768 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
5769 aio_context_acquire(aio_context);
5773 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5774 /* Nodes with BDS parents are covered by recursion from the last
5775 * parent that gets inactivated. Don't inactivate them a second
5776 * time if that has already happened. */
5777 if (bdrv_has_bds_parent(bs, false)) {
5778 continue;
5780 ret = bdrv_inactivate_recurse(bs);
5781 if (ret < 0) {
5782 bdrv_next_cleanup(&it);
5783 goto out;
5787 out:
5788 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
5789 AioContext *aio_context = ctx->data;
5790 aio_context_release(aio_context);
5792 g_slist_free(aio_ctxs);
5794 return ret;
5797 /**************************************************************/
5798 /* removable device support */
5801 * Return TRUE if the media is present
5803 bool bdrv_is_inserted(BlockDriverState *bs)
5805 BlockDriver *drv = bs->drv;
5806 BdrvChild *child;
5808 if (!drv) {
5809 return false;
5811 if (drv->bdrv_is_inserted) {
5812 return drv->bdrv_is_inserted(bs);
5814 QLIST_FOREACH(child, &bs->children, next) {
5815 if (!bdrv_is_inserted(child->bs)) {
5816 return false;
5819 return true;
5823 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
5825 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
5827 BlockDriver *drv = bs->drv;
5829 if (drv && drv->bdrv_eject) {
5830 drv->bdrv_eject(bs, eject_flag);
5835 * Lock or unlock the media (if it is locked, the user won't be able
5836 * to eject it manually).
5838 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
5840 BlockDriver *drv = bs->drv;
5842 trace_bdrv_lock_medium(bs, locked);
5844 if (drv && drv->bdrv_lock_medium) {
5845 drv->bdrv_lock_medium(bs, locked);
5849 /* Get a reference to bs */
5850 void bdrv_ref(BlockDriverState *bs)
5852 bs->refcnt++;
5855 /* Release a previously grabbed reference to bs.
5856 * If after releasing, reference count is zero, the BlockDriverState is
5857 * deleted. */
5858 void bdrv_unref(BlockDriverState *bs)
5860 if (!bs) {
5861 return;
5863 assert(bs->refcnt > 0);
5864 if (--bs->refcnt == 0) {
5865 bdrv_delete(bs);
5869 struct BdrvOpBlocker {
5870 Error *reason;
5871 QLIST_ENTRY(BdrvOpBlocker) list;
5874 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
5876 BdrvOpBlocker *blocker;
5877 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5878 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
5879 blocker = QLIST_FIRST(&bs->op_blockers[op]);
5880 error_propagate_prepend(errp, error_copy(blocker->reason),
5881 "Node '%s' is busy: ",
5882 bdrv_get_device_or_node_name(bs));
5883 return true;
5885 return false;
5888 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
5890 BdrvOpBlocker *blocker;
5891 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5893 blocker = g_new0(BdrvOpBlocker, 1);
5894 blocker->reason = reason;
5895 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
5898 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
5900 BdrvOpBlocker *blocker, *next;
5901 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5902 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
5903 if (blocker->reason == reason) {
5904 QLIST_REMOVE(blocker, list);
5905 g_free(blocker);
5910 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
5912 int i;
5913 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5914 bdrv_op_block(bs, i, reason);
5918 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
5920 int i;
5921 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5922 bdrv_op_unblock(bs, i, reason);
5926 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
5928 int i;
5930 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5931 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
5932 return false;
5935 return true;
5938 void bdrv_img_create(const char *filename, const char *fmt,
5939 const char *base_filename, const char *base_fmt,
5940 char *options, uint64_t img_size, int flags, bool quiet,
5941 Error **errp)
5943 QemuOptsList *create_opts = NULL;
5944 QemuOpts *opts = NULL;
5945 const char *backing_fmt, *backing_file;
5946 int64_t size;
5947 BlockDriver *drv, *proto_drv;
5948 Error *local_err = NULL;
5949 int ret = 0;
5951 /* Find driver and parse its options */
5952 drv = bdrv_find_format(fmt);
5953 if (!drv) {
5954 error_setg(errp, "Unknown file format '%s'", fmt);
5955 return;
5958 proto_drv = bdrv_find_protocol(filename, true, errp);
5959 if (!proto_drv) {
5960 return;
5963 if (!drv->create_opts) {
5964 error_setg(errp, "Format driver '%s' does not support image creation",
5965 drv->format_name);
5966 return;
5969 if (!proto_drv->create_opts) {
5970 error_setg(errp, "Protocol driver '%s' does not support image creation",
5971 proto_drv->format_name);
5972 return;
5975 /* Create parameter list */
5976 create_opts = qemu_opts_append(create_opts, drv->create_opts);
5977 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
5979 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
5981 /* Parse -o options */
5982 if (options) {
5983 qemu_opts_do_parse(opts, options, NULL, &local_err);
5984 if (local_err) {
5985 goto out;
5989 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
5990 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
5991 } else if (img_size != UINT64_C(-1)) {
5992 error_setg(errp, "The image size must be specified only once");
5993 goto out;
5996 if (base_filename) {
5997 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
5998 if (local_err) {
5999 error_setg(errp, "Backing file not supported for file format '%s'",
6000 fmt);
6001 goto out;
6005 if (base_fmt) {
6006 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
6007 if (local_err) {
6008 error_setg(errp, "Backing file format not supported for file "
6009 "format '%s'", fmt);
6010 goto out;
6014 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6015 if (backing_file) {
6016 if (!strcmp(filename, backing_file)) {
6017 error_setg(errp, "Error: Trying to create an image with the "
6018 "same filename as the backing file");
6019 goto out;
6023 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
6025 /* The size for the image must always be specified, unless we have a backing
6026 * file and we have not been forbidden from opening it. */
6027 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
6028 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6029 BlockDriverState *bs;
6030 char *full_backing;
6031 int back_flags;
6032 QDict *backing_options = NULL;
6034 full_backing =
6035 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6036 &local_err);
6037 if (local_err) {
6038 goto out;
6040 assert(full_backing);
6042 /* backing files always opened read-only */
6043 back_flags = flags;
6044 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
6046 backing_options = qdict_new();
6047 if (backing_fmt) {
6048 qdict_put_str(backing_options, "driver", backing_fmt);
6050 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
6052 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6053 &local_err);
6054 g_free(full_backing);
6055 if (!bs && size != -1) {
6056 /* Couldn't open BS, but we have a size, so it's nonfatal */
6057 warn_reportf_err(local_err,
6058 "Could not verify backing image. "
6059 "This may become an error in future versions.\n");
6060 local_err = NULL;
6061 } else if (!bs) {
6062 /* Couldn't open bs, do not have size */
6063 error_append_hint(&local_err,
6064 "Could not open backing image to determine size.\n");
6065 goto out;
6066 } else {
6067 if (size == -1) {
6068 /* Opened BS, have no size */
6069 size = bdrv_getlength(bs);
6070 if (size < 0) {
6071 error_setg_errno(errp, -size, "Could not get size of '%s'",
6072 backing_file);
6073 bdrv_unref(bs);
6074 goto out;
6076 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6078 bdrv_unref(bs);
6080 } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6082 if (size == -1) {
6083 error_setg(errp, "Image creation needs a size parameter");
6084 goto out;
6087 if (!quiet) {
6088 printf("Formatting '%s', fmt=%s ", filename, fmt);
6089 qemu_opts_print(opts, " ");
6090 puts("");
6093 ret = bdrv_create(drv, filename, opts, &local_err);
6095 if (ret == -EFBIG) {
6096 /* This is generally a better message than whatever the driver would
6097 * deliver (especially because of the cluster_size_hint), since that
6098 * is most probably not much different from "image too large". */
6099 const char *cluster_size_hint = "";
6100 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
6101 cluster_size_hint = " (try using a larger cluster size)";
6103 error_setg(errp, "The image size is too large for file format '%s'"
6104 "%s", fmt, cluster_size_hint);
6105 error_free(local_err);
6106 local_err = NULL;
6109 out:
6110 qemu_opts_del(opts);
6111 qemu_opts_free(create_opts);
6112 error_propagate(errp, local_err);
6115 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6117 return bs ? bs->aio_context : qemu_get_aio_context();
6120 void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6122 aio_co_enter(bdrv_get_aio_context(bs), co);
6125 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6127 QLIST_REMOVE(ban, list);
6128 g_free(ban);
6131 static void bdrv_detach_aio_context(BlockDriverState *bs)
6133 BdrvAioNotifier *baf, *baf_tmp;
6135 assert(!bs->walking_aio_notifiers);
6136 bs->walking_aio_notifiers = true;
6137 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6138 if (baf->deleted) {
6139 bdrv_do_remove_aio_context_notifier(baf);
6140 } else {
6141 baf->detach_aio_context(baf->opaque);
6144 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6145 * remove remaining aio notifiers if we aren't called again.
6147 bs->walking_aio_notifiers = false;
6149 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
6150 bs->drv->bdrv_detach_aio_context(bs);
6153 if (bs->quiesce_counter) {
6154 aio_enable_external(bs->aio_context);
6156 bs->aio_context = NULL;
6159 static void bdrv_attach_aio_context(BlockDriverState *bs,
6160 AioContext *new_context)
6162 BdrvAioNotifier *ban, *ban_tmp;
6164 if (bs->quiesce_counter) {
6165 aio_disable_external(new_context);
6168 bs->aio_context = new_context;
6170 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
6171 bs->drv->bdrv_attach_aio_context(bs, new_context);
6174 assert(!bs->walking_aio_notifiers);
6175 bs->walking_aio_notifiers = true;
6176 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
6177 if (ban->deleted) {
6178 bdrv_do_remove_aio_context_notifier(ban);
6179 } else {
6180 ban->attached_aio_context(new_context, ban->opaque);
6183 bs->walking_aio_notifiers = false;
6187 * Changes the AioContext used for fd handlers, timers, and BHs by this
6188 * BlockDriverState and all its children and parents.
6190 * Must be called from the main AioContext.
6192 * The caller must own the AioContext lock for the old AioContext of bs, but it
6193 * must not own the AioContext lock for new_context (unless new_context is the
6194 * same as the current context of bs).
6196 * @ignore will accumulate all visited BdrvChild object. The caller is
6197 * responsible for freeing the list afterwards.
6199 void bdrv_set_aio_context_ignore(BlockDriverState *bs,
6200 AioContext *new_context, GSList **ignore)
6202 AioContext *old_context = bdrv_get_aio_context(bs);
6203 BdrvChild *child;
6205 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6207 if (old_context == new_context) {
6208 return;
6211 bdrv_drained_begin(bs);
6213 QLIST_FOREACH(child, &bs->children, next) {
6214 if (g_slist_find(*ignore, child)) {
6215 continue;
6217 *ignore = g_slist_prepend(*ignore, child);
6218 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
6220 QLIST_FOREACH(child, &bs->parents, next_parent) {
6221 if (g_slist_find(*ignore, child)) {
6222 continue;
6224 assert(child->role->set_aio_ctx);
6225 *ignore = g_slist_prepend(*ignore, child);
6226 child->role->set_aio_ctx(child, new_context, ignore);
6229 bdrv_detach_aio_context(bs);
6231 /* Acquire the new context, if necessary */
6232 if (qemu_get_aio_context() != new_context) {
6233 aio_context_acquire(new_context);
6236 bdrv_attach_aio_context(bs, new_context);
6239 * If this function was recursively called from
6240 * bdrv_set_aio_context_ignore(), there may be nodes in the
6241 * subtree that have not yet been moved to the new AioContext.
6242 * Release the old one so bdrv_drained_end() can poll them.
6244 if (qemu_get_aio_context() != old_context) {
6245 aio_context_release(old_context);
6248 bdrv_drained_end(bs);
6250 if (qemu_get_aio_context() != old_context) {
6251 aio_context_acquire(old_context);
6253 if (qemu_get_aio_context() != new_context) {
6254 aio_context_release(new_context);
6258 static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6259 GSList **ignore, Error **errp)
6261 if (g_slist_find(*ignore, c)) {
6262 return true;
6264 *ignore = g_slist_prepend(*ignore, c);
6266 /* A BdrvChildRole that doesn't handle AioContext changes cannot
6267 * tolerate any AioContext changes */
6268 if (!c->role->can_set_aio_ctx) {
6269 char *user = bdrv_child_user_desc(c);
6270 error_setg(errp, "Changing iothreads is not supported by %s", user);
6271 g_free(user);
6272 return false;
6274 if (!c->role->can_set_aio_ctx(c, ctx, ignore, errp)) {
6275 assert(!errp || *errp);
6276 return false;
6278 return true;
6281 bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6282 GSList **ignore, Error **errp)
6284 if (g_slist_find(*ignore, c)) {
6285 return true;
6287 *ignore = g_slist_prepend(*ignore, c);
6288 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
6291 /* @ignore will accumulate all visited BdrvChild object. The caller is
6292 * responsible for freeing the list afterwards. */
6293 bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6294 GSList **ignore, Error **errp)
6296 BdrvChild *c;
6298 if (bdrv_get_aio_context(bs) == ctx) {
6299 return true;
6302 QLIST_FOREACH(c, &bs->parents, next_parent) {
6303 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
6304 return false;
6307 QLIST_FOREACH(c, &bs->children, next) {
6308 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
6309 return false;
6313 return true;
6316 int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6317 BdrvChild *ignore_child, Error **errp)
6319 GSList *ignore;
6320 bool ret;
6322 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6323 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
6324 g_slist_free(ignore);
6326 if (!ret) {
6327 return -EPERM;
6330 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6331 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
6332 g_slist_free(ignore);
6334 return 0;
6337 int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6338 Error **errp)
6340 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
6343 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
6344 void (*attached_aio_context)(AioContext *new_context, void *opaque),
6345 void (*detach_aio_context)(void *opaque), void *opaque)
6347 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
6348 *ban = (BdrvAioNotifier){
6349 .attached_aio_context = attached_aio_context,
6350 .detach_aio_context = detach_aio_context,
6351 .opaque = opaque
6354 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
6357 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
6358 void (*attached_aio_context)(AioContext *,
6359 void *),
6360 void (*detach_aio_context)(void *),
6361 void *opaque)
6363 BdrvAioNotifier *ban, *ban_next;
6365 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
6366 if (ban->attached_aio_context == attached_aio_context &&
6367 ban->detach_aio_context == detach_aio_context &&
6368 ban->opaque == opaque &&
6369 ban->deleted == false)
6371 if (bs->walking_aio_notifiers) {
6372 ban->deleted = true;
6373 } else {
6374 bdrv_do_remove_aio_context_notifier(ban);
6376 return;
6380 abort();
6383 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
6384 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
6385 Error **errp)
6387 if (!bs->drv) {
6388 error_setg(errp, "Node is ejected");
6389 return -ENOMEDIUM;
6391 if (!bs->drv->bdrv_amend_options) {
6392 error_setg(errp, "Block driver '%s' does not support option amendment",
6393 bs->drv->format_name);
6394 return -ENOTSUP;
6396 return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
6400 * This function checks whether the given @to_replace is allowed to be
6401 * replaced by a node that always shows the same data as @bs. This is
6402 * used for example to verify whether the mirror job can replace
6403 * @to_replace by the target mirrored from @bs.
6404 * To be replaceable, @bs and @to_replace may either be guaranteed to
6405 * always show the same data (because they are only connected through
6406 * filters), or some driver may allow replacing one of its children
6407 * because it can guarantee that this child's data is not visible at
6408 * all (for example, for dissenting quorum children that have no other
6409 * parents).
6411 bool bdrv_recurse_can_replace(BlockDriverState *bs,
6412 BlockDriverState *to_replace)
6414 if (!bs || !bs->drv) {
6415 return false;
6418 if (bs == to_replace) {
6419 return true;
6422 /* See what the driver can do */
6423 if (bs->drv->bdrv_recurse_can_replace) {
6424 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
6427 /* For filters without an own implementation, we can recurse on our own */
6428 if (bs->drv->is_filter) {
6429 BdrvChild *child = bs->file ?: bs->backing;
6430 return bdrv_recurse_can_replace(child->bs, to_replace);
6433 /* Safe default */
6434 return false;
6438 * Check whether the given @node_name can be replaced by a node that
6439 * has the same data as @parent_bs. If so, return @node_name's BDS;
6440 * NULL otherwise.
6442 * @node_name must be a (recursive) *child of @parent_bs (or this
6443 * function will return NULL).
6445 * The result (whether the node can be replaced or not) is only valid
6446 * for as long as no graph or permission changes occur.
6448 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
6449 const char *node_name, Error **errp)
6451 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
6452 AioContext *aio_context;
6454 if (!to_replace_bs) {
6455 error_setg(errp, "Node name '%s' not found", node_name);
6456 return NULL;
6459 aio_context = bdrv_get_aio_context(to_replace_bs);
6460 aio_context_acquire(aio_context);
6462 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
6463 to_replace_bs = NULL;
6464 goto out;
6467 /* We don't want arbitrary node of the BDS chain to be replaced only the top
6468 * most non filter in order to prevent data corruption.
6469 * Another benefit is that this tests exclude backing files which are
6470 * blocked by the backing blockers.
6472 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
6473 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
6474 "because it cannot be guaranteed that doing so would not "
6475 "lead to an abrupt change of visible data",
6476 node_name, parent_bs->node_name);
6477 to_replace_bs = NULL;
6478 goto out;
6481 out:
6482 aio_context_release(aio_context);
6483 return to_replace_bs;
6487 * Iterates through the list of runtime option keys that are said to
6488 * be "strong" for a BDS. An option is called "strong" if it changes
6489 * a BDS's data. For example, the null block driver's "size" and
6490 * "read-zeroes" options are strong, but its "latency-ns" option is
6491 * not.
6493 * If a key returned by this function ends with a dot, all options
6494 * starting with that prefix are strong.
6496 static const char *const *strong_options(BlockDriverState *bs,
6497 const char *const *curopt)
6499 static const char *const global_options[] = {
6500 "driver", "filename", NULL
6503 if (!curopt) {
6504 return &global_options[0];
6507 curopt++;
6508 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
6509 curopt = bs->drv->strong_runtime_opts;
6512 return (curopt && *curopt) ? curopt : NULL;
6516 * Copies all strong runtime options from bs->options to the given
6517 * QDict. The set of strong option keys is determined by invoking
6518 * strong_options().
6520 * Returns true iff any strong option was present in bs->options (and
6521 * thus copied to the target QDict) with the exception of "filename"
6522 * and "driver". The caller is expected to use this value to decide
6523 * whether the existence of strong options prevents the generation of
6524 * a plain filename.
6526 static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
6528 bool found_any = false;
6529 const char *const *option_name = NULL;
6531 if (!bs->drv) {
6532 return false;
6535 while ((option_name = strong_options(bs, option_name))) {
6536 bool option_given = false;
6538 assert(strlen(*option_name) > 0);
6539 if ((*option_name)[strlen(*option_name) - 1] != '.') {
6540 QObject *entry = qdict_get(bs->options, *option_name);
6541 if (!entry) {
6542 continue;
6545 qdict_put_obj(d, *option_name, qobject_ref(entry));
6546 option_given = true;
6547 } else {
6548 const QDictEntry *entry;
6549 for (entry = qdict_first(bs->options); entry;
6550 entry = qdict_next(bs->options, entry))
6552 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
6553 qdict_put_obj(d, qdict_entry_key(entry),
6554 qobject_ref(qdict_entry_value(entry)));
6555 option_given = true;
6560 /* While "driver" and "filename" need to be included in a JSON filename,
6561 * their existence does not prohibit generation of a plain filename. */
6562 if (!found_any && option_given &&
6563 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
6565 found_any = true;
6569 if (!qdict_haskey(d, "driver")) {
6570 /* Drivers created with bdrv_new_open_driver() may not have a
6571 * @driver option. Add it here. */
6572 qdict_put_str(d, "driver", bs->drv->format_name);
6575 return found_any;
6578 /* Note: This function may return false positives; it may return true
6579 * even if opening the backing file specified by bs's image header
6580 * would result in exactly bs->backing. */
6581 static bool bdrv_backing_overridden(BlockDriverState *bs)
6583 if (bs->backing) {
6584 return strcmp(bs->auto_backing_file,
6585 bs->backing->bs->filename);
6586 } else {
6587 /* No backing BDS, so if the image header reports any backing
6588 * file, it must have been suppressed */
6589 return bs->auto_backing_file[0] != '\0';
6593 /* Updates the following BDS fields:
6594 * - exact_filename: A filename which may be used for opening a block device
6595 * which (mostly) equals the given BDS (even without any
6596 * other options; so reading and writing must return the same
6597 * results, but caching etc. may be different)
6598 * - full_open_options: Options which, when given when opening a block device
6599 * (without a filename), result in a BDS (mostly)
6600 * equalling the given one
6601 * - filename: If exact_filename is set, it is copied here. Otherwise,
6602 * full_open_options is converted to a JSON object, prefixed with
6603 * "json:" (for use through the JSON pseudo protocol) and put here.
6605 void bdrv_refresh_filename(BlockDriverState *bs)
6607 BlockDriver *drv = bs->drv;
6608 BdrvChild *child;
6609 QDict *opts;
6610 bool backing_overridden;
6611 bool generate_json_filename; /* Whether our default implementation should
6612 fill exact_filename (false) or not (true) */
6614 if (!drv) {
6615 return;
6618 /* This BDS's file name may depend on any of its children's file names, so
6619 * refresh those first */
6620 QLIST_FOREACH(child, &bs->children, next) {
6621 bdrv_refresh_filename(child->bs);
6624 if (bs->implicit) {
6625 /* For implicit nodes, just copy everything from the single child */
6626 child = QLIST_FIRST(&bs->children);
6627 assert(QLIST_NEXT(child, next) == NULL);
6629 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
6630 child->bs->exact_filename);
6631 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
6633 qobject_unref(bs->full_open_options);
6634 bs->full_open_options = qobject_ref(child->bs->full_open_options);
6636 return;
6639 backing_overridden = bdrv_backing_overridden(bs);
6641 if (bs->open_flags & BDRV_O_NO_IO) {
6642 /* Without I/O, the backing file does not change anything.
6643 * Therefore, in such a case (primarily qemu-img), we can
6644 * pretend the backing file has not been overridden even if
6645 * it technically has been. */
6646 backing_overridden = false;
6649 /* Gather the options QDict */
6650 opts = qdict_new();
6651 generate_json_filename = append_strong_runtime_options(opts, bs);
6652 generate_json_filename |= backing_overridden;
6654 if (drv->bdrv_gather_child_options) {
6655 /* Some block drivers may not want to present all of their children's
6656 * options, or name them differently from BdrvChild.name */
6657 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
6658 } else {
6659 QLIST_FOREACH(child, &bs->children, next) {
6660 if (child->role == &child_backing && !backing_overridden) {
6661 /* We can skip the backing BDS if it has not been overridden */
6662 continue;
6665 qdict_put(opts, child->name,
6666 qobject_ref(child->bs->full_open_options));
6669 if (backing_overridden && !bs->backing) {
6670 /* Force no backing file */
6671 qdict_put_null(opts, "backing");
6675 qobject_unref(bs->full_open_options);
6676 bs->full_open_options = opts;
6678 if (drv->bdrv_refresh_filename) {
6679 /* Obsolete information is of no use here, so drop the old file name
6680 * information before refreshing it */
6681 bs->exact_filename[0] = '\0';
6683 drv->bdrv_refresh_filename(bs);
6684 } else if (bs->file) {
6685 /* Try to reconstruct valid information from the underlying file */
6687 bs->exact_filename[0] = '\0';
6690 * We can use the underlying file's filename if:
6691 * - it has a filename,
6692 * - the file is a protocol BDS, and
6693 * - opening that file (as this BDS's format) will automatically create
6694 * the BDS tree we have right now, that is:
6695 * - the user did not significantly change this BDS's behavior with
6696 * some explicit (strong) options
6697 * - no non-file child of this BDS has been overridden by the user
6698 * Both of these conditions are represented by generate_json_filename.
6700 if (bs->file->bs->exact_filename[0] &&
6701 bs->file->bs->drv->bdrv_file_open &&
6702 !generate_json_filename)
6704 strcpy(bs->exact_filename, bs->file->bs->exact_filename);
6708 if (bs->exact_filename[0]) {
6709 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
6710 } else {
6711 QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
6712 snprintf(bs->filename, sizeof(bs->filename), "json:%s",
6713 qstring_get_str(json));
6714 qobject_unref(json);
6718 char *bdrv_dirname(BlockDriverState *bs, Error **errp)
6720 BlockDriver *drv = bs->drv;
6722 if (!drv) {
6723 error_setg(errp, "Node '%s' is ejected", bs->node_name);
6724 return NULL;
6727 if (drv->bdrv_dirname) {
6728 return drv->bdrv_dirname(bs, errp);
6731 if (bs->file) {
6732 return bdrv_dirname(bs->file->bs, errp);
6735 bdrv_refresh_filename(bs);
6736 if (bs->exact_filename[0] != '\0') {
6737 return path_combine(bs->exact_filename, "");
6740 error_setg(errp, "Cannot generate a base directory for %s nodes",
6741 drv->format_name);
6742 return NULL;
6746 * Hot add/remove a BDS's child. So the user can take a child offline when
6747 * it is broken and take a new child online
6749 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
6750 Error **errp)
6753 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
6754 error_setg(errp, "The node %s does not support adding a child",
6755 bdrv_get_device_or_node_name(parent_bs));
6756 return;
6759 if (!QLIST_EMPTY(&child_bs->parents)) {
6760 error_setg(errp, "The node %s already has a parent",
6761 child_bs->node_name);
6762 return;
6765 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
6768 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
6770 BdrvChild *tmp;
6772 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
6773 error_setg(errp, "The node %s does not support removing a child",
6774 bdrv_get_device_or_node_name(parent_bs));
6775 return;
6778 QLIST_FOREACH(tmp, &parent_bs->children, next) {
6779 if (tmp == child) {
6780 break;
6784 if (!tmp) {
6785 error_setg(errp, "The node %s does not have a child named %s",
6786 bdrv_get_device_or_node_name(parent_bs),
6787 bdrv_get_device_or_node_name(child->bs));
6788 return;
6791 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);