iotests: Fix 232 for LUKS
[qemu/ar7.git] / block.c
blob35e78e2172d52f1a75fd1c6fe0e24179e9b594db
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/module.h"
34 #include "qapi/error.h"
35 #include "qapi/qmp/qdict.h"
36 #include "qapi/qmp/qjson.h"
37 #include "qapi/qmp/qnull.h"
38 #include "qapi/qmp/qstring.h"
39 #include "qapi/qobject-output-visitor.h"
40 #include "qapi/qapi-visit-block-core.h"
41 #include "sysemu/block-backend.h"
42 #include "sysemu/sysemu.h"
43 #include "qemu/notify.h"
44 #include "qemu/option.h"
45 #include "qemu/coroutine.h"
46 #include "block/qapi.h"
47 #include "qemu/timer.h"
48 #include "qemu/cutils.h"
49 #include "qemu/id.h"
51 #ifdef CONFIG_BSD
52 #include <sys/ioctl.h>
53 #include <sys/queue.h>
54 #ifndef __DragonFly__
55 #include <sys/disk.h>
56 #endif
57 #endif
59 #ifdef _WIN32
60 #include <windows.h>
61 #endif
63 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
65 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
66 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
68 static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
69 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
71 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
72 QLIST_HEAD_INITIALIZER(bdrv_drivers);
74 static BlockDriverState *bdrv_open_inherit(const char *filename,
75 const char *reference,
76 QDict *options, int flags,
77 BlockDriverState *parent,
78 const BdrvChildRole *child_role,
79 Error **errp);
81 /* If non-zero, use only whitelisted block drivers */
82 static int use_bdrv_whitelist;
84 #ifdef _WIN32
85 static int is_windows_drive_prefix(const char *filename)
87 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
88 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
89 filename[1] == ':');
92 int is_windows_drive(const char *filename)
94 if (is_windows_drive_prefix(filename) &&
95 filename[2] == '\0')
96 return 1;
97 if (strstart(filename, "\\\\.\\", NULL) ||
98 strstart(filename, "//./", NULL))
99 return 1;
100 return 0;
102 #endif
104 size_t bdrv_opt_mem_align(BlockDriverState *bs)
106 if (!bs || !bs->drv) {
107 /* page size or 4k (hdd sector size) should be on the safe side */
108 return MAX(4096, getpagesize());
111 return bs->bl.opt_mem_alignment;
114 size_t bdrv_min_mem_align(BlockDriverState *bs)
116 if (!bs || !bs->drv) {
117 /* page size or 4k (hdd sector size) should be on the safe side */
118 return MAX(4096, getpagesize());
121 return bs->bl.min_mem_alignment;
124 /* check if the path starts with "<protocol>:" */
125 int path_has_protocol(const char *path)
127 const char *p;
129 #ifdef _WIN32
130 if (is_windows_drive(path) ||
131 is_windows_drive_prefix(path)) {
132 return 0;
134 p = path + strcspn(path, ":/\\");
135 #else
136 p = path + strcspn(path, ":/");
137 #endif
139 return *p == ':';
142 int path_is_absolute(const char *path)
144 #ifdef _WIN32
145 /* specific case for names like: "\\.\d:" */
146 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
147 return 1;
149 return (*path == '/' || *path == '\\');
150 #else
151 return (*path == '/');
152 #endif
155 /* if filename is absolute, just return its duplicate. Otherwise, build a
156 path to it by considering it is relative to base_path. URL are
157 supported. */
158 char *path_combine(const char *base_path, const char *filename)
160 const char *protocol_stripped = NULL;
161 const char *p, *p1;
162 char *result;
163 int len;
165 if (path_is_absolute(filename)) {
166 return g_strdup(filename);
169 if (path_has_protocol(base_path)) {
170 protocol_stripped = strchr(base_path, ':');
171 if (protocol_stripped) {
172 protocol_stripped++;
175 p = protocol_stripped ?: base_path;
177 p1 = strrchr(base_path, '/');
178 #ifdef _WIN32
180 const char *p2;
181 p2 = strrchr(base_path, '\\');
182 if (!p1 || p2 > p1) {
183 p1 = p2;
186 #endif
187 if (p1) {
188 p1++;
189 } else {
190 p1 = base_path;
192 if (p1 > p) {
193 p = p1;
195 len = p - base_path;
197 result = g_malloc(len + strlen(filename) + 1);
198 memcpy(result, base_path, len);
199 strcpy(result + len, filename);
201 return result;
205 * Helper function for bdrv_parse_filename() implementations to remove optional
206 * protocol prefixes (especially "file:") from a filename and for putting the
207 * stripped filename into the options QDict if there is such a prefix.
209 void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
210 QDict *options)
212 if (strstart(filename, prefix, &filename)) {
213 /* Stripping the explicit protocol prefix may result in a protocol
214 * prefix being (wrongly) detected (if the filename contains a colon) */
215 if (path_has_protocol(filename)) {
216 QString *fat_filename;
218 /* This means there is some colon before the first slash; therefore,
219 * this cannot be an absolute path */
220 assert(!path_is_absolute(filename));
222 /* And we can thus fix the protocol detection issue by prefixing it
223 * by "./" */
224 fat_filename = qstring_from_str("./");
225 qstring_append(fat_filename, filename);
227 assert(!path_has_protocol(qstring_get_str(fat_filename)));
229 qdict_put(options, "filename", fat_filename);
230 } else {
231 /* If no protocol prefix was detected, we can use the shortened
232 * filename as-is */
233 qdict_put_str(options, "filename", filename);
239 /* Returns whether the image file is opened as read-only. Note that this can
240 * return false and writing to the image file is still not possible because the
241 * image is inactivated. */
242 bool bdrv_is_read_only(BlockDriverState *bs)
244 return bs->read_only;
247 int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
248 bool ignore_allow_rdw, Error **errp)
250 /* Do not set read_only if copy_on_read is enabled */
251 if (bs->copy_on_read && read_only) {
252 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
253 bdrv_get_device_or_node_name(bs));
254 return -EINVAL;
257 /* Do not clear read_only if it is prohibited */
258 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
259 !ignore_allow_rdw)
261 error_setg(errp, "Node '%s' is read only",
262 bdrv_get_device_or_node_name(bs));
263 return -EPERM;
266 return 0;
270 * Called by a driver that can only provide a read-only image.
272 * Returns 0 if the node is already read-only or it could switch the node to
273 * read-only because BDRV_O_AUTO_RDONLY is set.
275 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
276 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
277 * is not NULL, it is used as the error message for the Error object.
279 int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
280 Error **errp)
282 int ret = 0;
284 if (!(bs->open_flags & BDRV_O_RDWR)) {
285 return 0;
287 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
288 goto fail;
291 ret = bdrv_can_set_read_only(bs, true, false, NULL);
292 if (ret < 0) {
293 goto fail;
296 bs->read_only = true;
297 bs->open_flags &= ~BDRV_O_RDWR;
299 return 0;
301 fail:
302 error_setg(errp, "%s", errmsg ?: "Image is read-only");
303 return -EACCES;
307 * If @backing is empty, this function returns NULL without setting
308 * @errp. In all other cases, NULL will only be returned with @errp
309 * set.
311 * Therefore, a return value of NULL without @errp set means that
312 * there is no backing file; if @errp is set, there is one but its
313 * absolute filename cannot be generated.
315 char *bdrv_get_full_backing_filename_from_filename(const char *backed,
316 const char *backing,
317 Error **errp)
319 if (backing[0] == '\0') {
320 return NULL;
321 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
322 return g_strdup(backing);
323 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
324 error_setg(errp, "Cannot use relative backing file names for '%s'",
325 backed);
326 return NULL;
327 } else {
328 return path_combine(backed, backing);
333 * If @filename is empty or NULL, this function returns NULL without
334 * setting @errp. In all other cases, NULL will only be returned with
335 * @errp set.
337 static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
338 const char *filename, Error **errp)
340 char *dir, *full_name;
342 if (!filename || filename[0] == '\0') {
343 return NULL;
344 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
345 return g_strdup(filename);
348 dir = bdrv_dirname(relative_to, errp);
349 if (!dir) {
350 return NULL;
353 full_name = g_strconcat(dir, filename, NULL);
354 g_free(dir);
355 return full_name;
358 char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
360 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
363 void bdrv_register(BlockDriver *bdrv)
365 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
368 BlockDriverState *bdrv_new(void)
370 BlockDriverState *bs;
371 int i;
373 bs = g_new0(BlockDriverState, 1);
374 QLIST_INIT(&bs->dirty_bitmaps);
375 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
376 QLIST_INIT(&bs->op_blockers[i]);
378 notifier_with_return_list_init(&bs->before_write_notifiers);
379 qemu_co_mutex_init(&bs->reqs_lock);
380 qemu_mutex_init(&bs->dirty_bitmap_mutex);
381 bs->refcnt = 1;
382 bs->aio_context = qemu_get_aio_context();
384 qemu_co_queue_init(&bs->flush_queue);
386 for (i = 0; i < bdrv_drain_all_count; i++) {
387 bdrv_drained_begin(bs);
390 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
392 return bs;
395 static BlockDriver *bdrv_do_find_format(const char *format_name)
397 BlockDriver *drv1;
399 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
400 if (!strcmp(drv1->format_name, format_name)) {
401 return drv1;
405 return NULL;
408 BlockDriver *bdrv_find_format(const char *format_name)
410 BlockDriver *drv1;
411 int i;
413 drv1 = bdrv_do_find_format(format_name);
414 if (drv1) {
415 return drv1;
418 /* The driver isn't registered, maybe we need to load a module */
419 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
420 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
421 block_module_load_one(block_driver_modules[i].library_name);
422 break;
426 return bdrv_do_find_format(format_name);
429 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
431 static const char *whitelist_rw[] = {
432 CONFIG_BDRV_RW_WHITELIST
434 static const char *whitelist_ro[] = {
435 CONFIG_BDRV_RO_WHITELIST
437 const char **p;
439 if (!whitelist_rw[0] && !whitelist_ro[0]) {
440 return 1; /* no whitelist, anything goes */
443 for (p = whitelist_rw; *p; p++) {
444 if (!strcmp(drv->format_name, *p)) {
445 return 1;
448 if (read_only) {
449 for (p = whitelist_ro; *p; p++) {
450 if (!strcmp(drv->format_name, *p)) {
451 return 1;
455 return 0;
458 bool bdrv_uses_whitelist(void)
460 return use_bdrv_whitelist;
463 typedef struct CreateCo {
464 BlockDriver *drv;
465 char *filename;
466 QemuOpts *opts;
467 int ret;
468 Error *err;
469 } CreateCo;
471 static void coroutine_fn bdrv_create_co_entry(void *opaque)
473 Error *local_err = NULL;
474 int ret;
476 CreateCo *cco = opaque;
477 assert(cco->drv);
479 ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err);
480 error_propagate(&cco->err, local_err);
481 cco->ret = ret;
484 int bdrv_create(BlockDriver *drv, const char* filename,
485 QemuOpts *opts, Error **errp)
487 int ret;
489 Coroutine *co;
490 CreateCo cco = {
491 .drv = drv,
492 .filename = g_strdup(filename),
493 .opts = opts,
494 .ret = NOT_DONE,
495 .err = NULL,
498 if (!drv->bdrv_co_create_opts) {
499 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
500 ret = -ENOTSUP;
501 goto out;
504 if (qemu_in_coroutine()) {
505 /* Fast-path if already in coroutine context */
506 bdrv_create_co_entry(&cco);
507 } else {
508 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
509 qemu_coroutine_enter(co);
510 while (cco.ret == NOT_DONE) {
511 aio_poll(qemu_get_aio_context(), true);
515 ret = cco.ret;
516 if (ret < 0) {
517 if (cco.err) {
518 error_propagate(errp, cco.err);
519 } else {
520 error_setg_errno(errp, -ret, "Could not create image");
524 out:
525 g_free(cco.filename);
526 return ret;
529 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
531 BlockDriver *drv;
532 Error *local_err = NULL;
533 int ret;
535 drv = bdrv_find_protocol(filename, true, errp);
536 if (drv == NULL) {
537 return -ENOENT;
540 ret = bdrv_create(drv, filename, opts, &local_err);
541 error_propagate(errp, local_err);
542 return ret;
546 * Try to get @bs's logical and physical block size.
547 * On success, store them in @bsz struct and return 0.
548 * On failure return -errno.
549 * @bs must not be empty.
551 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
553 BlockDriver *drv = bs->drv;
555 if (drv && drv->bdrv_probe_blocksizes) {
556 return drv->bdrv_probe_blocksizes(bs, bsz);
557 } else if (drv && drv->is_filter && bs->file) {
558 return bdrv_probe_blocksizes(bs->file->bs, bsz);
561 return -ENOTSUP;
565 * Try to get @bs's geometry (cyls, heads, sectors).
566 * On success, store them in @geo struct and return 0.
567 * On failure return -errno.
568 * @bs must not be empty.
570 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
572 BlockDriver *drv = bs->drv;
574 if (drv && drv->bdrv_probe_geometry) {
575 return drv->bdrv_probe_geometry(bs, geo);
576 } else if (drv && drv->is_filter && bs->file) {
577 return bdrv_probe_geometry(bs->file->bs, geo);
580 return -ENOTSUP;
584 * Create a uniquely-named empty temporary file.
585 * Return 0 upon success, otherwise a negative errno value.
587 int get_tmp_filename(char *filename, int size)
589 #ifdef _WIN32
590 char temp_dir[MAX_PATH];
591 /* GetTempFileName requires that its output buffer (4th param)
592 have length MAX_PATH or greater. */
593 assert(size >= MAX_PATH);
594 return (GetTempPath(MAX_PATH, temp_dir)
595 && GetTempFileName(temp_dir, "qem", 0, filename)
596 ? 0 : -GetLastError());
597 #else
598 int fd;
599 const char *tmpdir;
600 tmpdir = getenv("TMPDIR");
601 if (!tmpdir) {
602 tmpdir = "/var/tmp";
604 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
605 return -EOVERFLOW;
607 fd = mkstemp(filename);
608 if (fd < 0) {
609 return -errno;
611 if (close(fd) != 0) {
612 unlink(filename);
613 return -errno;
615 return 0;
616 #endif
620 * Detect host devices. By convention, /dev/cdrom[N] is always
621 * recognized as a host CDROM.
623 static BlockDriver *find_hdev_driver(const char *filename)
625 int score_max = 0, score;
626 BlockDriver *drv = NULL, *d;
628 QLIST_FOREACH(d, &bdrv_drivers, list) {
629 if (d->bdrv_probe_device) {
630 score = d->bdrv_probe_device(filename);
631 if (score > score_max) {
632 score_max = score;
633 drv = d;
638 return drv;
641 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
643 BlockDriver *drv1;
645 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
646 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
647 return drv1;
651 return NULL;
654 BlockDriver *bdrv_find_protocol(const char *filename,
655 bool allow_protocol_prefix,
656 Error **errp)
658 BlockDriver *drv1;
659 char protocol[128];
660 int len;
661 const char *p;
662 int i;
664 /* TODO Drivers without bdrv_file_open must be specified explicitly */
667 * XXX(hch): we really should not let host device detection
668 * override an explicit protocol specification, but moving this
669 * later breaks access to device names with colons in them.
670 * Thanks to the brain-dead persistent naming schemes on udev-
671 * based Linux systems those actually are quite common.
673 drv1 = find_hdev_driver(filename);
674 if (drv1) {
675 return drv1;
678 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
679 return &bdrv_file;
682 p = strchr(filename, ':');
683 assert(p != NULL);
684 len = p - filename;
685 if (len > sizeof(protocol) - 1)
686 len = sizeof(protocol) - 1;
687 memcpy(protocol, filename, len);
688 protocol[len] = '\0';
690 drv1 = bdrv_do_find_protocol(protocol);
691 if (drv1) {
692 return drv1;
695 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
696 if (block_driver_modules[i].protocol_name &&
697 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
698 block_module_load_one(block_driver_modules[i].library_name);
699 break;
703 drv1 = bdrv_do_find_protocol(protocol);
704 if (!drv1) {
705 error_setg(errp, "Unknown protocol '%s'", protocol);
707 return drv1;
711 * Guess image format by probing its contents.
712 * This is not a good idea when your image is raw (CVE-2008-2004), but
713 * we do it anyway for backward compatibility.
715 * @buf contains the image's first @buf_size bytes.
716 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
717 * but can be smaller if the image file is smaller)
718 * @filename is its filename.
720 * For all block drivers, call the bdrv_probe() method to get its
721 * probing score.
722 * Return the first block driver with the highest probing score.
724 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
725 const char *filename)
727 int score_max = 0, score;
728 BlockDriver *drv = NULL, *d;
730 QLIST_FOREACH(d, &bdrv_drivers, list) {
731 if (d->bdrv_probe) {
732 score = d->bdrv_probe(buf, buf_size, filename);
733 if (score > score_max) {
734 score_max = score;
735 drv = d;
740 return drv;
743 static int find_image_format(BlockBackend *file, const char *filename,
744 BlockDriver **pdrv, Error **errp)
746 BlockDriver *drv;
747 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
748 int ret = 0;
750 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
751 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
752 *pdrv = &bdrv_raw;
753 return ret;
756 ret = blk_pread(file, 0, buf, sizeof(buf));
757 if (ret < 0) {
758 error_setg_errno(errp, -ret, "Could not read image for determining its "
759 "format");
760 *pdrv = NULL;
761 return ret;
764 drv = bdrv_probe_all(buf, ret, filename);
765 if (!drv) {
766 error_setg(errp, "Could not determine image format: No compatible "
767 "driver found");
768 ret = -ENOENT;
770 *pdrv = drv;
771 return ret;
775 * Set the current 'total_sectors' value
776 * Return 0 on success, -errno on error.
778 int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
780 BlockDriver *drv = bs->drv;
782 if (!drv) {
783 return -ENOMEDIUM;
786 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
787 if (bdrv_is_sg(bs))
788 return 0;
790 /* query actual device if possible, otherwise just trust the hint */
791 if (drv->bdrv_getlength) {
792 int64_t length = drv->bdrv_getlength(bs);
793 if (length < 0) {
794 return length;
796 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
799 bs->total_sectors = hint;
800 return 0;
804 * Combines a QDict of new block driver @options with any missing options taken
805 * from @old_options, so that leaving out an option defaults to its old value.
807 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
808 QDict *old_options)
810 if (bs->drv && bs->drv->bdrv_join_options) {
811 bs->drv->bdrv_join_options(options, old_options);
812 } else {
813 qdict_join(options, old_options, false);
817 static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
818 int open_flags,
819 Error **errp)
821 Error *local_err = NULL;
822 char *value = qemu_opt_get_del(opts, "detect-zeroes");
823 BlockdevDetectZeroesOptions detect_zeroes =
824 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
825 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
826 g_free(value);
827 if (local_err) {
828 error_propagate(errp, local_err);
829 return detect_zeroes;
832 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
833 !(open_flags & BDRV_O_UNMAP))
835 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
836 "without setting discard operation to unmap");
839 return detect_zeroes;
843 * Set open flags for a given discard mode
845 * Return 0 on success, -1 if the discard mode was invalid.
847 int bdrv_parse_discard_flags(const char *mode, int *flags)
849 *flags &= ~BDRV_O_UNMAP;
851 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
852 /* do nothing */
853 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
854 *flags |= BDRV_O_UNMAP;
855 } else {
856 return -1;
859 return 0;
863 * Set open flags for a given cache mode
865 * Return 0 on success, -1 if the cache mode was invalid.
867 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
869 *flags &= ~BDRV_O_CACHE_MASK;
871 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
872 *writethrough = false;
873 *flags |= BDRV_O_NOCACHE;
874 } else if (!strcmp(mode, "directsync")) {
875 *writethrough = true;
876 *flags |= BDRV_O_NOCACHE;
877 } else if (!strcmp(mode, "writeback")) {
878 *writethrough = false;
879 } else if (!strcmp(mode, "unsafe")) {
880 *writethrough = false;
881 *flags |= BDRV_O_NO_FLUSH;
882 } else if (!strcmp(mode, "writethrough")) {
883 *writethrough = true;
884 } else {
885 return -1;
888 return 0;
891 static char *bdrv_child_get_parent_desc(BdrvChild *c)
893 BlockDriverState *parent = c->opaque;
894 return g_strdup(bdrv_get_device_or_node_name(parent));
897 static void bdrv_child_cb_drained_begin(BdrvChild *child)
899 BlockDriverState *bs = child->opaque;
900 bdrv_do_drained_begin_quiesce(bs, NULL, false);
903 static bool bdrv_child_cb_drained_poll(BdrvChild *child)
905 BlockDriverState *bs = child->opaque;
906 return bdrv_drain_poll(bs, false, NULL, false);
909 static void bdrv_child_cb_drained_end(BdrvChild *child)
911 BlockDriverState *bs = child->opaque;
912 bdrv_drained_end(bs);
915 static void bdrv_child_cb_attach(BdrvChild *child)
917 BlockDriverState *bs = child->opaque;
918 bdrv_apply_subtree_drain(child, bs);
921 static void bdrv_child_cb_detach(BdrvChild *child)
923 BlockDriverState *bs = child->opaque;
924 bdrv_unapply_subtree_drain(child, bs);
927 static int bdrv_child_cb_inactivate(BdrvChild *child)
929 BlockDriverState *bs = child->opaque;
930 assert(bs->open_flags & BDRV_O_INACTIVE);
931 return 0;
935 * Returns the options and flags that a temporary snapshot should get, based on
936 * the originally requested flags (the originally requested image will have
937 * flags like a backing file)
939 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
940 int parent_flags, QDict *parent_options)
942 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
944 /* For temporary files, unconditional cache=unsafe is fine */
945 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
946 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
948 /* Copy the read-only option from the parent */
949 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
951 /* aio=native doesn't work for cache.direct=off, so disable it for the
952 * temporary snapshot */
953 *child_flags &= ~BDRV_O_NATIVE_AIO;
957 * Returns the options and flags that bs->file should get if a protocol driver
958 * is expected, based on the given options and flags for the parent BDS
960 static void bdrv_inherited_options(int *child_flags, QDict *child_options,
961 int parent_flags, QDict *parent_options)
963 int flags = parent_flags;
965 /* Enable protocol handling, disable format probing for bs->file */
966 flags |= BDRV_O_PROTOCOL;
968 /* If the cache mode isn't explicitly set, inherit direct and no-flush from
969 * the parent. */
970 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
971 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
972 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
974 /* Inherit the read-only option from the parent if it's not set */
975 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
976 qdict_copy_default(child_options, parent_options, BDRV_OPT_AUTO_READ_ONLY);
978 /* Our block drivers take care to send flushes and respect unmap policy,
979 * so we can default to enable both on lower layers regardless of the
980 * corresponding parent options. */
981 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
983 /* Clear flags that only apply to the top layer */
984 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
985 BDRV_O_NO_IO);
987 *child_flags = flags;
990 const BdrvChildRole child_file = {
991 .parent_is_bds = true,
992 .get_parent_desc = bdrv_child_get_parent_desc,
993 .inherit_options = bdrv_inherited_options,
994 .drained_begin = bdrv_child_cb_drained_begin,
995 .drained_poll = bdrv_child_cb_drained_poll,
996 .drained_end = bdrv_child_cb_drained_end,
997 .attach = bdrv_child_cb_attach,
998 .detach = bdrv_child_cb_detach,
999 .inactivate = bdrv_child_cb_inactivate,
1003 * Returns the options and flags that bs->file should get if the use of formats
1004 * (and not only protocols) is permitted for it, based on the given options and
1005 * flags for the parent BDS
1007 static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
1008 int parent_flags, QDict *parent_options)
1010 child_file.inherit_options(child_flags, child_options,
1011 parent_flags, parent_options);
1013 *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
1016 const BdrvChildRole child_format = {
1017 .parent_is_bds = true,
1018 .get_parent_desc = bdrv_child_get_parent_desc,
1019 .inherit_options = bdrv_inherited_fmt_options,
1020 .drained_begin = bdrv_child_cb_drained_begin,
1021 .drained_poll = bdrv_child_cb_drained_poll,
1022 .drained_end = bdrv_child_cb_drained_end,
1023 .attach = bdrv_child_cb_attach,
1024 .detach = bdrv_child_cb_detach,
1025 .inactivate = bdrv_child_cb_inactivate,
1028 static void bdrv_backing_attach(BdrvChild *c)
1030 BlockDriverState *parent = c->opaque;
1031 BlockDriverState *backing_hd = c->bs;
1033 assert(!parent->backing_blocker);
1034 error_setg(&parent->backing_blocker,
1035 "node is used as backing hd of '%s'",
1036 bdrv_get_device_or_node_name(parent));
1038 bdrv_refresh_filename(backing_hd);
1040 parent->open_flags &= ~BDRV_O_NO_BACKING;
1041 pstrcpy(parent->backing_file, sizeof(parent->backing_file),
1042 backing_hd->filename);
1043 pstrcpy(parent->backing_format, sizeof(parent->backing_format),
1044 backing_hd->drv ? backing_hd->drv->format_name : "");
1046 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1047 /* Otherwise we won't be able to commit or stream */
1048 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1049 parent->backing_blocker);
1050 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1051 parent->backing_blocker);
1053 * We do backup in 3 ways:
1054 * 1. drive backup
1055 * The target bs is new opened, and the source is top BDS
1056 * 2. blockdev backup
1057 * Both the source and the target are top BDSes.
1058 * 3. internal backup(used for block replication)
1059 * Both the source and the target are backing file
1061 * In case 1 and 2, neither the source nor the target is the backing file.
1062 * In case 3, we will block the top BDS, so there is only one block job
1063 * for the top BDS and its backing chain.
1065 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1066 parent->backing_blocker);
1067 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1068 parent->backing_blocker);
1070 bdrv_child_cb_attach(c);
1073 static void bdrv_backing_detach(BdrvChild *c)
1075 BlockDriverState *parent = c->opaque;
1077 assert(parent->backing_blocker);
1078 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1079 error_free(parent->backing_blocker);
1080 parent->backing_blocker = NULL;
1082 bdrv_child_cb_detach(c);
1086 * Returns the options and flags that bs->backing should get, based on the
1087 * given options and flags for the parent BDS
1089 static void bdrv_backing_options(int *child_flags, QDict *child_options,
1090 int parent_flags, QDict *parent_options)
1092 int flags = parent_flags;
1094 /* The cache mode is inherited unmodified for backing files; except WCE,
1095 * which is only applied on the top level (BlockBackend) */
1096 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1097 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1098 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1100 /* backing files always opened read-only */
1101 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1102 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1103 flags &= ~BDRV_O_COPY_ON_READ;
1105 /* snapshot=on is handled on the top layer */
1106 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
1108 *child_flags = flags;
1111 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1112 const char *filename, Error **errp)
1114 BlockDriverState *parent = c->opaque;
1115 bool read_only = bdrv_is_read_only(parent);
1116 int ret;
1118 if (read_only) {
1119 ret = bdrv_reopen_set_read_only(parent, false, errp);
1120 if (ret < 0) {
1121 return ret;
1125 ret = bdrv_change_backing_file(parent, filename,
1126 base->drv ? base->drv->format_name : "");
1127 if (ret < 0) {
1128 error_setg_errno(errp, -ret, "Could not update backing file link");
1131 if (read_only) {
1132 bdrv_reopen_set_read_only(parent, true, NULL);
1135 return ret;
1138 const BdrvChildRole child_backing = {
1139 .parent_is_bds = true,
1140 .get_parent_desc = bdrv_child_get_parent_desc,
1141 .attach = bdrv_backing_attach,
1142 .detach = bdrv_backing_detach,
1143 .inherit_options = bdrv_backing_options,
1144 .drained_begin = bdrv_child_cb_drained_begin,
1145 .drained_poll = bdrv_child_cb_drained_poll,
1146 .drained_end = bdrv_child_cb_drained_end,
1147 .inactivate = bdrv_child_cb_inactivate,
1148 .update_filename = bdrv_backing_update_filename,
1151 static int bdrv_open_flags(BlockDriverState *bs, int flags)
1153 int open_flags = flags;
1156 * Clear flags that are internal to the block layer before opening the
1157 * image.
1159 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1162 * Snapshots should be writable.
1164 if (flags & BDRV_O_TEMPORARY) {
1165 open_flags |= BDRV_O_RDWR;
1168 return open_flags;
1171 static void update_flags_from_options(int *flags, QemuOpts *opts)
1173 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
1175 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1176 *flags |= BDRV_O_NO_FLUSH;
1179 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1180 *flags |= BDRV_O_NOCACHE;
1183 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
1184 *flags |= BDRV_O_RDWR;
1187 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1188 *flags |= BDRV_O_AUTO_RDONLY;
1192 static void update_options_from_flags(QDict *options, int flags)
1194 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1195 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1197 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
1198 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1199 flags & BDRV_O_NO_FLUSH);
1201 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1202 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1204 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1205 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1206 flags & BDRV_O_AUTO_RDONLY);
1210 static void bdrv_assign_node_name(BlockDriverState *bs,
1211 const char *node_name,
1212 Error **errp)
1214 char *gen_node_name = NULL;
1216 if (!node_name) {
1217 node_name = gen_node_name = id_generate(ID_BLOCK);
1218 } else if (!id_wellformed(node_name)) {
1220 * Check for empty string or invalid characters, but not if it is
1221 * generated (generated names use characters not available to the user)
1223 error_setg(errp, "Invalid node name");
1224 return;
1227 /* takes care of avoiding namespaces collisions */
1228 if (blk_by_name(node_name)) {
1229 error_setg(errp, "node-name=%s is conflicting with a device id",
1230 node_name);
1231 goto out;
1234 /* takes care of avoiding duplicates node names */
1235 if (bdrv_find_node(node_name)) {
1236 error_setg(errp, "Duplicate node name");
1237 goto out;
1240 /* Make sure that the node name isn't truncated */
1241 if (strlen(node_name) >= sizeof(bs->node_name)) {
1242 error_setg(errp, "Node name too long");
1243 goto out;
1246 /* copy node name into the bs and insert it into the graph list */
1247 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1248 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
1249 out:
1250 g_free(gen_node_name);
1253 static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1254 const char *node_name, QDict *options,
1255 int open_flags, Error **errp)
1257 Error *local_err = NULL;
1258 int i, ret;
1260 bdrv_assign_node_name(bs, node_name, &local_err);
1261 if (local_err) {
1262 error_propagate(errp, local_err);
1263 return -EINVAL;
1266 bs->drv = drv;
1267 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1268 bs->opaque = g_malloc0(drv->instance_size);
1270 if (drv->bdrv_file_open) {
1271 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1272 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1273 } else if (drv->bdrv_open) {
1274 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1275 } else {
1276 ret = 0;
1279 if (ret < 0) {
1280 if (local_err) {
1281 error_propagate(errp, local_err);
1282 } else if (bs->filename[0]) {
1283 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1284 } else {
1285 error_setg_errno(errp, -ret, "Could not open image");
1287 goto open_failed;
1290 ret = refresh_total_sectors(bs, bs->total_sectors);
1291 if (ret < 0) {
1292 error_setg_errno(errp, -ret, "Could not refresh total sector count");
1293 return ret;
1296 bdrv_refresh_limits(bs, &local_err);
1297 if (local_err) {
1298 error_propagate(errp, local_err);
1299 return -EINVAL;
1302 assert(bdrv_opt_mem_align(bs) != 0);
1303 assert(bdrv_min_mem_align(bs) != 0);
1304 assert(is_power_of_2(bs->bl.request_alignment));
1306 for (i = 0; i < bs->quiesce_counter; i++) {
1307 if (drv->bdrv_co_drain_begin) {
1308 drv->bdrv_co_drain_begin(bs);
1312 return 0;
1313 open_failed:
1314 bs->drv = NULL;
1315 if (bs->file != NULL) {
1316 bdrv_unref_child(bs, bs->file);
1317 bs->file = NULL;
1319 g_free(bs->opaque);
1320 bs->opaque = NULL;
1321 return ret;
1324 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1325 int flags, Error **errp)
1327 BlockDriverState *bs;
1328 int ret;
1330 bs = bdrv_new();
1331 bs->open_flags = flags;
1332 bs->explicit_options = qdict_new();
1333 bs->options = qdict_new();
1334 bs->opaque = NULL;
1336 update_options_from_flags(bs->options, flags);
1338 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1339 if (ret < 0) {
1340 qobject_unref(bs->explicit_options);
1341 bs->explicit_options = NULL;
1342 qobject_unref(bs->options);
1343 bs->options = NULL;
1344 bdrv_unref(bs);
1345 return NULL;
1348 return bs;
1351 QemuOptsList bdrv_runtime_opts = {
1352 .name = "bdrv_common",
1353 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1354 .desc = {
1356 .name = "node-name",
1357 .type = QEMU_OPT_STRING,
1358 .help = "Node name of the block device node",
1361 .name = "driver",
1362 .type = QEMU_OPT_STRING,
1363 .help = "Block driver to use for the node",
1366 .name = BDRV_OPT_CACHE_DIRECT,
1367 .type = QEMU_OPT_BOOL,
1368 .help = "Bypass software writeback cache on the host",
1371 .name = BDRV_OPT_CACHE_NO_FLUSH,
1372 .type = QEMU_OPT_BOOL,
1373 .help = "Ignore flush requests",
1376 .name = BDRV_OPT_READ_ONLY,
1377 .type = QEMU_OPT_BOOL,
1378 .help = "Node is opened in read-only mode",
1381 .name = BDRV_OPT_AUTO_READ_ONLY,
1382 .type = QEMU_OPT_BOOL,
1383 .help = "Node can become read-only if opening read-write fails",
1386 .name = "detect-zeroes",
1387 .type = QEMU_OPT_STRING,
1388 .help = "try to optimize zero writes (off, on, unmap)",
1391 .name = BDRV_OPT_DISCARD,
1392 .type = QEMU_OPT_STRING,
1393 .help = "discard operation (ignore/off, unmap/on)",
1396 .name = BDRV_OPT_FORCE_SHARE,
1397 .type = QEMU_OPT_BOOL,
1398 .help = "always accept other writers (default: off)",
1400 { /* end of list */ }
1405 * Common part for opening disk images and files
1407 * Removes all processed options from *options.
1409 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1410 QDict *options, Error **errp)
1412 int ret, open_flags;
1413 const char *filename;
1414 const char *driver_name = NULL;
1415 const char *node_name = NULL;
1416 const char *discard;
1417 QemuOpts *opts;
1418 BlockDriver *drv;
1419 Error *local_err = NULL;
1421 assert(bs->file == NULL);
1422 assert(options != NULL && bs->options != options);
1424 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1425 qemu_opts_absorb_qdict(opts, options, &local_err);
1426 if (local_err) {
1427 error_propagate(errp, local_err);
1428 ret = -EINVAL;
1429 goto fail_opts;
1432 update_flags_from_options(&bs->open_flags, opts);
1434 driver_name = qemu_opt_get(opts, "driver");
1435 drv = bdrv_find_format(driver_name);
1436 assert(drv != NULL);
1438 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1440 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1441 error_setg(errp,
1442 BDRV_OPT_FORCE_SHARE
1443 "=on can only be used with read-only images");
1444 ret = -EINVAL;
1445 goto fail_opts;
1448 if (file != NULL) {
1449 bdrv_refresh_filename(blk_bs(file));
1450 filename = blk_bs(file)->filename;
1451 } else {
1453 * Caution: while qdict_get_try_str() is fine, getting
1454 * non-string types would require more care. When @options
1455 * come from -blockdev or blockdev_add, its members are typed
1456 * according to the QAPI schema, but when they come from
1457 * -drive, they're all QString.
1459 filename = qdict_get_try_str(options, "filename");
1462 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1463 error_setg(errp, "The '%s' block driver requires a file name",
1464 drv->format_name);
1465 ret = -EINVAL;
1466 goto fail_opts;
1469 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1470 drv->format_name);
1472 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1474 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
1475 if (!bs->read_only && bdrv_is_whitelisted(drv, true)) {
1476 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1477 } else {
1478 ret = -ENOTSUP;
1480 if (ret < 0) {
1481 error_setg(errp,
1482 !bs->read_only && bdrv_is_whitelisted(drv, true)
1483 ? "Driver '%s' can only be used for read-only devices"
1484 : "Driver '%s' is not whitelisted",
1485 drv->format_name);
1486 goto fail_opts;
1490 /* bdrv_new() and bdrv_close() make it so */
1491 assert(atomic_read(&bs->copy_on_read) == 0);
1493 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1494 if (!bs->read_only) {
1495 bdrv_enable_copy_on_read(bs);
1496 } else {
1497 error_setg(errp, "Can't use copy-on-read on read-only device");
1498 ret = -EINVAL;
1499 goto fail_opts;
1503 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
1504 if (discard != NULL) {
1505 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1506 error_setg(errp, "Invalid discard option");
1507 ret = -EINVAL;
1508 goto fail_opts;
1512 bs->detect_zeroes =
1513 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1514 if (local_err) {
1515 error_propagate(errp, local_err);
1516 ret = -EINVAL;
1517 goto fail_opts;
1520 if (filename != NULL) {
1521 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1522 } else {
1523 bs->filename[0] = '\0';
1525 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1527 /* Open the image, either directly or using a protocol */
1528 open_flags = bdrv_open_flags(bs, bs->open_flags);
1529 node_name = qemu_opt_get(opts, "node-name");
1531 assert(!drv->bdrv_file_open || file == NULL);
1532 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1533 if (ret < 0) {
1534 goto fail_opts;
1537 qemu_opts_del(opts);
1538 return 0;
1540 fail_opts:
1541 qemu_opts_del(opts);
1542 return ret;
1545 static QDict *parse_json_filename(const char *filename, Error **errp)
1547 QObject *options_obj;
1548 QDict *options;
1549 int ret;
1551 ret = strstart(filename, "json:", &filename);
1552 assert(ret);
1554 options_obj = qobject_from_json(filename, errp);
1555 if (!options_obj) {
1556 error_prepend(errp, "Could not parse the JSON options: ");
1557 return NULL;
1560 options = qobject_to(QDict, options_obj);
1561 if (!options) {
1562 qobject_unref(options_obj);
1563 error_setg(errp, "Invalid JSON object given");
1564 return NULL;
1567 qdict_flatten(options);
1569 return options;
1572 static void parse_json_protocol(QDict *options, const char **pfilename,
1573 Error **errp)
1575 QDict *json_options;
1576 Error *local_err = NULL;
1578 /* Parse json: pseudo-protocol */
1579 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1580 return;
1583 json_options = parse_json_filename(*pfilename, &local_err);
1584 if (local_err) {
1585 error_propagate(errp, local_err);
1586 return;
1589 /* Options given in the filename have lower priority than options
1590 * specified directly */
1591 qdict_join(options, json_options, false);
1592 qobject_unref(json_options);
1593 *pfilename = NULL;
1597 * Fills in default options for opening images and converts the legacy
1598 * filename/flags pair to option QDict entries.
1599 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1600 * block driver has been specified explicitly.
1602 static int bdrv_fill_options(QDict **options, const char *filename,
1603 int *flags, Error **errp)
1605 const char *drvname;
1606 bool protocol = *flags & BDRV_O_PROTOCOL;
1607 bool parse_filename = false;
1608 BlockDriver *drv = NULL;
1609 Error *local_err = NULL;
1612 * Caution: while qdict_get_try_str() is fine, getting non-string
1613 * types would require more care. When @options come from
1614 * -blockdev or blockdev_add, its members are typed according to
1615 * the QAPI schema, but when they come from -drive, they're all
1616 * QString.
1618 drvname = qdict_get_try_str(*options, "driver");
1619 if (drvname) {
1620 drv = bdrv_find_format(drvname);
1621 if (!drv) {
1622 error_setg(errp, "Unknown driver '%s'", drvname);
1623 return -ENOENT;
1625 /* If the user has explicitly specified the driver, this choice should
1626 * override the BDRV_O_PROTOCOL flag */
1627 protocol = drv->bdrv_file_open;
1630 if (protocol) {
1631 *flags |= BDRV_O_PROTOCOL;
1632 } else {
1633 *flags &= ~BDRV_O_PROTOCOL;
1636 /* Translate cache options from flags into options */
1637 update_options_from_flags(*options, *flags);
1639 /* Fetch the file name from the options QDict if necessary */
1640 if (protocol && filename) {
1641 if (!qdict_haskey(*options, "filename")) {
1642 qdict_put_str(*options, "filename", filename);
1643 parse_filename = true;
1644 } else {
1645 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1646 "the same time");
1647 return -EINVAL;
1651 /* Find the right block driver */
1652 /* See cautionary note on accessing @options above */
1653 filename = qdict_get_try_str(*options, "filename");
1655 if (!drvname && protocol) {
1656 if (filename) {
1657 drv = bdrv_find_protocol(filename, parse_filename, errp);
1658 if (!drv) {
1659 return -EINVAL;
1662 drvname = drv->format_name;
1663 qdict_put_str(*options, "driver", drvname);
1664 } else {
1665 error_setg(errp, "Must specify either driver or file");
1666 return -EINVAL;
1670 assert(drv || !protocol);
1672 /* Driver-specific filename parsing */
1673 if (drv && drv->bdrv_parse_filename && parse_filename) {
1674 drv->bdrv_parse_filename(filename, *options, &local_err);
1675 if (local_err) {
1676 error_propagate(errp, local_err);
1677 return -EINVAL;
1680 if (!drv->bdrv_needs_filename) {
1681 qdict_del(*options, "filename");
1685 return 0;
1688 static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1689 uint64_t perm, uint64_t shared,
1690 GSList *ignore_children, Error **errp);
1691 static void bdrv_child_abort_perm_update(BdrvChild *c);
1692 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1694 typedef struct BlockReopenQueueEntry {
1695 bool prepared;
1696 BDRVReopenState state;
1697 QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1698 } BlockReopenQueueEntry;
1701 * Return the flags that @bs will have after the reopens in @q have
1702 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1703 * return the current flags.
1705 static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1707 BlockReopenQueueEntry *entry;
1709 if (q != NULL) {
1710 QSIMPLEQ_FOREACH(entry, q, entry) {
1711 if (entry->state.bs == bs) {
1712 return entry->state.flags;
1717 return bs->open_flags;
1720 /* Returns whether the image file can be written to after the reopen queue @q
1721 * has been successfully applied, or right now if @q is NULL. */
1722 static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1723 BlockReopenQueue *q)
1725 int flags = bdrv_reopen_get_flags(q, bs);
1727 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1731 * Return whether the BDS can be written to. This is not necessarily
1732 * the same as !bdrv_is_read_only(bs), as inactivated images may not
1733 * be written to but do not count as read-only images.
1735 bool bdrv_is_writable(BlockDriverState *bs)
1737 return bdrv_is_writable_after_reopen(bs, NULL);
1740 static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
1741 BdrvChild *c, const BdrvChildRole *role,
1742 BlockReopenQueue *reopen_queue,
1743 uint64_t parent_perm, uint64_t parent_shared,
1744 uint64_t *nperm, uint64_t *nshared)
1746 if (bs->drv && bs->drv->bdrv_child_perm) {
1747 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
1748 parent_perm, parent_shared,
1749 nperm, nshared);
1751 /* TODO Take force_share from reopen_queue */
1752 if (child_bs && child_bs->force_share) {
1753 *nshared = BLK_PERM_ALL;
1758 * Check whether permissions on this node can be changed in a way that
1759 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1760 * permissions of all its parents. This involves checking whether all necessary
1761 * permission changes to child nodes can be performed.
1763 * A call to this function must always be followed by a call to bdrv_set_perm()
1764 * or bdrv_abort_perm_update().
1766 static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
1767 uint64_t cumulative_perms,
1768 uint64_t cumulative_shared_perms,
1769 GSList *ignore_children, Error **errp)
1771 BlockDriver *drv = bs->drv;
1772 BdrvChild *c;
1773 int ret;
1775 /* Write permissions never work with read-only images */
1776 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
1777 !bdrv_is_writable_after_reopen(bs, q))
1779 error_setg(errp, "Block node is read-only");
1780 return -EPERM;
1783 /* Check this node */
1784 if (!drv) {
1785 return 0;
1788 if (drv->bdrv_check_perm) {
1789 return drv->bdrv_check_perm(bs, cumulative_perms,
1790 cumulative_shared_perms, errp);
1793 /* Drivers that never have children can omit .bdrv_child_perm() */
1794 if (!drv->bdrv_child_perm) {
1795 assert(QLIST_EMPTY(&bs->children));
1796 return 0;
1799 /* Check all children */
1800 QLIST_FOREACH(c, &bs->children, next) {
1801 uint64_t cur_perm, cur_shared;
1802 bdrv_child_perm(bs, c->bs, c, c->role, q,
1803 cumulative_perms, cumulative_shared_perms,
1804 &cur_perm, &cur_shared);
1805 ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
1806 ignore_children, errp);
1807 if (ret < 0) {
1808 return ret;
1812 return 0;
1816 * Notifies drivers that after a previous bdrv_check_perm() call, the
1817 * permission update is not performed and any preparations made for it (e.g.
1818 * taken file locks) need to be undone.
1820 * This function recursively notifies all child nodes.
1822 static void bdrv_abort_perm_update(BlockDriverState *bs)
1824 BlockDriver *drv = bs->drv;
1825 BdrvChild *c;
1827 if (!drv) {
1828 return;
1831 if (drv->bdrv_abort_perm_update) {
1832 drv->bdrv_abort_perm_update(bs);
1835 QLIST_FOREACH(c, &bs->children, next) {
1836 bdrv_child_abort_perm_update(c);
1840 static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
1841 uint64_t cumulative_shared_perms)
1843 BlockDriver *drv = bs->drv;
1844 BdrvChild *c;
1846 if (!drv) {
1847 return;
1850 /* Update this node */
1851 if (drv->bdrv_set_perm) {
1852 drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
1855 /* Drivers that never have children can omit .bdrv_child_perm() */
1856 if (!drv->bdrv_child_perm) {
1857 assert(QLIST_EMPTY(&bs->children));
1858 return;
1861 /* Update all children */
1862 QLIST_FOREACH(c, &bs->children, next) {
1863 uint64_t cur_perm, cur_shared;
1864 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
1865 cumulative_perms, cumulative_shared_perms,
1866 &cur_perm, &cur_shared);
1867 bdrv_child_set_perm(c, cur_perm, cur_shared);
1871 static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
1872 uint64_t *shared_perm)
1874 BdrvChild *c;
1875 uint64_t cumulative_perms = 0;
1876 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
1878 QLIST_FOREACH(c, &bs->parents, next_parent) {
1879 cumulative_perms |= c->perm;
1880 cumulative_shared_perms &= c->shared_perm;
1883 *perm = cumulative_perms;
1884 *shared_perm = cumulative_shared_perms;
1887 static char *bdrv_child_user_desc(BdrvChild *c)
1889 if (c->role->get_parent_desc) {
1890 return c->role->get_parent_desc(c);
1893 return g_strdup("another user");
1896 char *bdrv_perm_names(uint64_t perm)
1898 struct perm_name {
1899 uint64_t perm;
1900 const char *name;
1901 } permissions[] = {
1902 { BLK_PERM_CONSISTENT_READ, "consistent read" },
1903 { BLK_PERM_WRITE, "write" },
1904 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1905 { BLK_PERM_RESIZE, "resize" },
1906 { BLK_PERM_GRAPH_MOD, "change children" },
1907 { 0, NULL }
1910 char *result = g_strdup("");
1911 struct perm_name *p;
1913 for (p = permissions; p->name; p++) {
1914 if (perm & p->perm) {
1915 char *old = result;
1916 result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1917 g_free(old);
1921 return result;
1925 * Checks whether a new reference to @bs can be added if the new user requires
1926 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
1927 * set, the BdrvChild objects in this list are ignored in the calculations;
1928 * this allows checking permission updates for an existing reference.
1930 * Needs to be followed by a call to either bdrv_set_perm() or
1931 * bdrv_abort_perm_update(). */
1932 static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
1933 uint64_t new_used_perm,
1934 uint64_t new_shared_perm,
1935 GSList *ignore_children, Error **errp)
1937 BdrvChild *c;
1938 uint64_t cumulative_perms = new_used_perm;
1939 uint64_t cumulative_shared_perms = new_shared_perm;
1941 /* There is no reason why anyone couldn't tolerate write_unchanged */
1942 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1944 QLIST_FOREACH(c, &bs->parents, next_parent) {
1945 if (g_slist_find(ignore_children, c)) {
1946 continue;
1949 if ((new_used_perm & c->shared_perm) != new_used_perm) {
1950 char *user = bdrv_child_user_desc(c);
1951 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1952 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1953 "allow '%s' on %s",
1954 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1955 g_free(user);
1956 g_free(perm_names);
1957 return -EPERM;
1960 if ((c->perm & new_shared_perm) != c->perm) {
1961 char *user = bdrv_child_user_desc(c);
1962 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1963 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1964 "'%s' on %s",
1965 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1966 g_free(user);
1967 g_free(perm_names);
1968 return -EPERM;
1971 cumulative_perms |= c->perm;
1972 cumulative_shared_perms &= c->shared_perm;
1975 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
1976 ignore_children, errp);
1979 /* Needs to be followed by a call to either bdrv_child_set_perm() or
1980 * bdrv_child_abort_perm_update(). */
1981 static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1982 uint64_t perm, uint64_t shared,
1983 GSList *ignore_children, Error **errp)
1985 int ret;
1987 ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
1988 ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
1989 g_slist_free(ignore_children);
1991 if (ret < 0) {
1992 return ret;
1995 if (!c->has_backup_perm) {
1996 c->has_backup_perm = true;
1997 c->backup_perm = c->perm;
1998 c->backup_shared_perm = c->shared_perm;
2001 * Note: it's OK if c->has_backup_perm was already set, as we can find the
2002 * same child twice during check_perm procedure
2005 c->perm = perm;
2006 c->shared_perm = shared;
2008 return 0;
2011 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
2013 uint64_t cumulative_perms, cumulative_shared_perms;
2015 c->has_backup_perm = false;
2017 c->perm = perm;
2018 c->shared_perm = shared;
2020 bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
2021 &cumulative_shared_perms);
2022 bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
2025 static void bdrv_child_abort_perm_update(BdrvChild *c)
2027 if (c->has_backup_perm) {
2028 c->perm = c->backup_perm;
2029 c->shared_perm = c->backup_shared_perm;
2030 c->has_backup_perm = false;
2033 bdrv_abort_perm_update(c->bs);
2036 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2037 Error **errp)
2039 int ret;
2041 ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
2042 if (ret < 0) {
2043 bdrv_child_abort_perm_update(c);
2044 return ret;
2047 bdrv_child_set_perm(c, perm, shared);
2049 return 0;
2052 void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
2053 const BdrvChildRole *role,
2054 BlockReopenQueue *reopen_queue,
2055 uint64_t perm, uint64_t shared,
2056 uint64_t *nperm, uint64_t *nshared)
2058 if (c == NULL) {
2059 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2060 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
2061 return;
2064 *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
2065 (c->perm & DEFAULT_PERM_UNCHANGED);
2066 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
2067 (c->shared_perm & DEFAULT_PERM_UNCHANGED);
2070 void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
2071 const BdrvChildRole *role,
2072 BlockReopenQueue *reopen_queue,
2073 uint64_t perm, uint64_t shared,
2074 uint64_t *nperm, uint64_t *nshared)
2076 bool backing = (role == &child_backing);
2077 assert(role == &child_backing || role == &child_file);
2079 if (!backing) {
2080 int flags = bdrv_reopen_get_flags(reopen_queue, bs);
2082 /* Apart from the modifications below, the same permissions are
2083 * forwarded and left alone as for filters */
2084 bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
2085 &perm, &shared);
2087 /* Format drivers may touch metadata even if the guest doesn't write */
2088 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2089 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2092 /* bs->file always needs to be consistent because of the metadata. We
2093 * can never allow other users to resize or write to it. */
2094 if (!(flags & BDRV_O_NO_IO)) {
2095 perm |= BLK_PERM_CONSISTENT_READ;
2097 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2098 } else {
2099 /* We want consistent read from backing files if the parent needs it.
2100 * No other operations are performed on backing files. */
2101 perm &= BLK_PERM_CONSISTENT_READ;
2103 /* If the parent can deal with changing data, we're okay with a
2104 * writable and resizable backing file. */
2105 /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
2106 if (shared & BLK_PERM_WRITE) {
2107 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2108 } else {
2109 shared = 0;
2112 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2113 BLK_PERM_WRITE_UNCHANGED;
2116 if (bs->open_flags & BDRV_O_INACTIVE) {
2117 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2120 *nperm = perm;
2121 *nshared = shared;
2124 static void bdrv_replace_child_noperm(BdrvChild *child,
2125 BlockDriverState *new_bs)
2127 BlockDriverState *old_bs = child->bs;
2128 int i;
2130 if (old_bs && new_bs) {
2131 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2133 if (old_bs) {
2134 /* Detach first so that the recursive drain sections coming from @child
2135 * are already gone and we only end the drain sections that came from
2136 * elsewhere. */
2137 if (child->role->detach) {
2138 child->role->detach(child);
2140 if (old_bs->quiesce_counter && child->role->drained_end) {
2141 int num = old_bs->quiesce_counter;
2142 if (child->role->parent_is_bds) {
2143 num -= bdrv_drain_all_count;
2145 assert(num >= 0);
2146 for (i = 0; i < num; i++) {
2147 child->role->drained_end(child);
2150 QLIST_REMOVE(child, next_parent);
2153 child->bs = new_bs;
2155 if (new_bs) {
2156 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2157 if (new_bs->quiesce_counter && child->role->drained_begin) {
2158 int num = new_bs->quiesce_counter;
2159 if (child->role->parent_is_bds) {
2160 num -= bdrv_drain_all_count;
2162 assert(num >= 0);
2163 for (i = 0; i < num; i++) {
2164 bdrv_parent_drained_begin_single(child, true);
2168 /* Attach only after starting new drained sections, so that recursive
2169 * drain sections coming from @child don't get an extra .drained_begin
2170 * callback. */
2171 if (child->role->attach) {
2172 child->role->attach(child);
2178 * Updates @child to change its reference to point to @new_bs, including
2179 * checking and applying the necessary permisson updates both to the old node
2180 * and to @new_bs.
2182 * NULL is passed as @new_bs for removing the reference before freeing @child.
2184 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2185 * function uses bdrv_set_perm() to update the permissions according to the new
2186 * reference that @new_bs gets.
2188 static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
2190 BlockDriverState *old_bs = child->bs;
2191 uint64_t perm, shared_perm;
2193 bdrv_replace_child_noperm(child, new_bs);
2195 if (old_bs) {
2196 /* Update permissions for old node. This is guaranteed to succeed
2197 * because we're just taking a parent away, so we're loosening
2198 * restrictions. */
2199 bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
2200 bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
2201 bdrv_set_perm(old_bs, perm, shared_perm);
2204 if (new_bs) {
2205 bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2206 bdrv_set_perm(new_bs, perm, shared_perm);
2210 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2211 const char *child_name,
2212 const BdrvChildRole *child_role,
2213 uint64_t perm, uint64_t shared_perm,
2214 void *opaque, Error **errp)
2216 BdrvChild *child;
2217 int ret;
2219 ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
2220 if (ret < 0) {
2221 bdrv_abort_perm_update(child_bs);
2222 return NULL;
2225 child = g_new(BdrvChild, 1);
2226 *child = (BdrvChild) {
2227 .bs = NULL,
2228 .name = g_strdup(child_name),
2229 .role = child_role,
2230 .perm = perm,
2231 .shared_perm = shared_perm,
2232 .opaque = opaque,
2235 /* This performs the matching bdrv_set_perm() for the above check. */
2236 bdrv_replace_child(child, child_bs);
2238 return child;
2241 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2242 BlockDriverState *child_bs,
2243 const char *child_name,
2244 const BdrvChildRole *child_role,
2245 Error **errp)
2247 BdrvChild *child;
2248 uint64_t perm, shared_perm;
2250 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2252 assert(parent_bs->drv);
2253 assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
2254 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2255 perm, shared_perm, &perm, &shared_perm);
2257 child = bdrv_root_attach_child(child_bs, child_name, child_role,
2258 perm, shared_perm, parent_bs, errp);
2259 if (child == NULL) {
2260 return NULL;
2263 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2264 return child;
2267 static void bdrv_detach_child(BdrvChild *child)
2269 if (child->next.le_prev) {
2270 QLIST_REMOVE(child, next);
2271 child->next.le_prev = NULL;
2274 bdrv_replace_child(child, NULL);
2276 g_free(child->name);
2277 g_free(child);
2280 void bdrv_root_unref_child(BdrvChild *child)
2282 BlockDriverState *child_bs;
2284 child_bs = child->bs;
2285 bdrv_detach_child(child);
2286 bdrv_unref(child_bs);
2289 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2291 if (child == NULL) {
2292 return;
2295 if (child->bs->inherits_from == parent) {
2296 BdrvChild *c;
2298 /* Remove inherits_from only when the last reference between parent and
2299 * child->bs goes away. */
2300 QLIST_FOREACH(c, &parent->children, next) {
2301 if (c != child && c->bs == child->bs) {
2302 break;
2305 if (c == NULL) {
2306 child->bs->inherits_from = NULL;
2310 bdrv_root_unref_child(child);
2314 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2316 BdrvChild *c;
2317 QLIST_FOREACH(c, &bs->parents, next_parent) {
2318 if (c->role->change_media) {
2319 c->role->change_media(c, load);
2324 /* Return true if you can reach parent going through child->inherits_from
2325 * recursively. If parent or child are NULL, return false */
2326 static bool bdrv_inherits_from_recursive(BlockDriverState *child,
2327 BlockDriverState *parent)
2329 while (child && child != parent) {
2330 child = child->inherits_from;
2333 return child != NULL;
2337 * Sets the backing file link of a BDS. A new reference is created; callers
2338 * which don't need their own reference any more must call bdrv_unref().
2340 void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2341 Error **errp)
2343 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
2344 bdrv_inherits_from_recursive(backing_hd, bs);
2346 if (backing_hd) {
2347 bdrv_ref(backing_hd);
2350 if (bs->backing) {
2351 bdrv_unref_child(bs, bs->backing);
2354 if (!backing_hd) {
2355 bs->backing = NULL;
2356 goto out;
2359 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
2360 errp);
2361 /* If backing_hd was already part of bs's backing chain, and
2362 * inherits_from pointed recursively to bs then let's update it to
2363 * point directly to bs (else it will become NULL). */
2364 if (update_inherits_from) {
2365 backing_hd->inherits_from = bs;
2367 if (!bs->backing) {
2368 bdrv_unref(backing_hd);
2371 out:
2372 bdrv_refresh_limits(bs, NULL);
2376 * Opens the backing file for a BlockDriverState if not yet open
2378 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2379 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2380 * itself, all options starting with "${bdref_key}." are considered part of the
2381 * BlockdevRef.
2383 * TODO Can this be unified with bdrv_open_image()?
2385 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2386 const char *bdref_key, Error **errp)
2388 char *backing_filename = NULL;
2389 char *bdref_key_dot;
2390 const char *reference = NULL;
2391 int ret = 0;
2392 bool implicit_backing = false;
2393 BlockDriverState *backing_hd;
2394 QDict *options;
2395 QDict *tmp_parent_options = NULL;
2396 Error *local_err = NULL;
2398 if (bs->backing != NULL) {
2399 goto free_exit;
2402 /* NULL means an empty set of options */
2403 if (parent_options == NULL) {
2404 tmp_parent_options = qdict_new();
2405 parent_options = tmp_parent_options;
2408 bs->open_flags &= ~BDRV_O_NO_BACKING;
2410 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2411 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2412 g_free(bdref_key_dot);
2415 * Caution: while qdict_get_try_str() is fine, getting non-string
2416 * types would require more care. When @parent_options come from
2417 * -blockdev or blockdev_add, its members are typed according to
2418 * the QAPI schema, but when they come from -drive, they're all
2419 * QString.
2421 reference = qdict_get_try_str(parent_options, bdref_key);
2422 if (reference || qdict_haskey(options, "file.filename")) {
2423 /* keep backing_filename NULL */
2424 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
2425 qobject_unref(options);
2426 goto free_exit;
2427 } else {
2428 if (qdict_size(options) == 0) {
2429 /* If the user specifies options that do not modify the
2430 * backing file's behavior, we might still consider it the
2431 * implicit backing file. But it's easier this way, and
2432 * just specifying some of the backing BDS's options is
2433 * only possible with -drive anyway (otherwise the QAPI
2434 * schema forces the user to specify everything). */
2435 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
2438 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
2439 if (local_err) {
2440 ret = -EINVAL;
2441 error_propagate(errp, local_err);
2442 qobject_unref(options);
2443 goto free_exit;
2447 if (!bs->drv || !bs->drv->supports_backing) {
2448 ret = -EINVAL;
2449 error_setg(errp, "Driver doesn't support backing files");
2450 qobject_unref(options);
2451 goto free_exit;
2454 if (!reference &&
2455 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
2456 qdict_put_str(options, "driver", bs->backing_format);
2459 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
2460 &child_backing, errp);
2461 if (!backing_hd) {
2462 bs->open_flags |= BDRV_O_NO_BACKING;
2463 error_prepend(errp, "Could not open backing file: ");
2464 ret = -EINVAL;
2465 goto free_exit;
2467 bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
2469 if (implicit_backing) {
2470 bdrv_refresh_filename(backing_hd);
2471 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
2472 backing_hd->filename);
2475 /* Hook up the backing file link; drop our reference, bs owns the
2476 * backing_hd reference now */
2477 bdrv_set_backing_hd(bs, backing_hd, &local_err);
2478 bdrv_unref(backing_hd);
2479 if (local_err) {
2480 error_propagate(errp, local_err);
2481 ret = -EINVAL;
2482 goto free_exit;
2485 qdict_del(parent_options, bdref_key);
2487 free_exit:
2488 g_free(backing_filename);
2489 qobject_unref(tmp_parent_options);
2490 return ret;
2493 static BlockDriverState *
2494 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
2495 BlockDriverState *parent, const BdrvChildRole *child_role,
2496 bool allow_none, Error **errp)
2498 BlockDriverState *bs = NULL;
2499 QDict *image_options;
2500 char *bdref_key_dot;
2501 const char *reference;
2503 assert(child_role != NULL);
2505 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2506 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2507 g_free(bdref_key_dot);
2510 * Caution: while qdict_get_try_str() is fine, getting non-string
2511 * types would require more care. When @options come from
2512 * -blockdev or blockdev_add, its members are typed according to
2513 * the QAPI schema, but when they come from -drive, they're all
2514 * QString.
2516 reference = qdict_get_try_str(options, bdref_key);
2517 if (!filename && !reference && !qdict_size(image_options)) {
2518 if (!allow_none) {
2519 error_setg(errp, "A block device must be specified for \"%s\"",
2520 bdref_key);
2522 qobject_unref(image_options);
2523 goto done;
2526 bs = bdrv_open_inherit(filename, reference, image_options, 0,
2527 parent, child_role, errp);
2528 if (!bs) {
2529 goto done;
2532 done:
2533 qdict_del(options, bdref_key);
2534 return bs;
2538 * Opens a disk image whose options are given as BlockdevRef in another block
2539 * device's options.
2541 * If allow_none is true, no image will be opened if filename is false and no
2542 * BlockdevRef is given. NULL will be returned, but errp remains unset.
2544 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
2545 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2546 * itself, all options starting with "${bdref_key}." are considered part of the
2547 * BlockdevRef.
2549 * The BlockdevRef will be removed from the options QDict.
2551 BdrvChild *bdrv_open_child(const char *filename,
2552 QDict *options, const char *bdref_key,
2553 BlockDriverState *parent,
2554 const BdrvChildRole *child_role,
2555 bool allow_none, Error **errp)
2557 BdrvChild *c;
2558 BlockDriverState *bs;
2560 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
2561 allow_none, errp);
2562 if (bs == NULL) {
2563 return NULL;
2566 c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
2567 if (!c) {
2568 bdrv_unref(bs);
2569 return NULL;
2572 return c;
2575 /* TODO Future callers may need to specify parent/child_role in order for
2576 * option inheritance to work. Existing callers use it for the root node. */
2577 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2579 BlockDriverState *bs = NULL;
2580 Error *local_err = NULL;
2581 QObject *obj = NULL;
2582 QDict *qdict = NULL;
2583 const char *reference = NULL;
2584 Visitor *v = NULL;
2586 if (ref->type == QTYPE_QSTRING) {
2587 reference = ref->u.reference;
2588 } else {
2589 BlockdevOptions *options = &ref->u.definition;
2590 assert(ref->type == QTYPE_QDICT);
2592 v = qobject_output_visitor_new(&obj);
2593 visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2594 if (local_err) {
2595 error_propagate(errp, local_err);
2596 goto fail;
2598 visit_complete(v, &obj);
2600 qdict = qobject_to(QDict, obj);
2601 qdict_flatten(qdict);
2603 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
2604 * compatibility with other callers) rather than what we want as the
2605 * real defaults. Apply the defaults here instead. */
2606 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
2607 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
2608 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
2609 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
2613 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
2614 obj = NULL;
2616 fail:
2617 qobject_unref(obj);
2618 visit_free(v);
2619 return bs;
2622 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
2623 int flags,
2624 QDict *snapshot_options,
2625 Error **errp)
2627 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
2628 char *tmp_filename = g_malloc0(PATH_MAX + 1);
2629 int64_t total_size;
2630 QemuOpts *opts = NULL;
2631 BlockDriverState *bs_snapshot = NULL;
2632 Error *local_err = NULL;
2633 int ret;
2635 /* if snapshot, we create a temporary backing file and open it
2636 instead of opening 'filename' directly */
2638 /* Get the required size from the image */
2639 total_size = bdrv_getlength(bs);
2640 if (total_size < 0) {
2641 error_setg_errno(errp, -total_size, "Could not get image size");
2642 goto out;
2645 /* Create the temporary image */
2646 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
2647 if (ret < 0) {
2648 error_setg_errno(errp, -ret, "Could not get temporary filename");
2649 goto out;
2652 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
2653 &error_abort);
2654 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
2655 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
2656 qemu_opts_del(opts);
2657 if (ret < 0) {
2658 error_prepend(errp, "Could not create temporary overlay '%s': ",
2659 tmp_filename);
2660 goto out;
2663 /* Prepare options QDict for the temporary file */
2664 qdict_put_str(snapshot_options, "file.driver", "file");
2665 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
2666 qdict_put_str(snapshot_options, "driver", "qcow2");
2668 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
2669 snapshot_options = NULL;
2670 if (!bs_snapshot) {
2671 goto out;
2674 /* bdrv_append() consumes a strong reference to bs_snapshot
2675 * (i.e. it will call bdrv_unref() on it) even on error, so in
2676 * order to be able to return one, we have to increase
2677 * bs_snapshot's refcount here */
2678 bdrv_ref(bs_snapshot);
2679 bdrv_append(bs_snapshot, bs, &local_err);
2680 if (local_err) {
2681 error_propagate(errp, local_err);
2682 bs_snapshot = NULL;
2683 goto out;
2686 out:
2687 qobject_unref(snapshot_options);
2688 g_free(tmp_filename);
2689 return bs_snapshot;
2693 * Opens a disk image (raw, qcow2, vmdk, ...)
2695 * options is a QDict of options to pass to the block drivers, or NULL for an
2696 * empty set of options. The reference to the QDict belongs to the block layer
2697 * after the call (even on failure), so if the caller intends to reuse the
2698 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
2700 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2701 * If it is not NULL, the referenced BDS will be reused.
2703 * The reference parameter may be used to specify an existing block device which
2704 * should be opened. If specified, neither options nor a filename may be given,
2705 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
2707 static BlockDriverState *bdrv_open_inherit(const char *filename,
2708 const char *reference,
2709 QDict *options, int flags,
2710 BlockDriverState *parent,
2711 const BdrvChildRole *child_role,
2712 Error **errp)
2714 int ret;
2715 BlockBackend *file = NULL;
2716 BlockDriverState *bs;
2717 BlockDriver *drv = NULL;
2718 BdrvChild *child;
2719 const char *drvname;
2720 const char *backing;
2721 Error *local_err = NULL;
2722 QDict *snapshot_options = NULL;
2723 int snapshot_flags = 0;
2725 assert(!child_role || !flags);
2726 assert(!child_role == !parent);
2728 if (reference) {
2729 bool options_non_empty = options ? qdict_size(options) : false;
2730 qobject_unref(options);
2732 if (filename || options_non_empty) {
2733 error_setg(errp, "Cannot reference an existing block device with "
2734 "additional options or a new filename");
2735 return NULL;
2738 bs = bdrv_lookup_bs(reference, reference, errp);
2739 if (!bs) {
2740 return NULL;
2743 bdrv_ref(bs);
2744 return bs;
2747 bs = bdrv_new();
2749 /* NULL means an empty set of options */
2750 if (options == NULL) {
2751 options = qdict_new();
2754 /* json: syntax counts as explicit options, as if in the QDict */
2755 parse_json_protocol(options, &filename, &local_err);
2756 if (local_err) {
2757 goto fail;
2760 bs->explicit_options = qdict_clone_shallow(options);
2762 if (child_role) {
2763 bs->inherits_from = parent;
2764 child_role->inherit_options(&flags, options,
2765 parent->open_flags, parent->options);
2768 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
2769 if (local_err) {
2770 goto fail;
2774 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2775 * Caution: getting a boolean member of @options requires care.
2776 * When @options come from -blockdev or blockdev_add, members are
2777 * typed according to the QAPI schema, but when they come from
2778 * -drive, they're all QString.
2780 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2781 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2782 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2783 } else {
2784 flags &= ~BDRV_O_RDWR;
2787 if (flags & BDRV_O_SNAPSHOT) {
2788 snapshot_options = qdict_new();
2789 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
2790 flags, options);
2791 /* Let bdrv_backing_options() override "read-only" */
2792 qdict_del(options, BDRV_OPT_READ_ONLY);
2793 bdrv_backing_options(&flags, options, flags, options);
2796 bs->open_flags = flags;
2797 bs->options = options;
2798 options = qdict_clone_shallow(options);
2800 /* Find the right image format driver */
2801 /* See cautionary note on accessing @options above */
2802 drvname = qdict_get_try_str(options, "driver");
2803 if (drvname) {
2804 drv = bdrv_find_format(drvname);
2805 if (!drv) {
2806 error_setg(errp, "Unknown driver: '%s'", drvname);
2807 goto fail;
2811 assert(drvname || !(flags & BDRV_O_PROTOCOL));
2813 /* See cautionary note on accessing @options above */
2814 backing = qdict_get_try_str(options, "backing");
2815 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
2816 (backing && *backing == '\0'))
2818 if (backing) {
2819 warn_report("Use of \"backing\": \"\" is deprecated; "
2820 "use \"backing\": null instead");
2822 flags |= BDRV_O_NO_BACKING;
2823 qdict_del(options, "backing");
2826 /* Open image file without format layer. This BlockBackend is only used for
2827 * probing, the block drivers will do their own bdrv_open_child() for the
2828 * same BDS, which is why we put the node name back into options. */
2829 if ((flags & BDRV_O_PROTOCOL) == 0) {
2830 BlockDriverState *file_bs;
2832 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
2833 &child_file, true, &local_err);
2834 if (local_err) {
2835 goto fail;
2837 if (file_bs != NULL) {
2838 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
2839 * looking at the header to guess the image format. This works even
2840 * in cases where a guest would not see a consistent state. */
2841 file = blk_new(0, BLK_PERM_ALL);
2842 blk_insert_bs(file, file_bs, &local_err);
2843 bdrv_unref(file_bs);
2844 if (local_err) {
2845 goto fail;
2848 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
2852 /* Image format probing */
2853 bs->probed = !drv;
2854 if (!drv && file) {
2855 ret = find_image_format(file, filename, &drv, &local_err);
2856 if (ret < 0) {
2857 goto fail;
2860 * This option update would logically belong in bdrv_fill_options(),
2861 * but we first need to open bs->file for the probing to work, while
2862 * opening bs->file already requires the (mostly) final set of options
2863 * so that cache mode etc. can be inherited.
2865 * Adding the driver later is somewhat ugly, but it's not an option
2866 * that would ever be inherited, so it's correct. We just need to make
2867 * sure to update both bs->options (which has the full effective
2868 * options for bs) and options (which has file.* already removed).
2870 qdict_put_str(bs->options, "driver", drv->format_name);
2871 qdict_put_str(options, "driver", drv->format_name);
2872 } else if (!drv) {
2873 error_setg(errp, "Must specify either driver or file");
2874 goto fail;
2877 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
2878 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
2879 /* file must be NULL if a protocol BDS is about to be created
2880 * (the inverse results in an error message from bdrv_open_common()) */
2881 assert(!(flags & BDRV_O_PROTOCOL) || !file);
2883 /* Open the image */
2884 ret = bdrv_open_common(bs, file, options, &local_err);
2885 if (ret < 0) {
2886 goto fail;
2889 if (file) {
2890 blk_unref(file);
2891 file = NULL;
2894 /* If there is a backing file, use it */
2895 if ((flags & BDRV_O_NO_BACKING) == 0) {
2896 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
2897 if (ret < 0) {
2898 goto close_and_fail;
2902 /* Remove all children options and references
2903 * from bs->options and bs->explicit_options */
2904 QLIST_FOREACH(child, &bs->children, next) {
2905 char *child_key_dot;
2906 child_key_dot = g_strdup_printf("%s.", child->name);
2907 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
2908 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
2909 qdict_del(bs->explicit_options, child->name);
2910 qdict_del(bs->options, child->name);
2911 g_free(child_key_dot);
2914 /* Check if any unknown options were used */
2915 if (qdict_size(options) != 0) {
2916 const QDictEntry *entry = qdict_first(options);
2917 if (flags & BDRV_O_PROTOCOL) {
2918 error_setg(errp, "Block protocol '%s' doesn't support the option "
2919 "'%s'", drv->format_name, entry->key);
2920 } else {
2921 error_setg(errp,
2922 "Block format '%s' does not support the option '%s'",
2923 drv->format_name, entry->key);
2926 goto close_and_fail;
2929 bdrv_parent_cb_change_media(bs, true);
2931 qobject_unref(options);
2932 options = NULL;
2934 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2935 * temporary snapshot afterwards. */
2936 if (snapshot_flags) {
2937 BlockDriverState *snapshot_bs;
2938 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
2939 snapshot_options, &local_err);
2940 snapshot_options = NULL;
2941 if (local_err) {
2942 goto close_and_fail;
2944 /* We are not going to return bs but the overlay on top of it
2945 * (snapshot_bs); thus, we have to drop the strong reference to bs
2946 * (which we obtained by calling bdrv_new()). bs will not be deleted,
2947 * though, because the overlay still has a reference to it. */
2948 bdrv_unref(bs);
2949 bs = snapshot_bs;
2952 return bs;
2954 fail:
2955 blk_unref(file);
2956 qobject_unref(snapshot_options);
2957 qobject_unref(bs->explicit_options);
2958 qobject_unref(bs->options);
2959 qobject_unref(options);
2960 bs->options = NULL;
2961 bs->explicit_options = NULL;
2962 bdrv_unref(bs);
2963 error_propagate(errp, local_err);
2964 return NULL;
2966 close_and_fail:
2967 bdrv_unref(bs);
2968 qobject_unref(snapshot_options);
2969 qobject_unref(options);
2970 error_propagate(errp, local_err);
2971 return NULL;
2974 BlockDriverState *bdrv_open(const char *filename, const char *reference,
2975 QDict *options, int flags, Error **errp)
2977 return bdrv_open_inherit(filename, reference, options, flags, NULL,
2978 NULL, errp);
2982 * Adds a BlockDriverState to a simple queue for an atomic, transactional
2983 * reopen of multiple devices.
2985 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2986 * already performed, or alternatively may be NULL a new BlockReopenQueue will
2987 * be created and initialized. This newly created BlockReopenQueue should be
2988 * passed back in for subsequent calls that are intended to be of the same
2989 * atomic 'set'.
2991 * bs is the BlockDriverState to add to the reopen queue.
2993 * options contains the changed options for the associated bs
2994 * (the BlockReopenQueue takes ownership)
2996 * flags contains the open flags for the associated bs
2998 * returns a pointer to bs_queue, which is either the newly allocated
2999 * bs_queue, or the existing bs_queue being used.
3001 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
3003 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
3004 BlockDriverState *bs,
3005 QDict *options,
3006 const BdrvChildRole *role,
3007 QDict *parent_options,
3008 int parent_flags)
3010 assert(bs != NULL);
3012 BlockReopenQueueEntry *bs_entry;
3013 BdrvChild *child;
3014 QDict *old_options, *explicit_options, *options_copy;
3015 int flags;
3016 QemuOpts *opts;
3018 /* Make sure that the caller remembered to use a drained section. This is
3019 * important to avoid graph changes between the recursive queuing here and
3020 * bdrv_reopen_multiple(). */
3021 assert(bs->quiesce_counter > 0);
3023 if (bs_queue == NULL) {
3024 bs_queue = g_new0(BlockReopenQueue, 1);
3025 QSIMPLEQ_INIT(bs_queue);
3028 if (!options) {
3029 options = qdict_new();
3032 /* Check if this BlockDriverState is already in the queue */
3033 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3034 if (bs == bs_entry->state.bs) {
3035 break;
3040 * Precedence of options:
3041 * 1. Explicitly passed in options (highest)
3042 * 2. Retained from explicitly set options of bs
3043 * 3. Inherited from parent node
3044 * 4. Retained from effective options of bs
3047 /* Old explicitly set values (don't overwrite by inherited value) */
3048 if (bs_entry) {
3049 old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
3050 } else {
3051 old_options = qdict_clone_shallow(bs->explicit_options);
3053 bdrv_join_options(bs, options, old_options);
3054 qobject_unref(old_options);
3056 explicit_options = qdict_clone_shallow(options);
3058 /* Inherit from parent node */
3059 if (parent_options) {
3060 flags = 0;
3061 role->inherit_options(&flags, options, parent_flags, parent_options);
3062 } else {
3063 flags = bdrv_get_flags(bs);
3066 /* Old values are used for options that aren't set yet */
3067 old_options = qdict_clone_shallow(bs->options);
3068 bdrv_join_options(bs, options, old_options);
3069 qobject_unref(old_options);
3071 /* We have the final set of options so let's update the flags */
3072 options_copy = qdict_clone_shallow(options);
3073 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3074 qemu_opts_absorb_qdict(opts, options_copy, NULL);
3075 update_flags_from_options(&flags, opts);
3076 qemu_opts_del(opts);
3077 qobject_unref(options_copy);
3079 /* bdrv_open_inherit() sets and clears some additional flags internally */
3080 flags &= ~BDRV_O_PROTOCOL;
3081 if (flags & BDRV_O_RDWR) {
3082 flags |= BDRV_O_ALLOW_RDWR;
3085 if (!bs_entry) {
3086 bs_entry = g_new0(BlockReopenQueueEntry, 1);
3087 QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
3088 } else {
3089 qobject_unref(bs_entry->state.options);
3090 qobject_unref(bs_entry->state.explicit_options);
3093 bs_entry->state.bs = bs;
3094 bs_entry->state.options = options;
3095 bs_entry->state.explicit_options = explicit_options;
3096 bs_entry->state.flags = flags;
3098 /* This needs to be overwritten in bdrv_reopen_prepare() */
3099 bs_entry->state.perm = UINT64_MAX;
3100 bs_entry->state.shared_perm = 0;
3102 QLIST_FOREACH(child, &bs->children, next) {
3103 QDict *new_child_options;
3104 char *child_key_dot;
3106 /* reopen can only change the options of block devices that were
3107 * implicitly created and inherited options. For other (referenced)
3108 * block devices, a syntax like "backing.foo" results in an error. */
3109 if (child->bs->inherits_from != bs) {
3110 continue;
3113 child_key_dot = g_strdup_printf("%s.", child->name);
3114 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
3115 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
3116 g_free(child_key_dot);
3118 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
3119 child->role, options, flags);
3122 return bs_queue;
3125 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
3126 BlockDriverState *bs,
3127 QDict *options)
3129 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, NULL, 0);
3133 * Reopen multiple BlockDriverStates atomically & transactionally.
3135 * The queue passed in (bs_queue) must have been built up previous
3136 * via bdrv_reopen_queue().
3138 * Reopens all BDS specified in the queue, with the appropriate
3139 * flags. All devices are prepared for reopen, and failure of any
3140 * device will cause all device changes to be abandoned, and intermediate
3141 * data cleaned up.
3143 * If all devices prepare successfully, then the changes are committed
3144 * to all devices.
3146 * All affected nodes must be drained between bdrv_reopen_queue() and
3147 * bdrv_reopen_multiple().
3149 int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
3151 int ret = -1;
3152 BlockReopenQueueEntry *bs_entry, *next;
3153 Error *local_err = NULL;
3155 assert(bs_queue != NULL);
3157 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3158 assert(bs_entry->state.bs->quiesce_counter > 0);
3159 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
3160 error_propagate(errp, local_err);
3161 goto cleanup;
3163 bs_entry->prepared = true;
3166 /* If we reach this point, we have success and just need to apply the
3167 * changes
3169 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3170 bdrv_reopen_commit(&bs_entry->state);
3173 ret = 0;
3175 cleanup:
3176 QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3177 if (ret) {
3178 if (bs_entry->prepared) {
3179 bdrv_reopen_abort(&bs_entry->state);
3181 qobject_unref(bs_entry->state.explicit_options);
3182 qobject_unref(bs_entry->state.options);
3184 g_free(bs_entry);
3186 g_free(bs_queue);
3188 return ret;
3191 int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
3192 Error **errp)
3194 int ret;
3195 BlockReopenQueue *queue;
3196 QDict *opts = qdict_new();
3198 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
3200 bdrv_subtree_drained_begin(bs);
3201 queue = bdrv_reopen_queue(NULL, bs, opts);
3202 ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, errp);
3203 bdrv_subtree_drained_end(bs);
3205 return ret;
3208 static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3209 BdrvChild *c)
3211 BlockReopenQueueEntry *entry;
3213 QSIMPLEQ_FOREACH(entry, q, entry) {
3214 BlockDriverState *bs = entry->state.bs;
3215 BdrvChild *child;
3217 QLIST_FOREACH(child, &bs->children, next) {
3218 if (child == c) {
3219 return entry;
3224 return NULL;
3227 static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3228 uint64_t *perm, uint64_t *shared)
3230 BdrvChild *c;
3231 BlockReopenQueueEntry *parent;
3232 uint64_t cumulative_perms = 0;
3233 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3235 QLIST_FOREACH(c, &bs->parents, next_parent) {
3236 parent = find_parent_in_reopen_queue(q, c);
3237 if (!parent) {
3238 cumulative_perms |= c->perm;
3239 cumulative_shared_perms &= c->shared_perm;
3240 } else {
3241 uint64_t nperm, nshared;
3243 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
3244 parent->state.perm, parent->state.shared_perm,
3245 &nperm, &nshared);
3247 cumulative_perms |= nperm;
3248 cumulative_shared_perms &= nshared;
3251 *perm = cumulative_perms;
3252 *shared = cumulative_shared_perms;
3256 * Prepares a BlockDriverState for reopen. All changes are staged in the
3257 * 'opaque' field of the BDRVReopenState, which is used and allocated by
3258 * the block driver layer .bdrv_reopen_prepare()
3260 * bs is the BlockDriverState to reopen
3261 * flags are the new open flags
3262 * queue is the reopen queue
3264 * Returns 0 on success, non-zero on error. On error errp will be set
3265 * as well.
3267 * On failure, bdrv_reopen_abort() will be called to clean up any data.
3268 * It is the responsibility of the caller to then call the abort() or
3269 * commit() for any other BDS that have been left in a prepare() state
3272 int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3273 Error **errp)
3275 int ret = -1;
3276 int old_flags;
3277 Error *local_err = NULL;
3278 BlockDriver *drv;
3279 QemuOpts *opts;
3280 QDict *orig_reopen_opts;
3281 char *discard = NULL;
3282 bool read_only;
3283 bool drv_prepared = false;
3285 assert(reopen_state != NULL);
3286 assert(reopen_state->bs->drv != NULL);
3287 drv = reopen_state->bs->drv;
3289 /* This function and each driver's bdrv_reopen_prepare() remove
3290 * entries from reopen_state->options as they are processed, so
3291 * we need to make a copy of the original QDict. */
3292 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
3294 /* Process generic block layer options */
3295 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3296 qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3297 if (local_err) {
3298 error_propagate(errp, local_err);
3299 ret = -EINVAL;
3300 goto error;
3303 /* This was already called in bdrv_reopen_queue_child() so the flags
3304 * are up-to-date. This time we simply want to remove the options from
3305 * QemuOpts in order to indicate that they have been processed. */
3306 old_flags = reopen_state->flags;
3307 update_flags_from_options(&reopen_state->flags, opts);
3308 assert(old_flags == reopen_state->flags);
3310 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
3311 if (discard != NULL) {
3312 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
3313 error_setg(errp, "Invalid discard option");
3314 ret = -EINVAL;
3315 goto error;
3319 reopen_state->detect_zeroes =
3320 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
3321 if (local_err) {
3322 error_propagate(errp, local_err);
3323 ret = -EINVAL;
3324 goto error;
3327 /* All other options (including node-name and driver) must be unchanged.
3328 * Put them back into the QDict, so that they are checked at the end
3329 * of this function. */
3330 qemu_opts_to_qdict(opts, reopen_state->options);
3332 /* If we are to stay read-only, do not allow permission change
3333 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
3334 * not set, or if the BDS still has copy_on_read enabled */
3335 read_only = !(reopen_state->flags & BDRV_O_RDWR);
3336 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
3337 if (local_err) {
3338 error_propagate(errp, local_err);
3339 goto error;
3342 /* Calculate required permissions after reopening */
3343 bdrv_reopen_perm(queue, reopen_state->bs,
3344 &reopen_state->perm, &reopen_state->shared_perm);
3346 ret = bdrv_flush(reopen_state->bs);
3347 if (ret) {
3348 error_setg_errno(errp, -ret, "Error flushing drive");
3349 goto error;
3352 if (drv->bdrv_reopen_prepare) {
3353 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3354 if (ret) {
3355 if (local_err != NULL) {
3356 error_propagate(errp, local_err);
3357 } else {
3358 bdrv_refresh_filename(reopen_state->bs);
3359 error_setg(errp, "failed while preparing to reopen image '%s'",
3360 reopen_state->bs->filename);
3362 goto error;
3364 } else {
3365 /* It is currently mandatory to have a bdrv_reopen_prepare()
3366 * handler for each supported drv. */
3367 error_setg(errp, "Block format '%s' used by node '%s' "
3368 "does not support reopening files", drv->format_name,
3369 bdrv_get_device_or_node_name(reopen_state->bs));
3370 ret = -1;
3371 goto error;
3374 drv_prepared = true;
3376 /* Options that are not handled are only okay if they are unchanged
3377 * compared to the old state. It is expected that some options are only
3378 * used for the initial open, but not reopen (e.g. filename) */
3379 if (qdict_size(reopen_state->options)) {
3380 const QDictEntry *entry = qdict_first(reopen_state->options);
3382 do {
3383 QObject *new = entry->value;
3384 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
3386 /* Allow child references (child_name=node_name) as long as they
3387 * point to the current child (i.e. everything stays the same). */
3388 if (qobject_type(new) == QTYPE_QSTRING) {
3389 BdrvChild *child;
3390 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
3391 if (!strcmp(child->name, entry->key)) {
3392 break;
3396 if (child) {
3397 const char *str = qobject_get_try_str(new);
3398 if (!strcmp(child->bs->node_name, str)) {
3399 continue; /* Found child with this name, skip option */
3405 * TODO: When using -drive to specify blockdev options, all values
3406 * will be strings; however, when using -blockdev, blockdev-add or
3407 * filenames using the json:{} pseudo-protocol, they will be
3408 * correctly typed.
3409 * In contrast, reopening options are (currently) always strings
3410 * (because you can only specify them through qemu-io; all other
3411 * callers do not specify any options).
3412 * Therefore, when using anything other than -drive to create a BDS,
3413 * this cannot detect non-string options as unchanged, because
3414 * qobject_is_equal() always returns false for objects of different
3415 * type. In the future, this should be remedied by correctly typing
3416 * all options. For now, this is not too big of an issue because
3417 * the user can simply omit options which cannot be changed anyway,
3418 * so they will stay unchanged.
3420 if (!qobject_is_equal(new, old)) {
3421 error_setg(errp, "Cannot change the option '%s'", entry->key);
3422 ret = -EINVAL;
3423 goto error;
3425 } while ((entry = qdict_next(reopen_state->options, entry)));
3428 ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
3429 reopen_state->shared_perm, NULL, errp);
3430 if (ret < 0) {
3431 goto error;
3434 ret = 0;
3436 /* Restore the original reopen_state->options QDict */
3437 qobject_unref(reopen_state->options);
3438 reopen_state->options = qobject_ref(orig_reopen_opts);
3440 error:
3441 if (ret < 0 && drv_prepared) {
3442 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
3443 * call drv->bdrv_reopen_abort() before signaling an error
3444 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
3445 * when the respective bdrv_reopen_prepare() has failed) */
3446 if (drv->bdrv_reopen_abort) {
3447 drv->bdrv_reopen_abort(reopen_state);
3450 qemu_opts_del(opts);
3451 qobject_unref(orig_reopen_opts);
3452 g_free(discard);
3453 return ret;
3457 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3458 * makes them final by swapping the staging BlockDriverState contents into
3459 * the active BlockDriverState contents.
3461 void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3463 BlockDriver *drv;
3464 BlockDriverState *bs;
3465 BdrvChild *child;
3466 bool old_can_write, new_can_write;
3468 assert(reopen_state != NULL);
3469 bs = reopen_state->bs;
3470 drv = bs->drv;
3471 assert(drv != NULL);
3473 old_can_write =
3474 !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3476 /* If there are any driver level actions to take */
3477 if (drv->bdrv_reopen_commit) {
3478 drv->bdrv_reopen_commit(reopen_state);
3481 /* set BDS specific flags now */
3482 qobject_unref(bs->explicit_options);
3483 qobject_unref(bs->options);
3485 bs->explicit_options = reopen_state->explicit_options;
3486 bs->options = reopen_state->options;
3487 bs->open_flags = reopen_state->flags;
3488 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
3489 bs->detect_zeroes = reopen_state->detect_zeroes;
3491 /* Remove child references from bs->options and bs->explicit_options.
3492 * Child options were already removed in bdrv_reopen_queue_child() */
3493 QLIST_FOREACH(child, &bs->children, next) {
3494 qdict_del(bs->explicit_options, child->name);
3495 qdict_del(bs->options, child->name);
3498 bdrv_refresh_limits(bs, NULL);
3500 bdrv_set_perm(reopen_state->bs, reopen_state->perm,
3501 reopen_state->shared_perm);
3503 new_can_write =
3504 !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3505 if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3506 Error *local_err = NULL;
3507 if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3508 /* This is not fatal, bitmaps just left read-only, so all following
3509 * writes will fail. User can remove read-only bitmaps to unblock
3510 * writes.
3512 error_reportf_err(local_err,
3513 "%s: Failed to make dirty bitmaps writable: ",
3514 bdrv_get_node_name(bs));
3520 * Abort the reopen, and delete and free the staged changes in
3521 * reopen_state
3523 void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3525 BlockDriver *drv;
3527 assert(reopen_state != NULL);
3528 drv = reopen_state->bs->drv;
3529 assert(drv != NULL);
3531 if (drv->bdrv_reopen_abort) {
3532 drv->bdrv_reopen_abort(reopen_state);
3535 bdrv_abort_perm_update(reopen_state->bs);
3539 static void bdrv_close(BlockDriverState *bs)
3541 BdrvAioNotifier *ban, *ban_next;
3542 BdrvChild *child, *next;
3544 assert(!bs->job);
3545 assert(!bs->refcnt);
3547 bdrv_drained_begin(bs); /* complete I/O */
3548 bdrv_flush(bs);
3549 bdrv_drain(bs); /* in case flush left pending I/O */
3551 if (bs->drv) {
3552 if (bs->drv->bdrv_close) {
3553 bs->drv->bdrv_close(bs);
3555 bs->drv = NULL;
3558 bdrv_set_backing_hd(bs, NULL, &error_abort);
3560 if (bs->file != NULL) {
3561 bdrv_unref_child(bs, bs->file);
3562 bs->file = NULL;
3565 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
3566 /* TODO Remove bdrv_unref() from drivers' close function and use
3567 * bdrv_unref_child() here */
3568 if (child->bs->inherits_from == bs) {
3569 child->bs->inherits_from = NULL;
3571 bdrv_detach_child(child);
3574 g_free(bs->opaque);
3575 bs->opaque = NULL;
3576 atomic_set(&bs->copy_on_read, 0);
3577 bs->backing_file[0] = '\0';
3578 bs->backing_format[0] = '\0';
3579 bs->total_sectors = 0;
3580 bs->encrypted = false;
3581 bs->sg = false;
3582 qobject_unref(bs->options);
3583 qobject_unref(bs->explicit_options);
3584 bs->options = NULL;
3585 bs->explicit_options = NULL;
3586 qobject_unref(bs->full_open_options);
3587 bs->full_open_options = NULL;
3589 bdrv_release_named_dirty_bitmaps(bs);
3590 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3592 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
3593 g_free(ban);
3595 QLIST_INIT(&bs->aio_notifiers);
3596 bdrv_drained_end(bs);
3599 void bdrv_close_all(void)
3601 assert(job_next(NULL) == NULL);
3602 nbd_export_close_all();
3604 /* Drop references from requests still in flight, such as canceled block
3605 * jobs whose AIO context has not been polled yet */
3606 bdrv_drain_all();
3608 blk_remove_all_bs();
3609 blockdev_close_all_bdrv_states();
3611 assert(QTAILQ_EMPTY(&all_bdrv_states));
3614 static bool should_update_child(BdrvChild *c, BlockDriverState *to)
3616 GQueue *queue;
3617 GHashTable *found;
3618 bool ret;
3620 if (c->role->stay_at_node) {
3621 return false;
3624 /* If the child @c belongs to the BDS @to, replacing the current
3625 * c->bs by @to would mean to create a loop.
3627 * Such a case occurs when appending a BDS to a backing chain.
3628 * For instance, imagine the following chain:
3630 * guest device -> node A -> further backing chain...
3632 * Now we create a new BDS B which we want to put on top of this
3633 * chain, so we first attach A as its backing node:
3635 * node B
3638 * guest device -> node A -> further backing chain...
3640 * Finally we want to replace A by B. When doing that, we want to
3641 * replace all pointers to A by pointers to B -- except for the
3642 * pointer from B because (1) that would create a loop, and (2)
3643 * that pointer should simply stay intact:
3645 * guest device -> node B
3648 * node A -> further backing chain...
3650 * In general, when replacing a node A (c->bs) by a node B (@to),
3651 * if A is a child of B, that means we cannot replace A by B there
3652 * because that would create a loop. Silently detaching A from B
3653 * is also not really an option. So overall just leaving A in
3654 * place there is the most sensible choice.
3656 * We would also create a loop in any cases where @c is only
3657 * indirectly referenced by @to. Prevent this by returning false
3658 * if @c is found (by breadth-first search) anywhere in the whole
3659 * subtree of @to.
3662 ret = true;
3663 found = g_hash_table_new(NULL, NULL);
3664 g_hash_table_add(found, to);
3665 queue = g_queue_new();
3666 g_queue_push_tail(queue, to);
3668 while (!g_queue_is_empty(queue)) {
3669 BlockDriverState *v = g_queue_pop_head(queue);
3670 BdrvChild *c2;
3672 QLIST_FOREACH(c2, &v->children, next) {
3673 if (c2 == c) {
3674 ret = false;
3675 break;
3678 if (g_hash_table_contains(found, c2->bs)) {
3679 continue;
3682 g_queue_push_tail(queue, c2->bs);
3683 g_hash_table_add(found, c2->bs);
3687 g_queue_free(queue);
3688 g_hash_table_destroy(found);
3690 return ret;
3693 void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
3694 Error **errp)
3696 BdrvChild *c, *next;
3697 GSList *list = NULL, *p;
3698 uint64_t old_perm, old_shared;
3699 uint64_t perm = 0, shared = BLK_PERM_ALL;
3700 int ret;
3702 assert(!atomic_read(&from->in_flight));
3703 assert(!atomic_read(&to->in_flight));
3705 /* Make sure that @from doesn't go away until we have successfully attached
3706 * all of its parents to @to. */
3707 bdrv_ref(from);
3709 /* Put all parents into @list and calculate their cumulative permissions */
3710 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
3711 assert(c->bs == from);
3712 if (!should_update_child(c, to)) {
3713 continue;
3715 list = g_slist_prepend(list, c);
3716 perm |= c->perm;
3717 shared &= c->shared_perm;
3720 /* Check whether the required permissions can be granted on @to, ignoring
3721 * all BdrvChild in @list so that they can't block themselves. */
3722 ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
3723 if (ret < 0) {
3724 bdrv_abort_perm_update(to);
3725 goto out;
3728 /* Now actually perform the change. We performed the permission check for
3729 * all elements of @list at once, so set the permissions all at once at the
3730 * very end. */
3731 for (p = list; p != NULL; p = p->next) {
3732 c = p->data;
3734 bdrv_ref(to);
3735 bdrv_replace_child_noperm(c, to);
3736 bdrv_unref(from);
3739 bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3740 bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3742 out:
3743 g_slist_free(list);
3744 bdrv_unref(from);
3748 * Add new bs contents at the top of an image chain while the chain is
3749 * live, while keeping required fields on the top layer.
3751 * This will modify the BlockDriverState fields, and swap contents
3752 * between bs_new and bs_top. Both bs_new and bs_top are modified.
3754 * bs_new must not be attached to a BlockBackend.
3756 * This function does not create any image files.
3758 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3759 * that's what the callers commonly need. bs_new will be referenced by the old
3760 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3761 * reference of its own, it must call bdrv_ref().
3763 void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3764 Error **errp)
3766 Error *local_err = NULL;
3768 bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3769 if (local_err) {
3770 error_propagate(errp, local_err);
3771 goto out;
3774 bdrv_replace_node(bs_top, bs_new, &local_err);
3775 if (local_err) {
3776 error_propagate(errp, local_err);
3777 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3778 goto out;
3781 /* bs_new is now referenced by its new parents, we don't need the
3782 * additional reference any more. */
3783 out:
3784 bdrv_unref(bs_new);
3787 static void bdrv_delete(BlockDriverState *bs)
3789 assert(!bs->job);
3790 assert(bdrv_op_blocker_is_empty(bs));
3791 assert(!bs->refcnt);
3793 bdrv_close(bs);
3795 /* remove from list, if necessary */
3796 if (bs->node_name[0] != '\0') {
3797 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
3799 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
3801 g_free(bs);
3805 * Run consistency checks on an image
3807 * Returns 0 if the check could be completed (it doesn't mean that the image is
3808 * free of errors) or -errno when an internal error occurred. The results of the
3809 * check are stored in res.
3811 static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
3812 BdrvCheckResult *res, BdrvCheckMode fix)
3814 if (bs->drv == NULL) {
3815 return -ENOMEDIUM;
3817 if (bs->drv->bdrv_co_check == NULL) {
3818 return -ENOTSUP;
3821 memset(res, 0, sizeof(*res));
3822 return bs->drv->bdrv_co_check(bs, res, fix);
3825 typedef struct CheckCo {
3826 BlockDriverState *bs;
3827 BdrvCheckResult *res;
3828 BdrvCheckMode fix;
3829 int ret;
3830 } CheckCo;
3832 static void bdrv_check_co_entry(void *opaque)
3834 CheckCo *cco = opaque;
3835 cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
3836 aio_wait_kick();
3839 int bdrv_check(BlockDriverState *bs,
3840 BdrvCheckResult *res, BdrvCheckMode fix)
3842 Coroutine *co;
3843 CheckCo cco = {
3844 .bs = bs,
3845 .res = res,
3846 .ret = -EINPROGRESS,
3847 .fix = fix,
3850 if (qemu_in_coroutine()) {
3851 /* Fast-path if already in coroutine context */
3852 bdrv_check_co_entry(&cco);
3853 } else {
3854 co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
3855 bdrv_coroutine_enter(bs, co);
3856 BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
3859 return cco.ret;
3863 * Return values:
3864 * 0 - success
3865 * -EINVAL - backing format specified, but no file
3866 * -ENOSPC - can't update the backing file because no space is left in the
3867 * image file header
3868 * -ENOTSUP - format driver doesn't support changing the backing file
3870 int bdrv_change_backing_file(BlockDriverState *bs,
3871 const char *backing_file, const char *backing_fmt)
3873 BlockDriver *drv = bs->drv;
3874 int ret;
3876 if (!drv) {
3877 return -ENOMEDIUM;
3880 /* Backing file format doesn't make sense without a backing file */
3881 if (backing_fmt && !backing_file) {
3882 return -EINVAL;
3885 if (drv->bdrv_change_backing_file != NULL) {
3886 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
3887 } else {
3888 ret = -ENOTSUP;
3891 if (ret == 0) {
3892 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3893 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3894 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3895 backing_file ?: "");
3897 return ret;
3901 * Finds the image layer in the chain that has 'bs' as its backing file.
3903 * active is the current topmost image.
3905 * Returns NULL if bs is not found in active's image chain,
3906 * or if active == bs.
3908 * Returns the bottommost base image if bs == NULL.
3910 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
3911 BlockDriverState *bs)
3913 while (active && bs != backing_bs(active)) {
3914 active = backing_bs(active);
3917 return active;
3920 /* Given a BDS, searches for the base layer. */
3921 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
3923 return bdrv_find_overlay(bs, NULL);
3927 * Drops images above 'base' up to and including 'top', and sets the image
3928 * above 'top' to have base as its backing file.
3930 * Requires that the overlay to 'top' is opened r/w, so that the backing file
3931 * information in 'bs' can be properly updated.
3933 * E.g., this will convert the following chain:
3934 * bottom <- base <- intermediate <- top <- active
3936 * to
3938 * bottom <- base <- active
3940 * It is allowed for bottom==base, in which case it converts:
3942 * base <- intermediate <- top <- active
3944 * to
3946 * base <- active
3948 * If backing_file_str is non-NULL, it will be used when modifying top's
3949 * overlay image metadata.
3951 * Error conditions:
3952 * if active == top, that is considered an error
3955 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3956 const char *backing_file_str)
3958 BlockDriverState *explicit_top = top;
3959 bool update_inherits_from;
3960 BdrvChild *c, *next;
3961 Error *local_err = NULL;
3962 int ret = -EIO;
3964 bdrv_ref(top);
3966 if (!top->drv || !base->drv) {
3967 goto exit;
3970 /* Make sure that base is in the backing chain of top */
3971 if (!bdrv_chain_contains(top, base)) {
3972 goto exit;
3975 /* If 'base' recursively inherits from 'top' then we should set
3976 * base->inherits_from to top->inherits_from after 'top' and all
3977 * other intermediate nodes have been dropped.
3978 * If 'top' is an implicit node (e.g. "commit_top") we should skip
3979 * it because no one inherits from it. We use explicit_top for that. */
3980 while (explicit_top && explicit_top->implicit) {
3981 explicit_top = backing_bs(explicit_top);
3983 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
3985 /* success - we can delete the intermediate states, and link top->base */
3986 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
3987 * we've figured out how they should work. */
3988 if (!backing_file_str) {
3989 bdrv_refresh_filename(base);
3990 backing_file_str = base->filename;
3993 QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
3994 /* Check whether we are allowed to switch c from top to base */
3995 GSList *ignore_children = g_slist_prepend(NULL, c);
3996 bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
3997 ignore_children, &local_err);
3998 g_slist_free(ignore_children);
3999 if (local_err) {
4000 ret = -EPERM;
4001 error_report_err(local_err);
4002 goto exit;
4005 /* If so, update the backing file path in the image file */
4006 if (c->role->update_filename) {
4007 ret = c->role->update_filename(c, base, backing_file_str,
4008 &local_err);
4009 if (ret < 0) {
4010 bdrv_abort_perm_update(base);
4011 error_report_err(local_err);
4012 goto exit;
4016 /* Do the actual switch in the in-memory graph.
4017 * Completes bdrv_check_update_perm() transaction internally. */
4018 bdrv_ref(base);
4019 bdrv_replace_child(c, base);
4020 bdrv_unref(top);
4023 if (update_inherits_from) {
4024 base->inherits_from = explicit_top->inherits_from;
4027 ret = 0;
4028 exit:
4029 bdrv_unref(top);
4030 return ret;
4034 * Length of a allocated file in bytes. Sparse files are counted by actual
4035 * allocated space. Return < 0 if error or unknown.
4037 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
4039 BlockDriver *drv = bs->drv;
4040 if (!drv) {
4041 return -ENOMEDIUM;
4043 if (drv->bdrv_get_allocated_file_size) {
4044 return drv->bdrv_get_allocated_file_size(bs);
4046 if (bs->file) {
4047 return bdrv_get_allocated_file_size(bs->file->bs);
4049 return -ENOTSUP;
4053 * bdrv_measure:
4054 * @drv: Format driver
4055 * @opts: Creation options for new image
4056 * @in_bs: Existing image containing data for new image (may be NULL)
4057 * @errp: Error object
4058 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
4059 * or NULL on error
4061 * Calculate file size required to create a new image.
4063 * If @in_bs is given then space for allocated clusters and zero clusters
4064 * from that image are included in the calculation. If @opts contains a
4065 * backing file that is shared by @in_bs then backing clusters may be omitted
4066 * from the calculation.
4068 * If @in_bs is NULL then the calculation includes no allocated clusters
4069 * unless a preallocation option is given in @opts.
4071 * Note that @in_bs may use a different BlockDriver from @drv.
4073 * If an error occurs the @errp pointer is set.
4075 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
4076 BlockDriverState *in_bs, Error **errp)
4078 if (!drv->bdrv_measure) {
4079 error_setg(errp, "Block driver '%s' does not support size measurement",
4080 drv->format_name);
4081 return NULL;
4084 return drv->bdrv_measure(opts, in_bs, errp);
4088 * Return number of sectors on success, -errno on error.
4090 int64_t bdrv_nb_sectors(BlockDriverState *bs)
4092 BlockDriver *drv = bs->drv;
4094 if (!drv)
4095 return -ENOMEDIUM;
4097 if (drv->has_variable_length) {
4098 int ret = refresh_total_sectors(bs, bs->total_sectors);
4099 if (ret < 0) {
4100 return ret;
4103 return bs->total_sectors;
4107 * Return length in bytes on success, -errno on error.
4108 * The length is always a multiple of BDRV_SECTOR_SIZE.
4110 int64_t bdrv_getlength(BlockDriverState *bs)
4112 int64_t ret = bdrv_nb_sectors(bs);
4114 ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
4115 return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
4118 /* return 0 as number of sectors if no device present or error */
4119 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
4121 int64_t nb_sectors = bdrv_nb_sectors(bs);
4123 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
4126 bool bdrv_is_sg(BlockDriverState *bs)
4128 return bs->sg;
4131 bool bdrv_is_encrypted(BlockDriverState *bs)
4133 if (bs->backing && bs->backing->bs->encrypted) {
4134 return true;
4136 return bs->encrypted;
4139 const char *bdrv_get_format_name(BlockDriverState *bs)
4141 return bs->drv ? bs->drv->format_name : NULL;
4144 static int qsort_strcmp(const void *a, const void *b)
4146 return strcmp(*(char *const *)a, *(char *const *)b);
4149 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
4150 void *opaque)
4152 BlockDriver *drv;
4153 int count = 0;
4154 int i;
4155 const char **formats = NULL;
4157 QLIST_FOREACH(drv, &bdrv_drivers, list) {
4158 if (drv->format_name) {
4159 bool found = false;
4160 int i = count;
4161 while (formats && i && !found) {
4162 found = !strcmp(formats[--i], drv->format_name);
4165 if (!found) {
4166 formats = g_renew(const char *, formats, count + 1);
4167 formats[count++] = drv->format_name;
4172 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
4173 const char *format_name = block_driver_modules[i].format_name;
4175 if (format_name) {
4176 bool found = false;
4177 int j = count;
4179 while (formats && j && !found) {
4180 found = !strcmp(formats[--j], format_name);
4183 if (!found) {
4184 formats = g_renew(const char *, formats, count + 1);
4185 formats[count++] = format_name;
4190 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
4192 for (i = 0; i < count; i++) {
4193 it(opaque, formats[i]);
4196 g_free(formats);
4199 /* This function is to find a node in the bs graph */
4200 BlockDriverState *bdrv_find_node(const char *node_name)
4202 BlockDriverState *bs;
4204 assert(node_name);
4206 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4207 if (!strcmp(node_name, bs->node_name)) {
4208 return bs;
4211 return NULL;
4214 /* Put this QMP function here so it can access the static graph_bdrv_states. */
4215 BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
4217 BlockDeviceInfoList *list, *entry;
4218 BlockDriverState *bs;
4220 list = NULL;
4221 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4222 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
4223 if (!info) {
4224 qapi_free_BlockDeviceInfoList(list);
4225 return NULL;
4227 entry = g_malloc0(sizeof(*entry));
4228 entry->value = info;
4229 entry->next = list;
4230 list = entry;
4233 return list;
4236 #define QAPI_LIST_ADD(list, element) do { \
4237 typeof(list) _tmp = g_new(typeof(*(list)), 1); \
4238 _tmp->value = (element); \
4239 _tmp->next = (list); \
4240 (list) = _tmp; \
4241 } while (0)
4243 typedef struct XDbgBlockGraphConstructor {
4244 XDbgBlockGraph *graph;
4245 GHashTable *graph_nodes;
4246 } XDbgBlockGraphConstructor;
4248 static XDbgBlockGraphConstructor *xdbg_graph_new(void)
4250 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
4252 gr->graph = g_new0(XDbgBlockGraph, 1);
4253 gr->graph_nodes = g_hash_table_new(NULL, NULL);
4255 return gr;
4258 static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
4260 XDbgBlockGraph *graph = gr->graph;
4262 g_hash_table_destroy(gr->graph_nodes);
4263 g_free(gr);
4265 return graph;
4268 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
4270 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
4272 if (ret != 0) {
4273 return ret;
4277 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
4278 * answer of g_hash_table_lookup.
4280 ret = g_hash_table_size(gr->graph_nodes) + 1;
4281 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
4283 return ret;
4286 static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
4287 XDbgBlockGraphNodeType type, const char *name)
4289 XDbgBlockGraphNode *n;
4291 n = g_new0(XDbgBlockGraphNode, 1);
4293 n->id = xdbg_graph_node_num(gr, node);
4294 n->type = type;
4295 n->name = g_strdup(name);
4297 QAPI_LIST_ADD(gr->graph->nodes, n);
4300 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
4301 const BdrvChild *child)
4303 typedef struct {
4304 unsigned int flag;
4305 BlockPermission num;
4306 } PermissionMap;
4308 static const PermissionMap permissions[] = {
4309 { BLK_PERM_CONSISTENT_READ, BLOCK_PERMISSION_CONSISTENT_READ },
4310 { BLK_PERM_WRITE, BLOCK_PERMISSION_WRITE },
4311 { BLK_PERM_WRITE_UNCHANGED, BLOCK_PERMISSION_WRITE_UNCHANGED },
4312 { BLK_PERM_RESIZE, BLOCK_PERMISSION_RESIZE },
4313 { BLK_PERM_GRAPH_MOD, BLOCK_PERMISSION_GRAPH_MOD },
4314 { 0, 0 }
4316 const PermissionMap *p;
4317 XDbgBlockGraphEdge *edge;
4319 QEMU_BUILD_BUG_ON(1UL << (ARRAY_SIZE(permissions) - 1) != BLK_PERM_ALL + 1);
4321 edge = g_new0(XDbgBlockGraphEdge, 1);
4323 edge->parent = xdbg_graph_node_num(gr, parent);
4324 edge->child = xdbg_graph_node_num(gr, child->bs);
4325 edge->name = g_strdup(child->name);
4327 for (p = permissions; p->flag; p++) {
4328 if (p->flag & child->perm) {
4329 QAPI_LIST_ADD(edge->perm, p->num);
4331 if (p->flag & child->shared_perm) {
4332 QAPI_LIST_ADD(edge->shared_perm, p->num);
4336 QAPI_LIST_ADD(gr->graph->edges, edge);
4340 XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
4342 BlockBackend *blk;
4343 BlockJob *job;
4344 BlockDriverState *bs;
4345 BdrvChild *child;
4346 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
4348 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
4349 char *allocated_name = NULL;
4350 const char *name = blk_name(blk);
4352 if (!*name) {
4353 name = allocated_name = blk_get_attached_dev_id(blk);
4355 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
4356 name);
4357 g_free(allocated_name);
4358 if (blk_root(blk)) {
4359 xdbg_graph_add_edge(gr, blk, blk_root(blk));
4363 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
4364 GSList *el;
4366 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
4367 job->job.id);
4368 for (el = job->nodes; el; el = el->next) {
4369 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
4373 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4374 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
4375 bs->node_name);
4376 QLIST_FOREACH(child, &bs->children, next) {
4377 xdbg_graph_add_edge(gr, bs, child);
4381 return xdbg_graph_finalize(gr);
4384 BlockDriverState *bdrv_lookup_bs(const char *device,
4385 const char *node_name,
4386 Error **errp)
4388 BlockBackend *blk;
4389 BlockDriverState *bs;
4391 if (device) {
4392 blk = blk_by_name(device);
4394 if (blk) {
4395 bs = blk_bs(blk);
4396 if (!bs) {
4397 error_setg(errp, "Device '%s' has no medium", device);
4400 return bs;
4404 if (node_name) {
4405 bs = bdrv_find_node(node_name);
4407 if (bs) {
4408 return bs;
4412 error_setg(errp, "Cannot find device=%s nor node_name=%s",
4413 device ? device : "",
4414 node_name ? node_name : "");
4415 return NULL;
4418 /* If 'base' is in the same chain as 'top', return true. Otherwise,
4419 * return false. If either argument is NULL, return false. */
4420 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
4422 while (top && top != base) {
4423 top = backing_bs(top);
4426 return top != NULL;
4429 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
4431 if (!bs) {
4432 return QTAILQ_FIRST(&graph_bdrv_states);
4434 return QTAILQ_NEXT(bs, node_list);
4437 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
4439 if (!bs) {
4440 return QTAILQ_FIRST(&all_bdrv_states);
4442 return QTAILQ_NEXT(bs, bs_list);
4445 const char *bdrv_get_node_name(const BlockDriverState *bs)
4447 return bs->node_name;
4450 const char *bdrv_get_parent_name(const BlockDriverState *bs)
4452 BdrvChild *c;
4453 const char *name;
4455 /* If multiple parents have a name, just pick the first one. */
4456 QLIST_FOREACH(c, &bs->parents, next_parent) {
4457 if (c->role->get_name) {
4458 name = c->role->get_name(c);
4459 if (name && *name) {
4460 return name;
4465 return NULL;
4468 /* TODO check what callers really want: bs->node_name or blk_name() */
4469 const char *bdrv_get_device_name(const BlockDriverState *bs)
4471 return bdrv_get_parent_name(bs) ?: "";
4474 /* This can be used to identify nodes that might not have a device
4475 * name associated. Since node and device names live in the same
4476 * namespace, the result is unambiguous. The exception is if both are
4477 * absent, then this returns an empty (non-null) string. */
4478 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
4480 return bdrv_get_parent_name(bs) ?: bs->node_name;
4483 int bdrv_get_flags(BlockDriverState *bs)
4485 return bs->open_flags;
4488 int bdrv_has_zero_init_1(BlockDriverState *bs)
4490 return 1;
4493 int bdrv_has_zero_init(BlockDriverState *bs)
4495 if (!bs->drv) {
4496 return 0;
4499 /* If BS is a copy on write image, it is initialized to
4500 the contents of the base image, which may not be zeroes. */
4501 if (bs->backing) {
4502 return 0;
4504 if (bs->drv->bdrv_has_zero_init) {
4505 return bs->drv->bdrv_has_zero_init(bs);
4507 if (bs->file && bs->drv->is_filter) {
4508 return bdrv_has_zero_init(bs->file->bs);
4511 /* safe default */
4512 return 0;
4515 bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
4517 BlockDriverInfo bdi;
4519 if (bs->backing) {
4520 return false;
4523 if (bdrv_get_info(bs, &bdi) == 0) {
4524 return bdi.unallocated_blocks_are_zero;
4527 return false;
4530 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
4532 if (!(bs->open_flags & BDRV_O_UNMAP)) {
4533 return false;
4536 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
4539 void bdrv_get_backing_filename(BlockDriverState *bs,
4540 char *filename, int filename_size)
4542 pstrcpy(filename, filename_size, bs->backing_file);
4545 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4547 BlockDriver *drv = bs->drv;
4548 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
4549 if (!drv) {
4550 return -ENOMEDIUM;
4552 if (!drv->bdrv_get_info) {
4553 if (bs->file && drv->is_filter) {
4554 return bdrv_get_info(bs->file->bs, bdi);
4556 return -ENOTSUP;
4558 memset(bdi, 0, sizeof(*bdi));
4559 return drv->bdrv_get_info(bs, bdi);
4562 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
4563 Error **errp)
4565 BlockDriver *drv = bs->drv;
4566 if (drv && drv->bdrv_get_specific_info) {
4567 return drv->bdrv_get_specific_info(bs, errp);
4569 return NULL;
4572 void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
4574 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
4575 return;
4578 bs->drv->bdrv_debug_event(bs, event);
4581 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
4582 const char *tag)
4584 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
4585 bs = bs->file ? bs->file->bs : NULL;
4588 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
4589 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
4592 return -ENOTSUP;
4595 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
4597 while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
4598 bs = bs->file ? bs->file->bs : NULL;
4601 if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
4602 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
4605 return -ENOTSUP;
4608 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
4610 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
4611 bs = bs->file ? bs->file->bs : NULL;
4614 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
4615 return bs->drv->bdrv_debug_resume(bs, tag);
4618 return -ENOTSUP;
4621 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
4623 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
4624 bs = bs->file ? bs->file->bs : NULL;
4627 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
4628 return bs->drv->bdrv_debug_is_suspended(bs, tag);
4631 return false;
4634 /* backing_file can either be relative, or absolute, or a protocol. If it is
4635 * relative, it must be relative to the chain. So, passing in bs->filename
4636 * from a BDS as backing_file should not be done, as that may be relative to
4637 * the CWD rather than the chain. */
4638 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4639 const char *backing_file)
4641 char *filename_full = NULL;
4642 char *backing_file_full = NULL;
4643 char *filename_tmp = NULL;
4644 int is_protocol = 0;
4645 BlockDriverState *curr_bs = NULL;
4646 BlockDriverState *retval = NULL;
4648 if (!bs || !bs->drv || !backing_file) {
4649 return NULL;
4652 filename_full = g_malloc(PATH_MAX);
4653 backing_file_full = g_malloc(PATH_MAX);
4655 is_protocol = path_has_protocol(backing_file);
4657 for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
4659 /* If either of the filename paths is actually a protocol, then
4660 * compare unmodified paths; otherwise make paths relative */
4661 if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4662 char *backing_file_full_ret;
4664 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4665 retval = curr_bs->backing->bs;
4666 break;
4668 /* Also check against the full backing filename for the image */
4669 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
4670 NULL);
4671 if (backing_file_full_ret) {
4672 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
4673 g_free(backing_file_full_ret);
4674 if (equal) {
4675 retval = curr_bs->backing->bs;
4676 break;
4679 } else {
4680 /* If not an absolute filename path, make it relative to the current
4681 * image's filename path */
4682 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
4683 NULL);
4684 /* We are going to compare canonicalized absolute pathnames */
4685 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
4686 g_free(filename_tmp);
4687 continue;
4689 g_free(filename_tmp);
4691 /* We need to make sure the backing filename we are comparing against
4692 * is relative to the current image filename (or absolute) */
4693 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
4694 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
4695 g_free(filename_tmp);
4696 continue;
4698 g_free(filename_tmp);
4700 if (strcmp(backing_file_full, filename_full) == 0) {
4701 retval = curr_bs->backing->bs;
4702 break;
4707 g_free(filename_full);
4708 g_free(backing_file_full);
4709 return retval;
4712 void bdrv_init(void)
4714 module_call_init(MODULE_INIT_BLOCK);
4717 void bdrv_init_with_whitelist(void)
4719 use_bdrv_whitelist = 1;
4720 bdrv_init();
4723 static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
4724 Error **errp)
4726 BdrvChild *child, *parent;
4727 uint64_t perm, shared_perm;
4728 Error *local_err = NULL;
4729 int ret;
4730 BdrvDirtyBitmap *bm;
4732 if (!bs->drv) {
4733 return;
4736 if (!(bs->open_flags & BDRV_O_INACTIVE)) {
4737 return;
4740 QLIST_FOREACH(child, &bs->children, next) {
4741 bdrv_co_invalidate_cache(child->bs, &local_err);
4742 if (local_err) {
4743 error_propagate(errp, local_err);
4744 return;
4749 * Update permissions, they may differ for inactive nodes.
4751 * Note that the required permissions of inactive images are always a
4752 * subset of the permissions required after activating the image. This
4753 * allows us to just get the permissions upfront without restricting
4754 * drv->bdrv_invalidate_cache().
4756 * It also means that in error cases, we don't have to try and revert to
4757 * the old permissions (which is an operation that could fail, too). We can
4758 * just keep the extended permissions for the next time that an activation
4759 * of the image is tried.
4761 bs->open_flags &= ~BDRV_O_INACTIVE;
4762 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4763 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
4764 if (ret < 0) {
4765 bs->open_flags |= BDRV_O_INACTIVE;
4766 error_propagate(errp, local_err);
4767 return;
4769 bdrv_set_perm(bs, perm, shared_perm);
4771 if (bs->drv->bdrv_co_invalidate_cache) {
4772 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
4773 if (local_err) {
4774 bs->open_flags |= BDRV_O_INACTIVE;
4775 error_propagate(errp, local_err);
4776 return;
4780 for (bm = bdrv_dirty_bitmap_next(bs, NULL); bm;
4781 bm = bdrv_dirty_bitmap_next(bs, bm))
4783 bdrv_dirty_bitmap_set_migration(bm, false);
4786 ret = refresh_total_sectors(bs, bs->total_sectors);
4787 if (ret < 0) {
4788 bs->open_flags |= BDRV_O_INACTIVE;
4789 error_setg_errno(errp, -ret, "Could not refresh total sector count");
4790 return;
4793 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4794 if (parent->role->activate) {
4795 parent->role->activate(parent, &local_err);
4796 if (local_err) {
4797 bs->open_flags |= BDRV_O_INACTIVE;
4798 error_propagate(errp, local_err);
4799 return;
4805 typedef struct InvalidateCacheCo {
4806 BlockDriverState *bs;
4807 Error **errp;
4808 bool done;
4809 } InvalidateCacheCo;
4811 static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
4813 InvalidateCacheCo *ico = opaque;
4814 bdrv_co_invalidate_cache(ico->bs, ico->errp);
4815 ico->done = true;
4816 aio_wait_kick();
4819 void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
4821 Coroutine *co;
4822 InvalidateCacheCo ico = {
4823 .bs = bs,
4824 .done = false,
4825 .errp = errp
4828 if (qemu_in_coroutine()) {
4829 /* Fast-path if already in coroutine context */
4830 bdrv_invalidate_cache_co_entry(&ico);
4831 } else {
4832 co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
4833 bdrv_coroutine_enter(bs, co);
4834 BDRV_POLL_WHILE(bs, !ico.done);
4838 void bdrv_invalidate_cache_all(Error **errp)
4840 BlockDriverState *bs;
4841 Error *local_err = NULL;
4842 BdrvNextIterator it;
4844 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4845 AioContext *aio_context = bdrv_get_aio_context(bs);
4847 aio_context_acquire(aio_context);
4848 bdrv_invalidate_cache(bs, &local_err);
4849 aio_context_release(aio_context);
4850 if (local_err) {
4851 error_propagate(errp, local_err);
4852 bdrv_next_cleanup(&it);
4853 return;
4858 static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
4860 BdrvChild *parent;
4862 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4863 if (parent->role->parent_is_bds) {
4864 BlockDriverState *parent_bs = parent->opaque;
4865 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
4866 return true;
4871 return false;
4874 static int bdrv_inactivate_recurse(BlockDriverState *bs)
4876 BdrvChild *child, *parent;
4877 uint64_t perm, shared_perm;
4878 int ret;
4880 if (!bs->drv) {
4881 return -ENOMEDIUM;
4884 /* Make sure that we don't inactivate a child before its parent.
4885 * It will be covered by recursion from the yet active parent. */
4886 if (bdrv_has_bds_parent(bs, true)) {
4887 return 0;
4890 assert(!(bs->open_flags & BDRV_O_INACTIVE));
4892 /* Inactivate this node */
4893 if (bs->drv->bdrv_inactivate) {
4894 ret = bs->drv->bdrv_inactivate(bs);
4895 if (ret < 0) {
4896 return ret;
4900 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4901 if (parent->role->inactivate) {
4902 ret = parent->role->inactivate(parent);
4903 if (ret < 0) {
4904 return ret;
4909 bs->open_flags |= BDRV_O_INACTIVE;
4911 /* Update permissions, they may differ for inactive nodes */
4912 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4913 bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
4914 bdrv_set_perm(bs, perm, shared_perm);
4917 /* Recursively inactivate children */
4918 QLIST_FOREACH(child, &bs->children, next) {
4919 ret = bdrv_inactivate_recurse(child->bs);
4920 if (ret < 0) {
4921 return ret;
4925 return 0;
4928 int bdrv_inactivate_all(void)
4930 BlockDriverState *bs = NULL;
4931 BdrvNextIterator it;
4932 int ret = 0;
4933 GSList *aio_ctxs = NULL, *ctx;
4935 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4936 AioContext *aio_context = bdrv_get_aio_context(bs);
4938 if (!g_slist_find(aio_ctxs, aio_context)) {
4939 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
4940 aio_context_acquire(aio_context);
4944 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4945 /* Nodes with BDS parents are covered by recursion from the last
4946 * parent that gets inactivated. Don't inactivate them a second
4947 * time if that has already happened. */
4948 if (bdrv_has_bds_parent(bs, false)) {
4949 continue;
4951 ret = bdrv_inactivate_recurse(bs);
4952 if (ret < 0) {
4953 bdrv_next_cleanup(&it);
4954 goto out;
4958 out:
4959 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4960 AioContext *aio_context = ctx->data;
4961 aio_context_release(aio_context);
4963 g_slist_free(aio_ctxs);
4965 return ret;
4968 /**************************************************************/
4969 /* removable device support */
4972 * Return TRUE if the media is present
4974 bool bdrv_is_inserted(BlockDriverState *bs)
4976 BlockDriver *drv = bs->drv;
4977 BdrvChild *child;
4979 if (!drv) {
4980 return false;
4982 if (drv->bdrv_is_inserted) {
4983 return drv->bdrv_is_inserted(bs);
4985 QLIST_FOREACH(child, &bs->children, next) {
4986 if (!bdrv_is_inserted(child->bs)) {
4987 return false;
4990 return true;
4994 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
4996 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
4998 BlockDriver *drv = bs->drv;
5000 if (drv && drv->bdrv_eject) {
5001 drv->bdrv_eject(bs, eject_flag);
5006 * Lock or unlock the media (if it is locked, the user won't be able
5007 * to eject it manually).
5009 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
5011 BlockDriver *drv = bs->drv;
5013 trace_bdrv_lock_medium(bs, locked);
5015 if (drv && drv->bdrv_lock_medium) {
5016 drv->bdrv_lock_medium(bs, locked);
5020 /* Get a reference to bs */
5021 void bdrv_ref(BlockDriverState *bs)
5023 bs->refcnt++;
5026 /* Release a previously grabbed reference to bs.
5027 * If after releasing, reference count is zero, the BlockDriverState is
5028 * deleted. */
5029 void bdrv_unref(BlockDriverState *bs)
5031 if (!bs) {
5032 return;
5034 assert(bs->refcnt > 0);
5035 if (--bs->refcnt == 0) {
5036 bdrv_delete(bs);
5040 struct BdrvOpBlocker {
5041 Error *reason;
5042 QLIST_ENTRY(BdrvOpBlocker) list;
5045 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
5047 BdrvOpBlocker *blocker;
5048 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5049 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
5050 blocker = QLIST_FIRST(&bs->op_blockers[op]);
5051 error_propagate_prepend(errp, error_copy(blocker->reason),
5052 "Node '%s' is busy: ",
5053 bdrv_get_device_or_node_name(bs));
5054 return true;
5056 return false;
5059 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
5061 BdrvOpBlocker *blocker;
5062 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5064 blocker = g_new0(BdrvOpBlocker, 1);
5065 blocker->reason = reason;
5066 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
5069 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
5071 BdrvOpBlocker *blocker, *next;
5072 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5073 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
5074 if (blocker->reason == reason) {
5075 QLIST_REMOVE(blocker, list);
5076 g_free(blocker);
5081 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
5083 int i;
5084 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5085 bdrv_op_block(bs, i, reason);
5089 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
5091 int i;
5092 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5093 bdrv_op_unblock(bs, i, reason);
5097 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
5099 int i;
5101 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5102 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
5103 return false;
5106 return true;
5109 void bdrv_img_create(const char *filename, const char *fmt,
5110 const char *base_filename, const char *base_fmt,
5111 char *options, uint64_t img_size, int flags, bool quiet,
5112 Error **errp)
5114 QemuOptsList *create_opts = NULL;
5115 QemuOpts *opts = NULL;
5116 const char *backing_fmt, *backing_file;
5117 int64_t size;
5118 BlockDriver *drv, *proto_drv;
5119 Error *local_err = NULL;
5120 int ret = 0;
5122 /* Find driver and parse its options */
5123 drv = bdrv_find_format(fmt);
5124 if (!drv) {
5125 error_setg(errp, "Unknown file format '%s'", fmt);
5126 return;
5129 proto_drv = bdrv_find_protocol(filename, true, errp);
5130 if (!proto_drv) {
5131 return;
5134 if (!drv->create_opts) {
5135 error_setg(errp, "Format driver '%s' does not support image creation",
5136 drv->format_name);
5137 return;
5140 if (!proto_drv->create_opts) {
5141 error_setg(errp, "Protocol driver '%s' does not support image creation",
5142 proto_drv->format_name);
5143 return;
5146 create_opts = qemu_opts_append(create_opts, drv->create_opts);
5147 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
5149 /* Create parameter list with default values */
5150 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
5151 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
5153 /* Parse -o options */
5154 if (options) {
5155 qemu_opts_do_parse(opts, options, NULL, &local_err);
5156 if (local_err) {
5157 goto out;
5161 if (base_filename) {
5162 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
5163 if (local_err) {
5164 error_setg(errp, "Backing file not supported for file format '%s'",
5165 fmt);
5166 goto out;
5170 if (base_fmt) {
5171 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
5172 if (local_err) {
5173 error_setg(errp, "Backing file format not supported for file "
5174 "format '%s'", fmt);
5175 goto out;
5179 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
5180 if (backing_file) {
5181 if (!strcmp(filename, backing_file)) {
5182 error_setg(errp, "Error: Trying to create an image with the "
5183 "same filename as the backing file");
5184 goto out;
5188 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
5190 /* The size for the image must always be specified, unless we have a backing
5191 * file and we have not been forbidden from opening it. */
5192 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
5193 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
5194 BlockDriverState *bs;
5195 char *full_backing;
5196 int back_flags;
5197 QDict *backing_options = NULL;
5199 full_backing =
5200 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
5201 &local_err);
5202 if (local_err) {
5203 goto out;
5205 assert(full_backing);
5207 /* backing files always opened read-only */
5208 back_flags = flags;
5209 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
5211 backing_options = qdict_new();
5212 if (backing_fmt) {
5213 qdict_put_str(backing_options, "driver", backing_fmt);
5215 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
5217 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
5218 &local_err);
5219 g_free(full_backing);
5220 if (!bs && size != -1) {
5221 /* Couldn't open BS, but we have a size, so it's nonfatal */
5222 warn_reportf_err(local_err,
5223 "Could not verify backing image. "
5224 "This may become an error in future versions.\n");
5225 local_err = NULL;
5226 } else if (!bs) {
5227 /* Couldn't open bs, do not have size */
5228 error_append_hint(&local_err,
5229 "Could not open backing image to determine size.\n");
5230 goto out;
5231 } else {
5232 if (size == -1) {
5233 /* Opened BS, have no size */
5234 size = bdrv_getlength(bs);
5235 if (size < 0) {
5236 error_setg_errno(errp, -size, "Could not get size of '%s'",
5237 backing_file);
5238 bdrv_unref(bs);
5239 goto out;
5241 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
5243 bdrv_unref(bs);
5245 } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
5247 if (size == -1) {
5248 error_setg(errp, "Image creation needs a size parameter");
5249 goto out;
5252 if (!quiet) {
5253 printf("Formatting '%s', fmt=%s ", filename, fmt);
5254 qemu_opts_print(opts, " ");
5255 puts("");
5258 ret = bdrv_create(drv, filename, opts, &local_err);
5260 if (ret == -EFBIG) {
5261 /* This is generally a better message than whatever the driver would
5262 * deliver (especially because of the cluster_size_hint), since that
5263 * is most probably not much different from "image too large". */
5264 const char *cluster_size_hint = "";
5265 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
5266 cluster_size_hint = " (try using a larger cluster size)";
5268 error_setg(errp, "The image size is too large for file format '%s'"
5269 "%s", fmt, cluster_size_hint);
5270 error_free(local_err);
5271 local_err = NULL;
5274 out:
5275 qemu_opts_del(opts);
5276 qemu_opts_free(create_opts);
5277 error_propagate(errp, local_err);
5280 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
5282 return bs ? bs->aio_context : qemu_get_aio_context();
5285 void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
5287 aio_co_enter(bdrv_get_aio_context(bs), co);
5290 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
5292 QLIST_REMOVE(ban, list);
5293 g_free(ban);
5296 void bdrv_detach_aio_context(BlockDriverState *bs)
5298 BdrvAioNotifier *baf, *baf_tmp;
5299 BdrvChild *child;
5301 if (!bs->drv) {
5302 return;
5305 assert(!bs->walking_aio_notifiers);
5306 bs->walking_aio_notifiers = true;
5307 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
5308 if (baf->deleted) {
5309 bdrv_do_remove_aio_context_notifier(baf);
5310 } else {
5311 baf->detach_aio_context(baf->opaque);
5314 /* Never mind iterating again to check for ->deleted. bdrv_close() will
5315 * remove remaining aio notifiers if we aren't called again.
5317 bs->walking_aio_notifiers = false;
5319 if (bs->drv->bdrv_detach_aio_context) {
5320 bs->drv->bdrv_detach_aio_context(bs);
5322 QLIST_FOREACH(child, &bs->children, next) {
5323 bdrv_detach_aio_context(child->bs);
5326 if (bs->quiesce_counter) {
5327 aio_enable_external(bs->aio_context);
5329 bs->aio_context = NULL;
5332 void bdrv_attach_aio_context(BlockDriverState *bs,
5333 AioContext *new_context)
5335 BdrvAioNotifier *ban, *ban_tmp;
5336 BdrvChild *child;
5338 if (!bs->drv) {
5339 return;
5342 if (bs->quiesce_counter) {
5343 aio_disable_external(new_context);
5346 bs->aio_context = new_context;
5348 QLIST_FOREACH(child, &bs->children, next) {
5349 bdrv_attach_aio_context(child->bs, new_context);
5351 if (bs->drv->bdrv_attach_aio_context) {
5352 bs->drv->bdrv_attach_aio_context(bs, new_context);
5355 assert(!bs->walking_aio_notifiers);
5356 bs->walking_aio_notifiers = true;
5357 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
5358 if (ban->deleted) {
5359 bdrv_do_remove_aio_context_notifier(ban);
5360 } else {
5361 ban->attached_aio_context(new_context, ban->opaque);
5364 bs->walking_aio_notifiers = false;
5367 /* The caller must own the AioContext lock for the old AioContext of bs, but it
5368 * must not own the AioContext lock for new_context (unless new_context is
5369 * the same as the current context of bs). */
5370 void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
5372 if (bdrv_get_aio_context(bs) == new_context) {
5373 return;
5376 bdrv_drained_begin(bs);
5377 bdrv_detach_aio_context(bs);
5379 /* This function executes in the old AioContext so acquire the new one in
5380 * case it runs in a different thread.
5382 aio_context_acquire(new_context);
5383 bdrv_attach_aio_context(bs, new_context);
5384 bdrv_drained_end(bs);
5385 aio_context_release(new_context);
5388 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
5389 void (*attached_aio_context)(AioContext *new_context, void *opaque),
5390 void (*detach_aio_context)(void *opaque), void *opaque)
5392 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
5393 *ban = (BdrvAioNotifier){
5394 .attached_aio_context = attached_aio_context,
5395 .detach_aio_context = detach_aio_context,
5396 .opaque = opaque
5399 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
5402 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
5403 void (*attached_aio_context)(AioContext *,
5404 void *),
5405 void (*detach_aio_context)(void *),
5406 void *opaque)
5408 BdrvAioNotifier *ban, *ban_next;
5410 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
5411 if (ban->attached_aio_context == attached_aio_context &&
5412 ban->detach_aio_context == detach_aio_context &&
5413 ban->opaque == opaque &&
5414 ban->deleted == false)
5416 if (bs->walking_aio_notifiers) {
5417 ban->deleted = true;
5418 } else {
5419 bdrv_do_remove_aio_context_notifier(ban);
5421 return;
5425 abort();
5428 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
5429 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5430 Error **errp)
5432 if (!bs->drv) {
5433 error_setg(errp, "Node is ejected");
5434 return -ENOMEDIUM;
5436 if (!bs->drv->bdrv_amend_options) {
5437 error_setg(errp, "Block driver '%s' does not support option amendment",
5438 bs->drv->format_name);
5439 return -ENOTSUP;
5441 return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
5444 /* This function will be called by the bdrv_recurse_is_first_non_filter method
5445 * of block filter and by bdrv_is_first_non_filter.
5446 * It is used to test if the given bs is the candidate or recurse more in the
5447 * node graph.
5449 bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5450 BlockDriverState *candidate)
5452 /* return false if basic checks fails */
5453 if (!bs || !bs->drv) {
5454 return false;
5457 /* the code reached a non block filter driver -> check if the bs is
5458 * the same as the candidate. It's the recursion termination condition.
5460 if (!bs->drv->is_filter) {
5461 return bs == candidate;
5463 /* Down this path the driver is a block filter driver */
5465 /* If the block filter recursion method is defined use it to recurse down
5466 * the node graph.
5468 if (bs->drv->bdrv_recurse_is_first_non_filter) {
5469 return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5472 /* the driver is a block filter but don't allow to recurse -> return false
5474 return false;
5477 /* This function checks if the candidate is the first non filter bs down it's
5478 * bs chain. Since we don't have pointers to parents it explore all bs chains
5479 * from the top. Some filters can choose not to pass down the recursion.
5481 bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5483 BlockDriverState *bs;
5484 BdrvNextIterator it;
5486 /* walk down the bs forest recursively */
5487 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5488 bool perm;
5490 /* try to recurse in this top level bs */
5491 perm = bdrv_recurse_is_first_non_filter(bs, candidate);
5493 /* candidate is the first non filter */
5494 if (perm) {
5495 bdrv_next_cleanup(&it);
5496 return true;
5500 return false;
5503 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
5504 const char *node_name, Error **errp)
5506 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
5507 AioContext *aio_context;
5509 if (!to_replace_bs) {
5510 error_setg(errp, "Node name '%s' not found", node_name);
5511 return NULL;
5514 aio_context = bdrv_get_aio_context(to_replace_bs);
5515 aio_context_acquire(aio_context);
5517 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
5518 to_replace_bs = NULL;
5519 goto out;
5522 /* We don't want arbitrary node of the BDS chain to be replaced only the top
5523 * most non filter in order to prevent data corruption.
5524 * Another benefit is that this tests exclude backing files which are
5525 * blocked by the backing blockers.
5527 if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
5528 error_setg(errp, "Only top most non filter can be replaced");
5529 to_replace_bs = NULL;
5530 goto out;
5533 out:
5534 aio_context_release(aio_context);
5535 return to_replace_bs;
5539 * Iterates through the list of runtime option keys that are said to
5540 * be "strong" for a BDS. An option is called "strong" if it changes
5541 * a BDS's data. For example, the null block driver's "size" and
5542 * "read-zeroes" options are strong, but its "latency-ns" option is
5543 * not.
5545 * If a key returned by this function ends with a dot, all options
5546 * starting with that prefix are strong.
5548 static const char *const *strong_options(BlockDriverState *bs,
5549 const char *const *curopt)
5551 static const char *const global_options[] = {
5552 "driver", "filename", NULL
5555 if (!curopt) {
5556 return &global_options[0];
5559 curopt++;
5560 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
5561 curopt = bs->drv->strong_runtime_opts;
5564 return (curopt && *curopt) ? curopt : NULL;
5568 * Copies all strong runtime options from bs->options to the given
5569 * QDict. The set of strong option keys is determined by invoking
5570 * strong_options().
5572 * Returns true iff any strong option was present in bs->options (and
5573 * thus copied to the target QDict) with the exception of "filename"
5574 * and "driver". The caller is expected to use this value to decide
5575 * whether the existence of strong options prevents the generation of
5576 * a plain filename.
5578 static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
5580 bool found_any = false;
5581 const char *const *option_name = NULL;
5583 if (!bs->drv) {
5584 return false;
5587 while ((option_name = strong_options(bs, option_name))) {
5588 bool option_given = false;
5590 assert(strlen(*option_name) > 0);
5591 if ((*option_name)[strlen(*option_name) - 1] != '.') {
5592 QObject *entry = qdict_get(bs->options, *option_name);
5593 if (!entry) {
5594 continue;
5597 qdict_put_obj(d, *option_name, qobject_ref(entry));
5598 option_given = true;
5599 } else {
5600 const QDictEntry *entry;
5601 for (entry = qdict_first(bs->options); entry;
5602 entry = qdict_next(bs->options, entry))
5604 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
5605 qdict_put_obj(d, qdict_entry_key(entry),
5606 qobject_ref(qdict_entry_value(entry)));
5607 option_given = true;
5612 /* While "driver" and "filename" need to be included in a JSON filename,
5613 * their existence does not prohibit generation of a plain filename. */
5614 if (!found_any && option_given &&
5615 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
5617 found_any = true;
5621 if (!qdict_haskey(d, "driver")) {
5622 /* Drivers created with bdrv_new_open_driver() may not have a
5623 * @driver option. Add it here. */
5624 qdict_put_str(d, "driver", bs->drv->format_name);
5627 return found_any;
5630 /* Note: This function may return false positives; it may return true
5631 * even if opening the backing file specified by bs's image header
5632 * would result in exactly bs->backing. */
5633 static bool bdrv_backing_overridden(BlockDriverState *bs)
5635 if (bs->backing) {
5636 return strcmp(bs->auto_backing_file,
5637 bs->backing->bs->filename);
5638 } else {
5639 /* No backing BDS, so if the image header reports any backing
5640 * file, it must have been suppressed */
5641 return bs->auto_backing_file[0] != '\0';
5645 /* Updates the following BDS fields:
5646 * - exact_filename: A filename which may be used for opening a block device
5647 * which (mostly) equals the given BDS (even without any
5648 * other options; so reading and writing must return the same
5649 * results, but caching etc. may be different)
5650 * - full_open_options: Options which, when given when opening a block device
5651 * (without a filename), result in a BDS (mostly)
5652 * equalling the given one
5653 * - filename: If exact_filename is set, it is copied here. Otherwise,
5654 * full_open_options is converted to a JSON object, prefixed with
5655 * "json:" (for use through the JSON pseudo protocol) and put here.
5657 void bdrv_refresh_filename(BlockDriverState *bs)
5659 BlockDriver *drv = bs->drv;
5660 BdrvChild *child;
5661 QDict *opts;
5662 bool backing_overridden;
5663 bool generate_json_filename; /* Whether our default implementation should
5664 fill exact_filename (false) or not (true) */
5666 if (!drv) {
5667 return;
5670 /* This BDS's file name may depend on any of its children's file names, so
5671 * refresh those first */
5672 QLIST_FOREACH(child, &bs->children, next) {
5673 bdrv_refresh_filename(child->bs);
5676 if (bs->implicit) {
5677 /* For implicit nodes, just copy everything from the single child */
5678 child = QLIST_FIRST(&bs->children);
5679 assert(QLIST_NEXT(child, next) == NULL);
5681 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
5682 child->bs->exact_filename);
5683 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
5685 bs->full_open_options = qobject_ref(child->bs->full_open_options);
5687 return;
5690 backing_overridden = bdrv_backing_overridden(bs);
5692 if (bs->open_flags & BDRV_O_NO_IO) {
5693 /* Without I/O, the backing file does not change anything.
5694 * Therefore, in such a case (primarily qemu-img), we can
5695 * pretend the backing file has not been overridden even if
5696 * it technically has been. */
5697 backing_overridden = false;
5700 /* Gather the options QDict */
5701 opts = qdict_new();
5702 generate_json_filename = append_strong_runtime_options(opts, bs);
5703 generate_json_filename |= backing_overridden;
5705 if (drv->bdrv_gather_child_options) {
5706 /* Some block drivers may not want to present all of their children's
5707 * options, or name them differently from BdrvChild.name */
5708 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
5709 } else {
5710 QLIST_FOREACH(child, &bs->children, next) {
5711 if (child->role == &child_backing && !backing_overridden) {
5712 /* We can skip the backing BDS if it has not been overridden */
5713 continue;
5716 qdict_put(opts, child->name,
5717 qobject_ref(child->bs->full_open_options));
5720 if (backing_overridden && !bs->backing) {
5721 /* Force no backing file */
5722 qdict_put_null(opts, "backing");
5726 qobject_unref(bs->full_open_options);
5727 bs->full_open_options = opts;
5729 if (drv->bdrv_refresh_filename) {
5730 /* Obsolete information is of no use here, so drop the old file name
5731 * information before refreshing it */
5732 bs->exact_filename[0] = '\0';
5734 drv->bdrv_refresh_filename(bs);
5735 } else if (bs->file) {
5736 /* Try to reconstruct valid information from the underlying file */
5738 bs->exact_filename[0] = '\0';
5741 * We can use the underlying file's filename if:
5742 * - it has a filename,
5743 * - the file is a protocol BDS, and
5744 * - opening that file (as this BDS's format) will automatically create
5745 * the BDS tree we have right now, that is:
5746 * - the user did not significantly change this BDS's behavior with
5747 * some explicit (strong) options
5748 * - no non-file child of this BDS has been overridden by the user
5749 * Both of these conditions are represented by generate_json_filename.
5751 if (bs->file->bs->exact_filename[0] &&
5752 bs->file->bs->drv->bdrv_file_open &&
5753 !generate_json_filename)
5755 strcpy(bs->exact_filename, bs->file->bs->exact_filename);
5759 if (bs->exact_filename[0]) {
5760 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
5761 } else {
5762 QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
5763 snprintf(bs->filename, sizeof(bs->filename), "json:%s",
5764 qstring_get_str(json));
5765 qobject_unref(json);
5769 char *bdrv_dirname(BlockDriverState *bs, Error **errp)
5771 BlockDriver *drv = bs->drv;
5773 if (!drv) {
5774 error_setg(errp, "Node '%s' is ejected", bs->node_name);
5775 return NULL;
5778 if (drv->bdrv_dirname) {
5779 return drv->bdrv_dirname(bs, errp);
5782 if (bs->file) {
5783 return bdrv_dirname(bs->file->bs, errp);
5786 bdrv_refresh_filename(bs);
5787 if (bs->exact_filename[0] != '\0') {
5788 return path_combine(bs->exact_filename, "");
5791 error_setg(errp, "Cannot generate a base directory for %s nodes",
5792 drv->format_name);
5793 return NULL;
5797 * Hot add/remove a BDS's child. So the user can take a child offline when
5798 * it is broken and take a new child online
5800 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5801 Error **errp)
5804 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
5805 error_setg(errp, "The node %s does not support adding a child",
5806 bdrv_get_device_or_node_name(parent_bs));
5807 return;
5810 if (!QLIST_EMPTY(&child_bs->parents)) {
5811 error_setg(errp, "The node %s already has a parent",
5812 child_bs->node_name);
5813 return;
5816 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5819 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5821 BdrvChild *tmp;
5823 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5824 error_setg(errp, "The node %s does not support removing a child",
5825 bdrv_get_device_or_node_name(parent_bs));
5826 return;
5829 QLIST_FOREACH(tmp, &parent_bs->children, next) {
5830 if (tmp == child) {
5831 break;
5835 if (!tmp) {
5836 error_setg(errp, "The node %s does not have a child named %s",
5837 bdrv_get_device_or_node_name(parent_bs),
5838 bdrv_get_device_or_node_name(child->bs));
5839 return;
5842 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5845 bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
5846 uint32_t granularity, Error **errp)
5848 BlockDriver *drv = bs->drv;
5850 if (!drv) {
5851 error_setg_errno(errp, ENOMEDIUM,
5852 "Can't store persistent bitmaps to %s",
5853 bdrv_get_device_or_node_name(bs));
5854 return false;
5857 if (!drv->bdrv_can_store_new_dirty_bitmap) {
5858 error_setg_errno(errp, ENOTSUP,
5859 "Can't store persistent bitmaps to %s",
5860 bdrv_get_device_or_node_name(bs));
5861 return false;
5864 return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);