xref: /openbmc/qemu/block.c (revision 754cb9c0)
1 /*
2  * QEMU System Emulator block driver
3  *
4  * Copyright (c) 2003 Fabrice Bellard
5  *
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:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
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.
23  */
24 
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"
50 
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
58 
59 #ifdef _WIN32
60 #include <windows.h>
61 #endif
62 
63 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
64 
65 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
66     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
67 
68 static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
69     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
70 
71 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
72     QLIST_HEAD_INITIALIZER(bdrv_drivers);
73 
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);
80 
81 /* If non-zero, use only whitelisted block drivers */
82 static int use_bdrv_whitelist;
83 
84 #ifdef _WIN32
85 static int is_windows_drive_prefix(const char *filename)
86 {
87     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
88              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
89             filename[1] == ':');
90 }
91 
92 int is_windows_drive(const char *filename)
93 {
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;
101 }
102 #endif
103 
104 size_t bdrv_opt_mem_align(BlockDriverState *bs)
105 {
106     if (!bs || !bs->drv) {
107         /* page size or 4k (hdd sector size) should be on the safe side */
108         return MAX(4096, getpagesize());
109     }
110 
111     return bs->bl.opt_mem_alignment;
112 }
113 
114 size_t bdrv_min_mem_align(BlockDriverState *bs)
115 {
116     if (!bs || !bs->drv) {
117         /* page size or 4k (hdd sector size) should be on the safe side */
118         return MAX(4096, getpagesize());
119     }
120 
121     return bs->bl.min_mem_alignment;
122 }
123 
124 /* check if the path starts with "<protocol>:" */
125 int path_has_protocol(const char *path)
126 {
127     const char *p;
128 
129 #ifdef _WIN32
130     if (is_windows_drive(path) ||
131         is_windows_drive_prefix(path)) {
132         return 0;
133     }
134     p = path + strcspn(path, ":/\\");
135 #else
136     p = path + strcspn(path, ":/");
137 #endif
138 
139     return *p == ':';
140 }
141 
142 int path_is_absolute(const char *path)
143 {
144 #ifdef _WIN32
145     /* specific case for names like: "\\.\d:" */
146     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
147         return 1;
148     }
149     return (*path == '/' || *path == '\\');
150 #else
151     return (*path == '/');
152 #endif
153 }
154 
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)
159 {
160     const char *protocol_stripped = NULL;
161     const char *p, *p1;
162     char *result;
163     int len;
164 
165     if (path_is_absolute(filename)) {
166         return g_strdup(filename);
167     }
168 
169     if (path_has_protocol(base_path)) {
170         protocol_stripped = strchr(base_path, ':');
171         if (protocol_stripped) {
172             protocol_stripped++;
173         }
174     }
175     p = protocol_stripped ?: base_path;
176 
177     p1 = strrchr(base_path, '/');
178 #ifdef _WIN32
179     {
180         const char *p2;
181         p2 = strrchr(base_path, '\\');
182         if (!p1 || p2 > p1) {
183             p1 = p2;
184         }
185     }
186 #endif
187     if (p1) {
188         p1++;
189     } else {
190         p1 = base_path;
191     }
192     if (p1 > p) {
193         p = p1;
194     }
195     len = p - base_path;
196 
197     result = g_malloc(len + strlen(filename) + 1);
198     memcpy(result, base_path, len);
199     strcpy(result + len, filename);
200 
201     return result;
202 }
203 
204 /*
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.
208  */
209 void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
210                                       QDict *options)
211 {
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;
217 
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));
221 
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);
226 
227             assert(!path_has_protocol(qstring_get_str(fat_filename)));
228 
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);
234         }
235     }
236 }
237 
238 
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)
243 {
244     return bs->read_only;
245 }
246 
247 int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
248                            bool ignore_allow_rdw, Error **errp)
249 {
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;
255     }
256 
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)
260     {
261         error_setg(errp, "Node '%s' is read only",
262                    bdrv_get_device_or_node_name(bs));
263         return -EPERM;
264     }
265 
266     return 0;
267 }
268 
269 /*
270  * Called by a driver that can only provide a read-only image.
271  *
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.
274  *
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.
278  */
279 int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
280                               Error **errp)
281 {
282     int ret = 0;
283 
284     if (!(bs->open_flags & BDRV_O_RDWR)) {
285         return 0;
286     }
287     if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
288         goto fail;
289     }
290 
291     ret = bdrv_can_set_read_only(bs, true, false, NULL);
292     if (ret < 0) {
293         goto fail;
294     }
295 
296     bs->read_only = true;
297     bs->open_flags &= ~BDRV_O_RDWR;
298 
299     return 0;
300 
301 fail:
302     error_setg(errp, "%s", errmsg ?: "Image is read-only");
303     return -EACCES;
304 }
305 
306 /*
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.
310  *
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.
314  */
315 char *bdrv_get_full_backing_filename_from_filename(const char *backed,
316                                                    const char *backing,
317                                                    Error **errp)
318 {
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);
329     }
330 }
331 
332 /*
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.
336  */
337 static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
338                                          const char *filename, Error **errp)
339 {
340     char *dir, *full_name;
341 
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);
346     }
347 
348     dir = bdrv_dirname(relative_to, errp);
349     if (!dir) {
350         return NULL;
351     }
352 
353     full_name = g_strconcat(dir, filename, NULL);
354     g_free(dir);
355     return full_name;
356 }
357 
358 char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
359 {
360     return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
361 }
362 
363 void bdrv_register(BlockDriver *bdrv)
364 {
365     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
366 }
367 
368 BlockDriverState *bdrv_new(void)
369 {
370     BlockDriverState *bs;
371     int i;
372 
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]);
377     }
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();
383 
384     qemu_co_queue_init(&bs->flush_queue);
385 
386     for (i = 0; i < bdrv_drain_all_count; i++) {
387         bdrv_drained_begin(bs);
388     }
389 
390     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
391 
392     return bs;
393 }
394 
395 static BlockDriver *bdrv_do_find_format(const char *format_name)
396 {
397     BlockDriver *drv1;
398 
399     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
400         if (!strcmp(drv1->format_name, format_name)) {
401             return drv1;
402         }
403     }
404 
405     return NULL;
406 }
407 
408 BlockDriver *bdrv_find_format(const char *format_name)
409 {
410     BlockDriver *drv1;
411     int i;
412 
413     drv1 = bdrv_do_find_format(format_name);
414     if (drv1) {
415         return drv1;
416     }
417 
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;
423         }
424     }
425 
426     return bdrv_do_find_format(format_name);
427 }
428 
429 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
430 {
431     static const char *whitelist_rw[] = {
432         CONFIG_BDRV_RW_WHITELIST
433     };
434     static const char *whitelist_ro[] = {
435         CONFIG_BDRV_RO_WHITELIST
436     };
437     const char **p;
438 
439     if (!whitelist_rw[0] && !whitelist_ro[0]) {
440         return 1;               /* no whitelist, anything goes */
441     }
442 
443     for (p = whitelist_rw; *p; p++) {
444         if (!strcmp(drv->format_name, *p)) {
445             return 1;
446         }
447     }
448     if (read_only) {
449         for (p = whitelist_ro; *p; p++) {
450             if (!strcmp(drv->format_name, *p)) {
451                 return 1;
452             }
453         }
454     }
455     return 0;
456 }
457 
458 bool bdrv_uses_whitelist(void)
459 {
460     return use_bdrv_whitelist;
461 }
462 
463 typedef struct CreateCo {
464     BlockDriver *drv;
465     char *filename;
466     QemuOpts *opts;
467     int ret;
468     Error *err;
469 } CreateCo;
470 
471 static void coroutine_fn bdrv_create_co_entry(void *opaque)
472 {
473     Error *local_err = NULL;
474     int ret;
475 
476     CreateCo *cco = opaque;
477     assert(cco->drv);
478 
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;
482 }
483 
484 int bdrv_create(BlockDriver *drv, const char* filename,
485                 QemuOpts *opts, Error **errp)
486 {
487     int ret;
488 
489     Coroutine *co;
490     CreateCo cco = {
491         .drv = drv,
492         .filename = g_strdup(filename),
493         .opts = opts,
494         .ret = NOT_DONE,
495         .err = NULL,
496     };
497 
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;
502     }
503 
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);
512         }
513     }
514 
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");
521         }
522     }
523 
524 out:
525     g_free(cco.filename);
526     return ret;
527 }
528 
529 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
530 {
531     BlockDriver *drv;
532     Error *local_err = NULL;
533     int ret;
534 
535     drv = bdrv_find_protocol(filename, true, errp);
536     if (drv == NULL) {
537         return -ENOENT;
538     }
539 
540     ret = bdrv_create(drv, filename, opts, &local_err);
541     error_propagate(errp, local_err);
542     return ret;
543 }
544 
545 /**
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.
550  */
551 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
552 {
553     BlockDriver *drv = bs->drv;
554 
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);
559     }
560 
561     return -ENOTSUP;
562 }
563 
564 /**
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.
569  */
570 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
571 {
572     BlockDriver *drv = bs->drv;
573 
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);
578     }
579 
580     return -ENOTSUP;
581 }
582 
583 /*
584  * Create a uniquely-named empty temporary file.
585  * Return 0 upon success, otherwise a negative errno value.
586  */
587 int get_tmp_filename(char *filename, int size)
588 {
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";
603     }
604     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
605         return -EOVERFLOW;
606     }
607     fd = mkstemp(filename);
608     if (fd < 0) {
609         return -errno;
610     }
611     if (close(fd) != 0) {
612         unlink(filename);
613         return -errno;
614     }
615     return 0;
616 #endif
617 }
618 
619 /*
620  * Detect host devices. By convention, /dev/cdrom[N] is always
621  * recognized as a host CDROM.
622  */
623 static BlockDriver *find_hdev_driver(const char *filename)
624 {
625     int score_max = 0, score;
626     BlockDriver *drv = NULL, *d;
627 
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;
634             }
635         }
636     }
637 
638     return drv;
639 }
640 
641 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
642 {
643     BlockDriver *drv1;
644 
645     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
646         if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
647             return drv1;
648         }
649     }
650 
651     return NULL;
652 }
653 
654 BlockDriver *bdrv_find_protocol(const char *filename,
655                                 bool allow_protocol_prefix,
656                                 Error **errp)
657 {
658     BlockDriver *drv1;
659     char protocol[128];
660     int len;
661     const char *p;
662     int i;
663 
664     /* TODO Drivers without bdrv_file_open must be specified explicitly */
665 
666     /*
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.
672      */
673     drv1 = find_hdev_driver(filename);
674     if (drv1) {
675         return drv1;
676     }
677 
678     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
679         return &bdrv_file;
680     }
681 
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';
689 
690     drv1 = bdrv_do_find_protocol(protocol);
691     if (drv1) {
692         return drv1;
693     }
694 
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;
700         }
701     }
702 
703     drv1 = bdrv_do_find_protocol(protocol);
704     if (!drv1) {
705         error_setg(errp, "Unknown protocol '%s'", protocol);
706     }
707     return drv1;
708 }
709 
710 /*
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.
714  *
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.
719  *
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.
723  */
724 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
725                             const char *filename)
726 {
727     int score_max = 0, score;
728     BlockDriver *drv = NULL, *d;
729 
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;
736             }
737         }
738     }
739 
740     return drv;
741 }
742 
743 static int find_image_format(BlockBackend *file, const char *filename,
744                              BlockDriver **pdrv, Error **errp)
745 {
746     BlockDriver *drv;
747     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
748     int ret = 0;
749 
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;
754     }
755 
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;
762     }
763 
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;
769     }
770     *pdrv = drv;
771     return ret;
772 }
773 
774 /**
775  * Set the current 'total_sectors' value
776  * Return 0 on success, -errno on error.
777  */
778 int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
779 {
780     BlockDriver *drv = bs->drv;
781 
782     if (!drv) {
783         return -ENOMEDIUM;
784     }
785 
786     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
787     if (bdrv_is_sg(bs))
788         return 0;
789 
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;
795         }
796         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
797     }
798 
799     bs->total_sectors = hint;
800     return 0;
801 }
802 
803 /**
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.
806  */
807 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
808                               QDict *old_options)
809 {
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);
814     }
815 }
816 
817 static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
818                                                             int open_flags,
819                                                             Error **errp)
820 {
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;
830     }
831 
832     if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
833         !(open_flags & BDRV_O_UNMAP))
834     {
835         error_setg(errp, "setting detect-zeroes to unmap is not allowed "
836                    "without setting discard operation to unmap");
837     }
838 
839     return detect_zeroes;
840 }
841 
842 /**
843  * Set open flags for a given discard mode
844  *
845  * Return 0 on success, -1 if the discard mode was invalid.
846  */
847 int bdrv_parse_discard_flags(const char *mode, int *flags)
848 {
849     *flags &= ~BDRV_O_UNMAP;
850 
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;
857     }
858 
859     return 0;
860 }
861 
862 /**
863  * Set open flags for a given cache mode
864  *
865  * Return 0 on success, -1 if the cache mode was invalid.
866  */
867 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
868 {
869     *flags &= ~BDRV_O_CACHE_MASK;
870 
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;
886     }
887 
888     return 0;
889 }
890 
891 static char *bdrv_child_get_parent_desc(BdrvChild *c)
892 {
893     BlockDriverState *parent = c->opaque;
894     return g_strdup(bdrv_get_device_or_node_name(parent));
895 }
896 
897 static void bdrv_child_cb_drained_begin(BdrvChild *child)
898 {
899     BlockDriverState *bs = child->opaque;
900     bdrv_do_drained_begin_quiesce(bs, NULL, false);
901 }
902 
903 static bool bdrv_child_cb_drained_poll(BdrvChild *child)
904 {
905     BlockDriverState *bs = child->opaque;
906     return bdrv_drain_poll(bs, false, NULL, false);
907 }
908 
909 static void bdrv_child_cb_drained_end(BdrvChild *child)
910 {
911     BlockDriverState *bs = child->opaque;
912     bdrv_drained_end(bs);
913 }
914 
915 static void bdrv_child_cb_attach(BdrvChild *child)
916 {
917     BlockDriverState *bs = child->opaque;
918     bdrv_apply_subtree_drain(child, bs);
919 }
920 
921 static void bdrv_child_cb_detach(BdrvChild *child)
922 {
923     BlockDriverState *bs = child->opaque;
924     bdrv_unapply_subtree_drain(child, bs);
925 }
926 
927 static int bdrv_child_cb_inactivate(BdrvChild *child)
928 {
929     BlockDriverState *bs = child->opaque;
930     assert(bs->open_flags & BDRV_O_INACTIVE);
931     return 0;
932 }
933 
934 /*
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)
938  */
939 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
940                                        int parent_flags, QDict *parent_options)
941 {
942     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
943 
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");
947 
948     /* Copy the read-only option from the parent */
949     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
950 
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;
954 }
955 
956 /*
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
959  */
960 static void bdrv_inherited_options(int *child_flags, QDict *child_options,
961                                    int parent_flags, QDict *parent_options)
962 {
963     int flags = parent_flags;
964 
965     /* Enable protocol handling, disable format probing for bs->file */
966     flags |= BDRV_O_PROTOCOL;
967 
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);
973 
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);
977 
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");
982 
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);
986 
987     *child_flags = flags;
988 }
989 
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,
1000 };
1001 
1002 /*
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
1006  */
1007 static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
1008                                        int parent_flags, QDict *parent_options)
1009 {
1010     child_file.inherit_options(child_flags, child_options,
1011                                parent_flags, parent_options);
1012 
1013     *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
1014 }
1015 
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,
1026 };
1027 
1028 static void bdrv_backing_attach(BdrvChild *c)
1029 {
1030     BlockDriverState *parent = c->opaque;
1031     BlockDriverState *backing_hd = c->bs;
1032 
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));
1037 
1038     bdrv_refresh_filename(backing_hd);
1039 
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 : "");
1045 
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);
1052     /*
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
1060      *
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.
1064      */
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);
1069 
1070     bdrv_child_cb_attach(c);
1071 }
1072 
1073 static void bdrv_backing_detach(BdrvChild *c)
1074 {
1075     BlockDriverState *parent = c->opaque;
1076 
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;
1081 
1082     bdrv_child_cb_detach(c);
1083 }
1084 
1085 /*
1086  * Returns the options and flags that bs->backing should get, based on the
1087  * given options and flags for the parent BDS
1088  */
1089 static void bdrv_backing_options(int *child_flags, QDict *child_options,
1090                                  int parent_flags, QDict *parent_options)
1091 {
1092     int flags = parent_flags;
1093 
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);
1099 
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;
1104 
1105     /* snapshot=on is handled on the top layer */
1106     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
1107 
1108     *child_flags = flags;
1109 }
1110 
1111 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1112                                         const char *filename, Error **errp)
1113 {
1114     BlockDriverState *parent = c->opaque;
1115     bool read_only = bdrv_is_read_only(parent);
1116     int ret;
1117 
1118     if (read_only) {
1119         ret = bdrv_reopen_set_read_only(parent, false, errp);
1120         if (ret < 0) {
1121             return ret;
1122         }
1123     }
1124 
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");
1129     }
1130 
1131     if (read_only) {
1132         bdrv_reopen_set_read_only(parent, true, NULL);
1133     }
1134 
1135     return ret;
1136 }
1137 
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,
1149 };
1150 
1151 static int bdrv_open_flags(BlockDriverState *bs, int flags)
1152 {
1153     int open_flags = flags;
1154 
1155     /*
1156      * Clear flags that are internal to the block layer before opening the
1157      * image.
1158      */
1159     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1160 
1161     /*
1162      * Snapshots should be writable.
1163      */
1164     if (flags & BDRV_O_TEMPORARY) {
1165         open_flags |= BDRV_O_RDWR;
1166     }
1167 
1168     return open_flags;
1169 }
1170 
1171 static void update_flags_from_options(int *flags, QemuOpts *opts)
1172 {
1173     *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
1174 
1175     if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1176         *flags |= BDRV_O_NO_FLUSH;
1177     }
1178 
1179     if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1180         *flags |= BDRV_O_NOCACHE;
1181     }
1182 
1183     if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
1184         *flags |= BDRV_O_RDWR;
1185     }
1186 
1187     if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1188         *flags |= BDRV_O_AUTO_RDONLY;
1189     }
1190 }
1191 
1192 static void update_options_from_flags(QDict *options, int flags)
1193 {
1194     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1195         qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1196     }
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);
1200     }
1201     if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1202         qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1203     }
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);
1207     }
1208 }
1209 
1210 static void bdrv_assign_node_name(BlockDriverState *bs,
1211                                   const char *node_name,
1212                                   Error **errp)
1213 {
1214     char *gen_node_name = NULL;
1215 
1216     if (!node_name) {
1217         node_name = gen_node_name = id_generate(ID_BLOCK);
1218     } else if (!id_wellformed(node_name)) {
1219         /*
1220          * Check for empty string or invalid characters, but not if it is
1221          * generated (generated names use characters not available to the user)
1222          */
1223         error_setg(errp, "Invalid node name");
1224         return;
1225     }
1226 
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;
1232     }
1233 
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;
1238     }
1239 
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;
1244     }
1245 
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);
1251 }
1252 
1253 static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1254                             const char *node_name, QDict *options,
1255                             int open_flags, Error **errp)
1256 {
1257     Error *local_err = NULL;
1258     int i, ret;
1259 
1260     bdrv_assign_node_name(bs, node_name, &local_err);
1261     if (local_err) {
1262         error_propagate(errp, local_err);
1263         return -EINVAL;
1264     }
1265 
1266     bs->drv = drv;
1267     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1268     bs->opaque = g_malloc0(drv->instance_size);
1269 
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;
1277     }
1278 
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");
1286         }
1287         goto open_failed;
1288     }
1289 
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;
1294     }
1295 
1296     bdrv_refresh_limits(bs, &local_err);
1297     if (local_err) {
1298         error_propagate(errp, local_err);
1299         return -EINVAL;
1300     }
1301 
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));
1305 
1306     for (i = 0; i < bs->quiesce_counter; i++) {
1307         if (drv->bdrv_co_drain_begin) {
1308             drv->bdrv_co_drain_begin(bs);
1309         }
1310     }
1311 
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;
1318     }
1319     g_free(bs->opaque);
1320     bs->opaque = NULL;
1321     return ret;
1322 }
1323 
1324 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1325                                        int flags, Error **errp)
1326 {
1327     BlockDriverState *bs;
1328     int ret;
1329 
1330     bs = bdrv_new();
1331     bs->open_flags = flags;
1332     bs->explicit_options = qdict_new();
1333     bs->options = qdict_new();
1334     bs->opaque = NULL;
1335 
1336     update_options_from_flags(bs->options, flags);
1337 
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;
1346     }
1347 
1348     return bs;
1349 }
1350 
1351 QemuOptsList bdrv_runtime_opts = {
1352     .name = "bdrv_common",
1353     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1354     .desc = {
1355         {
1356             .name = "node-name",
1357             .type = QEMU_OPT_STRING,
1358             .help = "Node name of the block device node",
1359         },
1360         {
1361             .name = "driver",
1362             .type = QEMU_OPT_STRING,
1363             .help = "Block driver to use for the node",
1364         },
1365         {
1366             .name = BDRV_OPT_CACHE_DIRECT,
1367             .type = QEMU_OPT_BOOL,
1368             .help = "Bypass software writeback cache on the host",
1369         },
1370         {
1371             .name = BDRV_OPT_CACHE_NO_FLUSH,
1372             .type = QEMU_OPT_BOOL,
1373             .help = "Ignore flush requests",
1374         },
1375         {
1376             .name = BDRV_OPT_READ_ONLY,
1377             .type = QEMU_OPT_BOOL,
1378             .help = "Node is opened in read-only mode",
1379         },
1380         {
1381             .name = BDRV_OPT_AUTO_READ_ONLY,
1382             .type = QEMU_OPT_BOOL,
1383             .help = "Node can become read-only if opening read-write fails",
1384         },
1385         {
1386             .name = "detect-zeroes",
1387             .type = QEMU_OPT_STRING,
1388             .help = "try to optimize zero writes (off, on, unmap)",
1389         },
1390         {
1391             .name = BDRV_OPT_DISCARD,
1392             .type = QEMU_OPT_STRING,
1393             .help = "discard operation (ignore/off, unmap/on)",
1394         },
1395         {
1396             .name = BDRV_OPT_FORCE_SHARE,
1397             .type = QEMU_OPT_BOOL,
1398             .help = "always accept other writers (default: off)",
1399         },
1400         { /* end of list */ }
1401     },
1402 };
1403 
1404 /*
1405  * Common part for opening disk images and files
1406  *
1407  * Removes all processed options from *options.
1408  */
1409 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1410                             QDict *options, Error **errp)
1411 {
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;
1420 
1421     assert(bs->file == NULL);
1422     assert(options != NULL && bs->options != options);
1423 
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;
1430     }
1431 
1432     update_flags_from_options(&bs->open_flags, opts);
1433 
1434     driver_name = qemu_opt_get(opts, "driver");
1435     drv = bdrv_find_format(driver_name);
1436     assert(drv != NULL);
1437 
1438     bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1439 
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;
1446     }
1447 
1448     if (file != NULL) {
1449         bdrv_refresh_filename(blk_bs(file));
1450         filename = blk_bs(file)->filename;
1451     } else {
1452         /*
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.
1458          */
1459         filename = qdict_get_try_str(options, "filename");
1460     }
1461 
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;
1467     }
1468 
1469     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1470                            drv->format_name);
1471 
1472     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1473 
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;
1479         }
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;
1487         }
1488     }
1489 
1490     /* bdrv_new() and bdrv_close() make it so */
1491     assert(atomic_read(&bs->copy_on_read) == 0);
1492 
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;
1500         }
1501     }
1502 
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;
1509         }
1510     }
1511 
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;
1518     }
1519 
1520     if (filename != NULL) {
1521         pstrcpy(bs->filename, sizeof(bs->filename), filename);
1522     } else {
1523         bs->filename[0] = '\0';
1524     }
1525     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1526 
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");
1530 
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;
1535     }
1536 
1537     qemu_opts_del(opts);
1538     return 0;
1539 
1540 fail_opts:
1541     qemu_opts_del(opts);
1542     return ret;
1543 }
1544 
1545 static QDict *parse_json_filename(const char *filename, Error **errp)
1546 {
1547     QObject *options_obj;
1548     QDict *options;
1549     int ret;
1550 
1551     ret = strstart(filename, "json:", &filename);
1552     assert(ret);
1553 
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;
1558     }
1559 
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;
1565     }
1566 
1567     qdict_flatten(options);
1568 
1569     return options;
1570 }
1571 
1572 static void parse_json_protocol(QDict *options, const char **pfilename,
1573                                 Error **errp)
1574 {
1575     QDict *json_options;
1576     Error *local_err = NULL;
1577 
1578     /* Parse json: pseudo-protocol */
1579     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1580         return;
1581     }
1582 
1583     json_options = parse_json_filename(*pfilename, &local_err);
1584     if (local_err) {
1585         error_propagate(errp, local_err);
1586         return;
1587     }
1588 
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;
1594 }
1595 
1596 /*
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.
1601  */
1602 static int bdrv_fill_options(QDict **options, const char *filename,
1603                              int *flags, Error **errp)
1604 {
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;
1610 
1611     /*
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.
1617      */
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;
1624         }
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;
1628     }
1629 
1630     if (protocol) {
1631         *flags |= BDRV_O_PROTOCOL;
1632     } else {
1633         *flags &= ~BDRV_O_PROTOCOL;
1634     }
1635 
1636     /* Translate cache options from flags into options */
1637     update_options_from_flags(*options, *flags);
1638 
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;
1648         }
1649     }
1650 
1651     /* Find the right block driver */
1652     /* See cautionary note on accessing @options above */
1653     filename = qdict_get_try_str(*options, "filename");
1654 
1655     if (!drvname && protocol) {
1656         if (filename) {
1657             drv = bdrv_find_protocol(filename, parse_filename, errp);
1658             if (!drv) {
1659                 return -EINVAL;
1660             }
1661 
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;
1667         }
1668     }
1669 
1670     assert(drv || !protocol);
1671 
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;
1678         }
1679 
1680         if (!drv->bdrv_needs_filename) {
1681             qdict_del(*options, "filename");
1682         }
1683     }
1684 
1685     return 0;
1686 }
1687 
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);
1693 
1694 typedef struct BlockReopenQueueEntry {
1695      bool prepared;
1696      BDRVReopenState state;
1697      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1698 } BlockReopenQueueEntry;
1699 
1700 /*
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.
1704  */
1705 static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1706 {
1707     BlockReopenQueueEntry *entry;
1708 
1709     if (q != NULL) {
1710         QSIMPLEQ_FOREACH(entry, q, entry) {
1711             if (entry->state.bs == bs) {
1712                 return entry->state.flags;
1713             }
1714         }
1715     }
1716 
1717     return bs->open_flags;
1718 }
1719 
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)
1724 {
1725     int flags = bdrv_reopen_get_flags(q, bs);
1726 
1727     return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1728 }
1729 
1730 /*
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.
1734  */
1735 bool bdrv_is_writable(BlockDriverState *bs)
1736 {
1737     return bdrv_is_writable_after_reopen(bs, NULL);
1738 }
1739 
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)
1745 {
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);
1750     }
1751     /* TODO Take force_share from reopen_queue */
1752     if (child_bs && child_bs->force_share) {
1753         *nshared = BLK_PERM_ALL;
1754     }
1755 }
1756 
1757 /*
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.
1762  *
1763  * A call to this function must always be followed by a call to bdrv_set_perm()
1764  * or bdrv_abort_perm_update().
1765  */
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)
1770 {
1771     BlockDriver *drv = bs->drv;
1772     BdrvChild *c;
1773     int ret;
1774 
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))
1778     {
1779         error_setg(errp, "Block node is read-only");
1780         return -EPERM;
1781     }
1782 
1783     /* Check this node */
1784     if (!drv) {
1785         return 0;
1786     }
1787 
1788     if (drv->bdrv_check_perm) {
1789         return drv->bdrv_check_perm(bs, cumulative_perms,
1790                                     cumulative_shared_perms, errp);
1791     }
1792 
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;
1797     }
1798 
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;
1809         }
1810     }
1811 
1812     return 0;
1813 }
1814 
1815 /*
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.
1819  *
1820  * This function recursively notifies all child nodes.
1821  */
1822 static void bdrv_abort_perm_update(BlockDriverState *bs)
1823 {
1824     BlockDriver *drv = bs->drv;
1825     BdrvChild *c;
1826 
1827     if (!drv) {
1828         return;
1829     }
1830 
1831     if (drv->bdrv_abort_perm_update) {
1832         drv->bdrv_abort_perm_update(bs);
1833     }
1834 
1835     QLIST_FOREACH(c, &bs->children, next) {
1836         bdrv_child_abort_perm_update(c);
1837     }
1838 }
1839 
1840 static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
1841                           uint64_t cumulative_shared_perms)
1842 {
1843     BlockDriver *drv = bs->drv;
1844     BdrvChild *c;
1845 
1846     if (!drv) {
1847         return;
1848     }
1849 
1850     /* Update this node */
1851     if (drv->bdrv_set_perm) {
1852         drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
1853     }
1854 
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;
1859     }
1860 
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);
1868     }
1869 }
1870 
1871 static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
1872                                      uint64_t *shared_perm)
1873 {
1874     BdrvChild *c;
1875     uint64_t cumulative_perms = 0;
1876     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
1877 
1878     QLIST_FOREACH(c, &bs->parents, next_parent) {
1879         cumulative_perms |= c->perm;
1880         cumulative_shared_perms &= c->shared_perm;
1881     }
1882 
1883     *perm = cumulative_perms;
1884     *shared_perm = cumulative_shared_perms;
1885 }
1886 
1887 static char *bdrv_child_user_desc(BdrvChild *c)
1888 {
1889     if (c->role->get_parent_desc) {
1890         return c->role->get_parent_desc(c);
1891     }
1892 
1893     return g_strdup("another user");
1894 }
1895 
1896 char *bdrv_perm_names(uint64_t perm)
1897 {
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 }
1908     };
1909 
1910     char *result = g_strdup("");
1911     struct perm_name *p;
1912 
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);
1918         }
1919     }
1920 
1921     return result;
1922 }
1923 
1924 /*
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.
1929  *
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)
1936 {
1937     BdrvChild *c;
1938     uint64_t cumulative_perms = new_used_perm;
1939     uint64_t cumulative_shared_perms = new_shared_perm;
1940 
1941     /* There is no reason why anyone couldn't tolerate write_unchanged */
1942     assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1943 
1944     QLIST_FOREACH(c, &bs->parents, next_parent) {
1945         if (g_slist_find(ignore_children, c)) {
1946             continue;
1947         }
1948 
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;
1958         }
1959 
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;
1969         }
1970 
1971         cumulative_perms |= c->perm;
1972         cumulative_shared_perms &= c->shared_perm;
1973     }
1974 
1975     return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
1976                            ignore_children, errp);
1977 }
1978 
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)
1984 {
1985     int ret;
1986 
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);
1990 
1991     if (ret < 0) {
1992         return ret;
1993     }
1994 
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;
1999     }
2000     /*
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
2003      */
2004 
2005     c->perm = perm;
2006     c->shared_perm = shared;
2007 
2008     return 0;
2009 }
2010 
2011 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
2012 {
2013     uint64_t cumulative_perms, cumulative_shared_perms;
2014 
2015     c->has_backup_perm = false;
2016 
2017     c->perm = perm;
2018     c->shared_perm = shared;
2019 
2020     bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
2021                              &cumulative_shared_perms);
2022     bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
2023 }
2024 
2025 static void bdrv_child_abort_perm_update(BdrvChild *c)
2026 {
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;
2031     }
2032 
2033     bdrv_abort_perm_update(c->bs);
2034 }
2035 
2036 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2037                             Error **errp)
2038 {
2039     int ret;
2040 
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;
2045     }
2046 
2047     bdrv_child_set_perm(c, perm, shared);
2048 
2049     return 0;
2050 }
2051 
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)
2057 {
2058     if (c == NULL) {
2059         *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2060         *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
2061         return;
2062     }
2063 
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);
2068 }
2069 
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)
2075 {
2076     bool backing = (role == &child_backing);
2077     assert(role == &child_backing || role == &child_file);
2078 
2079     if (!backing) {
2080         int flags = bdrv_reopen_get_flags(reopen_queue, bs);
2081 
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);
2086 
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;
2090         }
2091 
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;
2096         }
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;
2102 
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;
2110         }
2111 
2112         shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2113                   BLK_PERM_WRITE_UNCHANGED;
2114     }
2115 
2116     if (bs->open_flags & BDRV_O_INACTIVE) {
2117         shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2118     }
2119 
2120     *nperm = perm;
2121     *nshared = shared;
2122 }
2123 
2124 static void bdrv_replace_child_noperm(BdrvChild *child,
2125                                       BlockDriverState *new_bs)
2126 {
2127     BlockDriverState *old_bs = child->bs;
2128     int i;
2129 
2130     if (old_bs && new_bs) {
2131         assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2132     }
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);
2139         }
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;
2144             }
2145             assert(num >= 0);
2146             for (i = 0; i < num; i++) {
2147                 child->role->drained_end(child);
2148             }
2149         }
2150         QLIST_REMOVE(child, next_parent);
2151     }
2152 
2153     child->bs = new_bs;
2154 
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;
2161             }
2162             assert(num >= 0);
2163             for (i = 0; i < num; i++) {
2164                 bdrv_parent_drained_begin_single(child, true);
2165             }
2166         }
2167 
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);
2173         }
2174     }
2175 }
2176 
2177 /*
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.
2181  *
2182  * NULL is passed as @new_bs for removing the reference before freeing @child.
2183  *
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.
2187  */
2188 static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
2189 {
2190     BlockDriverState *old_bs = child->bs;
2191     uint64_t perm, shared_perm;
2192 
2193     bdrv_replace_child_noperm(child, new_bs);
2194 
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);
2202     }
2203 
2204     if (new_bs) {
2205         bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2206         bdrv_set_perm(new_bs, perm, shared_perm);
2207     }
2208 }
2209 
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)
2215 {
2216     BdrvChild *child;
2217     int ret;
2218 
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;
2223     }
2224 
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,
2233     };
2234 
2235     /* This performs the matching bdrv_set_perm() for the above check. */
2236     bdrv_replace_child(child, child_bs);
2237 
2238     return child;
2239 }
2240 
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)
2246 {
2247     BdrvChild *child;
2248     uint64_t perm, shared_perm;
2249 
2250     bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2251 
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);
2256 
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;
2261     }
2262 
2263     QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2264     return child;
2265 }
2266 
2267 static void bdrv_detach_child(BdrvChild *child)
2268 {
2269     if (child->next.le_prev) {
2270         QLIST_REMOVE(child, next);
2271         child->next.le_prev = NULL;
2272     }
2273 
2274     bdrv_replace_child(child, NULL);
2275 
2276     g_free(child->name);
2277     g_free(child);
2278 }
2279 
2280 void bdrv_root_unref_child(BdrvChild *child)
2281 {
2282     BlockDriverState *child_bs;
2283 
2284     child_bs = child->bs;
2285     bdrv_detach_child(child);
2286     bdrv_unref(child_bs);
2287 }
2288 
2289 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2290 {
2291     if (child == NULL) {
2292         return;
2293     }
2294 
2295     if (child->bs->inherits_from == parent) {
2296         BdrvChild *c;
2297 
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;
2303             }
2304         }
2305         if (c == NULL) {
2306             child->bs->inherits_from = NULL;
2307         }
2308     }
2309 
2310     bdrv_root_unref_child(child);
2311 }
2312 
2313 
2314 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2315 {
2316     BdrvChild *c;
2317     QLIST_FOREACH(c, &bs->parents, next_parent) {
2318         if (c->role->change_media) {
2319             c->role->change_media(c, load);
2320         }
2321     }
2322 }
2323 
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)
2328 {
2329     while (child && child != parent) {
2330         child = child->inherits_from;
2331     }
2332 
2333     return child != NULL;
2334 }
2335 
2336 /*
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().
2339  */
2340 void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2341                          Error **errp)
2342 {
2343     bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
2344         bdrv_inherits_from_recursive(backing_hd, bs);
2345 
2346     if (backing_hd) {
2347         bdrv_ref(backing_hd);
2348     }
2349 
2350     if (bs->backing) {
2351         bdrv_unref_child(bs, bs->backing);
2352     }
2353 
2354     if (!backing_hd) {
2355         bs->backing = NULL;
2356         goto out;
2357     }
2358 
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;
2366     }
2367     if (!bs->backing) {
2368         bdrv_unref(backing_hd);
2369     }
2370 
2371 out:
2372     bdrv_refresh_limits(bs, NULL);
2373 }
2374 
2375 /*
2376  * Opens the backing file for a BlockDriverState if not yet open
2377  *
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.
2382  *
2383  * TODO Can this be unified with bdrv_open_image()?
2384  */
2385 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2386                            const char *bdref_key, Error **errp)
2387 {
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;
2397 
2398     if (bs->backing != NULL) {
2399         goto free_exit;
2400     }
2401 
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;
2406     }
2407 
2408     bs->open_flags &= ~BDRV_O_NO_BACKING;
2409 
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);
2413 
2414     /*
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.
2420      */
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);
2436         }
2437 
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;
2444         }
2445     }
2446 
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;
2452     }
2453 
2454     if (!reference &&
2455         bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
2456         qdict_put_str(options, "driver", bs->backing_format);
2457     }
2458 
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;
2466     }
2467     bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
2468 
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);
2473     }
2474 
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;
2483     }
2484 
2485     qdict_del(parent_options, bdref_key);
2486 
2487 free_exit:
2488     g_free(backing_filename);
2489     qobject_unref(tmp_parent_options);
2490     return ret;
2491 }
2492 
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)
2497 {
2498     BlockDriverState *bs = NULL;
2499     QDict *image_options;
2500     char *bdref_key_dot;
2501     const char *reference;
2502 
2503     assert(child_role != NULL);
2504 
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);
2508 
2509     /*
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.
2515      */
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);
2521         }
2522         qobject_unref(image_options);
2523         goto done;
2524     }
2525 
2526     bs = bdrv_open_inherit(filename, reference, image_options, 0,
2527                            parent, child_role, errp);
2528     if (!bs) {
2529         goto done;
2530     }
2531 
2532 done:
2533     qdict_del(options, bdref_key);
2534     return bs;
2535 }
2536 
2537 /*
2538  * Opens a disk image whose options are given as BlockdevRef in another block
2539  * device's options.
2540  *
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.
2543  *
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.
2548  *
2549  * The BlockdevRef will be removed from the options QDict.
2550  */
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)
2556 {
2557     BdrvChild *c;
2558     BlockDriverState *bs;
2559 
2560     bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
2561                             allow_none, errp);
2562     if (bs == NULL) {
2563         return NULL;
2564     }
2565 
2566     c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
2567     if (!c) {
2568         bdrv_unref(bs);
2569         return NULL;
2570     }
2571 
2572     return c;
2573 }
2574 
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)
2578 {
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;
2585 
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);
2591 
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;
2597         }
2598         visit_complete(v, &obj);
2599 
2600         qdict = qobject_to(QDict, obj);
2601         qdict_flatten(qdict);
2602 
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");
2610 
2611     }
2612 
2613     bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
2614     obj = NULL;
2615 
2616 fail:
2617     qobject_unref(obj);
2618     visit_free(v);
2619     return bs;
2620 }
2621 
2622 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
2623                                                    int flags,
2624                                                    QDict *snapshot_options,
2625                                                    Error **errp)
2626 {
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;
2634 
2635     /* if snapshot, we create a temporary backing file and open it
2636        instead of opening 'filename' directly */
2637 
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;
2643     }
2644 
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;
2650     }
2651 
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;
2661     }
2662 
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");
2667 
2668     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
2669     snapshot_options = NULL;
2670     if (!bs_snapshot) {
2671         goto out;
2672     }
2673 
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;
2684     }
2685 
2686 out:
2687     qobject_unref(snapshot_options);
2688     g_free(tmp_filename);
2689     return bs_snapshot;
2690 }
2691 
2692 /*
2693  * Opens a disk image (raw, qcow2, vmdk, ...)
2694  *
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.
2699  *
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.
2702  *
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).
2706  */
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)
2713 {
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;
2724 
2725     assert(!child_role || !flags);
2726     assert(!child_role == !parent);
2727 
2728     if (reference) {
2729         bool options_non_empty = options ? qdict_size(options) : false;
2730         qobject_unref(options);
2731 
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;
2736         }
2737 
2738         bs = bdrv_lookup_bs(reference, reference, errp);
2739         if (!bs) {
2740             return NULL;
2741         }
2742 
2743         bdrv_ref(bs);
2744         return bs;
2745     }
2746 
2747     bs = bdrv_new();
2748 
2749     /* NULL means an empty set of options */
2750     if (options == NULL) {
2751         options = qdict_new();
2752     }
2753 
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;
2758     }
2759 
2760     bs->explicit_options = qdict_clone_shallow(options);
2761 
2762     if (child_role) {
2763         bs->inherits_from = parent;
2764         child_role->inherit_options(&flags, options,
2765                                     parent->open_flags, parent->options);
2766     }
2767 
2768     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
2769     if (local_err) {
2770         goto fail;
2771     }
2772 
2773     /*
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.
2779      */
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;
2785     }
2786 
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);
2794     }
2795 
2796     bs->open_flags = flags;
2797     bs->options = options;
2798     options = qdict_clone_shallow(options);
2799 
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;
2808         }
2809     }
2810 
2811     assert(drvname || !(flags & BDRV_O_PROTOCOL));
2812 
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'))
2817     {
2818         if (backing) {
2819             warn_report("Use of \"backing\": \"\" is deprecated; "
2820                         "use \"backing\": null instead");
2821         }
2822         flags |= BDRV_O_NO_BACKING;
2823         qdict_del(options, "backing");
2824     }
2825 
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;
2831 
2832         file_bs = bdrv_open_child_bs(filename, options, "file", bs,
2833                                      &child_file, true, &local_err);
2834         if (local_err) {
2835             goto fail;
2836         }
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;
2846             }
2847 
2848             qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
2849         }
2850     }
2851 
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;
2858         }
2859         /*
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.
2864          *
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).
2869          */
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;
2875     }
2876 
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);
2882 
2883     /* Open the image */
2884     ret = bdrv_open_common(bs, file, options, &local_err);
2885     if (ret < 0) {
2886         goto fail;
2887     }
2888 
2889     if (file) {
2890         blk_unref(file);
2891         file = NULL;
2892     }
2893 
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;
2899         }
2900     }
2901 
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);
2912     }
2913 
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);
2924         }
2925 
2926         goto close_and_fail;
2927     }
2928 
2929     bdrv_parent_cb_change_media(bs, true);
2930 
2931     qobject_unref(options);
2932     options = NULL;
2933 
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;
2943         }
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;
2950     }
2951 
2952     return bs;
2953 
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;
2965 
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;
2972 }
2973 
2974 BlockDriverState *bdrv_open(const char *filename, const char *reference,
2975                             QDict *options, int flags, Error **errp)
2976 {
2977     return bdrv_open_inherit(filename, reference, options, flags, NULL,
2978                              NULL, errp);
2979 }
2980 
2981 /*
2982  * Adds a BlockDriverState to a simple queue for an atomic, transactional
2983  * reopen of multiple devices.
2984  *
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'.
2990  *
2991  * bs is the BlockDriverState to add to the reopen queue.
2992  *
2993  * options contains the changed options for the associated bs
2994  * (the BlockReopenQueue takes ownership)
2995  *
2996  * flags contains the open flags for the associated bs
2997  *
2998  * returns a pointer to bs_queue, which is either the newly allocated
2999  * bs_queue, or the existing bs_queue being used.
3000  *
3001  * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
3002  */
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)
3009 {
3010     assert(bs != NULL);
3011 
3012     BlockReopenQueueEntry *bs_entry;
3013     BdrvChild *child;
3014     QDict *old_options, *explicit_options, *options_copy;
3015     int flags;
3016     QemuOpts *opts;
3017 
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);
3022 
3023     if (bs_queue == NULL) {
3024         bs_queue = g_new0(BlockReopenQueue, 1);
3025         QSIMPLEQ_INIT(bs_queue);
3026     }
3027 
3028     if (!options) {
3029         options = qdict_new();
3030     }
3031 
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;
3036         }
3037     }
3038 
3039     /*
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
3045      */
3046 
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);
3052     }
3053     bdrv_join_options(bs, options, old_options);
3054     qobject_unref(old_options);
3055 
3056     explicit_options = qdict_clone_shallow(options);
3057 
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);
3064     }
3065 
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);
3070 
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);
3078 
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;
3083     }
3084 
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);
3091     }
3092 
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;
3097 
3098     /* This needs to be overwritten in bdrv_reopen_prepare() */
3099     bs_entry->state.perm = UINT64_MAX;
3100     bs_entry->state.shared_perm = 0;
3101 
3102     QLIST_FOREACH(child, &bs->children, next) {
3103         QDict *new_child_options;
3104         char *child_key_dot;
3105 
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;
3111         }
3112 
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);
3117 
3118         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
3119                                 child->role, options, flags);
3120     }
3121 
3122     return bs_queue;
3123 }
3124 
3125 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
3126                                     BlockDriverState *bs,
3127                                     QDict *options)
3128 {
3129     return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, NULL, 0);
3130 }
3131 
3132 /*
3133  * Reopen multiple BlockDriverStates atomically & transactionally.
3134  *
3135  * The queue passed in (bs_queue) must have been built up previous
3136  * via bdrv_reopen_queue().
3137  *
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.
3142  *
3143  * If all devices prepare successfully, then the changes are committed
3144  * to all devices.
3145  *
3146  * All affected nodes must be drained between bdrv_reopen_queue() and
3147  * bdrv_reopen_multiple().
3148  */
3149 int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
3150 {
3151     int ret = -1;
3152     BlockReopenQueueEntry *bs_entry, *next;
3153     Error *local_err = NULL;
3154 
3155     assert(bs_queue != NULL);
3156 
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;
3162         }
3163         bs_entry->prepared = true;
3164     }
3165 
3166     /* If we reach this point, we have success and just need to apply the
3167      * changes
3168      */
3169     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3170         bdrv_reopen_commit(&bs_entry->state);
3171     }
3172 
3173     ret = 0;
3174 
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);
3180             }
3181             qobject_unref(bs_entry->state.explicit_options);
3182             qobject_unref(bs_entry->state.options);
3183         }
3184         g_free(bs_entry);
3185     }
3186     g_free(bs_queue);
3187 
3188     return ret;
3189 }
3190 
3191 int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
3192                               Error **errp)
3193 {
3194     int ret;
3195     BlockReopenQueue *queue;
3196     QDict *opts = qdict_new();
3197 
3198     qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
3199 
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);
3204 
3205     return ret;
3206 }
3207 
3208 static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3209                                                           BdrvChild *c)
3210 {
3211     BlockReopenQueueEntry *entry;
3212 
3213     QSIMPLEQ_FOREACH(entry, q, entry) {
3214         BlockDriverState *bs = entry->state.bs;
3215         BdrvChild *child;
3216 
3217         QLIST_FOREACH(child, &bs->children, next) {
3218             if (child == c) {
3219                 return entry;
3220             }
3221         }
3222     }
3223 
3224     return NULL;
3225 }
3226 
3227 static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3228                              uint64_t *perm, uint64_t *shared)
3229 {
3230     BdrvChild *c;
3231     BlockReopenQueueEntry *parent;
3232     uint64_t cumulative_perms = 0;
3233     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3234 
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;
3242 
3243             bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
3244                             parent->state.perm, parent->state.shared_perm,
3245                             &nperm, &nshared);
3246 
3247             cumulative_perms |= nperm;
3248             cumulative_shared_perms &= nshared;
3249         }
3250     }
3251     *perm = cumulative_perms;
3252     *shared = cumulative_shared_perms;
3253 }
3254 
3255 /*
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()
3259  *
3260  * bs is the BlockDriverState to reopen
3261  * flags are the new open flags
3262  * queue is the reopen queue
3263  *
3264  * Returns 0 on success, non-zero on error.  On error errp will be set
3265  * as well.
3266  *
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
3270  *
3271  */
3272 int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3273                         Error **errp)
3274 {
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;
3284 
3285     assert(reopen_state != NULL);
3286     assert(reopen_state->bs->drv != NULL);
3287     drv = reopen_state->bs->drv;
3288 
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);
3293 
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;
3301     }
3302 
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);
3309 
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;
3316         }
3317     }
3318 
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;
3325     }
3326 
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);
3331 
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;
3340     }
3341 
3342     /* Calculate required permissions after reopening */
3343     bdrv_reopen_perm(queue, reopen_state->bs,
3344                      &reopen_state->perm, &reopen_state->shared_perm);
3345 
3346     ret = bdrv_flush(reopen_state->bs);
3347     if (ret) {
3348         error_setg_errno(errp, -ret, "Error flushing drive");
3349         goto error;
3350     }
3351 
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);
3361             }
3362             goto error;
3363         }
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;
3372     }
3373 
3374     drv_prepared = true;
3375 
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);
3381 
3382         do {
3383             QObject *new = entry->value;
3384             QObject *old = qdict_get(reopen_state->bs->options, entry->key);
3385 
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;
3393                     }
3394                 }
3395 
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 */
3400                     }
3401                 }
3402             }
3403 
3404             /*
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.
3419              */
3420             if (!qobject_is_equal(new, old)) {
3421                 error_setg(errp, "Cannot change the option '%s'", entry->key);
3422                 ret = -EINVAL;
3423                 goto error;
3424             }
3425         } while ((entry = qdict_next(reopen_state->options, entry)));
3426     }
3427 
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;
3432     }
3433 
3434     ret = 0;
3435 
3436     /* Restore the original reopen_state->options QDict */
3437     qobject_unref(reopen_state->options);
3438     reopen_state->options = qobject_ref(orig_reopen_opts);
3439 
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);
3448         }
3449     }
3450     qemu_opts_del(opts);
3451     qobject_unref(orig_reopen_opts);
3452     g_free(discard);
3453     return ret;
3454 }
3455 
3456 /*
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.
3460  */
3461 void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3462 {
3463     BlockDriver *drv;
3464     BlockDriverState *bs;
3465     BdrvChild *child;
3466     bool old_can_write, new_can_write;
3467 
3468     assert(reopen_state != NULL);
3469     bs = reopen_state->bs;
3470     drv = bs->drv;
3471     assert(drv != NULL);
3472 
3473     old_can_write =
3474         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3475 
3476     /* If there are any driver level actions to take */
3477     if (drv->bdrv_reopen_commit) {
3478         drv->bdrv_reopen_commit(reopen_state);
3479     }
3480 
3481     /* set BDS specific flags now */
3482     qobject_unref(bs->explicit_options);
3483     qobject_unref(bs->options);
3484 
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;
3490 
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);
3496     }
3497 
3498     bdrv_refresh_limits(bs, NULL);
3499 
3500     bdrv_set_perm(reopen_state->bs, reopen_state->perm,
3501                   reopen_state->shared_perm);
3502 
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.
3511              */
3512             error_reportf_err(local_err,
3513                               "%s: Failed to make dirty bitmaps writable: ",
3514                               bdrv_get_node_name(bs));
3515         }
3516     }
3517 }
3518 
3519 /*
3520  * Abort the reopen, and delete and free the staged changes in
3521  * reopen_state
3522  */
3523 void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3524 {
3525     BlockDriver *drv;
3526 
3527     assert(reopen_state != NULL);
3528     drv = reopen_state->bs->drv;
3529     assert(drv != NULL);
3530 
3531     if (drv->bdrv_reopen_abort) {
3532         drv->bdrv_reopen_abort(reopen_state);
3533     }
3534 
3535     bdrv_abort_perm_update(reopen_state->bs);
3536 }
3537 
3538 
3539 static void bdrv_close(BlockDriverState *bs)
3540 {
3541     BdrvAioNotifier *ban, *ban_next;
3542     BdrvChild *child, *next;
3543 
3544     assert(!bs->job);
3545     assert(!bs->refcnt);
3546 
3547     bdrv_drained_begin(bs); /* complete I/O */
3548     bdrv_flush(bs);
3549     bdrv_drain(bs); /* in case flush left pending I/O */
3550 
3551     if (bs->drv) {
3552         if (bs->drv->bdrv_close) {
3553             bs->drv->bdrv_close(bs);
3554         }
3555         bs->drv = NULL;
3556     }
3557 
3558     bdrv_set_backing_hd(bs, NULL, &error_abort);
3559 
3560     if (bs->file != NULL) {
3561         bdrv_unref_child(bs, bs->file);
3562         bs->file = NULL;
3563     }
3564 
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;
3570         }
3571         bdrv_detach_child(child);
3572     }
3573 
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;
3588 
3589     bdrv_release_named_dirty_bitmaps(bs);
3590     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3591 
3592     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
3593         g_free(ban);
3594     }
3595     QLIST_INIT(&bs->aio_notifiers);
3596     bdrv_drained_end(bs);
3597 }
3598 
3599 void bdrv_close_all(void)
3600 {
3601     assert(job_next(NULL) == NULL);
3602     nbd_export_close_all();
3603 
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();
3607 
3608     blk_remove_all_bs();
3609     blockdev_close_all_bdrv_states();
3610 
3611     assert(QTAILQ_EMPTY(&all_bdrv_states));
3612 }
3613 
3614 static bool should_update_child(BdrvChild *c, BlockDriverState *to)
3615 {
3616     GQueue *queue;
3617     GHashTable *found;
3618     bool ret;
3619 
3620     if (c->role->stay_at_node) {
3621         return false;
3622     }
3623 
3624     /* If the child @c belongs to the BDS @to, replacing the current
3625      * c->bs by @to would mean to create a loop.
3626      *
3627      * Such a case occurs when appending a BDS to a backing chain.
3628      * For instance, imagine the following chain:
3629      *
3630      *   guest device -> node A -> further backing chain...
3631      *
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:
3634      *
3635      *                   node B
3636      *                     |
3637      *                     v
3638      *   guest device -> node A -> further backing chain...
3639      *
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:
3644      *
3645      *   guest device -> node B
3646      *                     |
3647      *                     v
3648      *                   node A -> further backing chain...
3649      *
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.
3655      *
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.
3660      */
3661 
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);
3667 
3668     while (!g_queue_is_empty(queue)) {
3669         BlockDriverState *v = g_queue_pop_head(queue);
3670         BdrvChild *c2;
3671 
3672         QLIST_FOREACH(c2, &v->children, next) {
3673             if (c2 == c) {
3674                 ret = false;
3675                 break;
3676             }
3677 
3678             if (g_hash_table_contains(found, c2->bs)) {
3679                 continue;
3680             }
3681 
3682             g_queue_push_tail(queue, c2->bs);
3683             g_hash_table_add(found, c2->bs);
3684         }
3685     }
3686 
3687     g_queue_free(queue);
3688     g_hash_table_destroy(found);
3689 
3690     return ret;
3691 }
3692 
3693 void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
3694                        Error **errp)
3695 {
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;
3701 
3702     assert(!atomic_read(&from->in_flight));
3703     assert(!atomic_read(&to->in_flight));
3704 
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);
3708 
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;
3714         }
3715         list = g_slist_prepend(list, c);
3716         perm |= c->perm;
3717         shared &= c->shared_perm;
3718     }
3719 
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;
3726     }
3727 
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;
3733 
3734         bdrv_ref(to);
3735         bdrv_replace_child_noperm(c, to);
3736         bdrv_unref(from);
3737     }
3738 
3739     bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3740     bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3741 
3742 out:
3743     g_slist_free(list);
3744     bdrv_unref(from);
3745 }
3746 
3747 /*
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.
3750  *
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.
3753  *
3754  * bs_new must not be attached to a BlockBackend.
3755  *
3756  * This function does not create any image files.
3757  *
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().
3762  */
3763 void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3764                  Error **errp)
3765 {
3766     Error *local_err = NULL;
3767 
3768     bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3769     if (local_err) {
3770         error_propagate(errp, local_err);
3771         goto out;
3772     }
3773 
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;
3779     }
3780 
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);
3785 }
3786 
3787 static void bdrv_delete(BlockDriverState *bs)
3788 {
3789     assert(!bs->job);
3790     assert(bdrv_op_blocker_is_empty(bs));
3791     assert(!bs->refcnt);
3792 
3793     bdrv_close(bs);
3794 
3795     /* remove from list, if necessary */
3796     if (bs->node_name[0] != '\0') {
3797         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
3798     }
3799     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
3800 
3801     g_free(bs);
3802 }
3803 
3804 /*
3805  * Run consistency checks on an image
3806  *
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.
3810  */
3811 static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
3812                                       BdrvCheckResult *res, BdrvCheckMode fix)
3813 {
3814     if (bs->drv == NULL) {
3815         return -ENOMEDIUM;
3816     }
3817     if (bs->drv->bdrv_co_check == NULL) {
3818         return -ENOTSUP;
3819     }
3820 
3821     memset(res, 0, sizeof(*res));
3822     return bs->drv->bdrv_co_check(bs, res, fix);
3823 }
3824 
3825 typedef struct CheckCo {
3826     BlockDriverState *bs;
3827     BdrvCheckResult *res;
3828     BdrvCheckMode fix;
3829     int ret;
3830 } CheckCo;
3831 
3832 static void bdrv_check_co_entry(void *opaque)
3833 {
3834     CheckCo *cco = opaque;
3835     cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
3836     aio_wait_kick();
3837 }
3838 
3839 int bdrv_check(BlockDriverState *bs,
3840                BdrvCheckResult *res, BdrvCheckMode fix)
3841 {
3842     Coroutine *co;
3843     CheckCo cco = {
3844         .bs = bs,
3845         .res = res,
3846         .ret = -EINPROGRESS,
3847         .fix = fix,
3848     };
3849 
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);
3857     }
3858 
3859     return cco.ret;
3860 }
3861 
3862 /*
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
3869  */
3870 int bdrv_change_backing_file(BlockDriverState *bs,
3871     const char *backing_file, const char *backing_fmt)
3872 {
3873     BlockDriver *drv = bs->drv;
3874     int ret;
3875 
3876     if (!drv) {
3877         return -ENOMEDIUM;
3878     }
3879 
3880     /* Backing file format doesn't make sense without a backing file */
3881     if (backing_fmt && !backing_file) {
3882         return -EINVAL;
3883     }
3884 
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;
3889     }
3890 
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 ?: "");
3896     }
3897     return ret;
3898 }
3899 
3900 /*
3901  * Finds the image layer in the chain that has 'bs' as its backing file.
3902  *
3903  * active is the current topmost image.
3904  *
3905  * Returns NULL if bs is not found in active's image chain,
3906  * or if active == bs.
3907  *
3908  * Returns the bottommost base image if bs == NULL.
3909  */
3910 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
3911                                     BlockDriverState *bs)
3912 {
3913     while (active && bs != backing_bs(active)) {
3914         active = backing_bs(active);
3915     }
3916 
3917     return active;
3918 }
3919 
3920 /* Given a BDS, searches for the base layer. */
3921 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
3922 {
3923     return bdrv_find_overlay(bs, NULL);
3924 }
3925 
3926 /*
3927  * Drops images above 'base' up to and including 'top', and sets the image
3928  * above 'top' to have base as its backing file.
3929  *
3930  * Requires that the overlay to 'top' is opened r/w, so that the backing file
3931  * information in 'bs' can be properly updated.
3932  *
3933  * E.g., this will convert the following chain:
3934  * bottom <- base <- intermediate <- top <- active
3935  *
3936  * to
3937  *
3938  * bottom <- base <- active
3939  *
3940  * It is allowed for bottom==base, in which case it converts:
3941  *
3942  * base <- intermediate <- top <- active
3943  *
3944  * to
3945  *
3946  * base <- active
3947  *
3948  * If backing_file_str is non-NULL, it will be used when modifying top's
3949  * overlay image metadata.
3950  *
3951  * Error conditions:
3952  *  if active == top, that is considered an error
3953  *
3954  */
3955 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3956                            const char *backing_file_str)
3957 {
3958     BlockDriverState *explicit_top = top;
3959     bool update_inherits_from;
3960     BdrvChild *c, *next;
3961     Error *local_err = NULL;
3962     int ret = -EIO;
3963 
3964     bdrv_ref(top);
3965 
3966     if (!top->drv || !base->drv) {
3967         goto exit;
3968     }
3969 
3970     /* Make sure that base is in the backing chain of top */
3971     if (!bdrv_chain_contains(top, base)) {
3972         goto exit;
3973     }
3974 
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);
3982     }
3983     update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
3984 
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;
3991     }
3992 
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;
4003         }
4004 
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;
4013             }
4014         }
4015 
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);
4021     }
4022 
4023     if (update_inherits_from) {
4024         base->inherits_from = explicit_top->inherits_from;
4025     }
4026 
4027     ret = 0;
4028 exit:
4029     bdrv_unref(top);
4030     return ret;
4031 }
4032 
4033 /**
4034  * Length of a allocated file in bytes. Sparse files are counted by actual
4035  * allocated space. Return < 0 if error or unknown.
4036  */
4037 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
4038 {
4039     BlockDriver *drv = bs->drv;
4040     if (!drv) {
4041         return -ENOMEDIUM;
4042     }
4043     if (drv->bdrv_get_allocated_file_size) {
4044         return drv->bdrv_get_allocated_file_size(bs);
4045     }
4046     if (bs->file) {
4047         return bdrv_get_allocated_file_size(bs->file->bs);
4048     }
4049     return -ENOTSUP;
4050 }
4051 
4052 /*
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
4060  *
4061  * Calculate file size required to create a new image.
4062  *
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.
4067  *
4068  * If @in_bs is NULL then the calculation includes no allocated clusters
4069  * unless a preallocation option is given in @opts.
4070  *
4071  * Note that @in_bs may use a different BlockDriver from @drv.
4072  *
4073  * If an error occurs the @errp pointer is set.
4074  */
4075 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
4076                                BlockDriverState *in_bs, Error **errp)
4077 {
4078     if (!drv->bdrv_measure) {
4079         error_setg(errp, "Block driver '%s' does not support size measurement",
4080                    drv->format_name);
4081         return NULL;
4082     }
4083 
4084     return drv->bdrv_measure(opts, in_bs, errp);
4085 }
4086 
4087 /**
4088  * Return number of sectors on success, -errno on error.
4089  */
4090 int64_t bdrv_nb_sectors(BlockDriverState *bs)
4091 {
4092     BlockDriver *drv = bs->drv;
4093 
4094     if (!drv)
4095         return -ENOMEDIUM;
4096 
4097     if (drv->has_variable_length) {
4098         int ret = refresh_total_sectors(bs, bs->total_sectors);
4099         if (ret < 0) {
4100             return ret;
4101         }
4102     }
4103     return bs->total_sectors;
4104 }
4105 
4106 /**
4107  * Return length in bytes on success, -errno on error.
4108  * The length is always a multiple of BDRV_SECTOR_SIZE.
4109  */
4110 int64_t bdrv_getlength(BlockDriverState *bs)
4111 {
4112     int64_t ret = bdrv_nb_sectors(bs);
4113 
4114     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
4115     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
4116 }
4117 
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)
4120 {
4121     int64_t nb_sectors = bdrv_nb_sectors(bs);
4122 
4123     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
4124 }
4125 
4126 bool bdrv_is_sg(BlockDriverState *bs)
4127 {
4128     return bs->sg;
4129 }
4130 
4131 bool bdrv_is_encrypted(BlockDriverState *bs)
4132 {
4133     if (bs->backing && bs->backing->bs->encrypted) {
4134         return true;
4135     }
4136     return bs->encrypted;
4137 }
4138 
4139 const char *bdrv_get_format_name(BlockDriverState *bs)
4140 {
4141     return bs->drv ? bs->drv->format_name : NULL;
4142 }
4143 
4144 static int qsort_strcmp(const void *a, const void *b)
4145 {
4146     return strcmp(*(char *const *)a, *(char *const *)b);
4147 }
4148 
4149 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
4150                          void *opaque)
4151 {
4152     BlockDriver *drv;
4153     int count = 0;
4154     int i;
4155     const char **formats = NULL;
4156 
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);
4163             }
4164 
4165             if (!found) {
4166                 formats = g_renew(const char *, formats, count + 1);
4167                 formats[count++] = drv->format_name;
4168             }
4169         }
4170     }
4171 
4172     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
4173         const char *format_name = block_driver_modules[i].format_name;
4174 
4175         if (format_name) {
4176             bool found = false;
4177             int j = count;
4178 
4179             while (formats && j && !found) {
4180                 found = !strcmp(formats[--j], format_name);
4181             }
4182 
4183             if (!found) {
4184                 formats = g_renew(const char *, formats, count + 1);
4185                 formats[count++] = format_name;
4186             }
4187         }
4188     }
4189 
4190     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
4191 
4192     for (i = 0; i < count; i++) {
4193         it(opaque, formats[i]);
4194     }
4195 
4196     g_free(formats);
4197 }
4198 
4199 /* This function is to find a node in the bs graph */
4200 BlockDriverState *bdrv_find_node(const char *node_name)
4201 {
4202     BlockDriverState *bs;
4203 
4204     assert(node_name);
4205 
4206     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4207         if (!strcmp(node_name, bs->node_name)) {
4208             return bs;
4209         }
4210     }
4211     return NULL;
4212 }
4213 
4214 /* Put this QMP function here so it can access the static graph_bdrv_states. */
4215 BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
4216 {
4217     BlockDeviceInfoList *list, *entry;
4218     BlockDriverState *bs;
4219 
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;
4226         }
4227         entry = g_malloc0(sizeof(*entry));
4228         entry->value = info;
4229         entry->next = list;
4230         list = entry;
4231     }
4232 
4233     return list;
4234 }
4235 
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)
4242 
4243 typedef struct XDbgBlockGraphConstructor {
4244     XDbgBlockGraph *graph;
4245     GHashTable *graph_nodes;
4246 } XDbgBlockGraphConstructor;
4247 
4248 static XDbgBlockGraphConstructor *xdbg_graph_new(void)
4249 {
4250     XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
4251 
4252     gr->graph = g_new0(XDbgBlockGraph, 1);
4253     gr->graph_nodes = g_hash_table_new(NULL, NULL);
4254 
4255     return gr;
4256 }
4257 
4258 static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
4259 {
4260     XDbgBlockGraph *graph = gr->graph;
4261 
4262     g_hash_table_destroy(gr->graph_nodes);
4263     g_free(gr);
4264 
4265     return graph;
4266 }
4267 
4268 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
4269 {
4270     uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
4271 
4272     if (ret != 0) {
4273         return ret;
4274     }
4275 
4276     /*
4277      * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
4278      * answer of g_hash_table_lookup.
4279      */
4280     ret = g_hash_table_size(gr->graph_nodes) + 1;
4281     g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
4282 
4283     return ret;
4284 }
4285 
4286 static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
4287                                 XDbgBlockGraphNodeType type, const char *name)
4288 {
4289     XDbgBlockGraphNode *n;
4290 
4291     n = g_new0(XDbgBlockGraphNode, 1);
4292 
4293     n->id = xdbg_graph_node_num(gr, node);
4294     n->type = type;
4295     n->name = g_strdup(name);
4296 
4297     QAPI_LIST_ADD(gr->graph->nodes, n);
4298 }
4299 
4300 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
4301                                 const BdrvChild *child)
4302 {
4303     typedef struct {
4304         unsigned int flag;
4305         BlockPermission num;
4306     } PermissionMap;
4307 
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 }
4315     };
4316     const PermissionMap *p;
4317     XDbgBlockGraphEdge *edge;
4318 
4319     QEMU_BUILD_BUG_ON(1UL << (ARRAY_SIZE(permissions) - 1) != BLK_PERM_ALL + 1);
4320 
4321     edge = g_new0(XDbgBlockGraphEdge, 1);
4322 
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);
4326 
4327     for (p = permissions; p->flag; p++) {
4328         if (p->flag & child->perm) {
4329             QAPI_LIST_ADD(edge->perm, p->num);
4330         }
4331         if (p->flag & child->shared_perm) {
4332             QAPI_LIST_ADD(edge->shared_perm, p->num);
4333         }
4334     }
4335 
4336     QAPI_LIST_ADD(gr->graph->edges, edge);
4337 }
4338 
4339 
4340 XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
4341 {
4342     BlockBackend *blk;
4343     BlockJob *job;
4344     BlockDriverState *bs;
4345     BdrvChild *child;
4346     XDbgBlockGraphConstructor *gr = xdbg_graph_new();
4347 
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);
4351 
4352         if (!*name) {
4353             name = allocated_name = blk_get_attached_dev_id(blk);
4354         }
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));
4360         }
4361     }
4362 
4363     for (job = block_job_next(NULL); job; job = block_job_next(job)) {
4364         GSList *el;
4365 
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);
4370         }
4371     }
4372 
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);
4378         }
4379     }
4380 
4381     return xdbg_graph_finalize(gr);
4382 }
4383 
4384 BlockDriverState *bdrv_lookup_bs(const char *device,
4385                                  const char *node_name,
4386                                  Error **errp)
4387 {
4388     BlockBackend *blk;
4389     BlockDriverState *bs;
4390 
4391     if (device) {
4392         blk = blk_by_name(device);
4393 
4394         if (blk) {
4395             bs = blk_bs(blk);
4396             if (!bs) {
4397                 error_setg(errp, "Device '%s' has no medium", device);
4398             }
4399 
4400             return bs;
4401         }
4402     }
4403 
4404     if (node_name) {
4405         bs = bdrv_find_node(node_name);
4406 
4407         if (bs) {
4408             return bs;
4409         }
4410     }
4411 
4412     error_setg(errp, "Cannot find device=%s nor node_name=%s",
4413                      device ? device : "",
4414                      node_name ? node_name : "");
4415     return NULL;
4416 }
4417 
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)
4421 {
4422     while (top && top != base) {
4423         top = backing_bs(top);
4424     }
4425 
4426     return top != NULL;
4427 }
4428 
4429 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
4430 {
4431     if (!bs) {
4432         return QTAILQ_FIRST(&graph_bdrv_states);
4433     }
4434     return QTAILQ_NEXT(bs, node_list);
4435 }
4436 
4437 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
4438 {
4439     if (!bs) {
4440         return QTAILQ_FIRST(&all_bdrv_states);
4441     }
4442     return QTAILQ_NEXT(bs, bs_list);
4443 }
4444 
4445 const char *bdrv_get_node_name(const BlockDriverState *bs)
4446 {
4447     return bs->node_name;
4448 }
4449 
4450 const char *bdrv_get_parent_name(const BlockDriverState *bs)
4451 {
4452     BdrvChild *c;
4453     const char *name;
4454 
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;
4461             }
4462         }
4463     }
4464 
4465     return NULL;
4466 }
4467 
4468 /* TODO check what callers really want: bs->node_name or blk_name() */
4469 const char *bdrv_get_device_name(const BlockDriverState *bs)
4470 {
4471     return bdrv_get_parent_name(bs) ?: "";
4472 }
4473 
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)
4479 {
4480     return bdrv_get_parent_name(bs) ?: bs->node_name;
4481 }
4482 
4483 int bdrv_get_flags(BlockDriverState *bs)
4484 {
4485     return bs->open_flags;
4486 }
4487 
4488 int bdrv_has_zero_init_1(BlockDriverState *bs)
4489 {
4490     return 1;
4491 }
4492 
4493 int bdrv_has_zero_init(BlockDriverState *bs)
4494 {
4495     if (!bs->drv) {
4496         return 0;
4497     }
4498 
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;
4503     }
4504     if (bs->drv->bdrv_has_zero_init) {
4505         return bs->drv->bdrv_has_zero_init(bs);
4506     }
4507     if (bs->file && bs->drv->is_filter) {
4508         return bdrv_has_zero_init(bs->file->bs);
4509     }
4510 
4511     /* safe default */
4512     return 0;
4513 }
4514 
4515 bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
4516 {
4517     BlockDriverInfo bdi;
4518 
4519     if (bs->backing) {
4520         return false;
4521     }
4522 
4523     if (bdrv_get_info(bs, &bdi) == 0) {
4524         return bdi.unallocated_blocks_are_zero;
4525     }
4526 
4527     return false;
4528 }
4529 
4530 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
4531 {
4532     if (!(bs->open_flags & BDRV_O_UNMAP)) {
4533         return false;
4534     }
4535 
4536     return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
4537 }
4538 
4539 void bdrv_get_backing_filename(BlockDriverState *bs,
4540                                char *filename, int filename_size)
4541 {
4542     pstrcpy(filename, filename_size, bs->backing_file);
4543 }
4544 
4545 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4546 {
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;
4551     }
4552     if (!drv->bdrv_get_info) {
4553         if (bs->file && drv->is_filter) {
4554             return bdrv_get_info(bs->file->bs, bdi);
4555         }
4556         return -ENOTSUP;
4557     }
4558     memset(bdi, 0, sizeof(*bdi));
4559     return drv->bdrv_get_info(bs, bdi);
4560 }
4561 
4562 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
4563                                           Error **errp)
4564 {
4565     BlockDriver *drv = bs->drv;
4566     if (drv && drv->bdrv_get_specific_info) {
4567         return drv->bdrv_get_specific_info(bs, errp);
4568     }
4569     return NULL;
4570 }
4571 
4572 void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
4573 {
4574     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
4575         return;
4576     }
4577 
4578     bs->drv->bdrv_debug_event(bs, event);
4579 }
4580 
4581 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
4582                           const char *tag)
4583 {
4584     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
4585         bs = bs->file ? bs->file->bs : NULL;
4586     }
4587 
4588     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
4589         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
4590     }
4591 
4592     return -ENOTSUP;
4593 }
4594 
4595 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
4596 {
4597     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
4598         bs = bs->file ? bs->file->bs : NULL;
4599     }
4600 
4601     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
4602         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
4603     }
4604 
4605     return -ENOTSUP;
4606 }
4607 
4608 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
4609 {
4610     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
4611         bs = bs->file ? bs->file->bs : NULL;
4612     }
4613 
4614     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
4615         return bs->drv->bdrv_debug_resume(bs, tag);
4616     }
4617 
4618     return -ENOTSUP;
4619 }
4620 
4621 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
4622 {
4623     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
4624         bs = bs->file ? bs->file->bs : NULL;
4625     }
4626 
4627     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
4628         return bs->drv->bdrv_debug_is_suspended(bs, tag);
4629     }
4630 
4631     return false;
4632 }
4633 
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)
4640 {
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;
4647 
4648     if (!bs || !bs->drv || !backing_file) {
4649         return NULL;
4650     }
4651 
4652     filename_full     = g_malloc(PATH_MAX);
4653     backing_file_full = g_malloc(PATH_MAX);
4654 
4655     is_protocol = path_has_protocol(backing_file);
4656 
4657     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
4658 
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;
4663 
4664             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4665                 retval = curr_bs->backing->bs;
4666                 break;
4667             }
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;
4677                 }
4678             }
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;
4688             }
4689             g_free(filename_tmp);
4690 
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;
4697             }
4698             g_free(filename_tmp);
4699 
4700             if (strcmp(backing_file_full, filename_full) == 0) {
4701                 retval = curr_bs->backing->bs;
4702                 break;
4703             }
4704         }
4705     }
4706 
4707     g_free(filename_full);
4708     g_free(backing_file_full);
4709     return retval;
4710 }
4711 
4712 void bdrv_init(void)
4713 {
4714     module_call_init(MODULE_INIT_BLOCK);
4715 }
4716 
4717 void bdrv_init_with_whitelist(void)
4718 {
4719     use_bdrv_whitelist = 1;
4720     bdrv_init();
4721 }
4722 
4723 static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
4724                                                   Error **errp)
4725 {
4726     BdrvChild *child, *parent;
4727     uint64_t perm, shared_perm;
4728     Error *local_err = NULL;
4729     int ret;
4730     BdrvDirtyBitmap *bm;
4731 
4732     if (!bs->drv)  {
4733         return;
4734     }
4735 
4736     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
4737         return;
4738     }
4739 
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;
4745         }
4746     }
4747 
4748     /*
4749      * Update permissions, they may differ for inactive nodes.
4750      *
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().
4755      *
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.
4760      */
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;
4768     }
4769     bdrv_set_perm(bs, perm, shared_perm);
4770 
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;
4777         }
4778     }
4779 
4780     for (bm = bdrv_dirty_bitmap_next(bs, NULL); bm;
4781          bm = bdrv_dirty_bitmap_next(bs, bm))
4782     {
4783         bdrv_dirty_bitmap_set_migration(bm, false);
4784     }
4785 
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;
4791     }
4792 
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;
4800             }
4801         }
4802     }
4803 }
4804 
4805 typedef struct InvalidateCacheCo {
4806     BlockDriverState *bs;
4807     Error **errp;
4808     bool done;
4809 } InvalidateCacheCo;
4810 
4811 static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
4812 {
4813     InvalidateCacheCo *ico = opaque;
4814     bdrv_co_invalidate_cache(ico->bs, ico->errp);
4815     ico->done = true;
4816     aio_wait_kick();
4817 }
4818 
4819 void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
4820 {
4821     Coroutine *co;
4822     InvalidateCacheCo ico = {
4823         .bs = bs,
4824         .done = false,
4825         .errp = errp
4826     };
4827 
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);
4835     }
4836 }
4837 
4838 void bdrv_invalidate_cache_all(Error **errp)
4839 {
4840     BlockDriverState *bs;
4841     Error *local_err = NULL;
4842     BdrvNextIterator it;
4843 
4844     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4845         AioContext *aio_context = bdrv_get_aio_context(bs);
4846 
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;
4854         }
4855     }
4856 }
4857 
4858 static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
4859 {
4860     BdrvChild *parent;
4861 
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;
4867             }
4868         }
4869     }
4870 
4871     return false;
4872 }
4873 
4874 static int bdrv_inactivate_recurse(BlockDriverState *bs)
4875 {
4876     BdrvChild *child, *parent;
4877     uint64_t perm, shared_perm;
4878     int ret;
4879 
4880     if (!bs->drv) {
4881         return -ENOMEDIUM;
4882     }
4883 
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;
4888     }
4889 
4890     assert(!(bs->open_flags & BDRV_O_INACTIVE));
4891 
4892     /* Inactivate this node */
4893     if (bs->drv->bdrv_inactivate) {
4894         ret = bs->drv->bdrv_inactivate(bs);
4895         if (ret < 0) {
4896             return ret;
4897         }
4898     }
4899 
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;
4905             }
4906         }
4907     }
4908 
4909     bs->open_flags |= BDRV_O_INACTIVE;
4910 
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);
4915 
4916 
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;
4922         }
4923     }
4924 
4925     return 0;
4926 }
4927 
4928 int bdrv_inactivate_all(void)
4929 {
4930     BlockDriverState *bs = NULL;
4931     BdrvNextIterator it;
4932     int ret = 0;
4933     GSList *aio_ctxs = NULL, *ctx;
4934 
4935     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4936         AioContext *aio_context = bdrv_get_aio_context(bs);
4937 
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);
4941         }
4942     }
4943 
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;
4950         }
4951         ret = bdrv_inactivate_recurse(bs);
4952         if (ret < 0) {
4953             bdrv_next_cleanup(&it);
4954             goto out;
4955         }
4956     }
4957 
4958 out:
4959     for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4960         AioContext *aio_context = ctx->data;
4961         aio_context_release(aio_context);
4962     }
4963     g_slist_free(aio_ctxs);
4964 
4965     return ret;
4966 }
4967 
4968 /**************************************************************/
4969 /* removable device support */
4970 
4971 /**
4972  * Return TRUE if the media is present
4973  */
4974 bool bdrv_is_inserted(BlockDriverState *bs)
4975 {
4976     BlockDriver *drv = bs->drv;
4977     BdrvChild *child;
4978 
4979     if (!drv) {
4980         return false;
4981     }
4982     if (drv->bdrv_is_inserted) {
4983         return drv->bdrv_is_inserted(bs);
4984     }
4985     QLIST_FOREACH(child, &bs->children, next) {
4986         if (!bdrv_is_inserted(child->bs)) {
4987             return false;
4988         }
4989     }
4990     return true;
4991 }
4992 
4993 /**
4994  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
4995  */
4996 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
4997 {
4998     BlockDriver *drv = bs->drv;
4999 
5000     if (drv && drv->bdrv_eject) {
5001         drv->bdrv_eject(bs, eject_flag);
5002     }
5003 }
5004 
5005 /**
5006  * Lock or unlock the media (if it is locked, the user won't be able
5007  * to eject it manually).
5008  */
5009 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
5010 {
5011     BlockDriver *drv = bs->drv;
5012 
5013     trace_bdrv_lock_medium(bs, locked);
5014 
5015     if (drv && drv->bdrv_lock_medium) {
5016         drv->bdrv_lock_medium(bs, locked);
5017     }
5018 }
5019 
5020 /* Get a reference to bs */
5021 void bdrv_ref(BlockDriverState *bs)
5022 {
5023     bs->refcnt++;
5024 }
5025 
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)
5030 {
5031     if (!bs) {
5032         return;
5033     }
5034     assert(bs->refcnt > 0);
5035     if (--bs->refcnt == 0) {
5036         bdrv_delete(bs);
5037     }
5038 }
5039 
5040 struct BdrvOpBlocker {
5041     Error *reason;
5042     QLIST_ENTRY(BdrvOpBlocker) list;
5043 };
5044 
5045 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
5046 {
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;
5055     }
5056     return false;
5057 }
5058 
5059 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
5060 {
5061     BdrvOpBlocker *blocker;
5062     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5063 
5064     blocker = g_new0(BdrvOpBlocker, 1);
5065     blocker->reason = reason;
5066     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
5067 }
5068 
5069 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
5070 {
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);
5077         }
5078     }
5079 }
5080 
5081 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
5082 {
5083     int i;
5084     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5085         bdrv_op_block(bs, i, reason);
5086     }
5087 }
5088 
5089 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
5090 {
5091     int i;
5092     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5093         bdrv_op_unblock(bs, i, reason);
5094     }
5095 }
5096 
5097 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
5098 {
5099     int i;
5100 
5101     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5102         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
5103             return false;
5104         }
5105     }
5106     return true;
5107 }
5108 
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)
5113 {
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;
5121 
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;
5127     }
5128 
5129     proto_drv = bdrv_find_protocol(filename, true, errp);
5130     if (!proto_drv) {
5131         return;
5132     }
5133 
5134     if (!drv->create_opts) {
5135         error_setg(errp, "Format driver '%s' does not support image creation",
5136                    drv->format_name);
5137         return;
5138     }
5139 
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;
5144     }
5145 
5146     create_opts = qemu_opts_append(create_opts, drv->create_opts);
5147     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
5148 
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);
5152 
5153     /* Parse -o options */
5154     if (options) {
5155         qemu_opts_do_parse(opts, options, NULL, &local_err);
5156         if (local_err) {
5157             goto out;
5158         }
5159     }
5160 
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;
5167         }
5168     }
5169 
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;
5176         }
5177     }
5178 
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;
5185         }
5186     }
5187 
5188     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
5189 
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;
5198 
5199         full_backing =
5200             bdrv_get_full_backing_filename_from_filename(filename, backing_file,
5201                                                          &local_err);
5202         if (local_err) {
5203             goto out;
5204         }
5205         assert(full_backing);
5206 
5207         /* backing files always opened read-only */
5208         back_flags = flags;
5209         back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
5210 
5211         backing_options = qdict_new();
5212         if (backing_fmt) {
5213             qdict_put_str(backing_options, "driver", backing_fmt);
5214         }
5215         qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
5216 
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;
5240                 }
5241                 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
5242             }
5243             bdrv_unref(bs);
5244         }
5245     } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
5246 
5247     if (size == -1) {
5248         error_setg(errp, "Image creation needs a size parameter");
5249         goto out;
5250     }
5251 
5252     if (!quiet) {
5253         printf("Formatting '%s', fmt=%s ", filename, fmt);
5254         qemu_opts_print(opts, " ");
5255         puts("");
5256     }
5257 
5258     ret = bdrv_create(drv, filename, opts, &local_err);
5259 
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)";
5267         }
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;
5272     }
5273 
5274 out:
5275     qemu_opts_del(opts);
5276     qemu_opts_free(create_opts);
5277     error_propagate(errp, local_err);
5278 }
5279 
5280 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
5281 {
5282     return bs ? bs->aio_context : qemu_get_aio_context();
5283 }
5284 
5285 void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
5286 {
5287     aio_co_enter(bdrv_get_aio_context(bs), co);
5288 }
5289 
5290 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
5291 {
5292     QLIST_REMOVE(ban, list);
5293     g_free(ban);
5294 }
5295 
5296 void bdrv_detach_aio_context(BlockDriverState *bs)
5297 {
5298     BdrvAioNotifier *baf, *baf_tmp;
5299     BdrvChild *child;
5300 
5301     if (!bs->drv) {
5302         return;
5303     }
5304 
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);
5312         }
5313     }
5314     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
5315      * remove remaining aio notifiers if we aren't called again.
5316      */
5317     bs->walking_aio_notifiers = false;
5318 
5319     if (bs->drv->bdrv_detach_aio_context) {
5320         bs->drv->bdrv_detach_aio_context(bs);
5321     }
5322     QLIST_FOREACH(child, &bs->children, next) {
5323         bdrv_detach_aio_context(child->bs);
5324     }
5325 
5326     if (bs->quiesce_counter) {
5327         aio_enable_external(bs->aio_context);
5328     }
5329     bs->aio_context = NULL;
5330 }
5331 
5332 void bdrv_attach_aio_context(BlockDriverState *bs,
5333                              AioContext *new_context)
5334 {
5335     BdrvAioNotifier *ban, *ban_tmp;
5336     BdrvChild *child;
5337 
5338     if (!bs->drv) {
5339         return;
5340     }
5341 
5342     if (bs->quiesce_counter) {
5343         aio_disable_external(new_context);
5344     }
5345 
5346     bs->aio_context = new_context;
5347 
5348     QLIST_FOREACH(child, &bs->children, next) {
5349         bdrv_attach_aio_context(child->bs, new_context);
5350     }
5351     if (bs->drv->bdrv_attach_aio_context) {
5352         bs->drv->bdrv_attach_aio_context(bs, new_context);
5353     }
5354 
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);
5362         }
5363     }
5364     bs->walking_aio_notifiers = false;
5365 }
5366 
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)
5371 {
5372     if (bdrv_get_aio_context(bs) == new_context) {
5373         return;
5374     }
5375 
5376     bdrv_drained_begin(bs);
5377     bdrv_detach_aio_context(bs);
5378 
5379     /* This function executes in the old AioContext so acquire the new one in
5380      * case it runs in a different thread.
5381      */
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);
5386 }
5387 
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)
5391 {
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
5397     };
5398 
5399     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
5400 }
5401 
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)
5407 {
5408     BdrvAioNotifier *ban, *ban_next;
5409 
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)
5415         {
5416             if (bs->walking_aio_notifiers) {
5417                 ban->deleted = true;
5418             } else {
5419                 bdrv_do_remove_aio_context_notifier(ban);
5420             }
5421             return;
5422         }
5423     }
5424 
5425     abort();
5426 }
5427 
5428 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
5429                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5430                        Error **errp)
5431 {
5432     if (!bs->drv) {
5433         error_setg(errp, "Node is ejected");
5434         return -ENOMEDIUM;
5435     }
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;
5440     }
5441     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
5442 }
5443 
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.
5448  */
5449 bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5450                                       BlockDriverState *candidate)
5451 {
5452     /* return false if basic checks fails */
5453     if (!bs || !bs->drv) {
5454         return false;
5455     }
5456 
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.
5459      */
5460     if (!bs->drv->is_filter) {
5461         return bs == candidate;
5462     }
5463     /* Down this path the driver is a block filter driver */
5464 
5465     /* If the block filter recursion method is defined use it to recurse down
5466      * the node graph.
5467      */
5468     if (bs->drv->bdrv_recurse_is_first_non_filter) {
5469         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5470     }
5471 
5472     /* the driver is a block filter but don't allow to recurse -> return false
5473      */
5474     return false;
5475 }
5476 
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.
5480  */
5481 bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5482 {
5483     BlockDriverState *bs;
5484     BdrvNextIterator it;
5485 
5486     /* walk down the bs forest recursively */
5487     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5488         bool perm;
5489 
5490         /* try to recurse in this top level bs */
5491         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
5492 
5493         /* candidate is the first non filter */
5494         if (perm) {
5495             bdrv_next_cleanup(&it);
5496             return true;
5497         }
5498     }
5499 
5500     return false;
5501 }
5502 
5503 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
5504                                         const char *node_name, Error **errp)
5505 {
5506     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
5507     AioContext *aio_context;
5508 
5509     if (!to_replace_bs) {
5510         error_setg(errp, "Node name '%s' not found", node_name);
5511         return NULL;
5512     }
5513 
5514     aio_context = bdrv_get_aio_context(to_replace_bs);
5515     aio_context_acquire(aio_context);
5516 
5517     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
5518         to_replace_bs = NULL;
5519         goto out;
5520     }
5521 
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.
5526      */
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;
5531     }
5532 
5533 out:
5534     aio_context_release(aio_context);
5535     return to_replace_bs;
5536 }
5537 
5538 /**
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.
5544  *
5545  * If a key returned by this function ends with a dot, all options
5546  * starting with that prefix are strong.
5547  */
5548 static const char *const *strong_options(BlockDriverState *bs,
5549                                          const char *const *curopt)
5550 {
5551     static const char *const global_options[] = {
5552         "driver", "filename", NULL
5553     };
5554 
5555     if (!curopt) {
5556         return &global_options[0];
5557     }
5558 
5559     curopt++;
5560     if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
5561         curopt = bs->drv->strong_runtime_opts;
5562     }
5563 
5564     return (curopt && *curopt) ? curopt : NULL;
5565 }
5566 
5567 /**
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().
5571  *
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.
5577  */
5578 static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
5579 {
5580     bool found_any = false;
5581     const char *const *option_name = NULL;
5582 
5583     if (!bs->drv) {
5584         return false;
5585     }
5586 
5587     while ((option_name = strong_options(bs, option_name))) {
5588         bool option_given = false;
5589 
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;
5595             }
5596 
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))
5603             {
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;
5608                 }
5609             }
5610         }
5611 
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"))
5616         {
5617             found_any = true;
5618         }
5619     }
5620 
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);
5625     }
5626 
5627     return found_any;
5628 }
5629 
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)
5634 {
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';
5642     }
5643 }
5644 
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.
5656  */
5657 void bdrv_refresh_filename(BlockDriverState *bs)
5658 {
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) */
5665 
5666     if (!drv) {
5667         return;
5668     }
5669 
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);
5674     }
5675 
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);
5680 
5681         pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
5682                 child->bs->exact_filename);
5683         pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
5684 
5685         bs->full_open_options = qobject_ref(child->bs->full_open_options);
5686 
5687         return;
5688     }
5689 
5690     backing_overridden = bdrv_backing_overridden(bs);
5691 
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;
5698     }
5699 
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;
5704 
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;
5714             }
5715 
5716             qdict_put(opts, child->name,
5717                       qobject_ref(child->bs->full_open_options));
5718         }
5719 
5720         if (backing_overridden && !bs->backing) {
5721             /* Force no backing file */
5722             qdict_put_null(opts, "backing");
5723         }
5724     }
5725 
5726     qobject_unref(bs->full_open_options);
5727     bs->full_open_options = opts;
5728 
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';
5733 
5734         drv->bdrv_refresh_filename(bs);
5735     } else if (bs->file) {
5736         /* Try to reconstruct valid information from the underlying file */
5737 
5738         bs->exact_filename[0] = '\0';
5739 
5740         /*
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.
5750          */
5751         if (bs->file->bs->exact_filename[0] &&
5752             bs->file->bs->drv->bdrv_file_open &&
5753             !generate_json_filename)
5754         {
5755             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
5756         }
5757     }
5758 
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);
5766     }
5767 }
5768 
5769 char *bdrv_dirname(BlockDriverState *bs, Error **errp)
5770 {
5771     BlockDriver *drv = bs->drv;
5772 
5773     if (!drv) {
5774         error_setg(errp, "Node '%s' is ejected", bs->node_name);
5775         return NULL;
5776     }
5777 
5778     if (drv->bdrv_dirname) {
5779         return drv->bdrv_dirname(bs, errp);
5780     }
5781 
5782     if (bs->file) {
5783         return bdrv_dirname(bs->file->bs, errp);
5784     }
5785 
5786     bdrv_refresh_filename(bs);
5787     if (bs->exact_filename[0] != '\0') {
5788         return path_combine(bs->exact_filename, "");
5789     }
5790 
5791     error_setg(errp, "Cannot generate a base directory for %s nodes",
5792                drv->format_name);
5793     return NULL;
5794 }
5795 
5796 /*
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
5799  */
5800 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5801                     Error **errp)
5802 {
5803 
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;
5808     }
5809 
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;
5814     }
5815 
5816     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5817 }
5818 
5819 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5820 {
5821     BdrvChild *tmp;
5822 
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;
5827     }
5828 
5829     QLIST_FOREACH(tmp, &parent_bs->children, next) {
5830         if (tmp == child) {
5831             break;
5832         }
5833     }
5834 
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;
5840     }
5841 
5842     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5843 }
5844 
5845 bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
5846                                      uint32_t granularity, Error **errp)
5847 {
5848     BlockDriver *drv = bs->drv;
5849 
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;
5855     }
5856 
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;
5862     }
5863 
5864     return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);
5865 }
5866