hw/arm/orangepi: check for potential NULL pointer when calling blk_is_available
[qemu/ar7.git] / block.c
blob2e3905c99e8c5ab46aed09171bade5b94847c9cc
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 bdrv_unref(child_bs);
2621 return NULL;
2625 /* This performs the matching bdrv_set_perm() for the above check. */
2626 bdrv_replace_child(child, child_bs);
2628 return child;
2632 * This function transfers the reference to child_bs from the caller
2633 * to parent_bs. That reference is later dropped by parent_bs on
2634 * bdrv_close() or if someone calls bdrv_unref_child().
2636 * On failure NULL is returned, errp is set and the reference to
2637 * child_bs is also dropped.
2639 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2640 * hold the AioContext lock for @child_bs, but not for @parent_bs.
2642 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2643 BlockDriverState *child_bs,
2644 const char *child_name,
2645 const BdrvChildRole *child_role,
2646 Error **errp)
2648 BdrvChild *child;
2649 uint64_t perm, shared_perm;
2651 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2653 assert(parent_bs->drv);
2654 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2655 perm, shared_perm, &perm, &shared_perm);
2657 child = bdrv_root_attach_child(child_bs, child_name, child_role,
2658 bdrv_get_aio_context(parent_bs),
2659 perm, shared_perm, parent_bs, errp);
2660 if (child == NULL) {
2661 return NULL;
2664 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2665 return child;
2668 static void bdrv_detach_child(BdrvChild *child)
2670 QLIST_SAFE_REMOVE(child, next);
2672 bdrv_replace_child(child, NULL);
2674 g_free(child->name);
2675 g_free(child);
2678 void bdrv_root_unref_child(BdrvChild *child)
2680 BlockDriverState *child_bs;
2682 child_bs = child->bs;
2683 bdrv_detach_child(child);
2684 bdrv_unref(child_bs);
2688 * Clear all inherits_from pointers from children and grandchildren of
2689 * @root that point to @root, where necessary.
2691 static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child)
2693 BdrvChild *c;
2695 if (child->bs->inherits_from == root) {
2697 * Remove inherits_from only when the last reference between root and
2698 * child->bs goes away.
2700 QLIST_FOREACH(c, &root->children, next) {
2701 if (c != child && c->bs == child->bs) {
2702 break;
2705 if (c == NULL) {
2706 child->bs->inherits_from = NULL;
2710 QLIST_FOREACH(c, &child->bs->children, next) {
2711 bdrv_unset_inherits_from(root, c);
2715 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2717 if (child == NULL) {
2718 return;
2721 bdrv_unset_inherits_from(parent, child);
2722 bdrv_root_unref_child(child);
2726 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2728 BdrvChild *c;
2729 QLIST_FOREACH(c, &bs->parents, next_parent) {
2730 if (c->role->change_media) {
2731 c->role->change_media(c, load);
2736 /* Return true if you can reach parent going through child->inherits_from
2737 * recursively. If parent or child are NULL, return false */
2738 static bool bdrv_inherits_from_recursive(BlockDriverState *child,
2739 BlockDriverState *parent)
2741 while (child && child != parent) {
2742 child = child->inherits_from;
2745 return child != NULL;
2749 * Sets the backing file link of a BDS. A new reference is created; callers
2750 * which don't need their own reference any more must call bdrv_unref().
2752 void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2753 Error **errp)
2755 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
2756 bdrv_inherits_from_recursive(backing_hd, bs);
2758 if (bdrv_is_backing_chain_frozen(bs, backing_bs(bs), errp)) {
2759 return;
2762 if (backing_hd) {
2763 bdrv_ref(backing_hd);
2766 if (bs->backing) {
2767 bdrv_unref_child(bs, bs->backing);
2768 bs->backing = NULL;
2771 if (!backing_hd) {
2772 goto out;
2775 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
2776 errp);
2777 /* If backing_hd was already part of bs's backing chain, and
2778 * inherits_from pointed recursively to bs then let's update it to
2779 * point directly to bs (else it will become NULL). */
2780 if (bs->backing && update_inherits_from) {
2781 backing_hd->inherits_from = bs;
2784 out:
2785 bdrv_refresh_limits(bs, NULL);
2789 * Opens the backing file for a BlockDriverState if not yet open
2791 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2792 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2793 * itself, all options starting with "${bdref_key}." are considered part of the
2794 * BlockdevRef.
2796 * TODO Can this be unified with bdrv_open_image()?
2798 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2799 const char *bdref_key, Error **errp)
2801 char *backing_filename = NULL;
2802 char *bdref_key_dot;
2803 const char *reference = NULL;
2804 int ret = 0;
2805 bool implicit_backing = false;
2806 BlockDriverState *backing_hd;
2807 QDict *options;
2808 QDict *tmp_parent_options = NULL;
2809 Error *local_err = NULL;
2811 if (bs->backing != NULL) {
2812 goto free_exit;
2815 /* NULL means an empty set of options */
2816 if (parent_options == NULL) {
2817 tmp_parent_options = qdict_new();
2818 parent_options = tmp_parent_options;
2821 bs->open_flags &= ~BDRV_O_NO_BACKING;
2823 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2824 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2825 g_free(bdref_key_dot);
2828 * Caution: while qdict_get_try_str() is fine, getting non-string
2829 * types would require more care. When @parent_options come from
2830 * -blockdev or blockdev_add, its members are typed according to
2831 * the QAPI schema, but when they come from -drive, they're all
2832 * QString.
2834 reference = qdict_get_try_str(parent_options, bdref_key);
2835 if (reference || qdict_haskey(options, "file.filename")) {
2836 /* keep backing_filename NULL */
2837 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
2838 qobject_unref(options);
2839 goto free_exit;
2840 } else {
2841 if (qdict_size(options) == 0) {
2842 /* If the user specifies options that do not modify the
2843 * backing file's behavior, we might still consider it the
2844 * implicit backing file. But it's easier this way, and
2845 * just specifying some of the backing BDS's options is
2846 * only possible with -drive anyway (otherwise the QAPI
2847 * schema forces the user to specify everything). */
2848 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
2851 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
2852 if (local_err) {
2853 ret = -EINVAL;
2854 error_propagate(errp, local_err);
2855 qobject_unref(options);
2856 goto free_exit;
2860 if (!bs->drv || !bs->drv->supports_backing) {
2861 ret = -EINVAL;
2862 error_setg(errp, "Driver doesn't support backing files");
2863 qobject_unref(options);
2864 goto free_exit;
2867 if (!reference &&
2868 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
2869 qdict_put_str(options, "driver", bs->backing_format);
2872 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
2873 &child_backing, errp);
2874 if (!backing_hd) {
2875 bs->open_flags |= BDRV_O_NO_BACKING;
2876 error_prepend(errp, "Could not open backing file: ");
2877 ret = -EINVAL;
2878 goto free_exit;
2881 if (implicit_backing) {
2882 bdrv_refresh_filename(backing_hd);
2883 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
2884 backing_hd->filename);
2887 /* Hook up the backing file link; drop our reference, bs owns the
2888 * backing_hd reference now */
2889 bdrv_set_backing_hd(bs, backing_hd, &local_err);
2890 bdrv_unref(backing_hd);
2891 if (local_err) {
2892 error_propagate(errp, local_err);
2893 ret = -EINVAL;
2894 goto free_exit;
2897 qdict_del(parent_options, bdref_key);
2899 free_exit:
2900 g_free(backing_filename);
2901 qobject_unref(tmp_parent_options);
2902 return ret;
2905 static BlockDriverState *
2906 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
2907 BlockDriverState *parent, const BdrvChildRole *child_role,
2908 bool allow_none, Error **errp)
2910 BlockDriverState *bs = NULL;
2911 QDict *image_options;
2912 char *bdref_key_dot;
2913 const char *reference;
2915 assert(child_role != NULL);
2917 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2918 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2919 g_free(bdref_key_dot);
2922 * Caution: while qdict_get_try_str() is fine, getting non-string
2923 * types would require more care. When @options come from
2924 * -blockdev or blockdev_add, its members are typed according to
2925 * the QAPI schema, but when they come from -drive, they're all
2926 * QString.
2928 reference = qdict_get_try_str(options, bdref_key);
2929 if (!filename && !reference && !qdict_size(image_options)) {
2930 if (!allow_none) {
2931 error_setg(errp, "A block device must be specified for \"%s\"",
2932 bdref_key);
2934 qobject_unref(image_options);
2935 goto done;
2938 bs = bdrv_open_inherit(filename, reference, image_options, 0,
2939 parent, child_role, errp);
2940 if (!bs) {
2941 goto done;
2944 done:
2945 qdict_del(options, bdref_key);
2946 return bs;
2950 * Opens a disk image whose options are given as BlockdevRef in another block
2951 * device's options.
2953 * If allow_none is true, no image will be opened if filename is false and no
2954 * BlockdevRef is given. NULL will be returned, but errp remains unset.
2956 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
2957 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2958 * itself, all options starting with "${bdref_key}." are considered part of the
2959 * BlockdevRef.
2961 * The BlockdevRef will be removed from the options QDict.
2963 BdrvChild *bdrv_open_child(const char *filename,
2964 QDict *options, const char *bdref_key,
2965 BlockDriverState *parent,
2966 const BdrvChildRole *child_role,
2967 bool allow_none, Error **errp)
2969 BlockDriverState *bs;
2971 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
2972 allow_none, errp);
2973 if (bs == NULL) {
2974 return NULL;
2977 return bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
2980 /* TODO Future callers may need to specify parent/child_role in order for
2981 * option inheritance to work. Existing callers use it for the root node. */
2982 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2984 BlockDriverState *bs = NULL;
2985 Error *local_err = NULL;
2986 QObject *obj = NULL;
2987 QDict *qdict = NULL;
2988 const char *reference = NULL;
2989 Visitor *v = NULL;
2991 if (ref->type == QTYPE_QSTRING) {
2992 reference = ref->u.reference;
2993 } else {
2994 BlockdevOptions *options = &ref->u.definition;
2995 assert(ref->type == QTYPE_QDICT);
2997 v = qobject_output_visitor_new(&obj);
2998 visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2999 if (local_err) {
3000 error_propagate(errp, local_err);
3001 goto fail;
3003 visit_complete(v, &obj);
3005 qdict = qobject_to(QDict, obj);
3006 qdict_flatten(qdict);
3008 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3009 * compatibility with other callers) rather than what we want as the
3010 * real defaults. Apply the defaults here instead. */
3011 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3012 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3013 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
3014 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3018 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
3019 obj = NULL;
3021 fail:
3022 qobject_unref(obj);
3023 visit_free(v);
3024 return bs;
3027 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3028 int flags,
3029 QDict *snapshot_options,
3030 Error **errp)
3032 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
3033 char *tmp_filename = g_malloc0(PATH_MAX + 1);
3034 int64_t total_size;
3035 QemuOpts *opts = NULL;
3036 BlockDriverState *bs_snapshot = NULL;
3037 Error *local_err = NULL;
3038 int ret;
3040 /* if snapshot, we create a temporary backing file and open it
3041 instead of opening 'filename' directly */
3043 /* Get the required size from the image */
3044 total_size = bdrv_getlength(bs);
3045 if (total_size < 0) {
3046 error_setg_errno(errp, -total_size, "Could not get image size");
3047 goto out;
3050 /* Create the temporary image */
3051 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
3052 if (ret < 0) {
3053 error_setg_errno(errp, -ret, "Could not get temporary filename");
3054 goto out;
3057 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
3058 &error_abort);
3059 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
3060 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
3061 qemu_opts_del(opts);
3062 if (ret < 0) {
3063 error_prepend(errp, "Could not create temporary overlay '%s': ",
3064 tmp_filename);
3065 goto out;
3068 /* Prepare options QDict for the temporary file */
3069 qdict_put_str(snapshot_options, "file.driver", "file");
3070 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3071 qdict_put_str(snapshot_options, "driver", "qcow2");
3073 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
3074 snapshot_options = NULL;
3075 if (!bs_snapshot) {
3076 goto out;
3079 /* bdrv_append() consumes a strong reference to bs_snapshot
3080 * (i.e. it will call bdrv_unref() on it) even on error, so in
3081 * order to be able to return one, we have to increase
3082 * bs_snapshot's refcount here */
3083 bdrv_ref(bs_snapshot);
3084 bdrv_append(bs_snapshot, bs, &local_err);
3085 if (local_err) {
3086 error_propagate(errp, local_err);
3087 bs_snapshot = NULL;
3088 goto out;
3091 out:
3092 qobject_unref(snapshot_options);
3093 g_free(tmp_filename);
3094 return bs_snapshot;
3098 * Opens a disk image (raw, qcow2, vmdk, ...)
3100 * options is a QDict of options to pass to the block drivers, or NULL for an
3101 * empty set of options. The reference to the QDict belongs to the block layer
3102 * after the call (even on failure), so if the caller intends to reuse the
3103 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
3105 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3106 * If it is not NULL, the referenced BDS will be reused.
3108 * The reference parameter may be used to specify an existing block device which
3109 * should be opened. If specified, neither options nor a filename may be given,
3110 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
3112 static BlockDriverState *bdrv_open_inherit(const char *filename,
3113 const char *reference,
3114 QDict *options, int flags,
3115 BlockDriverState *parent,
3116 const BdrvChildRole *child_role,
3117 Error **errp)
3119 int ret;
3120 BlockBackend *file = NULL;
3121 BlockDriverState *bs;
3122 BlockDriver *drv = NULL;
3123 BdrvChild *child;
3124 const char *drvname;
3125 const char *backing;
3126 Error *local_err = NULL;
3127 QDict *snapshot_options = NULL;
3128 int snapshot_flags = 0;
3130 assert(!child_role || !flags);
3131 assert(!child_role == !parent);
3133 if (reference) {
3134 bool options_non_empty = options ? qdict_size(options) : false;
3135 qobject_unref(options);
3137 if (filename || options_non_empty) {
3138 error_setg(errp, "Cannot reference an existing block device with "
3139 "additional options or a new filename");
3140 return NULL;
3143 bs = bdrv_lookup_bs(reference, reference, errp);
3144 if (!bs) {
3145 return NULL;
3148 bdrv_ref(bs);
3149 return bs;
3152 bs = bdrv_new();
3154 /* NULL means an empty set of options */
3155 if (options == NULL) {
3156 options = qdict_new();
3159 /* json: syntax counts as explicit options, as if in the QDict */
3160 parse_json_protocol(options, &filename, &local_err);
3161 if (local_err) {
3162 goto fail;
3165 bs->explicit_options = qdict_clone_shallow(options);
3167 if (child_role) {
3168 bs->inherits_from = parent;
3169 child_role->inherit_options(&flags, options,
3170 parent->open_flags, parent->options);
3173 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
3174 if (local_err) {
3175 goto fail;
3179 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3180 * Caution: getting a boolean member of @options requires care.
3181 * When @options come from -blockdev or blockdev_add, members are
3182 * typed according to the QAPI schema, but when they come from
3183 * -drive, they're all QString.
3185 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3186 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3187 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3188 } else {
3189 flags &= ~BDRV_O_RDWR;
3192 if (flags & BDRV_O_SNAPSHOT) {
3193 snapshot_options = qdict_new();
3194 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3195 flags, options);
3196 /* Let bdrv_backing_options() override "read-only" */
3197 qdict_del(options, BDRV_OPT_READ_ONLY);
3198 bdrv_backing_options(&flags, options, flags, options);
3201 bs->open_flags = flags;
3202 bs->options = options;
3203 options = qdict_clone_shallow(options);
3205 /* Find the right image format driver */
3206 /* See cautionary note on accessing @options above */
3207 drvname = qdict_get_try_str(options, "driver");
3208 if (drvname) {
3209 drv = bdrv_find_format(drvname);
3210 if (!drv) {
3211 error_setg(errp, "Unknown driver: '%s'", drvname);
3212 goto fail;
3216 assert(drvname || !(flags & BDRV_O_PROTOCOL));
3218 /* See cautionary note on accessing @options above */
3219 backing = qdict_get_try_str(options, "backing");
3220 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3221 (backing && *backing == '\0'))
3223 if (backing) {
3224 warn_report("Use of \"backing\": \"\" is deprecated; "
3225 "use \"backing\": null instead");
3227 flags |= BDRV_O_NO_BACKING;
3228 qdict_del(bs->explicit_options, "backing");
3229 qdict_del(bs->options, "backing");
3230 qdict_del(options, "backing");
3233 /* Open image file without format layer. This BlockBackend is only used for
3234 * probing, the block drivers will do their own bdrv_open_child() for the
3235 * same BDS, which is why we put the node name back into options. */
3236 if ((flags & BDRV_O_PROTOCOL) == 0) {
3237 BlockDriverState *file_bs;
3239 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
3240 &child_file, true, &local_err);
3241 if (local_err) {
3242 goto fail;
3244 if (file_bs != NULL) {
3245 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3246 * looking at the header to guess the image format. This works even
3247 * in cases where a guest would not see a consistent state. */
3248 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
3249 blk_insert_bs(file, file_bs, &local_err);
3250 bdrv_unref(file_bs);
3251 if (local_err) {
3252 goto fail;
3255 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
3259 /* Image format probing */
3260 bs->probed = !drv;
3261 if (!drv && file) {
3262 ret = find_image_format(file, filename, &drv, &local_err);
3263 if (ret < 0) {
3264 goto fail;
3267 * This option update would logically belong in bdrv_fill_options(),
3268 * but we first need to open bs->file for the probing to work, while
3269 * opening bs->file already requires the (mostly) final set of options
3270 * so that cache mode etc. can be inherited.
3272 * Adding the driver later is somewhat ugly, but it's not an option
3273 * that would ever be inherited, so it's correct. We just need to make
3274 * sure to update both bs->options (which has the full effective
3275 * options for bs) and options (which has file.* already removed).
3277 qdict_put_str(bs->options, "driver", drv->format_name);
3278 qdict_put_str(options, "driver", drv->format_name);
3279 } else if (!drv) {
3280 error_setg(errp, "Must specify either driver or file");
3281 goto fail;
3284 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3285 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3286 /* file must be NULL if a protocol BDS is about to be created
3287 * (the inverse results in an error message from bdrv_open_common()) */
3288 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3290 /* Open the image */
3291 ret = bdrv_open_common(bs, file, options, &local_err);
3292 if (ret < 0) {
3293 goto fail;
3296 if (file) {
3297 blk_unref(file);
3298 file = NULL;
3301 /* If there is a backing file, use it */
3302 if ((flags & BDRV_O_NO_BACKING) == 0) {
3303 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
3304 if (ret < 0) {
3305 goto close_and_fail;
3309 /* Remove all children options and references
3310 * from bs->options and bs->explicit_options */
3311 QLIST_FOREACH(child, &bs->children, next) {
3312 char *child_key_dot;
3313 child_key_dot = g_strdup_printf("%s.", child->name);
3314 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3315 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
3316 qdict_del(bs->explicit_options, child->name);
3317 qdict_del(bs->options, child->name);
3318 g_free(child_key_dot);
3321 /* Check if any unknown options were used */
3322 if (qdict_size(options) != 0) {
3323 const QDictEntry *entry = qdict_first(options);
3324 if (flags & BDRV_O_PROTOCOL) {
3325 error_setg(errp, "Block protocol '%s' doesn't support the option "
3326 "'%s'", drv->format_name, entry->key);
3327 } else {
3328 error_setg(errp,
3329 "Block format '%s' does not support the option '%s'",
3330 drv->format_name, entry->key);
3333 goto close_and_fail;
3336 bdrv_parent_cb_change_media(bs, true);
3338 qobject_unref(options);
3339 options = NULL;
3341 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3342 * temporary snapshot afterwards. */
3343 if (snapshot_flags) {
3344 BlockDriverState *snapshot_bs;
3345 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3346 snapshot_options, &local_err);
3347 snapshot_options = NULL;
3348 if (local_err) {
3349 goto close_and_fail;
3351 /* We are not going to return bs but the overlay on top of it
3352 * (snapshot_bs); thus, we have to drop the strong reference to bs
3353 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3354 * though, because the overlay still has a reference to it. */
3355 bdrv_unref(bs);
3356 bs = snapshot_bs;
3359 return bs;
3361 fail:
3362 blk_unref(file);
3363 qobject_unref(snapshot_options);
3364 qobject_unref(bs->explicit_options);
3365 qobject_unref(bs->options);
3366 qobject_unref(options);
3367 bs->options = NULL;
3368 bs->explicit_options = NULL;
3369 bdrv_unref(bs);
3370 error_propagate(errp, local_err);
3371 return NULL;
3373 close_and_fail:
3374 bdrv_unref(bs);
3375 qobject_unref(snapshot_options);
3376 qobject_unref(options);
3377 error_propagate(errp, local_err);
3378 return NULL;
3381 BlockDriverState *bdrv_open(const char *filename, const char *reference,
3382 QDict *options, int flags, Error **errp)
3384 return bdrv_open_inherit(filename, reference, options, flags, NULL,
3385 NULL, errp);
3388 /* Return true if the NULL-terminated @list contains @str */
3389 static bool is_str_in_list(const char *str, const char *const *list)
3391 if (str && list) {
3392 int i;
3393 for (i = 0; list[i] != NULL; i++) {
3394 if (!strcmp(str, list[i])) {
3395 return true;
3399 return false;
3403 * Check that every option set in @bs->options is also set in
3404 * @new_opts.
3406 * Options listed in the common_options list and in
3407 * @bs->drv->mutable_opts are skipped.
3409 * Return 0 on success, otherwise return -EINVAL and set @errp.
3411 static int bdrv_reset_options_allowed(BlockDriverState *bs,
3412 const QDict *new_opts, Error **errp)
3414 const QDictEntry *e;
3415 /* These options are common to all block drivers and are handled
3416 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3417 const char *const common_options[] = {
3418 "node-name", "discard", "cache.direct", "cache.no-flush",
3419 "read-only", "auto-read-only", "detect-zeroes", NULL
3422 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
3423 if (!qdict_haskey(new_opts, e->key) &&
3424 !is_str_in_list(e->key, common_options) &&
3425 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
3426 error_setg(errp, "Option '%s' cannot be reset "
3427 "to its default value", e->key);
3428 return -EINVAL;
3432 return 0;
3436 * Returns true if @child can be reached recursively from @bs
3438 static bool bdrv_recurse_has_child(BlockDriverState *bs,
3439 BlockDriverState *child)
3441 BdrvChild *c;
3443 if (bs == child) {
3444 return true;
3447 QLIST_FOREACH(c, &bs->children, next) {
3448 if (bdrv_recurse_has_child(c->bs, child)) {
3449 return true;
3453 return false;
3457 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3458 * reopen of multiple devices.
3460 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
3461 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3462 * be created and initialized. This newly created BlockReopenQueue should be
3463 * passed back in for subsequent calls that are intended to be of the same
3464 * atomic 'set'.
3466 * bs is the BlockDriverState to add to the reopen queue.
3468 * options contains the changed options for the associated bs
3469 * (the BlockReopenQueue takes ownership)
3471 * flags contains the open flags for the associated bs
3473 * returns a pointer to bs_queue, which is either the newly allocated
3474 * bs_queue, or the existing bs_queue being used.
3476 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
3478 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
3479 BlockDriverState *bs,
3480 QDict *options,
3481 const BdrvChildRole *role,
3482 QDict *parent_options,
3483 int parent_flags,
3484 bool keep_old_opts)
3486 assert(bs != NULL);
3488 BlockReopenQueueEntry *bs_entry;
3489 BdrvChild *child;
3490 QDict *old_options, *explicit_options, *options_copy;
3491 int flags;
3492 QemuOpts *opts;
3494 /* Make sure that the caller remembered to use a drained section. This is
3495 * important to avoid graph changes between the recursive queuing here and
3496 * bdrv_reopen_multiple(). */
3497 assert(bs->quiesce_counter > 0);
3499 if (bs_queue == NULL) {
3500 bs_queue = g_new0(BlockReopenQueue, 1);
3501 QTAILQ_INIT(bs_queue);
3504 if (!options) {
3505 options = qdict_new();
3508 /* Check if this BlockDriverState is already in the queue */
3509 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
3510 if (bs == bs_entry->state.bs) {
3511 break;
3516 * Precedence of options:
3517 * 1. Explicitly passed in options (highest)
3518 * 2. Retained from explicitly set options of bs
3519 * 3. Inherited from parent node
3520 * 4. Retained from effective options of bs
3523 /* Old explicitly set values (don't overwrite by inherited value) */
3524 if (bs_entry || keep_old_opts) {
3525 old_options = qdict_clone_shallow(bs_entry ?
3526 bs_entry->state.explicit_options :
3527 bs->explicit_options);
3528 bdrv_join_options(bs, options, old_options);
3529 qobject_unref(old_options);
3532 explicit_options = qdict_clone_shallow(options);
3534 /* Inherit from parent node */
3535 if (parent_options) {
3536 flags = 0;
3537 role->inherit_options(&flags, options, parent_flags, parent_options);
3538 } else {
3539 flags = bdrv_get_flags(bs);
3542 if (keep_old_opts) {
3543 /* Old values are used for options that aren't set yet */
3544 old_options = qdict_clone_shallow(bs->options);
3545 bdrv_join_options(bs, options, old_options);
3546 qobject_unref(old_options);
3549 /* We have the final set of options so let's update the flags */
3550 options_copy = qdict_clone_shallow(options);
3551 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3552 qemu_opts_absorb_qdict(opts, options_copy, NULL);
3553 update_flags_from_options(&flags, opts);
3554 qemu_opts_del(opts);
3555 qobject_unref(options_copy);
3557 /* bdrv_open_inherit() sets and clears some additional flags internally */
3558 flags &= ~BDRV_O_PROTOCOL;
3559 if (flags & BDRV_O_RDWR) {
3560 flags |= BDRV_O_ALLOW_RDWR;
3563 if (!bs_entry) {
3564 bs_entry = g_new0(BlockReopenQueueEntry, 1);
3565 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
3566 } else {
3567 qobject_unref(bs_entry->state.options);
3568 qobject_unref(bs_entry->state.explicit_options);
3571 bs_entry->state.bs = bs;
3572 bs_entry->state.options = options;
3573 bs_entry->state.explicit_options = explicit_options;
3574 bs_entry->state.flags = flags;
3576 /* This needs to be overwritten in bdrv_reopen_prepare() */
3577 bs_entry->state.perm = UINT64_MAX;
3578 bs_entry->state.shared_perm = 0;
3581 * If keep_old_opts is false then it means that unspecified
3582 * options must be reset to their original value. We don't allow
3583 * resetting 'backing' but we need to know if the option is
3584 * missing in order to decide if we have to return an error.
3586 if (!keep_old_opts) {
3587 bs_entry->state.backing_missing =
3588 !qdict_haskey(options, "backing") &&
3589 !qdict_haskey(options, "backing.driver");
3592 QLIST_FOREACH(child, &bs->children, next) {
3593 QDict *new_child_options = NULL;
3594 bool child_keep_old = keep_old_opts;
3596 /* reopen can only change the options of block devices that were
3597 * implicitly created and inherited options. For other (referenced)
3598 * block devices, a syntax like "backing.foo" results in an error. */
3599 if (child->bs->inherits_from != bs) {
3600 continue;
3603 /* Check if the options contain a child reference */
3604 if (qdict_haskey(options, child->name)) {
3605 const char *childref = qdict_get_try_str(options, child->name);
3607 * The current child must not be reopened if the child
3608 * reference is null or points to a different node.
3610 if (g_strcmp0(childref, child->bs->node_name)) {
3611 continue;
3614 * If the child reference points to the current child then
3615 * reopen it with its existing set of options (note that
3616 * it can still inherit new options from the parent).
3618 child_keep_old = true;
3619 } else {
3620 /* Extract child options ("child-name.*") */
3621 char *child_key_dot = g_strdup_printf("%s.", child->name);
3622 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
3623 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
3624 g_free(child_key_dot);
3627 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
3628 child->role, options, flags, child_keep_old);
3631 return bs_queue;
3634 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
3635 BlockDriverState *bs,
3636 QDict *options, bool keep_old_opts)
3638 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, NULL, 0,
3639 keep_old_opts);
3643 * Reopen multiple BlockDriverStates atomically & transactionally.
3645 * The queue passed in (bs_queue) must have been built up previous
3646 * via bdrv_reopen_queue().
3648 * Reopens all BDS specified in the queue, with the appropriate
3649 * flags. All devices are prepared for reopen, and failure of any
3650 * device will cause all device changes to be abandoned, and intermediate
3651 * data cleaned up.
3653 * If all devices prepare successfully, then the changes are committed
3654 * to all devices.
3656 * All affected nodes must be drained between bdrv_reopen_queue() and
3657 * bdrv_reopen_multiple().
3659 int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
3661 int ret = -1;
3662 BlockReopenQueueEntry *bs_entry, *next;
3664 assert(bs_queue != NULL);
3666 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
3667 assert(bs_entry->state.bs->quiesce_counter > 0);
3668 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, errp)) {
3669 goto cleanup;
3671 bs_entry->prepared = true;
3674 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
3675 BDRVReopenState *state = &bs_entry->state;
3676 ret = bdrv_check_perm(state->bs, bs_queue, state->perm,
3677 state->shared_perm, NULL, NULL, errp);
3678 if (ret < 0) {
3679 goto cleanup_perm;
3681 /* Check if new_backing_bs would accept the new permissions */
3682 if (state->replace_backing_bs && state->new_backing_bs) {
3683 uint64_t nperm, nshared;
3684 bdrv_child_perm(state->bs, state->new_backing_bs,
3685 NULL, &child_backing, bs_queue,
3686 state->perm, state->shared_perm,
3687 &nperm, &nshared);
3688 ret = bdrv_check_update_perm(state->new_backing_bs, NULL,
3689 nperm, nshared, NULL, NULL, errp);
3690 if (ret < 0) {
3691 goto cleanup_perm;
3694 bs_entry->perms_checked = true;
3698 * If we reach this point, we have success and just need to apply the
3699 * changes.
3701 * Reverse order is used to comfort qcow2 driver: on commit it need to write
3702 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
3703 * children are usually goes after parents in reopen-queue, so go from last
3704 * to first element.
3706 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
3707 bdrv_reopen_commit(&bs_entry->state);
3710 ret = 0;
3711 cleanup_perm:
3712 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3713 BDRVReopenState *state = &bs_entry->state;
3715 if (!bs_entry->perms_checked) {
3716 continue;
3719 if (ret == 0) {
3720 bdrv_set_perm(state->bs, state->perm, state->shared_perm);
3721 } else {
3722 bdrv_abort_perm_update(state->bs);
3723 if (state->replace_backing_bs && state->new_backing_bs) {
3724 bdrv_abort_perm_update(state->new_backing_bs);
3729 if (ret == 0) {
3730 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
3731 BlockDriverState *bs = bs_entry->state.bs;
3733 if (bs->drv->bdrv_reopen_commit_post)
3734 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
3737 cleanup:
3738 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3739 if (ret) {
3740 if (bs_entry->prepared) {
3741 bdrv_reopen_abort(&bs_entry->state);
3743 qobject_unref(bs_entry->state.explicit_options);
3744 qobject_unref(bs_entry->state.options);
3746 if (bs_entry->state.new_backing_bs) {
3747 bdrv_unref(bs_entry->state.new_backing_bs);
3749 g_free(bs_entry);
3751 g_free(bs_queue);
3753 return ret;
3756 int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
3757 Error **errp)
3759 int ret;
3760 BlockReopenQueue *queue;
3761 QDict *opts = qdict_new();
3763 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
3765 bdrv_subtree_drained_begin(bs);
3766 queue = bdrv_reopen_queue(NULL, bs, opts, true);
3767 ret = bdrv_reopen_multiple(queue, errp);
3768 bdrv_subtree_drained_end(bs);
3770 return ret;
3773 static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3774 BdrvChild *c)
3776 BlockReopenQueueEntry *entry;
3778 QTAILQ_FOREACH(entry, q, entry) {
3779 BlockDriverState *bs = entry->state.bs;
3780 BdrvChild *child;
3782 QLIST_FOREACH(child, &bs->children, next) {
3783 if (child == c) {
3784 return entry;
3789 return NULL;
3792 static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3793 uint64_t *perm, uint64_t *shared)
3795 BdrvChild *c;
3796 BlockReopenQueueEntry *parent;
3797 uint64_t cumulative_perms = 0;
3798 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3800 QLIST_FOREACH(c, &bs->parents, next_parent) {
3801 parent = find_parent_in_reopen_queue(q, c);
3802 if (!parent) {
3803 cumulative_perms |= c->perm;
3804 cumulative_shared_perms &= c->shared_perm;
3805 } else {
3806 uint64_t nperm, nshared;
3808 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
3809 parent->state.perm, parent->state.shared_perm,
3810 &nperm, &nshared);
3812 cumulative_perms |= nperm;
3813 cumulative_shared_perms &= nshared;
3816 *perm = cumulative_perms;
3817 *shared = cumulative_shared_perms;
3820 static bool bdrv_reopen_can_attach(BlockDriverState *parent,
3821 BdrvChild *child,
3822 BlockDriverState *new_child,
3823 Error **errp)
3825 AioContext *parent_ctx = bdrv_get_aio_context(parent);
3826 AioContext *child_ctx = bdrv_get_aio_context(new_child);
3827 GSList *ignore;
3828 bool ret;
3830 ignore = g_slist_prepend(NULL, child);
3831 ret = bdrv_can_set_aio_context(new_child, parent_ctx, &ignore, NULL);
3832 g_slist_free(ignore);
3833 if (ret) {
3834 return ret;
3837 ignore = g_slist_prepend(NULL, child);
3838 ret = bdrv_can_set_aio_context(parent, child_ctx, &ignore, errp);
3839 g_slist_free(ignore);
3840 return ret;
3844 * Take a BDRVReopenState and check if the value of 'backing' in the
3845 * reopen_state->options QDict is valid or not.
3847 * If 'backing' is missing from the QDict then return 0.
3849 * If 'backing' contains the node name of the backing file of
3850 * reopen_state->bs then return 0.
3852 * If 'backing' contains a different node name (or is null) then check
3853 * whether the current backing file can be replaced with the new one.
3854 * If that's the case then reopen_state->replace_backing_bs is set to
3855 * true and reopen_state->new_backing_bs contains a pointer to the new
3856 * backing BlockDriverState (or NULL).
3858 * Return 0 on success, otherwise return < 0 and set @errp.
3860 static int bdrv_reopen_parse_backing(BDRVReopenState *reopen_state,
3861 Error **errp)
3863 BlockDriverState *bs = reopen_state->bs;
3864 BlockDriverState *overlay_bs, *new_backing_bs;
3865 QObject *value;
3866 const char *str;
3868 value = qdict_get(reopen_state->options, "backing");
3869 if (value == NULL) {
3870 return 0;
3873 switch (qobject_type(value)) {
3874 case QTYPE_QNULL:
3875 new_backing_bs = NULL;
3876 break;
3877 case QTYPE_QSTRING:
3878 str = qobject_get_try_str(value);
3879 new_backing_bs = bdrv_lookup_bs(NULL, str, errp);
3880 if (new_backing_bs == NULL) {
3881 return -EINVAL;
3882 } else if (bdrv_recurse_has_child(new_backing_bs, bs)) {
3883 error_setg(errp, "Making '%s' a backing file of '%s' "
3884 "would create a cycle", str, bs->node_name);
3885 return -EINVAL;
3887 break;
3888 default:
3889 /* 'backing' does not allow any other data type */
3890 g_assert_not_reached();
3894 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
3895 * bdrv_reopen_commit() won't fail.
3897 if (new_backing_bs) {
3898 if (!bdrv_reopen_can_attach(bs, bs->backing, new_backing_bs, errp)) {
3899 return -EINVAL;
3904 * Find the "actual" backing file by skipping all links that point
3905 * to an implicit node, if any (e.g. a commit filter node).
3907 overlay_bs = bs;
3908 while (backing_bs(overlay_bs) && backing_bs(overlay_bs)->implicit) {
3909 overlay_bs = backing_bs(overlay_bs);
3912 /* If we want to replace the backing file we need some extra checks */
3913 if (new_backing_bs != backing_bs(overlay_bs)) {
3914 /* Check for implicit nodes between bs and its backing file */
3915 if (bs != overlay_bs) {
3916 error_setg(errp, "Cannot change backing link if '%s' has "
3917 "an implicit backing file", bs->node_name);
3918 return -EPERM;
3920 /* Check if the backing link that we want to replace is frozen */
3921 if (bdrv_is_backing_chain_frozen(overlay_bs, backing_bs(overlay_bs),
3922 errp)) {
3923 return -EPERM;
3925 reopen_state->replace_backing_bs = true;
3926 if (new_backing_bs) {
3927 bdrv_ref(new_backing_bs);
3928 reopen_state->new_backing_bs = new_backing_bs;
3932 return 0;
3936 * Prepares a BlockDriverState for reopen. All changes are staged in the
3937 * 'opaque' field of the BDRVReopenState, which is used and allocated by
3938 * the block driver layer .bdrv_reopen_prepare()
3940 * bs is the BlockDriverState to reopen
3941 * flags are the new open flags
3942 * queue is the reopen queue
3944 * Returns 0 on success, non-zero on error. On error errp will be set
3945 * as well.
3947 * On failure, bdrv_reopen_abort() will be called to clean up any data.
3948 * It is the responsibility of the caller to then call the abort() or
3949 * commit() for any other BDS that have been left in a prepare() state
3952 int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3953 Error **errp)
3955 int ret = -1;
3956 int old_flags;
3957 Error *local_err = NULL;
3958 BlockDriver *drv;
3959 QemuOpts *opts;
3960 QDict *orig_reopen_opts;
3961 char *discard = NULL;
3962 bool read_only;
3963 bool drv_prepared = false;
3965 assert(reopen_state != NULL);
3966 assert(reopen_state->bs->drv != NULL);
3967 drv = reopen_state->bs->drv;
3969 /* This function and each driver's bdrv_reopen_prepare() remove
3970 * entries from reopen_state->options as they are processed, so
3971 * we need to make a copy of the original QDict. */
3972 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
3974 /* Process generic block layer options */
3975 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3976 qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3977 if (local_err) {
3978 error_propagate(errp, local_err);
3979 ret = -EINVAL;
3980 goto error;
3983 /* This was already called in bdrv_reopen_queue_child() so the flags
3984 * are up-to-date. This time we simply want to remove the options from
3985 * QemuOpts in order to indicate that they have been processed. */
3986 old_flags = reopen_state->flags;
3987 update_flags_from_options(&reopen_state->flags, opts);
3988 assert(old_flags == reopen_state->flags);
3990 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
3991 if (discard != NULL) {
3992 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
3993 error_setg(errp, "Invalid discard option");
3994 ret = -EINVAL;
3995 goto error;
3999 reopen_state->detect_zeroes =
4000 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4001 if (local_err) {
4002 error_propagate(errp, local_err);
4003 ret = -EINVAL;
4004 goto error;
4007 /* All other options (including node-name and driver) must be unchanged.
4008 * Put them back into the QDict, so that they are checked at the end
4009 * of this function. */
4010 qemu_opts_to_qdict(opts, reopen_state->options);
4012 /* If we are to stay read-only, do not allow permission change
4013 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4014 * not set, or if the BDS still has copy_on_read enabled */
4015 read_only = !(reopen_state->flags & BDRV_O_RDWR);
4016 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
4017 if (local_err) {
4018 error_propagate(errp, local_err);
4019 goto error;
4022 /* Calculate required permissions after reopening */
4023 bdrv_reopen_perm(queue, reopen_state->bs,
4024 &reopen_state->perm, &reopen_state->shared_perm);
4026 ret = bdrv_flush(reopen_state->bs);
4027 if (ret) {
4028 error_setg_errno(errp, -ret, "Error flushing drive");
4029 goto error;
4032 if (drv->bdrv_reopen_prepare) {
4034 * If a driver-specific option is missing, it means that we
4035 * should reset it to its default value.
4036 * But not all options allow that, so we need to check it first.
4038 ret = bdrv_reset_options_allowed(reopen_state->bs,
4039 reopen_state->options, errp);
4040 if (ret) {
4041 goto error;
4044 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4045 if (ret) {
4046 if (local_err != NULL) {
4047 error_propagate(errp, local_err);
4048 } else {
4049 bdrv_refresh_filename(reopen_state->bs);
4050 error_setg(errp, "failed while preparing to reopen image '%s'",
4051 reopen_state->bs->filename);
4053 goto error;
4055 } else {
4056 /* It is currently mandatory to have a bdrv_reopen_prepare()
4057 * handler for each supported drv. */
4058 error_setg(errp, "Block format '%s' used by node '%s' "
4059 "does not support reopening files", drv->format_name,
4060 bdrv_get_device_or_node_name(reopen_state->bs));
4061 ret = -1;
4062 goto error;
4065 drv_prepared = true;
4068 * We must provide the 'backing' option if the BDS has a backing
4069 * file or if the image file has a backing file name as part of
4070 * its metadata. Otherwise the 'backing' option can be omitted.
4072 if (drv->supports_backing && reopen_state->backing_missing &&
4073 (backing_bs(reopen_state->bs) || reopen_state->bs->backing_file[0])) {
4074 error_setg(errp, "backing is missing for '%s'",
4075 reopen_state->bs->node_name);
4076 ret = -EINVAL;
4077 goto error;
4081 * Allow changing the 'backing' option. The new value can be
4082 * either a reference to an existing node (using its node name)
4083 * or NULL to simply detach the current backing file.
4085 ret = bdrv_reopen_parse_backing(reopen_state, errp);
4086 if (ret < 0) {
4087 goto error;
4089 qdict_del(reopen_state->options, "backing");
4091 /* Options that are not handled are only okay if they are unchanged
4092 * compared to the old state. It is expected that some options are only
4093 * used for the initial open, but not reopen (e.g. filename) */
4094 if (qdict_size(reopen_state->options)) {
4095 const QDictEntry *entry = qdict_first(reopen_state->options);
4097 do {
4098 QObject *new = entry->value;
4099 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
4101 /* Allow child references (child_name=node_name) as long as they
4102 * point to the current child (i.e. everything stays the same). */
4103 if (qobject_type(new) == QTYPE_QSTRING) {
4104 BdrvChild *child;
4105 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4106 if (!strcmp(child->name, entry->key)) {
4107 break;
4111 if (child) {
4112 const char *str = qobject_get_try_str(new);
4113 if (!strcmp(child->bs->node_name, str)) {
4114 continue; /* Found child with this name, skip option */
4120 * TODO: When using -drive to specify blockdev options, all values
4121 * will be strings; however, when using -blockdev, blockdev-add or
4122 * filenames using the json:{} pseudo-protocol, they will be
4123 * correctly typed.
4124 * In contrast, reopening options are (currently) always strings
4125 * (because you can only specify them through qemu-io; all other
4126 * callers do not specify any options).
4127 * Therefore, when using anything other than -drive to create a BDS,
4128 * this cannot detect non-string options as unchanged, because
4129 * qobject_is_equal() always returns false for objects of different
4130 * type. In the future, this should be remedied by correctly typing
4131 * all options. For now, this is not too big of an issue because
4132 * the user can simply omit options which cannot be changed anyway,
4133 * so they will stay unchanged.
4135 if (!qobject_is_equal(new, old)) {
4136 error_setg(errp, "Cannot change the option '%s'", entry->key);
4137 ret = -EINVAL;
4138 goto error;
4140 } while ((entry = qdict_next(reopen_state->options, entry)));
4143 ret = 0;
4145 /* Restore the original reopen_state->options QDict */
4146 qobject_unref(reopen_state->options);
4147 reopen_state->options = qobject_ref(orig_reopen_opts);
4149 error:
4150 if (ret < 0 && drv_prepared) {
4151 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4152 * call drv->bdrv_reopen_abort() before signaling an error
4153 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4154 * when the respective bdrv_reopen_prepare() has failed) */
4155 if (drv->bdrv_reopen_abort) {
4156 drv->bdrv_reopen_abort(reopen_state);
4159 qemu_opts_del(opts);
4160 qobject_unref(orig_reopen_opts);
4161 g_free(discard);
4162 return ret;
4166 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4167 * makes them final by swapping the staging BlockDriverState contents into
4168 * the active BlockDriverState contents.
4170 void bdrv_reopen_commit(BDRVReopenState *reopen_state)
4172 BlockDriver *drv;
4173 BlockDriverState *bs;
4174 BdrvChild *child;
4176 assert(reopen_state != NULL);
4177 bs = reopen_state->bs;
4178 drv = bs->drv;
4179 assert(drv != NULL);
4181 /* If there are any driver level actions to take */
4182 if (drv->bdrv_reopen_commit) {
4183 drv->bdrv_reopen_commit(reopen_state);
4186 /* set BDS specific flags now */
4187 qobject_unref(bs->explicit_options);
4188 qobject_unref(bs->options);
4190 bs->explicit_options = reopen_state->explicit_options;
4191 bs->options = reopen_state->options;
4192 bs->open_flags = reopen_state->flags;
4193 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
4194 bs->detect_zeroes = reopen_state->detect_zeroes;
4196 if (reopen_state->replace_backing_bs) {
4197 qdict_del(bs->explicit_options, "backing");
4198 qdict_del(bs->options, "backing");
4201 /* Remove child references from bs->options and bs->explicit_options.
4202 * Child options were already removed in bdrv_reopen_queue_child() */
4203 QLIST_FOREACH(child, &bs->children, next) {
4204 qdict_del(bs->explicit_options, child->name);
4205 qdict_del(bs->options, child->name);
4209 * Change the backing file if a new one was specified. We do this
4210 * after updating bs->options, so bdrv_refresh_filename() (called
4211 * from bdrv_set_backing_hd()) has the new values.
4213 if (reopen_state->replace_backing_bs) {
4214 BlockDriverState *old_backing_bs = backing_bs(bs);
4215 assert(!old_backing_bs || !old_backing_bs->implicit);
4216 /* Abort the permission update on the backing bs we're detaching */
4217 if (old_backing_bs) {
4218 bdrv_abort_perm_update(old_backing_bs);
4220 bdrv_set_backing_hd(bs, reopen_state->new_backing_bs, &error_abort);
4223 bdrv_refresh_limits(bs, NULL);
4227 * Abort the reopen, and delete and free the staged changes in
4228 * reopen_state
4230 void bdrv_reopen_abort(BDRVReopenState *reopen_state)
4232 BlockDriver *drv;
4234 assert(reopen_state != NULL);
4235 drv = reopen_state->bs->drv;
4236 assert(drv != NULL);
4238 if (drv->bdrv_reopen_abort) {
4239 drv->bdrv_reopen_abort(reopen_state);
4244 static void bdrv_close(BlockDriverState *bs)
4246 BdrvAioNotifier *ban, *ban_next;
4247 BdrvChild *child, *next;
4249 assert(!bs->refcnt);
4251 bdrv_drained_begin(bs); /* complete I/O */
4252 bdrv_flush(bs);
4253 bdrv_drain(bs); /* in case flush left pending I/O */
4255 if (bs->drv) {
4256 if (bs->drv->bdrv_close) {
4257 bs->drv->bdrv_close(bs);
4259 bs->drv = NULL;
4262 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
4263 bdrv_unref_child(bs, child);
4266 bs->backing = NULL;
4267 bs->file = NULL;
4268 g_free(bs->opaque);
4269 bs->opaque = NULL;
4270 atomic_set(&bs->copy_on_read, 0);
4271 bs->backing_file[0] = '\0';
4272 bs->backing_format[0] = '\0';
4273 bs->total_sectors = 0;
4274 bs->encrypted = false;
4275 bs->sg = false;
4276 qobject_unref(bs->options);
4277 qobject_unref(bs->explicit_options);
4278 bs->options = NULL;
4279 bs->explicit_options = NULL;
4280 qobject_unref(bs->full_open_options);
4281 bs->full_open_options = NULL;
4283 bdrv_release_named_dirty_bitmaps(bs);
4284 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4286 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4287 g_free(ban);
4289 QLIST_INIT(&bs->aio_notifiers);
4290 bdrv_drained_end(bs);
4293 void bdrv_close_all(void)
4295 assert(job_next(NULL) == NULL);
4296 nbd_export_close_all();
4298 /* Drop references from requests still in flight, such as canceled block
4299 * jobs whose AIO context has not been polled yet */
4300 bdrv_drain_all();
4302 blk_remove_all_bs();
4303 blockdev_close_all_bdrv_states();
4305 assert(QTAILQ_EMPTY(&all_bdrv_states));
4308 static bool should_update_child(BdrvChild *c, BlockDriverState *to)
4310 GQueue *queue;
4311 GHashTable *found;
4312 bool ret;
4314 if (c->role->stay_at_node) {
4315 return false;
4318 /* If the child @c belongs to the BDS @to, replacing the current
4319 * c->bs by @to would mean to create a loop.
4321 * Such a case occurs when appending a BDS to a backing chain.
4322 * For instance, imagine the following chain:
4324 * guest device -> node A -> further backing chain...
4326 * Now we create a new BDS B which we want to put on top of this
4327 * chain, so we first attach A as its backing node:
4329 * node B
4332 * guest device -> node A -> further backing chain...
4334 * Finally we want to replace A by B. When doing that, we want to
4335 * replace all pointers to A by pointers to B -- except for the
4336 * pointer from B because (1) that would create a loop, and (2)
4337 * that pointer should simply stay intact:
4339 * guest device -> node B
4342 * node A -> further backing chain...
4344 * In general, when replacing a node A (c->bs) by a node B (@to),
4345 * if A is a child of B, that means we cannot replace A by B there
4346 * because that would create a loop. Silently detaching A from B
4347 * is also not really an option. So overall just leaving A in
4348 * place there is the most sensible choice.
4350 * We would also create a loop in any cases where @c is only
4351 * indirectly referenced by @to. Prevent this by returning false
4352 * if @c is found (by breadth-first search) anywhere in the whole
4353 * subtree of @to.
4356 ret = true;
4357 found = g_hash_table_new(NULL, NULL);
4358 g_hash_table_add(found, to);
4359 queue = g_queue_new();
4360 g_queue_push_tail(queue, to);
4362 while (!g_queue_is_empty(queue)) {
4363 BlockDriverState *v = g_queue_pop_head(queue);
4364 BdrvChild *c2;
4366 QLIST_FOREACH(c2, &v->children, next) {
4367 if (c2 == c) {
4368 ret = false;
4369 break;
4372 if (g_hash_table_contains(found, c2->bs)) {
4373 continue;
4376 g_queue_push_tail(queue, c2->bs);
4377 g_hash_table_add(found, c2->bs);
4381 g_queue_free(queue);
4382 g_hash_table_destroy(found);
4384 return ret;
4387 void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
4388 Error **errp)
4390 BdrvChild *c, *next;
4391 GSList *list = NULL, *p;
4392 uint64_t perm = 0, shared = BLK_PERM_ALL;
4393 int ret;
4395 /* Make sure that @from doesn't go away until we have successfully attached
4396 * all of its parents to @to. */
4397 bdrv_ref(from);
4399 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
4400 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
4401 bdrv_drained_begin(from);
4403 /* Put all parents into @list and calculate their cumulative permissions */
4404 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
4405 assert(c->bs == from);
4406 if (!should_update_child(c, to)) {
4407 continue;
4409 if (c->frozen) {
4410 error_setg(errp, "Cannot change '%s' link to '%s'",
4411 c->name, from->node_name);
4412 goto out;
4414 list = g_slist_prepend(list, c);
4415 perm |= c->perm;
4416 shared &= c->shared_perm;
4419 /* Check whether the required permissions can be granted on @to, ignoring
4420 * all BdrvChild in @list so that they can't block themselves. */
4421 ret = bdrv_check_update_perm(to, NULL, perm, shared, list, NULL, errp);
4422 if (ret < 0) {
4423 bdrv_abort_perm_update(to);
4424 goto out;
4427 /* Now actually perform the change. We performed the permission check for
4428 * all elements of @list at once, so set the permissions all at once at the
4429 * very end. */
4430 for (p = list; p != NULL; p = p->next) {
4431 c = p->data;
4433 bdrv_ref(to);
4434 bdrv_replace_child_noperm(c, to);
4435 bdrv_unref(from);
4438 bdrv_get_cumulative_perm(to, &perm, &shared);
4439 bdrv_set_perm(to, perm, shared);
4441 out:
4442 g_slist_free(list);
4443 bdrv_drained_end(from);
4444 bdrv_unref(from);
4448 * Add new bs contents at the top of an image chain while the chain is
4449 * live, while keeping required fields on the top layer.
4451 * This will modify the BlockDriverState fields, and swap contents
4452 * between bs_new and bs_top. Both bs_new and bs_top are modified.
4454 * bs_new must not be attached to a BlockBackend.
4456 * This function does not create any image files.
4458 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
4459 * that's what the callers commonly need. bs_new will be referenced by the old
4460 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
4461 * reference of its own, it must call bdrv_ref().
4463 void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
4464 Error **errp)
4466 Error *local_err = NULL;
4468 bdrv_set_backing_hd(bs_new, bs_top, &local_err);
4469 if (local_err) {
4470 error_propagate(errp, local_err);
4471 goto out;
4474 bdrv_replace_node(bs_top, bs_new, &local_err);
4475 if (local_err) {
4476 error_propagate(errp, local_err);
4477 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
4478 goto out;
4481 /* bs_new is now referenced by its new parents, we don't need the
4482 * additional reference any more. */
4483 out:
4484 bdrv_unref(bs_new);
4487 static void bdrv_delete(BlockDriverState *bs)
4489 assert(bdrv_op_blocker_is_empty(bs));
4490 assert(!bs->refcnt);
4492 /* remove from list, if necessary */
4493 if (bs->node_name[0] != '\0') {
4494 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
4496 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
4498 bdrv_close(bs);
4500 g_free(bs);
4504 * Run consistency checks on an image
4506 * Returns 0 if the check could be completed (it doesn't mean that the image is
4507 * free of errors) or -errno when an internal error occurred. The results of the
4508 * check are stored in res.
4510 static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
4511 BdrvCheckResult *res, BdrvCheckMode fix)
4513 if (bs->drv == NULL) {
4514 return -ENOMEDIUM;
4516 if (bs->drv->bdrv_co_check == NULL) {
4517 return -ENOTSUP;
4520 memset(res, 0, sizeof(*res));
4521 return bs->drv->bdrv_co_check(bs, res, fix);
4524 typedef struct CheckCo {
4525 BlockDriverState *bs;
4526 BdrvCheckResult *res;
4527 BdrvCheckMode fix;
4528 int ret;
4529 } CheckCo;
4531 static void coroutine_fn bdrv_check_co_entry(void *opaque)
4533 CheckCo *cco = opaque;
4534 cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
4535 aio_wait_kick();
4538 int bdrv_check(BlockDriverState *bs,
4539 BdrvCheckResult *res, BdrvCheckMode fix)
4541 Coroutine *co;
4542 CheckCo cco = {
4543 .bs = bs,
4544 .res = res,
4545 .ret = -EINPROGRESS,
4546 .fix = fix,
4549 if (qemu_in_coroutine()) {
4550 /* Fast-path if already in coroutine context */
4551 bdrv_check_co_entry(&cco);
4552 } else {
4553 co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
4554 bdrv_coroutine_enter(bs, co);
4555 BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
4558 return cco.ret;
4562 * Return values:
4563 * 0 - success
4564 * -EINVAL - backing format specified, but no file
4565 * -ENOSPC - can't update the backing file because no space is left in the
4566 * image file header
4567 * -ENOTSUP - format driver doesn't support changing the backing file
4569 int bdrv_change_backing_file(BlockDriverState *bs,
4570 const char *backing_file, const char *backing_fmt)
4572 BlockDriver *drv = bs->drv;
4573 int ret;
4575 if (!drv) {
4576 return -ENOMEDIUM;
4579 /* Backing file format doesn't make sense without a backing file */
4580 if (backing_fmt && !backing_file) {
4581 return -EINVAL;
4584 if (drv->bdrv_change_backing_file != NULL) {
4585 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
4586 } else {
4587 ret = -ENOTSUP;
4590 if (ret == 0) {
4591 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
4592 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
4593 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
4594 backing_file ?: "");
4596 return ret;
4600 * Finds the image layer in the chain that has 'bs' as its backing file.
4602 * active is the current topmost image.
4604 * Returns NULL if bs is not found in active's image chain,
4605 * or if active == bs.
4607 * Returns the bottommost base image if bs == NULL.
4609 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
4610 BlockDriverState *bs)
4612 while (active && bs != backing_bs(active)) {
4613 active = backing_bs(active);
4616 return active;
4619 /* Given a BDS, searches for the base layer. */
4620 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
4622 return bdrv_find_overlay(bs, NULL);
4626 * Return true if at least one of the backing links between @bs and
4627 * @base is frozen. @errp is set if that's the case.
4628 * @base must be reachable from @bs, or NULL.
4630 bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
4631 Error **errp)
4633 BlockDriverState *i;
4635 for (i = bs; i != base; i = backing_bs(i)) {
4636 if (i->backing && i->backing->frozen) {
4637 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
4638 i->backing->name, i->node_name,
4639 backing_bs(i)->node_name);
4640 return true;
4644 return false;
4648 * Freeze all backing links between @bs and @base.
4649 * If any of the links is already frozen the operation is aborted and
4650 * none of the links are modified.
4651 * @base must be reachable from @bs, or NULL.
4652 * Returns 0 on success. On failure returns < 0 and sets @errp.
4654 int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
4655 Error **errp)
4657 BlockDriverState *i;
4659 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
4660 return -EPERM;
4663 for (i = bs; i != base; i = backing_bs(i)) {
4664 if (i->backing && backing_bs(i)->never_freeze) {
4665 error_setg(errp, "Cannot freeze '%s' link to '%s'",
4666 i->backing->name, backing_bs(i)->node_name);
4667 return -EPERM;
4671 for (i = bs; i != base; i = backing_bs(i)) {
4672 if (i->backing) {
4673 i->backing->frozen = true;
4677 return 0;
4681 * Unfreeze all backing links between @bs and @base. The caller must
4682 * ensure that all links are frozen before using this function.
4683 * @base must be reachable from @bs, or NULL.
4685 void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
4687 BlockDriverState *i;
4689 for (i = bs; i != base; i = backing_bs(i)) {
4690 if (i->backing) {
4691 assert(i->backing->frozen);
4692 i->backing->frozen = false;
4698 * Drops images above 'base' up to and including 'top', and sets the image
4699 * above 'top' to have base as its backing file.
4701 * Requires that the overlay to 'top' is opened r/w, so that the backing file
4702 * information in 'bs' can be properly updated.
4704 * E.g., this will convert the following chain:
4705 * bottom <- base <- intermediate <- top <- active
4707 * to
4709 * bottom <- base <- active
4711 * It is allowed for bottom==base, in which case it converts:
4713 * base <- intermediate <- top <- active
4715 * to
4717 * base <- active
4719 * If backing_file_str is non-NULL, it will be used when modifying top's
4720 * overlay image metadata.
4722 * Error conditions:
4723 * if active == top, that is considered an error
4726 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
4727 const char *backing_file_str)
4729 BlockDriverState *explicit_top = top;
4730 bool update_inherits_from;
4731 BdrvChild *c, *next;
4732 Error *local_err = NULL;
4733 int ret = -EIO;
4735 bdrv_ref(top);
4736 bdrv_subtree_drained_begin(top);
4738 if (!top->drv || !base->drv) {
4739 goto exit;
4742 /* Make sure that base is in the backing chain of top */
4743 if (!bdrv_chain_contains(top, base)) {
4744 goto exit;
4747 /* This function changes all links that point to top and makes
4748 * them point to base. Check that none of them is frozen. */
4749 QLIST_FOREACH(c, &top->parents, next_parent) {
4750 if (c->frozen) {
4751 goto exit;
4755 /* If 'base' recursively inherits from 'top' then we should set
4756 * base->inherits_from to top->inherits_from after 'top' and all
4757 * other intermediate nodes have been dropped.
4758 * If 'top' is an implicit node (e.g. "commit_top") we should skip
4759 * it because no one inherits from it. We use explicit_top for that. */
4760 while (explicit_top && explicit_top->implicit) {
4761 explicit_top = backing_bs(explicit_top);
4763 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
4765 /* success - we can delete the intermediate states, and link top->base */
4766 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
4767 * we've figured out how they should work. */
4768 if (!backing_file_str) {
4769 bdrv_refresh_filename(base);
4770 backing_file_str = base->filename;
4773 QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
4774 /* Check whether we are allowed to switch c from top to base */
4775 GSList *ignore_children = g_slist_prepend(NULL, c);
4776 ret = bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
4777 ignore_children, NULL, &local_err);
4778 g_slist_free(ignore_children);
4779 if (ret < 0) {
4780 error_report_err(local_err);
4781 goto exit;
4784 /* If so, update the backing file path in the image file */
4785 if (c->role->update_filename) {
4786 ret = c->role->update_filename(c, base, backing_file_str,
4787 &local_err);
4788 if (ret < 0) {
4789 bdrv_abort_perm_update(base);
4790 error_report_err(local_err);
4791 goto exit;
4795 /* Do the actual switch in the in-memory graph.
4796 * Completes bdrv_check_update_perm() transaction internally. */
4797 bdrv_ref(base);
4798 bdrv_replace_child(c, base);
4799 bdrv_unref(top);
4802 if (update_inherits_from) {
4803 base->inherits_from = explicit_top->inherits_from;
4806 ret = 0;
4807 exit:
4808 bdrv_subtree_drained_end(top);
4809 bdrv_unref(top);
4810 return ret;
4814 * Length of a allocated file in bytes. Sparse files are counted by actual
4815 * allocated space. Return < 0 if error or unknown.
4817 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
4819 BlockDriver *drv = bs->drv;
4820 if (!drv) {
4821 return -ENOMEDIUM;
4823 if (drv->bdrv_get_allocated_file_size) {
4824 return drv->bdrv_get_allocated_file_size(bs);
4826 if (bs->file) {
4827 return bdrv_get_allocated_file_size(bs->file->bs);
4829 return -ENOTSUP;
4833 * bdrv_measure:
4834 * @drv: Format driver
4835 * @opts: Creation options for new image
4836 * @in_bs: Existing image containing data for new image (may be NULL)
4837 * @errp: Error object
4838 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
4839 * or NULL on error
4841 * Calculate file size required to create a new image.
4843 * If @in_bs is given then space for allocated clusters and zero clusters
4844 * from that image are included in the calculation. If @opts contains a
4845 * backing file that is shared by @in_bs then backing clusters may be omitted
4846 * from the calculation.
4848 * If @in_bs is NULL then the calculation includes no allocated clusters
4849 * unless a preallocation option is given in @opts.
4851 * Note that @in_bs may use a different BlockDriver from @drv.
4853 * If an error occurs the @errp pointer is set.
4855 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
4856 BlockDriverState *in_bs, Error **errp)
4858 if (!drv->bdrv_measure) {
4859 error_setg(errp, "Block driver '%s' does not support size measurement",
4860 drv->format_name);
4861 return NULL;
4864 return drv->bdrv_measure(opts, in_bs, errp);
4868 * Return number of sectors on success, -errno on error.
4870 int64_t bdrv_nb_sectors(BlockDriverState *bs)
4872 BlockDriver *drv = bs->drv;
4874 if (!drv)
4875 return -ENOMEDIUM;
4877 if (drv->has_variable_length) {
4878 int ret = refresh_total_sectors(bs, bs->total_sectors);
4879 if (ret < 0) {
4880 return ret;
4883 return bs->total_sectors;
4887 * Return length in bytes on success, -errno on error.
4888 * The length is always a multiple of BDRV_SECTOR_SIZE.
4890 int64_t bdrv_getlength(BlockDriverState *bs)
4892 int64_t ret = bdrv_nb_sectors(bs);
4894 ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
4895 return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
4898 /* return 0 as number of sectors if no device present or error */
4899 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
4901 int64_t nb_sectors = bdrv_nb_sectors(bs);
4903 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
4906 bool bdrv_is_sg(BlockDriverState *bs)
4908 return bs->sg;
4911 bool bdrv_is_encrypted(BlockDriverState *bs)
4913 if (bs->backing && bs->backing->bs->encrypted) {
4914 return true;
4916 return bs->encrypted;
4919 const char *bdrv_get_format_name(BlockDriverState *bs)
4921 return bs->drv ? bs->drv->format_name : NULL;
4924 static int qsort_strcmp(const void *a, const void *b)
4926 return strcmp(*(char *const *)a, *(char *const *)b);
4929 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
4930 void *opaque, bool read_only)
4932 BlockDriver *drv;
4933 int count = 0;
4934 int i;
4935 const char **formats = NULL;
4937 QLIST_FOREACH(drv, &bdrv_drivers, list) {
4938 if (drv->format_name) {
4939 bool found = false;
4940 int i = count;
4942 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
4943 continue;
4946 while (formats && i && !found) {
4947 found = !strcmp(formats[--i], drv->format_name);
4950 if (!found) {
4951 formats = g_renew(const char *, formats, count + 1);
4952 formats[count++] = drv->format_name;
4957 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
4958 const char *format_name = block_driver_modules[i].format_name;
4960 if (format_name) {
4961 bool found = false;
4962 int j = count;
4964 if (use_bdrv_whitelist &&
4965 !bdrv_format_is_whitelisted(format_name, read_only)) {
4966 continue;
4969 while (formats && j && !found) {
4970 found = !strcmp(formats[--j], format_name);
4973 if (!found) {
4974 formats = g_renew(const char *, formats, count + 1);
4975 formats[count++] = format_name;
4980 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
4982 for (i = 0; i < count; i++) {
4983 it(opaque, formats[i]);
4986 g_free(formats);
4989 /* This function is to find a node in the bs graph */
4990 BlockDriverState *bdrv_find_node(const char *node_name)
4992 BlockDriverState *bs;
4994 assert(node_name);
4996 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4997 if (!strcmp(node_name, bs->node_name)) {
4998 return bs;
5001 return NULL;
5004 /* Put this QMP function here so it can access the static graph_bdrv_states. */
5005 BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5006 Error **errp)
5008 BlockDeviceInfoList *list, *entry;
5009 BlockDriverState *bs;
5011 list = NULL;
5012 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5013 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
5014 if (!info) {
5015 qapi_free_BlockDeviceInfoList(list);
5016 return NULL;
5018 entry = g_malloc0(sizeof(*entry));
5019 entry->value = info;
5020 entry->next = list;
5021 list = entry;
5024 return list;
5027 #define QAPI_LIST_ADD(list, element) do { \
5028 typeof(list) _tmp = g_new(typeof(*(list)), 1); \
5029 _tmp->value = (element); \
5030 _tmp->next = (list); \
5031 (list) = _tmp; \
5032 } while (0)
5034 typedef struct XDbgBlockGraphConstructor {
5035 XDbgBlockGraph *graph;
5036 GHashTable *graph_nodes;
5037 } XDbgBlockGraphConstructor;
5039 static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5041 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5043 gr->graph = g_new0(XDbgBlockGraph, 1);
5044 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5046 return gr;
5049 static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5051 XDbgBlockGraph *graph = gr->graph;
5053 g_hash_table_destroy(gr->graph_nodes);
5054 g_free(gr);
5056 return graph;
5059 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5061 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5063 if (ret != 0) {
5064 return ret;
5068 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5069 * answer of g_hash_table_lookup.
5071 ret = g_hash_table_size(gr->graph_nodes) + 1;
5072 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5074 return ret;
5077 static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5078 XDbgBlockGraphNodeType type, const char *name)
5080 XDbgBlockGraphNode *n;
5082 n = g_new0(XDbgBlockGraphNode, 1);
5084 n->id = xdbg_graph_node_num(gr, node);
5085 n->type = type;
5086 n->name = g_strdup(name);
5088 QAPI_LIST_ADD(gr->graph->nodes, n);
5091 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5092 const BdrvChild *child)
5094 BlockPermission qapi_perm;
5095 XDbgBlockGraphEdge *edge;
5097 edge = g_new0(XDbgBlockGraphEdge, 1);
5099 edge->parent = xdbg_graph_node_num(gr, parent);
5100 edge->child = xdbg_graph_node_num(gr, child->bs);
5101 edge->name = g_strdup(child->name);
5103 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5104 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5106 if (flag & child->perm) {
5107 QAPI_LIST_ADD(edge->perm, qapi_perm);
5109 if (flag & child->shared_perm) {
5110 QAPI_LIST_ADD(edge->shared_perm, qapi_perm);
5114 QAPI_LIST_ADD(gr->graph->edges, edge);
5118 XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5120 BlockBackend *blk;
5121 BlockJob *job;
5122 BlockDriverState *bs;
5123 BdrvChild *child;
5124 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5126 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5127 char *allocated_name = NULL;
5128 const char *name = blk_name(blk);
5130 if (!*name) {
5131 name = allocated_name = blk_get_attached_dev_id(blk);
5133 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5134 name);
5135 g_free(allocated_name);
5136 if (blk_root(blk)) {
5137 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5141 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5142 GSList *el;
5144 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5145 job->job.id);
5146 for (el = job->nodes; el; el = el->next) {
5147 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5151 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5152 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5153 bs->node_name);
5154 QLIST_FOREACH(child, &bs->children, next) {
5155 xdbg_graph_add_edge(gr, bs, child);
5159 return xdbg_graph_finalize(gr);
5162 BlockDriverState *bdrv_lookup_bs(const char *device,
5163 const char *node_name,
5164 Error **errp)
5166 BlockBackend *blk;
5167 BlockDriverState *bs;
5169 if (device) {
5170 blk = blk_by_name(device);
5172 if (blk) {
5173 bs = blk_bs(blk);
5174 if (!bs) {
5175 error_setg(errp, "Device '%s' has no medium", device);
5178 return bs;
5182 if (node_name) {
5183 bs = bdrv_find_node(node_name);
5185 if (bs) {
5186 return bs;
5190 error_setg(errp, "Cannot find device=%s nor node_name=%s",
5191 device ? device : "",
5192 node_name ? node_name : "");
5193 return NULL;
5196 /* If 'base' is in the same chain as 'top', return true. Otherwise,
5197 * return false. If either argument is NULL, return false. */
5198 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
5200 while (top && top != base) {
5201 top = backing_bs(top);
5204 return top != NULL;
5207 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
5209 if (!bs) {
5210 return QTAILQ_FIRST(&graph_bdrv_states);
5212 return QTAILQ_NEXT(bs, node_list);
5215 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
5217 if (!bs) {
5218 return QTAILQ_FIRST(&all_bdrv_states);
5220 return QTAILQ_NEXT(bs, bs_list);
5223 const char *bdrv_get_node_name(const BlockDriverState *bs)
5225 return bs->node_name;
5228 const char *bdrv_get_parent_name(const BlockDriverState *bs)
5230 BdrvChild *c;
5231 const char *name;
5233 /* If multiple parents have a name, just pick the first one. */
5234 QLIST_FOREACH(c, &bs->parents, next_parent) {
5235 if (c->role->get_name) {
5236 name = c->role->get_name(c);
5237 if (name && *name) {
5238 return name;
5243 return NULL;
5246 /* TODO check what callers really want: bs->node_name or blk_name() */
5247 const char *bdrv_get_device_name(const BlockDriverState *bs)
5249 return bdrv_get_parent_name(bs) ?: "";
5252 /* This can be used to identify nodes that might not have a device
5253 * name associated. Since node and device names live in the same
5254 * namespace, the result is unambiguous. The exception is if both are
5255 * absent, then this returns an empty (non-null) string. */
5256 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
5258 return bdrv_get_parent_name(bs) ?: bs->node_name;
5261 int bdrv_get_flags(BlockDriverState *bs)
5263 return bs->open_flags;
5266 int bdrv_has_zero_init_1(BlockDriverState *bs)
5268 return 1;
5271 int bdrv_has_zero_init(BlockDriverState *bs)
5273 if (!bs->drv) {
5274 return 0;
5277 /* If BS is a copy on write image, it is initialized to
5278 the contents of the base image, which may not be zeroes. */
5279 if (bs->backing) {
5280 return 0;
5282 if (bs->drv->bdrv_has_zero_init) {
5283 return bs->drv->bdrv_has_zero_init(bs);
5285 if (bs->file && bs->drv->is_filter) {
5286 return bdrv_has_zero_init(bs->file->bs);
5289 /* safe default */
5290 return 0;
5293 int bdrv_has_zero_init_truncate(BlockDriverState *bs)
5295 if (!bs->drv) {
5296 return 0;
5299 if (bs->backing) {
5300 /* Depends on the backing image length, but better safe than sorry */
5301 return 0;
5303 if (bs->drv->bdrv_has_zero_init_truncate) {
5304 return bs->drv->bdrv_has_zero_init_truncate(bs);
5306 if (bs->file && bs->drv->is_filter) {
5307 return bdrv_has_zero_init_truncate(bs->file->bs);
5310 /* safe default */
5311 return 0;
5314 bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
5316 BlockDriverInfo bdi;
5318 if (bs->backing) {
5319 return false;
5322 if (bdrv_get_info(bs, &bdi) == 0) {
5323 return bdi.unallocated_blocks_are_zero;
5326 return false;
5329 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
5331 if (!(bs->open_flags & BDRV_O_UNMAP)) {
5332 return false;
5335 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
5338 void bdrv_get_backing_filename(BlockDriverState *bs,
5339 char *filename, int filename_size)
5341 pstrcpy(filename, filename_size, bs->backing_file);
5344 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5346 BlockDriver *drv = bs->drv;
5347 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
5348 if (!drv) {
5349 return -ENOMEDIUM;
5351 if (!drv->bdrv_get_info) {
5352 if (bs->file && drv->is_filter) {
5353 return bdrv_get_info(bs->file->bs, bdi);
5355 return -ENOTSUP;
5357 memset(bdi, 0, sizeof(*bdi));
5358 return drv->bdrv_get_info(bs, bdi);
5361 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
5362 Error **errp)
5364 BlockDriver *drv = bs->drv;
5365 if (drv && drv->bdrv_get_specific_info) {
5366 return drv->bdrv_get_specific_info(bs, errp);
5368 return NULL;
5371 BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
5373 BlockDriver *drv = bs->drv;
5374 if (!drv || !drv->bdrv_get_specific_stats) {
5375 return NULL;
5377 return drv->bdrv_get_specific_stats(bs);
5380 void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
5382 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
5383 return;
5386 bs->drv->bdrv_debug_event(bs, event);
5389 static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
5391 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
5392 if (bs->file) {
5393 bs = bs->file->bs;
5394 continue;
5397 if (bs->drv->is_filter && bs->backing) {
5398 bs = bs->backing->bs;
5399 continue;
5402 break;
5405 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
5406 assert(bs->drv->bdrv_debug_remove_breakpoint);
5407 return bs;
5410 return NULL;
5413 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
5414 const char *tag)
5416 bs = bdrv_find_debug_node(bs);
5417 if (bs) {
5418 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
5421 return -ENOTSUP;
5424 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
5426 bs = bdrv_find_debug_node(bs);
5427 if (bs) {
5428 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
5431 return -ENOTSUP;
5434 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
5436 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
5437 bs = bs->file ? bs->file->bs : NULL;
5440 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
5441 return bs->drv->bdrv_debug_resume(bs, tag);
5444 return -ENOTSUP;
5447 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
5449 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
5450 bs = bs->file ? bs->file->bs : NULL;
5453 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
5454 return bs->drv->bdrv_debug_is_suspended(bs, tag);
5457 return false;
5460 /* backing_file can either be relative, or absolute, or a protocol. If it is
5461 * relative, it must be relative to the chain. So, passing in bs->filename
5462 * from a BDS as backing_file should not be done, as that may be relative to
5463 * the CWD rather than the chain. */
5464 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
5465 const char *backing_file)
5467 char *filename_full = NULL;
5468 char *backing_file_full = NULL;
5469 char *filename_tmp = NULL;
5470 int is_protocol = 0;
5471 BlockDriverState *curr_bs = NULL;
5472 BlockDriverState *retval = NULL;
5474 if (!bs || !bs->drv || !backing_file) {
5475 return NULL;
5478 filename_full = g_malloc(PATH_MAX);
5479 backing_file_full = g_malloc(PATH_MAX);
5481 is_protocol = path_has_protocol(backing_file);
5483 for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
5485 /* If either of the filename paths is actually a protocol, then
5486 * compare unmodified paths; otherwise make paths relative */
5487 if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
5488 char *backing_file_full_ret;
5490 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
5491 retval = curr_bs->backing->bs;
5492 break;
5494 /* Also check against the full backing filename for the image */
5495 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
5496 NULL);
5497 if (backing_file_full_ret) {
5498 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
5499 g_free(backing_file_full_ret);
5500 if (equal) {
5501 retval = curr_bs->backing->bs;
5502 break;
5505 } else {
5506 /* If not an absolute filename path, make it relative to the current
5507 * image's filename path */
5508 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
5509 NULL);
5510 /* We are going to compare canonicalized absolute pathnames */
5511 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
5512 g_free(filename_tmp);
5513 continue;
5515 g_free(filename_tmp);
5517 /* We need to make sure the backing filename we are comparing against
5518 * is relative to the current image filename (or absolute) */
5519 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
5520 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
5521 g_free(filename_tmp);
5522 continue;
5524 g_free(filename_tmp);
5526 if (strcmp(backing_file_full, filename_full) == 0) {
5527 retval = curr_bs->backing->bs;
5528 break;
5533 g_free(filename_full);
5534 g_free(backing_file_full);
5535 return retval;
5538 void bdrv_init(void)
5540 module_call_init(MODULE_INIT_BLOCK);
5543 void bdrv_init_with_whitelist(void)
5545 use_bdrv_whitelist = 1;
5546 bdrv_init();
5549 static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
5550 Error **errp)
5552 BdrvChild *child, *parent;
5553 uint64_t perm, shared_perm;
5554 Error *local_err = NULL;
5555 int ret;
5556 BdrvDirtyBitmap *bm;
5558 if (!bs->drv) {
5559 return;
5562 QLIST_FOREACH(child, &bs->children, next) {
5563 bdrv_co_invalidate_cache(child->bs, &local_err);
5564 if (local_err) {
5565 error_propagate(errp, local_err);
5566 return;
5571 * Update permissions, they may differ for inactive nodes.
5573 * Note that the required permissions of inactive images are always a
5574 * subset of the permissions required after activating the image. This
5575 * allows us to just get the permissions upfront without restricting
5576 * drv->bdrv_invalidate_cache().
5578 * It also means that in error cases, we don't have to try and revert to
5579 * the old permissions (which is an operation that could fail, too). We can
5580 * just keep the extended permissions for the next time that an activation
5581 * of the image is tried.
5583 if (bs->open_flags & BDRV_O_INACTIVE) {
5584 bs->open_flags &= ~BDRV_O_INACTIVE;
5585 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
5586 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, NULL, &local_err);
5587 if (ret < 0) {
5588 bs->open_flags |= BDRV_O_INACTIVE;
5589 error_propagate(errp, local_err);
5590 return;
5592 bdrv_set_perm(bs, perm, shared_perm);
5594 if (bs->drv->bdrv_co_invalidate_cache) {
5595 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
5596 if (local_err) {
5597 bs->open_flags |= BDRV_O_INACTIVE;
5598 error_propagate(errp, local_err);
5599 return;
5603 FOR_EACH_DIRTY_BITMAP(bs, bm) {
5604 bdrv_dirty_bitmap_skip_store(bm, false);
5607 ret = refresh_total_sectors(bs, bs->total_sectors);
5608 if (ret < 0) {
5609 bs->open_flags |= BDRV_O_INACTIVE;
5610 error_setg_errno(errp, -ret, "Could not refresh total sector count");
5611 return;
5615 QLIST_FOREACH(parent, &bs->parents, next_parent) {
5616 if (parent->role->activate) {
5617 parent->role->activate(parent, &local_err);
5618 if (local_err) {
5619 bs->open_flags |= BDRV_O_INACTIVE;
5620 error_propagate(errp, local_err);
5621 return;
5627 typedef struct InvalidateCacheCo {
5628 BlockDriverState *bs;
5629 Error **errp;
5630 bool done;
5631 } InvalidateCacheCo;
5633 static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
5635 InvalidateCacheCo *ico = opaque;
5636 bdrv_co_invalidate_cache(ico->bs, ico->errp);
5637 ico->done = true;
5638 aio_wait_kick();
5641 void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
5643 Coroutine *co;
5644 InvalidateCacheCo ico = {
5645 .bs = bs,
5646 .done = false,
5647 .errp = errp
5650 if (qemu_in_coroutine()) {
5651 /* Fast-path if already in coroutine context */
5652 bdrv_invalidate_cache_co_entry(&ico);
5653 } else {
5654 co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
5655 bdrv_coroutine_enter(bs, co);
5656 BDRV_POLL_WHILE(bs, !ico.done);
5660 void bdrv_invalidate_cache_all(Error **errp)
5662 BlockDriverState *bs;
5663 Error *local_err = NULL;
5664 BdrvNextIterator it;
5666 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5667 AioContext *aio_context = bdrv_get_aio_context(bs);
5669 aio_context_acquire(aio_context);
5670 bdrv_invalidate_cache(bs, &local_err);
5671 aio_context_release(aio_context);
5672 if (local_err) {
5673 error_propagate(errp, local_err);
5674 bdrv_next_cleanup(&it);
5675 return;
5680 static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
5682 BdrvChild *parent;
5684 QLIST_FOREACH(parent, &bs->parents, next_parent) {
5685 if (parent->role->parent_is_bds) {
5686 BlockDriverState *parent_bs = parent->opaque;
5687 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
5688 return true;
5693 return false;
5696 static int bdrv_inactivate_recurse(BlockDriverState *bs)
5698 BdrvChild *child, *parent;
5699 bool tighten_restrictions;
5700 uint64_t perm, shared_perm;
5701 int ret;
5703 if (!bs->drv) {
5704 return -ENOMEDIUM;
5707 /* Make sure that we don't inactivate a child before its parent.
5708 * It will be covered by recursion from the yet active parent. */
5709 if (bdrv_has_bds_parent(bs, true)) {
5710 return 0;
5713 assert(!(bs->open_flags & BDRV_O_INACTIVE));
5715 /* Inactivate this node */
5716 if (bs->drv->bdrv_inactivate) {
5717 ret = bs->drv->bdrv_inactivate(bs);
5718 if (ret < 0) {
5719 return ret;
5723 QLIST_FOREACH(parent, &bs->parents, next_parent) {
5724 if (parent->role->inactivate) {
5725 ret = parent->role->inactivate(parent);
5726 if (ret < 0) {
5727 return ret;
5732 bs->open_flags |= BDRV_O_INACTIVE;
5734 /* Update permissions, they may differ for inactive nodes */
5735 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
5736 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL,
5737 &tighten_restrictions, NULL);
5738 assert(tighten_restrictions == false);
5739 if (ret < 0) {
5740 /* We only tried to loosen restrictions, so errors are not fatal */
5741 bdrv_abort_perm_update(bs);
5742 } else {
5743 bdrv_set_perm(bs, perm, shared_perm);
5747 /* Recursively inactivate children */
5748 QLIST_FOREACH(child, &bs->children, next) {
5749 ret = bdrv_inactivate_recurse(child->bs);
5750 if (ret < 0) {
5751 return ret;
5755 return 0;
5758 int bdrv_inactivate_all(void)
5760 BlockDriverState *bs = NULL;
5761 BdrvNextIterator it;
5762 int ret = 0;
5763 GSList *aio_ctxs = NULL, *ctx;
5765 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5766 AioContext *aio_context = bdrv_get_aio_context(bs);
5768 if (!g_slist_find(aio_ctxs, aio_context)) {
5769 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
5770 aio_context_acquire(aio_context);
5774 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5775 /* Nodes with BDS parents are covered by recursion from the last
5776 * parent that gets inactivated. Don't inactivate them a second
5777 * time if that has already happened. */
5778 if (bdrv_has_bds_parent(bs, false)) {
5779 continue;
5781 ret = bdrv_inactivate_recurse(bs);
5782 if (ret < 0) {
5783 bdrv_next_cleanup(&it);
5784 goto out;
5788 out:
5789 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
5790 AioContext *aio_context = ctx->data;
5791 aio_context_release(aio_context);
5793 g_slist_free(aio_ctxs);
5795 return ret;
5798 /**************************************************************/
5799 /* removable device support */
5802 * Return TRUE if the media is present
5804 bool bdrv_is_inserted(BlockDriverState *bs)
5806 BlockDriver *drv = bs->drv;
5807 BdrvChild *child;
5809 if (!drv) {
5810 return false;
5812 if (drv->bdrv_is_inserted) {
5813 return drv->bdrv_is_inserted(bs);
5815 QLIST_FOREACH(child, &bs->children, next) {
5816 if (!bdrv_is_inserted(child->bs)) {
5817 return false;
5820 return true;
5824 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
5826 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
5828 BlockDriver *drv = bs->drv;
5830 if (drv && drv->bdrv_eject) {
5831 drv->bdrv_eject(bs, eject_flag);
5836 * Lock or unlock the media (if it is locked, the user won't be able
5837 * to eject it manually).
5839 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
5841 BlockDriver *drv = bs->drv;
5843 trace_bdrv_lock_medium(bs, locked);
5845 if (drv && drv->bdrv_lock_medium) {
5846 drv->bdrv_lock_medium(bs, locked);
5850 /* Get a reference to bs */
5851 void bdrv_ref(BlockDriverState *bs)
5853 bs->refcnt++;
5856 /* Release a previously grabbed reference to bs.
5857 * If after releasing, reference count is zero, the BlockDriverState is
5858 * deleted. */
5859 void bdrv_unref(BlockDriverState *bs)
5861 if (!bs) {
5862 return;
5864 assert(bs->refcnt > 0);
5865 if (--bs->refcnt == 0) {
5866 bdrv_delete(bs);
5870 struct BdrvOpBlocker {
5871 Error *reason;
5872 QLIST_ENTRY(BdrvOpBlocker) list;
5875 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
5877 BdrvOpBlocker *blocker;
5878 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5879 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
5880 blocker = QLIST_FIRST(&bs->op_blockers[op]);
5881 error_propagate_prepend(errp, error_copy(blocker->reason),
5882 "Node '%s' is busy: ",
5883 bdrv_get_device_or_node_name(bs));
5884 return true;
5886 return false;
5889 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
5891 BdrvOpBlocker *blocker;
5892 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5894 blocker = g_new0(BdrvOpBlocker, 1);
5895 blocker->reason = reason;
5896 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
5899 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
5901 BdrvOpBlocker *blocker, *next;
5902 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5903 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
5904 if (blocker->reason == reason) {
5905 QLIST_REMOVE(blocker, list);
5906 g_free(blocker);
5911 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
5913 int i;
5914 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5915 bdrv_op_block(bs, i, reason);
5919 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
5921 int i;
5922 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5923 bdrv_op_unblock(bs, i, reason);
5927 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
5929 int i;
5931 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5932 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
5933 return false;
5936 return true;
5939 void bdrv_img_create(const char *filename, const char *fmt,
5940 const char *base_filename, const char *base_fmt,
5941 char *options, uint64_t img_size, int flags, bool quiet,
5942 Error **errp)
5944 QemuOptsList *create_opts = NULL;
5945 QemuOpts *opts = NULL;
5946 const char *backing_fmt, *backing_file;
5947 int64_t size;
5948 BlockDriver *drv, *proto_drv;
5949 Error *local_err = NULL;
5950 int ret = 0;
5952 /* Find driver and parse its options */
5953 drv = bdrv_find_format(fmt);
5954 if (!drv) {
5955 error_setg(errp, "Unknown file format '%s'", fmt);
5956 return;
5959 proto_drv = bdrv_find_protocol(filename, true, errp);
5960 if (!proto_drv) {
5961 return;
5964 if (!drv->create_opts) {
5965 error_setg(errp, "Format driver '%s' does not support image creation",
5966 drv->format_name);
5967 return;
5970 if (!proto_drv->create_opts) {
5971 error_setg(errp, "Protocol driver '%s' does not support image creation",
5972 proto_drv->format_name);
5973 return;
5976 /* Create parameter list */
5977 create_opts = qemu_opts_append(create_opts, drv->create_opts);
5978 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
5980 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
5982 /* Parse -o options */
5983 if (options) {
5984 qemu_opts_do_parse(opts, options, NULL, &local_err);
5985 if (local_err) {
5986 goto out;
5990 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
5991 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
5992 } else if (img_size != UINT64_C(-1)) {
5993 error_setg(errp, "The image size must be specified only once");
5994 goto out;
5997 if (base_filename) {
5998 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
5999 if (local_err) {
6000 error_setg(errp, "Backing file not supported for file format '%s'",
6001 fmt);
6002 goto out;
6006 if (base_fmt) {
6007 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
6008 if (local_err) {
6009 error_setg(errp, "Backing file format not supported for file "
6010 "format '%s'", fmt);
6011 goto out;
6015 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6016 if (backing_file) {
6017 if (!strcmp(filename, backing_file)) {
6018 error_setg(errp, "Error: Trying to create an image with the "
6019 "same filename as the backing file");
6020 goto out;
6024 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
6026 /* The size for the image must always be specified, unless we have a backing
6027 * file and we have not been forbidden from opening it. */
6028 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
6029 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6030 BlockDriverState *bs;
6031 char *full_backing;
6032 int back_flags;
6033 QDict *backing_options = NULL;
6035 full_backing =
6036 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6037 &local_err);
6038 if (local_err) {
6039 goto out;
6041 assert(full_backing);
6043 /* backing files always opened read-only */
6044 back_flags = flags;
6045 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
6047 backing_options = qdict_new();
6048 if (backing_fmt) {
6049 qdict_put_str(backing_options, "driver", backing_fmt);
6051 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
6053 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6054 &local_err);
6055 g_free(full_backing);
6056 if (!bs && size != -1) {
6057 /* Couldn't open BS, but we have a size, so it's nonfatal */
6058 warn_reportf_err(local_err,
6059 "Could not verify backing image. "
6060 "This may become an error in future versions.\n");
6061 local_err = NULL;
6062 } else if (!bs) {
6063 /* Couldn't open bs, do not have size */
6064 error_append_hint(&local_err,
6065 "Could not open backing image to determine size.\n");
6066 goto out;
6067 } else {
6068 if (size == -1) {
6069 /* Opened BS, have no size */
6070 size = bdrv_getlength(bs);
6071 if (size < 0) {
6072 error_setg_errno(errp, -size, "Could not get size of '%s'",
6073 backing_file);
6074 bdrv_unref(bs);
6075 goto out;
6077 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6079 bdrv_unref(bs);
6081 } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6083 if (size == -1) {
6084 error_setg(errp, "Image creation needs a size parameter");
6085 goto out;
6088 if (!quiet) {
6089 printf("Formatting '%s', fmt=%s ", filename, fmt);
6090 qemu_opts_print(opts, " ");
6091 puts("");
6094 ret = bdrv_create(drv, filename, opts, &local_err);
6096 if (ret == -EFBIG) {
6097 /* This is generally a better message than whatever the driver would
6098 * deliver (especially because of the cluster_size_hint), since that
6099 * is most probably not much different from "image too large". */
6100 const char *cluster_size_hint = "";
6101 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
6102 cluster_size_hint = " (try using a larger cluster size)";
6104 error_setg(errp, "The image size is too large for file format '%s'"
6105 "%s", fmt, cluster_size_hint);
6106 error_free(local_err);
6107 local_err = NULL;
6110 out:
6111 qemu_opts_del(opts);
6112 qemu_opts_free(create_opts);
6113 error_propagate(errp, local_err);
6116 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6118 return bs ? bs->aio_context : qemu_get_aio_context();
6121 void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6123 aio_co_enter(bdrv_get_aio_context(bs), co);
6126 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6128 QLIST_REMOVE(ban, list);
6129 g_free(ban);
6132 static void bdrv_detach_aio_context(BlockDriverState *bs)
6134 BdrvAioNotifier *baf, *baf_tmp;
6136 assert(!bs->walking_aio_notifiers);
6137 bs->walking_aio_notifiers = true;
6138 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6139 if (baf->deleted) {
6140 bdrv_do_remove_aio_context_notifier(baf);
6141 } else {
6142 baf->detach_aio_context(baf->opaque);
6145 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6146 * remove remaining aio notifiers if we aren't called again.
6148 bs->walking_aio_notifiers = false;
6150 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
6151 bs->drv->bdrv_detach_aio_context(bs);
6154 if (bs->quiesce_counter) {
6155 aio_enable_external(bs->aio_context);
6157 bs->aio_context = NULL;
6160 static void bdrv_attach_aio_context(BlockDriverState *bs,
6161 AioContext *new_context)
6163 BdrvAioNotifier *ban, *ban_tmp;
6165 if (bs->quiesce_counter) {
6166 aio_disable_external(new_context);
6169 bs->aio_context = new_context;
6171 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
6172 bs->drv->bdrv_attach_aio_context(bs, new_context);
6175 assert(!bs->walking_aio_notifiers);
6176 bs->walking_aio_notifiers = true;
6177 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
6178 if (ban->deleted) {
6179 bdrv_do_remove_aio_context_notifier(ban);
6180 } else {
6181 ban->attached_aio_context(new_context, ban->opaque);
6184 bs->walking_aio_notifiers = false;
6188 * Changes the AioContext used for fd handlers, timers, and BHs by this
6189 * BlockDriverState and all its children and parents.
6191 * Must be called from the main AioContext.
6193 * The caller must own the AioContext lock for the old AioContext of bs, but it
6194 * must not own the AioContext lock for new_context (unless new_context is the
6195 * same as the current context of bs).
6197 * @ignore will accumulate all visited BdrvChild object. The caller is
6198 * responsible for freeing the list afterwards.
6200 void bdrv_set_aio_context_ignore(BlockDriverState *bs,
6201 AioContext *new_context, GSList **ignore)
6203 AioContext *old_context = bdrv_get_aio_context(bs);
6204 BdrvChild *child;
6206 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6208 if (old_context == new_context) {
6209 return;
6212 bdrv_drained_begin(bs);
6214 QLIST_FOREACH(child, &bs->children, next) {
6215 if (g_slist_find(*ignore, child)) {
6216 continue;
6218 *ignore = g_slist_prepend(*ignore, child);
6219 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
6221 QLIST_FOREACH(child, &bs->parents, next_parent) {
6222 if (g_slist_find(*ignore, child)) {
6223 continue;
6225 assert(child->role->set_aio_ctx);
6226 *ignore = g_slist_prepend(*ignore, child);
6227 child->role->set_aio_ctx(child, new_context, ignore);
6230 bdrv_detach_aio_context(bs);
6232 /* Acquire the new context, if necessary */
6233 if (qemu_get_aio_context() != new_context) {
6234 aio_context_acquire(new_context);
6237 bdrv_attach_aio_context(bs, new_context);
6240 * If this function was recursively called from
6241 * bdrv_set_aio_context_ignore(), there may be nodes in the
6242 * subtree that have not yet been moved to the new AioContext.
6243 * Release the old one so bdrv_drained_end() can poll them.
6245 if (qemu_get_aio_context() != old_context) {
6246 aio_context_release(old_context);
6249 bdrv_drained_end(bs);
6251 if (qemu_get_aio_context() != old_context) {
6252 aio_context_acquire(old_context);
6254 if (qemu_get_aio_context() != new_context) {
6255 aio_context_release(new_context);
6259 static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6260 GSList **ignore, Error **errp)
6262 if (g_slist_find(*ignore, c)) {
6263 return true;
6265 *ignore = g_slist_prepend(*ignore, c);
6267 /* A BdrvChildRole that doesn't handle AioContext changes cannot
6268 * tolerate any AioContext changes */
6269 if (!c->role->can_set_aio_ctx) {
6270 char *user = bdrv_child_user_desc(c);
6271 error_setg(errp, "Changing iothreads is not supported by %s", user);
6272 g_free(user);
6273 return false;
6275 if (!c->role->can_set_aio_ctx(c, ctx, ignore, errp)) {
6276 assert(!errp || *errp);
6277 return false;
6279 return true;
6282 bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6283 GSList **ignore, Error **errp)
6285 if (g_slist_find(*ignore, c)) {
6286 return true;
6288 *ignore = g_slist_prepend(*ignore, c);
6289 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
6292 /* @ignore will accumulate all visited BdrvChild object. The caller is
6293 * responsible for freeing the list afterwards. */
6294 bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6295 GSList **ignore, Error **errp)
6297 BdrvChild *c;
6299 if (bdrv_get_aio_context(bs) == ctx) {
6300 return true;
6303 QLIST_FOREACH(c, &bs->parents, next_parent) {
6304 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
6305 return false;
6308 QLIST_FOREACH(c, &bs->children, next) {
6309 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
6310 return false;
6314 return true;
6317 int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6318 BdrvChild *ignore_child, Error **errp)
6320 GSList *ignore;
6321 bool ret;
6323 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6324 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
6325 g_slist_free(ignore);
6327 if (!ret) {
6328 return -EPERM;
6331 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6332 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
6333 g_slist_free(ignore);
6335 return 0;
6338 int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6339 Error **errp)
6341 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
6344 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
6345 void (*attached_aio_context)(AioContext *new_context, void *opaque),
6346 void (*detach_aio_context)(void *opaque), void *opaque)
6348 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
6349 *ban = (BdrvAioNotifier){
6350 .attached_aio_context = attached_aio_context,
6351 .detach_aio_context = detach_aio_context,
6352 .opaque = opaque
6355 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
6358 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
6359 void (*attached_aio_context)(AioContext *,
6360 void *),
6361 void (*detach_aio_context)(void *),
6362 void *opaque)
6364 BdrvAioNotifier *ban, *ban_next;
6366 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
6367 if (ban->attached_aio_context == attached_aio_context &&
6368 ban->detach_aio_context == detach_aio_context &&
6369 ban->opaque == opaque &&
6370 ban->deleted == false)
6372 if (bs->walking_aio_notifiers) {
6373 ban->deleted = true;
6374 } else {
6375 bdrv_do_remove_aio_context_notifier(ban);
6377 return;
6381 abort();
6384 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
6385 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
6386 Error **errp)
6388 if (!bs->drv) {
6389 error_setg(errp, "Node is ejected");
6390 return -ENOMEDIUM;
6392 if (!bs->drv->bdrv_amend_options) {
6393 error_setg(errp, "Block driver '%s' does not support option amendment",
6394 bs->drv->format_name);
6395 return -ENOTSUP;
6397 return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
6401 * This function checks whether the given @to_replace is allowed to be
6402 * replaced by a node that always shows the same data as @bs. This is
6403 * used for example to verify whether the mirror job can replace
6404 * @to_replace by the target mirrored from @bs.
6405 * To be replaceable, @bs and @to_replace may either be guaranteed to
6406 * always show the same data (because they are only connected through
6407 * filters), or some driver may allow replacing one of its children
6408 * because it can guarantee that this child's data is not visible at
6409 * all (for example, for dissenting quorum children that have no other
6410 * parents).
6412 bool bdrv_recurse_can_replace(BlockDriverState *bs,
6413 BlockDriverState *to_replace)
6415 if (!bs || !bs->drv) {
6416 return false;
6419 if (bs == to_replace) {
6420 return true;
6423 /* See what the driver can do */
6424 if (bs->drv->bdrv_recurse_can_replace) {
6425 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
6428 /* For filters without an own implementation, we can recurse on our own */
6429 if (bs->drv->is_filter) {
6430 BdrvChild *child = bs->file ?: bs->backing;
6431 return bdrv_recurse_can_replace(child->bs, to_replace);
6434 /* Safe default */
6435 return false;
6439 * Check whether the given @node_name can be replaced by a node that
6440 * has the same data as @parent_bs. If so, return @node_name's BDS;
6441 * NULL otherwise.
6443 * @node_name must be a (recursive) *child of @parent_bs (or this
6444 * function will return NULL).
6446 * The result (whether the node can be replaced or not) is only valid
6447 * for as long as no graph or permission changes occur.
6449 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
6450 const char *node_name, Error **errp)
6452 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
6453 AioContext *aio_context;
6455 if (!to_replace_bs) {
6456 error_setg(errp, "Node name '%s' not found", node_name);
6457 return NULL;
6460 aio_context = bdrv_get_aio_context(to_replace_bs);
6461 aio_context_acquire(aio_context);
6463 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
6464 to_replace_bs = NULL;
6465 goto out;
6468 /* We don't want arbitrary node of the BDS chain to be replaced only the top
6469 * most non filter in order to prevent data corruption.
6470 * Another benefit is that this tests exclude backing files which are
6471 * blocked by the backing blockers.
6473 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
6474 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
6475 "because it cannot be guaranteed that doing so would not "
6476 "lead to an abrupt change of visible data",
6477 node_name, parent_bs->node_name);
6478 to_replace_bs = NULL;
6479 goto out;
6482 out:
6483 aio_context_release(aio_context);
6484 return to_replace_bs;
6488 * Iterates through the list of runtime option keys that are said to
6489 * be "strong" for a BDS. An option is called "strong" if it changes
6490 * a BDS's data. For example, the null block driver's "size" and
6491 * "read-zeroes" options are strong, but its "latency-ns" option is
6492 * not.
6494 * If a key returned by this function ends with a dot, all options
6495 * starting with that prefix are strong.
6497 static const char *const *strong_options(BlockDriverState *bs,
6498 const char *const *curopt)
6500 static const char *const global_options[] = {
6501 "driver", "filename", NULL
6504 if (!curopt) {
6505 return &global_options[0];
6508 curopt++;
6509 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
6510 curopt = bs->drv->strong_runtime_opts;
6513 return (curopt && *curopt) ? curopt : NULL;
6517 * Copies all strong runtime options from bs->options to the given
6518 * QDict. The set of strong option keys is determined by invoking
6519 * strong_options().
6521 * Returns true iff any strong option was present in bs->options (and
6522 * thus copied to the target QDict) with the exception of "filename"
6523 * and "driver". The caller is expected to use this value to decide
6524 * whether the existence of strong options prevents the generation of
6525 * a plain filename.
6527 static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
6529 bool found_any = false;
6530 const char *const *option_name = NULL;
6532 if (!bs->drv) {
6533 return false;
6536 while ((option_name = strong_options(bs, option_name))) {
6537 bool option_given = false;
6539 assert(strlen(*option_name) > 0);
6540 if ((*option_name)[strlen(*option_name) - 1] != '.') {
6541 QObject *entry = qdict_get(bs->options, *option_name);
6542 if (!entry) {
6543 continue;
6546 qdict_put_obj(d, *option_name, qobject_ref(entry));
6547 option_given = true;
6548 } else {
6549 const QDictEntry *entry;
6550 for (entry = qdict_first(bs->options); entry;
6551 entry = qdict_next(bs->options, entry))
6553 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
6554 qdict_put_obj(d, qdict_entry_key(entry),
6555 qobject_ref(qdict_entry_value(entry)));
6556 option_given = true;
6561 /* While "driver" and "filename" need to be included in a JSON filename,
6562 * their existence does not prohibit generation of a plain filename. */
6563 if (!found_any && option_given &&
6564 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
6566 found_any = true;
6570 if (!qdict_haskey(d, "driver")) {
6571 /* Drivers created with bdrv_new_open_driver() may not have a
6572 * @driver option. Add it here. */
6573 qdict_put_str(d, "driver", bs->drv->format_name);
6576 return found_any;
6579 /* Note: This function may return false positives; it may return true
6580 * even if opening the backing file specified by bs's image header
6581 * would result in exactly bs->backing. */
6582 static bool bdrv_backing_overridden(BlockDriverState *bs)
6584 if (bs->backing) {
6585 return strcmp(bs->auto_backing_file,
6586 bs->backing->bs->filename);
6587 } else {
6588 /* No backing BDS, so if the image header reports any backing
6589 * file, it must have been suppressed */
6590 return bs->auto_backing_file[0] != '\0';
6594 /* Updates the following BDS fields:
6595 * - exact_filename: A filename which may be used for opening a block device
6596 * which (mostly) equals the given BDS (even without any
6597 * other options; so reading and writing must return the same
6598 * results, but caching etc. may be different)
6599 * - full_open_options: Options which, when given when opening a block device
6600 * (without a filename), result in a BDS (mostly)
6601 * equalling the given one
6602 * - filename: If exact_filename is set, it is copied here. Otherwise,
6603 * full_open_options is converted to a JSON object, prefixed with
6604 * "json:" (for use through the JSON pseudo protocol) and put here.
6606 void bdrv_refresh_filename(BlockDriverState *bs)
6608 BlockDriver *drv = bs->drv;
6609 BdrvChild *child;
6610 QDict *opts;
6611 bool backing_overridden;
6612 bool generate_json_filename; /* Whether our default implementation should
6613 fill exact_filename (false) or not (true) */
6615 if (!drv) {
6616 return;
6619 /* This BDS's file name may depend on any of its children's file names, so
6620 * refresh those first */
6621 QLIST_FOREACH(child, &bs->children, next) {
6622 bdrv_refresh_filename(child->bs);
6625 if (bs->implicit) {
6626 /* For implicit nodes, just copy everything from the single child */
6627 child = QLIST_FIRST(&bs->children);
6628 assert(QLIST_NEXT(child, next) == NULL);
6630 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
6631 child->bs->exact_filename);
6632 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
6634 qobject_unref(bs->full_open_options);
6635 bs->full_open_options = qobject_ref(child->bs->full_open_options);
6637 return;
6640 backing_overridden = bdrv_backing_overridden(bs);
6642 if (bs->open_flags & BDRV_O_NO_IO) {
6643 /* Without I/O, the backing file does not change anything.
6644 * Therefore, in such a case (primarily qemu-img), we can
6645 * pretend the backing file has not been overridden even if
6646 * it technically has been. */
6647 backing_overridden = false;
6650 /* Gather the options QDict */
6651 opts = qdict_new();
6652 generate_json_filename = append_strong_runtime_options(opts, bs);
6653 generate_json_filename |= backing_overridden;
6655 if (drv->bdrv_gather_child_options) {
6656 /* Some block drivers may not want to present all of their children's
6657 * options, or name them differently from BdrvChild.name */
6658 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
6659 } else {
6660 QLIST_FOREACH(child, &bs->children, next) {
6661 if (child->role == &child_backing && !backing_overridden) {
6662 /* We can skip the backing BDS if it has not been overridden */
6663 continue;
6666 qdict_put(opts, child->name,
6667 qobject_ref(child->bs->full_open_options));
6670 if (backing_overridden && !bs->backing) {
6671 /* Force no backing file */
6672 qdict_put_null(opts, "backing");
6676 qobject_unref(bs->full_open_options);
6677 bs->full_open_options = opts;
6679 if (drv->bdrv_refresh_filename) {
6680 /* Obsolete information is of no use here, so drop the old file name
6681 * information before refreshing it */
6682 bs->exact_filename[0] = '\0';
6684 drv->bdrv_refresh_filename(bs);
6685 } else if (bs->file) {
6686 /* Try to reconstruct valid information from the underlying file */
6688 bs->exact_filename[0] = '\0';
6691 * We can use the underlying file's filename if:
6692 * - it has a filename,
6693 * - the file is a protocol BDS, and
6694 * - opening that file (as this BDS's format) will automatically create
6695 * the BDS tree we have right now, that is:
6696 * - the user did not significantly change this BDS's behavior with
6697 * some explicit (strong) options
6698 * - no non-file child of this BDS has been overridden by the user
6699 * Both of these conditions are represented by generate_json_filename.
6701 if (bs->file->bs->exact_filename[0] &&
6702 bs->file->bs->drv->bdrv_file_open &&
6703 !generate_json_filename)
6705 strcpy(bs->exact_filename, bs->file->bs->exact_filename);
6709 if (bs->exact_filename[0]) {
6710 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
6711 } else {
6712 QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
6713 snprintf(bs->filename, sizeof(bs->filename), "json:%s",
6714 qstring_get_str(json));
6715 qobject_unref(json);
6719 char *bdrv_dirname(BlockDriverState *bs, Error **errp)
6721 BlockDriver *drv = bs->drv;
6723 if (!drv) {
6724 error_setg(errp, "Node '%s' is ejected", bs->node_name);
6725 return NULL;
6728 if (drv->bdrv_dirname) {
6729 return drv->bdrv_dirname(bs, errp);
6732 if (bs->file) {
6733 return bdrv_dirname(bs->file->bs, errp);
6736 bdrv_refresh_filename(bs);
6737 if (bs->exact_filename[0] != '\0') {
6738 return path_combine(bs->exact_filename, "");
6741 error_setg(errp, "Cannot generate a base directory for %s nodes",
6742 drv->format_name);
6743 return NULL;
6747 * Hot add/remove a BDS's child. So the user can take a child offline when
6748 * it is broken and take a new child online
6750 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
6751 Error **errp)
6754 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
6755 error_setg(errp, "The node %s does not support adding a child",
6756 bdrv_get_device_or_node_name(parent_bs));
6757 return;
6760 if (!QLIST_EMPTY(&child_bs->parents)) {
6761 error_setg(errp, "The node %s already has a parent",
6762 child_bs->node_name);
6763 return;
6766 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
6769 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
6771 BdrvChild *tmp;
6773 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
6774 error_setg(errp, "The node %s does not support removing a child",
6775 bdrv_get_device_or_node_name(parent_bs));
6776 return;
6779 QLIST_FOREACH(tmp, &parent_bs->children, next) {
6780 if (tmp == child) {
6781 break;
6785 if (!tmp) {
6786 error_setg(errp, "The node %s does not have a child named %s",
6787 bdrv_get_device_or_node_name(parent_bs),
6788 bdrv_get_device_or_node_name(child->bs));
6789 return;
6792 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);