xref: /openbmc/qemu/block.c (revision b91a0fa7)
1 /*
2  * QEMU System Emulator block driver
3  *
4  * Copyright (c) 2003 Fabrice Bellard
5  * Copyright (c) 2020 Virtuozzo International GmbH.
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a copy
8  * of this software and associated documentation files (the "Software"), to deal
9  * in the Software without restriction, including without limitation the rights
10  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11  * copies of the Software, and to permit persons to whom the Software is
12  * furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in
15  * all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23  * THE SOFTWARE.
24  */
25 
26 #include "qemu/osdep.h"
27 #include "block/trace.h"
28 #include "block/block_int.h"
29 #include "block/blockjob.h"
30 #include "block/fuse.h"
31 #include "block/nbd.h"
32 #include "block/qdict.h"
33 #include "qemu/error-report.h"
34 #include "block/module_block.h"
35 #include "qemu/main-loop.h"
36 #include "qemu/module.h"
37 #include "qapi/error.h"
38 #include "qapi/qmp/qdict.h"
39 #include "qapi/qmp/qjson.h"
40 #include "qapi/qmp/qnull.h"
41 #include "qapi/qmp/qstring.h"
42 #include "qapi/qobject-output-visitor.h"
43 #include "qapi/qapi-visit-block-core.h"
44 #include "sysemu/block-backend.h"
45 #include "qemu/notify.h"
46 #include "qemu/option.h"
47 #include "qemu/coroutine.h"
48 #include "block/qapi.h"
49 #include "qemu/timer.h"
50 #include "qemu/cutils.h"
51 #include "qemu/id.h"
52 #include "qemu/range.h"
53 #include "qemu/rcu.h"
54 #include "block/coroutines.h"
55 
56 #ifdef CONFIG_BSD
57 #include <sys/ioctl.h>
58 #include <sys/queue.h>
59 #if defined(HAVE_SYS_DISK_H)
60 #include <sys/disk.h>
61 #endif
62 #endif
63 
64 #ifdef _WIN32
65 #include <windows.h>
66 #endif
67 
68 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
69 
70 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
71     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
72 
73 static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
74     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
75 
76 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
77     QLIST_HEAD_INITIALIZER(bdrv_drivers);
78 
79 static BlockDriverState *bdrv_open_inherit(const char *filename,
80                                            const char *reference,
81                                            QDict *options, int flags,
82                                            BlockDriverState *parent,
83                                            const BdrvChildClass *child_class,
84                                            BdrvChildRole child_role,
85                                            Error **errp);
86 
87 static bool bdrv_recurse_has_child(BlockDriverState *bs,
88                                    BlockDriverState *child);
89 
90 static void bdrv_child_free(BdrvChild *child);
91 static void bdrv_replace_child_noperm(BdrvChild **child,
92                                       BlockDriverState *new_bs,
93                                       bool free_empty_child);
94 static void bdrv_remove_file_or_backing_child(BlockDriverState *bs,
95                                               BdrvChild *child,
96                                               Transaction *tran);
97 static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
98                                             Transaction *tran);
99 
100 static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
101                                BlockReopenQueue *queue,
102                                Transaction *change_child_tran, Error **errp);
103 static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
104 static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
105 
106 static bool bdrv_backing_overridden(BlockDriverState *bs);
107 
108 /* If non-zero, use only whitelisted block drivers */
109 static int use_bdrv_whitelist;
110 
111 #ifdef _WIN32
112 static int is_windows_drive_prefix(const char *filename)
113 {
114     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
115              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
116             filename[1] == ':');
117 }
118 
119 int is_windows_drive(const char *filename)
120 {
121     if (is_windows_drive_prefix(filename) &&
122         filename[2] == '\0')
123         return 1;
124     if (strstart(filename, "\\\\.\\", NULL) ||
125         strstart(filename, "//./", NULL))
126         return 1;
127     return 0;
128 }
129 #endif
130 
131 size_t bdrv_opt_mem_align(BlockDriverState *bs)
132 {
133     if (!bs || !bs->drv) {
134         /* page size or 4k (hdd sector size) should be on the safe side */
135         return MAX(4096, qemu_real_host_page_size);
136     }
137 
138     return bs->bl.opt_mem_alignment;
139 }
140 
141 size_t bdrv_min_mem_align(BlockDriverState *bs)
142 {
143     if (!bs || !bs->drv) {
144         /* page size or 4k (hdd sector size) should be on the safe side */
145         return MAX(4096, qemu_real_host_page_size);
146     }
147 
148     return bs->bl.min_mem_alignment;
149 }
150 
151 /* check if the path starts with "<protocol>:" */
152 int path_has_protocol(const char *path)
153 {
154     const char *p;
155 
156 #ifdef _WIN32
157     if (is_windows_drive(path) ||
158         is_windows_drive_prefix(path)) {
159         return 0;
160     }
161     p = path + strcspn(path, ":/\\");
162 #else
163     p = path + strcspn(path, ":/");
164 #endif
165 
166     return *p == ':';
167 }
168 
169 int path_is_absolute(const char *path)
170 {
171 #ifdef _WIN32
172     /* specific case for names like: "\\.\d:" */
173     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
174         return 1;
175     }
176     return (*path == '/' || *path == '\\');
177 #else
178     return (*path == '/');
179 #endif
180 }
181 
182 /* if filename is absolute, just return its duplicate. Otherwise, build a
183    path to it by considering it is relative to base_path. URL are
184    supported. */
185 char *path_combine(const char *base_path, const char *filename)
186 {
187     const char *protocol_stripped = NULL;
188     const char *p, *p1;
189     char *result;
190     int len;
191 
192     if (path_is_absolute(filename)) {
193         return g_strdup(filename);
194     }
195 
196     if (path_has_protocol(base_path)) {
197         protocol_stripped = strchr(base_path, ':');
198         if (protocol_stripped) {
199             protocol_stripped++;
200         }
201     }
202     p = protocol_stripped ?: base_path;
203 
204     p1 = strrchr(base_path, '/');
205 #ifdef _WIN32
206     {
207         const char *p2;
208         p2 = strrchr(base_path, '\\');
209         if (!p1 || p2 > p1) {
210             p1 = p2;
211         }
212     }
213 #endif
214     if (p1) {
215         p1++;
216     } else {
217         p1 = base_path;
218     }
219     if (p1 > p) {
220         p = p1;
221     }
222     len = p - base_path;
223 
224     result = g_malloc(len + strlen(filename) + 1);
225     memcpy(result, base_path, len);
226     strcpy(result + len, filename);
227 
228     return result;
229 }
230 
231 /*
232  * Helper function for bdrv_parse_filename() implementations to remove optional
233  * protocol prefixes (especially "file:") from a filename and for putting the
234  * stripped filename into the options QDict if there is such a prefix.
235  */
236 void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
237                                       QDict *options)
238 {
239     if (strstart(filename, prefix, &filename)) {
240         /* Stripping the explicit protocol prefix may result in a protocol
241          * prefix being (wrongly) detected (if the filename contains a colon) */
242         if (path_has_protocol(filename)) {
243             GString *fat_filename;
244 
245             /* This means there is some colon before the first slash; therefore,
246              * this cannot be an absolute path */
247             assert(!path_is_absolute(filename));
248 
249             /* And we can thus fix the protocol detection issue by prefixing it
250              * by "./" */
251             fat_filename = g_string_new("./");
252             g_string_append(fat_filename, filename);
253 
254             assert(!path_has_protocol(fat_filename->str));
255 
256             qdict_put(options, "filename",
257                       qstring_from_gstring(fat_filename));
258         } else {
259             /* If no protocol prefix was detected, we can use the shortened
260              * filename as-is */
261             qdict_put_str(options, "filename", filename);
262         }
263     }
264 }
265 
266 
267 /* Returns whether the image file is opened as read-only. Note that this can
268  * return false and writing to the image file is still not possible because the
269  * image is inactivated. */
270 bool bdrv_is_read_only(BlockDriverState *bs)
271 {
272     return !(bs->open_flags & BDRV_O_RDWR);
273 }
274 
275 int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
276                            bool ignore_allow_rdw, Error **errp)
277 {
278     /* Do not set read_only if copy_on_read is enabled */
279     if (bs->copy_on_read && read_only) {
280         error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
281                    bdrv_get_device_or_node_name(bs));
282         return -EINVAL;
283     }
284 
285     /* Do not clear read_only if it is prohibited */
286     if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
287         !ignore_allow_rdw)
288     {
289         error_setg(errp, "Node '%s' is read only",
290                    bdrv_get_device_or_node_name(bs));
291         return -EPERM;
292     }
293 
294     return 0;
295 }
296 
297 /*
298  * Called by a driver that can only provide a read-only image.
299  *
300  * Returns 0 if the node is already read-only or it could switch the node to
301  * read-only because BDRV_O_AUTO_RDONLY is set.
302  *
303  * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
304  * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
305  * is not NULL, it is used as the error message for the Error object.
306  */
307 int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
308                               Error **errp)
309 {
310     int ret = 0;
311 
312     if (!(bs->open_flags & BDRV_O_RDWR)) {
313         return 0;
314     }
315     if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
316         goto fail;
317     }
318 
319     ret = bdrv_can_set_read_only(bs, true, false, NULL);
320     if (ret < 0) {
321         goto fail;
322     }
323 
324     bs->open_flags &= ~BDRV_O_RDWR;
325 
326     return 0;
327 
328 fail:
329     error_setg(errp, "%s", errmsg ?: "Image is read-only");
330     return -EACCES;
331 }
332 
333 /*
334  * If @backing is empty, this function returns NULL without setting
335  * @errp.  In all other cases, NULL will only be returned with @errp
336  * set.
337  *
338  * Therefore, a return value of NULL without @errp set means that
339  * there is no backing file; if @errp is set, there is one but its
340  * absolute filename cannot be generated.
341  */
342 char *bdrv_get_full_backing_filename_from_filename(const char *backed,
343                                                    const char *backing,
344                                                    Error **errp)
345 {
346     if (backing[0] == '\0') {
347         return NULL;
348     } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
349         return g_strdup(backing);
350     } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
351         error_setg(errp, "Cannot use relative backing file names for '%s'",
352                    backed);
353         return NULL;
354     } else {
355         return path_combine(backed, backing);
356     }
357 }
358 
359 /*
360  * If @filename is empty or NULL, this function returns NULL without
361  * setting @errp.  In all other cases, NULL will only be returned with
362  * @errp set.
363  */
364 static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
365                                          const char *filename, Error **errp)
366 {
367     char *dir, *full_name;
368 
369     if (!filename || filename[0] == '\0') {
370         return NULL;
371     } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
372         return g_strdup(filename);
373     }
374 
375     dir = bdrv_dirname(relative_to, errp);
376     if (!dir) {
377         return NULL;
378     }
379 
380     full_name = g_strconcat(dir, filename, NULL);
381     g_free(dir);
382     return full_name;
383 }
384 
385 char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
386 {
387     return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
388 }
389 
390 void bdrv_register(BlockDriver *bdrv)
391 {
392     assert(bdrv->format_name);
393     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
394 }
395 
396 BlockDriverState *bdrv_new(void)
397 {
398     BlockDriverState *bs;
399     int i;
400 
401     bs = g_new0(BlockDriverState, 1);
402     QLIST_INIT(&bs->dirty_bitmaps);
403     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
404         QLIST_INIT(&bs->op_blockers[i]);
405     }
406     qemu_co_mutex_init(&bs->reqs_lock);
407     qemu_mutex_init(&bs->dirty_bitmap_mutex);
408     bs->refcnt = 1;
409     bs->aio_context = qemu_get_aio_context();
410 
411     qemu_co_queue_init(&bs->flush_queue);
412 
413     qemu_co_mutex_init(&bs->bsc_modify_lock);
414     bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
415 
416     for (i = 0; i < bdrv_drain_all_count; i++) {
417         bdrv_drained_begin(bs);
418     }
419 
420     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
421 
422     return bs;
423 }
424 
425 static BlockDriver *bdrv_do_find_format(const char *format_name)
426 {
427     BlockDriver *drv1;
428 
429     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
430         if (!strcmp(drv1->format_name, format_name)) {
431             return drv1;
432         }
433     }
434 
435     return NULL;
436 }
437 
438 BlockDriver *bdrv_find_format(const char *format_name)
439 {
440     BlockDriver *drv1;
441     int i;
442 
443     drv1 = bdrv_do_find_format(format_name);
444     if (drv1) {
445         return drv1;
446     }
447 
448     /* The driver isn't registered, maybe we need to load a module */
449     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
450         if (!strcmp(block_driver_modules[i].format_name, format_name)) {
451             block_module_load_one(block_driver_modules[i].library_name);
452             break;
453         }
454     }
455 
456     return bdrv_do_find_format(format_name);
457 }
458 
459 static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
460 {
461     static const char *whitelist_rw[] = {
462         CONFIG_BDRV_RW_WHITELIST
463         NULL
464     };
465     static const char *whitelist_ro[] = {
466         CONFIG_BDRV_RO_WHITELIST
467         NULL
468     };
469     const char **p;
470 
471     if (!whitelist_rw[0] && !whitelist_ro[0]) {
472         return 1;               /* no whitelist, anything goes */
473     }
474 
475     for (p = whitelist_rw; *p; p++) {
476         if (!strcmp(format_name, *p)) {
477             return 1;
478         }
479     }
480     if (read_only) {
481         for (p = whitelist_ro; *p; p++) {
482             if (!strcmp(format_name, *p)) {
483                 return 1;
484             }
485         }
486     }
487     return 0;
488 }
489 
490 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
491 {
492     return bdrv_format_is_whitelisted(drv->format_name, read_only);
493 }
494 
495 bool bdrv_uses_whitelist(void)
496 {
497     return use_bdrv_whitelist;
498 }
499 
500 typedef struct CreateCo {
501     BlockDriver *drv;
502     char *filename;
503     QemuOpts *opts;
504     int ret;
505     Error *err;
506 } CreateCo;
507 
508 static void coroutine_fn bdrv_create_co_entry(void *opaque)
509 {
510     Error *local_err = NULL;
511     int ret;
512 
513     CreateCo *cco = opaque;
514     assert(cco->drv);
515 
516     ret = cco->drv->bdrv_co_create_opts(cco->drv,
517                                         cco->filename, cco->opts, &local_err);
518     error_propagate(&cco->err, local_err);
519     cco->ret = ret;
520 }
521 
522 int bdrv_create(BlockDriver *drv, const char* filename,
523                 QemuOpts *opts, Error **errp)
524 {
525     int ret;
526 
527     Coroutine *co;
528     CreateCo cco = {
529         .drv = drv,
530         .filename = g_strdup(filename),
531         .opts = opts,
532         .ret = NOT_DONE,
533         .err = NULL,
534     };
535 
536     if (!drv->bdrv_co_create_opts) {
537         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
538         ret = -ENOTSUP;
539         goto out;
540     }
541 
542     if (qemu_in_coroutine()) {
543         /* Fast-path if already in coroutine context */
544         bdrv_create_co_entry(&cco);
545     } else {
546         co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
547         qemu_coroutine_enter(co);
548         while (cco.ret == NOT_DONE) {
549             aio_poll(qemu_get_aio_context(), true);
550         }
551     }
552 
553     ret = cco.ret;
554     if (ret < 0) {
555         if (cco.err) {
556             error_propagate(errp, cco.err);
557         } else {
558             error_setg_errno(errp, -ret, "Could not create image");
559         }
560     }
561 
562 out:
563     g_free(cco.filename);
564     return ret;
565 }
566 
567 /**
568  * Helper function for bdrv_create_file_fallback(): Resize @blk to at
569  * least the given @minimum_size.
570  *
571  * On success, return @blk's actual length.
572  * Otherwise, return -errno.
573  */
574 static int64_t create_file_fallback_truncate(BlockBackend *blk,
575                                              int64_t minimum_size, Error **errp)
576 {
577     Error *local_err = NULL;
578     int64_t size;
579     int ret;
580 
581     ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
582                        &local_err);
583     if (ret < 0 && ret != -ENOTSUP) {
584         error_propagate(errp, local_err);
585         return ret;
586     }
587 
588     size = blk_getlength(blk);
589     if (size < 0) {
590         error_free(local_err);
591         error_setg_errno(errp, -size,
592                          "Failed to inquire the new image file's length");
593         return size;
594     }
595 
596     if (size < minimum_size) {
597         /* Need to grow the image, but we failed to do that */
598         error_propagate(errp, local_err);
599         return -ENOTSUP;
600     }
601 
602     error_free(local_err);
603     local_err = NULL;
604 
605     return size;
606 }
607 
608 /**
609  * Helper function for bdrv_create_file_fallback(): Zero the first
610  * sector to remove any potentially pre-existing image header.
611  */
612 static int create_file_fallback_zero_first_sector(BlockBackend *blk,
613                                                   int64_t current_size,
614                                                   Error **errp)
615 {
616     int64_t bytes_to_clear;
617     int ret;
618 
619     bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
620     if (bytes_to_clear) {
621         ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
622         if (ret < 0) {
623             error_setg_errno(errp, -ret,
624                              "Failed to clear the new image's first sector");
625             return ret;
626         }
627     }
628 
629     return 0;
630 }
631 
632 /**
633  * Simple implementation of bdrv_co_create_opts for protocol drivers
634  * which only support creation via opening a file
635  * (usually existing raw storage device)
636  */
637 int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
638                                             const char *filename,
639                                             QemuOpts *opts,
640                                             Error **errp)
641 {
642     BlockBackend *blk;
643     QDict *options;
644     int64_t size = 0;
645     char *buf = NULL;
646     PreallocMode prealloc;
647     Error *local_err = NULL;
648     int ret;
649 
650     size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
651     buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
652     prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
653                                PREALLOC_MODE_OFF, &local_err);
654     g_free(buf);
655     if (local_err) {
656         error_propagate(errp, local_err);
657         return -EINVAL;
658     }
659 
660     if (prealloc != PREALLOC_MODE_OFF) {
661         error_setg(errp, "Unsupported preallocation mode '%s'",
662                    PreallocMode_str(prealloc));
663         return -ENOTSUP;
664     }
665 
666     options = qdict_new();
667     qdict_put_str(options, "driver", drv->format_name);
668 
669     blk = blk_new_open(filename, NULL, options,
670                        BDRV_O_RDWR | BDRV_O_RESIZE, errp);
671     if (!blk) {
672         error_prepend(errp, "Protocol driver '%s' does not support image "
673                       "creation, and opening the image failed: ",
674                       drv->format_name);
675         return -EINVAL;
676     }
677 
678     size = create_file_fallback_truncate(blk, size, errp);
679     if (size < 0) {
680         ret = size;
681         goto out;
682     }
683 
684     ret = create_file_fallback_zero_first_sector(blk, size, errp);
685     if (ret < 0) {
686         goto out;
687     }
688 
689     ret = 0;
690 out:
691     blk_unref(blk);
692     return ret;
693 }
694 
695 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
696 {
697     QemuOpts *protocol_opts;
698     BlockDriver *drv;
699     QDict *qdict;
700     int ret;
701 
702     drv = bdrv_find_protocol(filename, true, errp);
703     if (drv == NULL) {
704         return -ENOENT;
705     }
706 
707     if (!drv->create_opts) {
708         error_setg(errp, "Driver '%s' does not support image creation",
709                    drv->format_name);
710         return -ENOTSUP;
711     }
712 
713     /*
714      * 'opts' contains a QemuOptsList with a combination of format and protocol
715      * default values.
716      *
717      * The format properly removes its options, but the default values remain
718      * in 'opts->list'.  So if the protocol has options with the same name
719      * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
720      * of the format, since for overlapping options, the format wins.
721      *
722      * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
723      * only the set options, and then convert it back to QemuOpts, using the
724      * create_opts of the protocol. So the new QemuOpts, will contain only the
725      * protocol defaults.
726      */
727     qdict = qemu_opts_to_qdict(opts, NULL);
728     protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
729     if (protocol_opts == NULL) {
730         ret = -EINVAL;
731         goto out;
732     }
733 
734     ret = bdrv_create(drv, filename, protocol_opts, errp);
735 out:
736     qemu_opts_del(protocol_opts);
737     qobject_unref(qdict);
738     return ret;
739 }
740 
741 int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
742 {
743     Error *local_err = NULL;
744     int ret;
745 
746     assert(bs != NULL);
747 
748     if (!bs->drv) {
749         error_setg(errp, "Block node '%s' is not opened", bs->filename);
750         return -ENOMEDIUM;
751     }
752 
753     if (!bs->drv->bdrv_co_delete_file) {
754         error_setg(errp, "Driver '%s' does not support image deletion",
755                    bs->drv->format_name);
756         return -ENOTSUP;
757     }
758 
759     ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
760     if (ret < 0) {
761         error_propagate(errp, local_err);
762     }
763 
764     return ret;
765 }
766 
767 void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
768 {
769     Error *local_err = NULL;
770     int ret;
771 
772     if (!bs) {
773         return;
774     }
775 
776     ret = bdrv_co_delete_file(bs, &local_err);
777     /*
778      * ENOTSUP will happen if the block driver doesn't support
779      * the 'bdrv_co_delete_file' interface. This is a predictable
780      * scenario and shouldn't be reported back to the user.
781      */
782     if (ret == -ENOTSUP) {
783         error_free(local_err);
784     } else if (ret < 0) {
785         error_report_err(local_err);
786     }
787 }
788 
789 /**
790  * Try to get @bs's logical and physical block size.
791  * On success, store them in @bsz struct and return 0.
792  * On failure return -errno.
793  * @bs must not be empty.
794  */
795 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
796 {
797     BlockDriver *drv = bs->drv;
798     BlockDriverState *filtered = bdrv_filter_bs(bs);
799 
800     if (drv && drv->bdrv_probe_blocksizes) {
801         return drv->bdrv_probe_blocksizes(bs, bsz);
802     } else if (filtered) {
803         return bdrv_probe_blocksizes(filtered, bsz);
804     }
805 
806     return -ENOTSUP;
807 }
808 
809 /**
810  * Try to get @bs's geometry (cyls, heads, sectors).
811  * On success, store them in @geo struct and return 0.
812  * On failure return -errno.
813  * @bs must not be empty.
814  */
815 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
816 {
817     BlockDriver *drv = bs->drv;
818     BlockDriverState *filtered = bdrv_filter_bs(bs);
819 
820     if (drv && drv->bdrv_probe_geometry) {
821         return drv->bdrv_probe_geometry(bs, geo);
822     } else if (filtered) {
823         return bdrv_probe_geometry(filtered, geo);
824     }
825 
826     return -ENOTSUP;
827 }
828 
829 /*
830  * Create a uniquely-named empty temporary file.
831  * Return 0 upon success, otherwise a negative errno value.
832  */
833 int get_tmp_filename(char *filename, int size)
834 {
835 #ifdef _WIN32
836     char temp_dir[MAX_PATH];
837     /* GetTempFileName requires that its output buffer (4th param)
838        have length MAX_PATH or greater.  */
839     assert(size >= MAX_PATH);
840     return (GetTempPath(MAX_PATH, temp_dir)
841             && GetTempFileName(temp_dir, "qem", 0, filename)
842             ? 0 : -GetLastError());
843 #else
844     int fd;
845     const char *tmpdir;
846     tmpdir = getenv("TMPDIR");
847     if (!tmpdir) {
848         tmpdir = "/var/tmp";
849     }
850     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
851         return -EOVERFLOW;
852     }
853     fd = mkstemp(filename);
854     if (fd < 0) {
855         return -errno;
856     }
857     if (close(fd) != 0) {
858         unlink(filename);
859         return -errno;
860     }
861     return 0;
862 #endif
863 }
864 
865 /*
866  * Detect host devices. By convention, /dev/cdrom[N] is always
867  * recognized as a host CDROM.
868  */
869 static BlockDriver *find_hdev_driver(const char *filename)
870 {
871     int score_max = 0, score;
872     BlockDriver *drv = NULL, *d;
873 
874     QLIST_FOREACH(d, &bdrv_drivers, list) {
875         if (d->bdrv_probe_device) {
876             score = d->bdrv_probe_device(filename);
877             if (score > score_max) {
878                 score_max = score;
879                 drv = d;
880             }
881         }
882     }
883 
884     return drv;
885 }
886 
887 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
888 {
889     BlockDriver *drv1;
890 
891     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
892         if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
893             return drv1;
894         }
895     }
896 
897     return NULL;
898 }
899 
900 BlockDriver *bdrv_find_protocol(const char *filename,
901                                 bool allow_protocol_prefix,
902                                 Error **errp)
903 {
904     BlockDriver *drv1;
905     char protocol[128];
906     int len;
907     const char *p;
908     int i;
909 
910     /* TODO Drivers without bdrv_file_open must be specified explicitly */
911 
912     /*
913      * XXX(hch): we really should not let host device detection
914      * override an explicit protocol specification, but moving this
915      * later breaks access to device names with colons in them.
916      * Thanks to the brain-dead persistent naming schemes on udev-
917      * based Linux systems those actually are quite common.
918      */
919     drv1 = find_hdev_driver(filename);
920     if (drv1) {
921         return drv1;
922     }
923 
924     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
925         return &bdrv_file;
926     }
927 
928     p = strchr(filename, ':');
929     assert(p != NULL);
930     len = p - filename;
931     if (len > sizeof(protocol) - 1)
932         len = sizeof(protocol) - 1;
933     memcpy(protocol, filename, len);
934     protocol[len] = '\0';
935 
936     drv1 = bdrv_do_find_protocol(protocol);
937     if (drv1) {
938         return drv1;
939     }
940 
941     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
942         if (block_driver_modules[i].protocol_name &&
943             !strcmp(block_driver_modules[i].protocol_name, protocol)) {
944             block_module_load_one(block_driver_modules[i].library_name);
945             break;
946         }
947     }
948 
949     drv1 = bdrv_do_find_protocol(protocol);
950     if (!drv1) {
951         error_setg(errp, "Unknown protocol '%s'", protocol);
952     }
953     return drv1;
954 }
955 
956 /*
957  * Guess image format by probing its contents.
958  * This is not a good idea when your image is raw (CVE-2008-2004), but
959  * we do it anyway for backward compatibility.
960  *
961  * @buf         contains the image's first @buf_size bytes.
962  * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
963  *              but can be smaller if the image file is smaller)
964  * @filename    is its filename.
965  *
966  * For all block drivers, call the bdrv_probe() method to get its
967  * probing score.
968  * Return the first block driver with the highest probing score.
969  */
970 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
971                             const char *filename)
972 {
973     int score_max = 0, score;
974     BlockDriver *drv = NULL, *d;
975 
976     QLIST_FOREACH(d, &bdrv_drivers, list) {
977         if (d->bdrv_probe) {
978             score = d->bdrv_probe(buf, buf_size, filename);
979             if (score > score_max) {
980                 score_max = score;
981                 drv = d;
982             }
983         }
984     }
985 
986     return drv;
987 }
988 
989 static int find_image_format(BlockBackend *file, const char *filename,
990                              BlockDriver **pdrv, Error **errp)
991 {
992     BlockDriver *drv;
993     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
994     int ret = 0;
995 
996     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
997     if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
998         *pdrv = &bdrv_raw;
999         return ret;
1000     }
1001 
1002     ret = blk_pread(file, 0, buf, sizeof(buf));
1003     if (ret < 0) {
1004         error_setg_errno(errp, -ret, "Could not read image for determining its "
1005                          "format");
1006         *pdrv = NULL;
1007         return ret;
1008     }
1009 
1010     drv = bdrv_probe_all(buf, ret, filename);
1011     if (!drv) {
1012         error_setg(errp, "Could not determine image format: No compatible "
1013                    "driver found");
1014         ret = -ENOENT;
1015     }
1016     *pdrv = drv;
1017     return ret;
1018 }
1019 
1020 /**
1021  * Set the current 'total_sectors' value
1022  * Return 0 on success, -errno on error.
1023  */
1024 int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
1025 {
1026     BlockDriver *drv = bs->drv;
1027 
1028     if (!drv) {
1029         return -ENOMEDIUM;
1030     }
1031 
1032     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
1033     if (bdrv_is_sg(bs))
1034         return 0;
1035 
1036     /* query actual device if possible, otherwise just trust the hint */
1037     if (drv->bdrv_getlength) {
1038         int64_t length = drv->bdrv_getlength(bs);
1039         if (length < 0) {
1040             return length;
1041         }
1042         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
1043     }
1044 
1045     bs->total_sectors = hint;
1046 
1047     if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1048         return -EFBIG;
1049     }
1050 
1051     return 0;
1052 }
1053 
1054 /**
1055  * Combines a QDict of new block driver @options with any missing options taken
1056  * from @old_options, so that leaving out an option defaults to its old value.
1057  */
1058 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1059                               QDict *old_options)
1060 {
1061     if (bs->drv && bs->drv->bdrv_join_options) {
1062         bs->drv->bdrv_join_options(options, old_options);
1063     } else {
1064         qdict_join(options, old_options, false);
1065     }
1066 }
1067 
1068 static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1069                                                             int open_flags,
1070                                                             Error **errp)
1071 {
1072     Error *local_err = NULL;
1073     char *value = qemu_opt_get_del(opts, "detect-zeroes");
1074     BlockdevDetectZeroesOptions detect_zeroes =
1075         qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1076                         BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
1077     g_free(value);
1078     if (local_err) {
1079         error_propagate(errp, local_err);
1080         return detect_zeroes;
1081     }
1082 
1083     if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1084         !(open_flags & BDRV_O_UNMAP))
1085     {
1086         error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1087                    "without setting discard operation to unmap");
1088     }
1089 
1090     return detect_zeroes;
1091 }
1092 
1093 /**
1094  * Set open flags for aio engine
1095  *
1096  * Return 0 on success, -1 if the engine specified is invalid
1097  */
1098 int bdrv_parse_aio(const char *mode, int *flags)
1099 {
1100     if (!strcmp(mode, "threads")) {
1101         /* do nothing, default */
1102     } else if (!strcmp(mode, "native")) {
1103         *flags |= BDRV_O_NATIVE_AIO;
1104 #ifdef CONFIG_LINUX_IO_URING
1105     } else if (!strcmp(mode, "io_uring")) {
1106         *flags |= BDRV_O_IO_URING;
1107 #endif
1108     } else {
1109         return -1;
1110     }
1111 
1112     return 0;
1113 }
1114 
1115 /**
1116  * Set open flags for a given discard mode
1117  *
1118  * Return 0 on success, -1 if the discard mode was invalid.
1119  */
1120 int bdrv_parse_discard_flags(const char *mode, int *flags)
1121 {
1122     *flags &= ~BDRV_O_UNMAP;
1123 
1124     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1125         /* do nothing */
1126     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1127         *flags |= BDRV_O_UNMAP;
1128     } else {
1129         return -1;
1130     }
1131 
1132     return 0;
1133 }
1134 
1135 /**
1136  * Set open flags for a given cache mode
1137  *
1138  * Return 0 on success, -1 if the cache mode was invalid.
1139  */
1140 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
1141 {
1142     *flags &= ~BDRV_O_CACHE_MASK;
1143 
1144     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
1145         *writethrough = false;
1146         *flags |= BDRV_O_NOCACHE;
1147     } else if (!strcmp(mode, "directsync")) {
1148         *writethrough = true;
1149         *flags |= BDRV_O_NOCACHE;
1150     } else if (!strcmp(mode, "writeback")) {
1151         *writethrough = false;
1152     } else if (!strcmp(mode, "unsafe")) {
1153         *writethrough = false;
1154         *flags |= BDRV_O_NO_FLUSH;
1155     } else if (!strcmp(mode, "writethrough")) {
1156         *writethrough = true;
1157     } else {
1158         return -1;
1159     }
1160 
1161     return 0;
1162 }
1163 
1164 static char *bdrv_child_get_parent_desc(BdrvChild *c)
1165 {
1166     BlockDriverState *parent = c->opaque;
1167     return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
1168 }
1169 
1170 static void bdrv_child_cb_drained_begin(BdrvChild *child)
1171 {
1172     BlockDriverState *bs = child->opaque;
1173     bdrv_do_drained_begin_quiesce(bs, NULL, false);
1174 }
1175 
1176 static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1177 {
1178     BlockDriverState *bs = child->opaque;
1179     return bdrv_drain_poll(bs, false, NULL, false);
1180 }
1181 
1182 static void bdrv_child_cb_drained_end(BdrvChild *child,
1183                                       int *drained_end_counter)
1184 {
1185     BlockDriverState *bs = child->opaque;
1186     bdrv_drained_end_no_poll(bs, drained_end_counter);
1187 }
1188 
1189 static int bdrv_child_cb_inactivate(BdrvChild *child)
1190 {
1191     BlockDriverState *bs = child->opaque;
1192     assert(bs->open_flags & BDRV_O_INACTIVE);
1193     return 0;
1194 }
1195 
1196 static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1197                                           GSList **ignore, Error **errp)
1198 {
1199     BlockDriverState *bs = child->opaque;
1200     return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1201 }
1202 
1203 static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1204                                       GSList **ignore)
1205 {
1206     BlockDriverState *bs = child->opaque;
1207     return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1208 }
1209 
1210 /*
1211  * Returns the options and flags that a temporary snapshot should get, based on
1212  * the originally requested flags (the originally requested image will have
1213  * flags like a backing file)
1214  */
1215 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1216                                        int parent_flags, QDict *parent_options)
1217 {
1218     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1219 
1220     /* For temporary files, unconditional cache=unsafe is fine */
1221     qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1222     qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
1223 
1224     /* Copy the read-only and discard options from the parent */
1225     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1226     qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
1227 
1228     /* aio=native doesn't work for cache.direct=off, so disable it for the
1229      * temporary snapshot */
1230     *child_flags &= ~BDRV_O_NATIVE_AIO;
1231 }
1232 
1233 static void bdrv_backing_attach(BdrvChild *c)
1234 {
1235     BlockDriverState *parent = c->opaque;
1236     BlockDriverState *backing_hd = c->bs;
1237 
1238     assert(!parent->backing_blocker);
1239     error_setg(&parent->backing_blocker,
1240                "node is used as backing hd of '%s'",
1241                bdrv_get_device_or_node_name(parent));
1242 
1243     bdrv_refresh_filename(backing_hd);
1244 
1245     parent->open_flags &= ~BDRV_O_NO_BACKING;
1246 
1247     bdrv_op_block_all(backing_hd, parent->backing_blocker);
1248     /* Otherwise we won't be able to commit or stream */
1249     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1250                     parent->backing_blocker);
1251     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1252                     parent->backing_blocker);
1253     /*
1254      * We do backup in 3 ways:
1255      * 1. drive backup
1256      *    The target bs is new opened, and the source is top BDS
1257      * 2. blockdev backup
1258      *    Both the source and the target are top BDSes.
1259      * 3. internal backup(used for block replication)
1260      *    Both the source and the target are backing file
1261      *
1262      * In case 1 and 2, neither the source nor the target is the backing file.
1263      * In case 3, we will block the top BDS, so there is only one block job
1264      * for the top BDS and its backing chain.
1265      */
1266     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1267                     parent->backing_blocker);
1268     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1269                     parent->backing_blocker);
1270 }
1271 
1272 static void bdrv_backing_detach(BdrvChild *c)
1273 {
1274     BlockDriverState *parent = c->opaque;
1275 
1276     assert(parent->backing_blocker);
1277     bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1278     error_free(parent->backing_blocker);
1279     parent->backing_blocker = NULL;
1280 }
1281 
1282 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1283                                         const char *filename, Error **errp)
1284 {
1285     BlockDriverState *parent = c->opaque;
1286     bool read_only = bdrv_is_read_only(parent);
1287     int ret;
1288 
1289     if (read_only) {
1290         ret = bdrv_reopen_set_read_only(parent, false, errp);
1291         if (ret < 0) {
1292             return ret;
1293         }
1294     }
1295 
1296     ret = bdrv_change_backing_file(parent, filename,
1297                                    base->drv ? base->drv->format_name : "",
1298                                    false);
1299     if (ret < 0) {
1300         error_setg_errno(errp, -ret, "Could not update backing file link");
1301     }
1302 
1303     if (read_only) {
1304         bdrv_reopen_set_read_only(parent, true, NULL);
1305     }
1306 
1307     return ret;
1308 }
1309 
1310 /*
1311  * Returns the options and flags that a generic child of a BDS should
1312  * get, based on the given options and flags for the parent BDS.
1313  */
1314 static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1315                                    int *child_flags, QDict *child_options,
1316                                    int parent_flags, QDict *parent_options)
1317 {
1318     int flags = parent_flags;
1319 
1320     /*
1321      * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1322      * Generally, the question to answer is: Should this child be
1323      * format-probed by default?
1324      */
1325 
1326     /*
1327      * Pure and non-filtered data children of non-format nodes should
1328      * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1329      * set).  This only affects a very limited set of drivers (namely
1330      * quorum and blkverify when this comment was written).
1331      * Force-clear BDRV_O_PROTOCOL then.
1332      */
1333     if (!parent_is_format &&
1334         (role & BDRV_CHILD_DATA) &&
1335         !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1336     {
1337         flags &= ~BDRV_O_PROTOCOL;
1338     }
1339 
1340     /*
1341      * All children of format nodes (except for COW children) and all
1342      * metadata children in general should never be format-probed.
1343      * Force-set BDRV_O_PROTOCOL then.
1344      */
1345     if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1346         (role & BDRV_CHILD_METADATA))
1347     {
1348         flags |= BDRV_O_PROTOCOL;
1349     }
1350 
1351     /*
1352      * If the cache mode isn't explicitly set, inherit direct and no-flush from
1353      * the parent.
1354      */
1355     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1356     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1357     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1358 
1359     if (role & BDRV_CHILD_COW) {
1360         /* backing files are opened read-only by default */
1361         qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1362         qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1363     } else {
1364         /* Inherit the read-only option from the parent if it's not set */
1365         qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1366         qdict_copy_default(child_options, parent_options,
1367                            BDRV_OPT_AUTO_READ_ONLY);
1368     }
1369 
1370     /*
1371      * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1372      * can default to enable it on lower layers regardless of the
1373      * parent option.
1374      */
1375     qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1376 
1377     /* Clear flags that only apply to the top layer */
1378     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1379 
1380     if (role & BDRV_CHILD_METADATA) {
1381         flags &= ~BDRV_O_NO_IO;
1382     }
1383     if (role & BDRV_CHILD_COW) {
1384         flags &= ~BDRV_O_TEMPORARY;
1385     }
1386 
1387     *child_flags = flags;
1388 }
1389 
1390 static void bdrv_child_cb_attach(BdrvChild *child)
1391 {
1392     BlockDriverState *bs = child->opaque;
1393 
1394     QLIST_INSERT_HEAD(&bs->children, child, next);
1395 
1396     if (child->role & BDRV_CHILD_COW) {
1397         bdrv_backing_attach(child);
1398     }
1399 
1400     bdrv_apply_subtree_drain(child, bs);
1401 }
1402 
1403 static void bdrv_child_cb_detach(BdrvChild *child)
1404 {
1405     BlockDriverState *bs = child->opaque;
1406 
1407     if (child->role & BDRV_CHILD_COW) {
1408         bdrv_backing_detach(child);
1409     }
1410 
1411     bdrv_unapply_subtree_drain(child, bs);
1412 
1413     QLIST_REMOVE(child, next);
1414 }
1415 
1416 static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1417                                          const char *filename, Error **errp)
1418 {
1419     if (c->role & BDRV_CHILD_COW) {
1420         return bdrv_backing_update_filename(c, base, filename, errp);
1421     }
1422     return 0;
1423 }
1424 
1425 AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
1426 {
1427     BlockDriverState *bs = c->opaque;
1428 
1429     return bdrv_get_aio_context(bs);
1430 }
1431 
1432 const BdrvChildClass child_of_bds = {
1433     .parent_is_bds   = true,
1434     .get_parent_desc = bdrv_child_get_parent_desc,
1435     .inherit_options = bdrv_inherited_options,
1436     .drained_begin   = bdrv_child_cb_drained_begin,
1437     .drained_poll    = bdrv_child_cb_drained_poll,
1438     .drained_end     = bdrv_child_cb_drained_end,
1439     .attach          = bdrv_child_cb_attach,
1440     .detach          = bdrv_child_cb_detach,
1441     .inactivate      = bdrv_child_cb_inactivate,
1442     .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1443     .set_aio_ctx     = bdrv_child_cb_set_aio_ctx,
1444     .update_filename = bdrv_child_cb_update_filename,
1445     .get_parent_aio_context = child_of_bds_get_parent_aio_context,
1446 };
1447 
1448 AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1449 {
1450     return c->klass->get_parent_aio_context(c);
1451 }
1452 
1453 static int bdrv_open_flags(BlockDriverState *bs, int flags)
1454 {
1455     int open_flags = flags;
1456 
1457     /*
1458      * Clear flags that are internal to the block layer before opening the
1459      * image.
1460      */
1461     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1462 
1463     return open_flags;
1464 }
1465 
1466 static void update_flags_from_options(int *flags, QemuOpts *opts)
1467 {
1468     *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
1469 
1470     if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1471         *flags |= BDRV_O_NO_FLUSH;
1472     }
1473 
1474     if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1475         *flags |= BDRV_O_NOCACHE;
1476     }
1477 
1478     if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
1479         *flags |= BDRV_O_RDWR;
1480     }
1481 
1482     if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1483         *flags |= BDRV_O_AUTO_RDONLY;
1484     }
1485 }
1486 
1487 static void update_options_from_flags(QDict *options, int flags)
1488 {
1489     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1490         qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1491     }
1492     if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
1493         qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1494                        flags & BDRV_O_NO_FLUSH);
1495     }
1496     if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1497         qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1498     }
1499     if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1500         qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1501                        flags & BDRV_O_AUTO_RDONLY);
1502     }
1503 }
1504 
1505 static void bdrv_assign_node_name(BlockDriverState *bs,
1506                                   const char *node_name,
1507                                   Error **errp)
1508 {
1509     char *gen_node_name = NULL;
1510 
1511     if (!node_name) {
1512         node_name = gen_node_name = id_generate(ID_BLOCK);
1513     } else if (!id_wellformed(node_name)) {
1514         /*
1515          * Check for empty string or invalid characters, but not if it is
1516          * generated (generated names use characters not available to the user)
1517          */
1518         error_setg(errp, "Invalid node-name: '%s'", node_name);
1519         return;
1520     }
1521 
1522     /* takes care of avoiding namespaces collisions */
1523     if (blk_by_name(node_name)) {
1524         error_setg(errp, "node-name=%s is conflicting with a device id",
1525                    node_name);
1526         goto out;
1527     }
1528 
1529     /* takes care of avoiding duplicates node names */
1530     if (bdrv_find_node(node_name)) {
1531         error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
1532         goto out;
1533     }
1534 
1535     /* Make sure that the node name isn't truncated */
1536     if (strlen(node_name) >= sizeof(bs->node_name)) {
1537         error_setg(errp, "Node name too long");
1538         goto out;
1539     }
1540 
1541     /* copy node name into the bs and insert it into the graph list */
1542     pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1543     QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
1544 out:
1545     g_free(gen_node_name);
1546 }
1547 
1548 static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1549                             const char *node_name, QDict *options,
1550                             int open_flags, Error **errp)
1551 {
1552     Error *local_err = NULL;
1553     int i, ret;
1554 
1555     bdrv_assign_node_name(bs, node_name, &local_err);
1556     if (local_err) {
1557         error_propagate(errp, local_err);
1558         return -EINVAL;
1559     }
1560 
1561     bs->drv = drv;
1562     bs->opaque = g_malloc0(drv->instance_size);
1563 
1564     if (drv->bdrv_file_open) {
1565         assert(!drv->bdrv_needs_filename || bs->filename[0]);
1566         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1567     } else if (drv->bdrv_open) {
1568         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1569     } else {
1570         ret = 0;
1571     }
1572 
1573     if (ret < 0) {
1574         if (local_err) {
1575             error_propagate(errp, local_err);
1576         } else if (bs->filename[0]) {
1577             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1578         } else {
1579             error_setg_errno(errp, -ret, "Could not open image");
1580         }
1581         goto open_failed;
1582     }
1583 
1584     ret = refresh_total_sectors(bs, bs->total_sectors);
1585     if (ret < 0) {
1586         error_setg_errno(errp, -ret, "Could not refresh total sector count");
1587         return ret;
1588     }
1589 
1590     bdrv_refresh_limits(bs, NULL, &local_err);
1591     if (local_err) {
1592         error_propagate(errp, local_err);
1593         return -EINVAL;
1594     }
1595 
1596     assert(bdrv_opt_mem_align(bs) != 0);
1597     assert(bdrv_min_mem_align(bs) != 0);
1598     assert(is_power_of_2(bs->bl.request_alignment));
1599 
1600     for (i = 0; i < bs->quiesce_counter; i++) {
1601         if (drv->bdrv_co_drain_begin) {
1602             drv->bdrv_co_drain_begin(bs);
1603         }
1604     }
1605 
1606     return 0;
1607 open_failed:
1608     bs->drv = NULL;
1609     if (bs->file != NULL) {
1610         bdrv_unref_child(bs, bs->file);
1611         bs->file = NULL;
1612     }
1613     g_free(bs->opaque);
1614     bs->opaque = NULL;
1615     return ret;
1616 }
1617 
1618 /*
1619  * Create and open a block node.
1620  *
1621  * @options is a QDict of options to pass to the block drivers, or NULL for an
1622  * empty set of options. The reference to the QDict belongs to the block layer
1623  * after the call (even on failure), so if the caller intends to reuse the
1624  * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1625  */
1626 BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1627                                             const char *node_name,
1628                                             QDict *options, int flags,
1629                                             Error **errp)
1630 {
1631     BlockDriverState *bs;
1632     int ret;
1633 
1634     bs = bdrv_new();
1635     bs->open_flags = flags;
1636     bs->options = options ?: qdict_new();
1637     bs->explicit_options = qdict_clone_shallow(bs->options);
1638     bs->opaque = NULL;
1639 
1640     update_options_from_flags(bs->options, flags);
1641 
1642     ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1643     if (ret < 0) {
1644         qobject_unref(bs->explicit_options);
1645         bs->explicit_options = NULL;
1646         qobject_unref(bs->options);
1647         bs->options = NULL;
1648         bdrv_unref(bs);
1649         return NULL;
1650     }
1651 
1652     return bs;
1653 }
1654 
1655 /* Create and open a block node. */
1656 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1657                                        int flags, Error **errp)
1658 {
1659     return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1660 }
1661 
1662 QemuOptsList bdrv_runtime_opts = {
1663     .name = "bdrv_common",
1664     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1665     .desc = {
1666         {
1667             .name = "node-name",
1668             .type = QEMU_OPT_STRING,
1669             .help = "Node name of the block device node",
1670         },
1671         {
1672             .name = "driver",
1673             .type = QEMU_OPT_STRING,
1674             .help = "Block driver to use for the node",
1675         },
1676         {
1677             .name = BDRV_OPT_CACHE_DIRECT,
1678             .type = QEMU_OPT_BOOL,
1679             .help = "Bypass software writeback cache on the host",
1680         },
1681         {
1682             .name = BDRV_OPT_CACHE_NO_FLUSH,
1683             .type = QEMU_OPT_BOOL,
1684             .help = "Ignore flush requests",
1685         },
1686         {
1687             .name = BDRV_OPT_READ_ONLY,
1688             .type = QEMU_OPT_BOOL,
1689             .help = "Node is opened in read-only mode",
1690         },
1691         {
1692             .name = BDRV_OPT_AUTO_READ_ONLY,
1693             .type = QEMU_OPT_BOOL,
1694             .help = "Node can become read-only if opening read-write fails",
1695         },
1696         {
1697             .name = "detect-zeroes",
1698             .type = QEMU_OPT_STRING,
1699             .help = "try to optimize zero writes (off, on, unmap)",
1700         },
1701         {
1702             .name = BDRV_OPT_DISCARD,
1703             .type = QEMU_OPT_STRING,
1704             .help = "discard operation (ignore/off, unmap/on)",
1705         },
1706         {
1707             .name = BDRV_OPT_FORCE_SHARE,
1708             .type = QEMU_OPT_BOOL,
1709             .help = "always accept other writers (default: off)",
1710         },
1711         { /* end of list */ }
1712     },
1713 };
1714 
1715 QemuOptsList bdrv_create_opts_simple = {
1716     .name = "simple-create-opts",
1717     .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
1718     .desc = {
1719         {
1720             .name = BLOCK_OPT_SIZE,
1721             .type = QEMU_OPT_SIZE,
1722             .help = "Virtual disk size"
1723         },
1724         {
1725             .name = BLOCK_OPT_PREALLOC,
1726             .type = QEMU_OPT_STRING,
1727             .help = "Preallocation mode (allowed values: off)"
1728         },
1729         { /* end of list */ }
1730     }
1731 };
1732 
1733 /*
1734  * Common part for opening disk images and files
1735  *
1736  * Removes all processed options from *options.
1737  */
1738 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1739                             QDict *options, Error **errp)
1740 {
1741     int ret, open_flags;
1742     const char *filename;
1743     const char *driver_name = NULL;
1744     const char *node_name = NULL;
1745     const char *discard;
1746     QemuOpts *opts;
1747     BlockDriver *drv;
1748     Error *local_err = NULL;
1749     bool ro;
1750 
1751     assert(bs->file == NULL);
1752     assert(options != NULL && bs->options != options);
1753 
1754     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1755     if (!qemu_opts_absorb_qdict(opts, options, errp)) {
1756         ret = -EINVAL;
1757         goto fail_opts;
1758     }
1759 
1760     update_flags_from_options(&bs->open_flags, opts);
1761 
1762     driver_name = qemu_opt_get(opts, "driver");
1763     drv = bdrv_find_format(driver_name);
1764     assert(drv != NULL);
1765 
1766     bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1767 
1768     if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1769         error_setg(errp,
1770                    BDRV_OPT_FORCE_SHARE
1771                    "=on can only be used with read-only images");
1772         ret = -EINVAL;
1773         goto fail_opts;
1774     }
1775 
1776     if (file != NULL) {
1777         bdrv_refresh_filename(blk_bs(file));
1778         filename = blk_bs(file)->filename;
1779     } else {
1780         /*
1781          * Caution: while qdict_get_try_str() is fine, getting
1782          * non-string types would require more care.  When @options
1783          * come from -blockdev or blockdev_add, its members are typed
1784          * according to the QAPI schema, but when they come from
1785          * -drive, they're all QString.
1786          */
1787         filename = qdict_get_try_str(options, "filename");
1788     }
1789 
1790     if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1791         error_setg(errp, "The '%s' block driver requires a file name",
1792                    drv->format_name);
1793         ret = -EINVAL;
1794         goto fail_opts;
1795     }
1796 
1797     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1798                            drv->format_name);
1799 
1800     ro = bdrv_is_read_only(bs);
1801 
1802     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1803         if (!ro && bdrv_is_whitelisted(drv, true)) {
1804             ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1805         } else {
1806             ret = -ENOTSUP;
1807         }
1808         if (ret < 0) {
1809             error_setg(errp,
1810                        !ro && bdrv_is_whitelisted(drv, true)
1811                        ? "Driver '%s' can only be used for read-only devices"
1812                        : "Driver '%s' is not whitelisted",
1813                        drv->format_name);
1814             goto fail_opts;
1815         }
1816     }
1817 
1818     /* bdrv_new() and bdrv_close() make it so */
1819     assert(qatomic_read(&bs->copy_on_read) == 0);
1820 
1821     if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1822         if (!ro) {
1823             bdrv_enable_copy_on_read(bs);
1824         } else {
1825             error_setg(errp, "Can't use copy-on-read on read-only device");
1826             ret = -EINVAL;
1827             goto fail_opts;
1828         }
1829     }
1830 
1831     discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
1832     if (discard != NULL) {
1833         if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1834             error_setg(errp, "Invalid discard option");
1835             ret = -EINVAL;
1836             goto fail_opts;
1837         }
1838     }
1839 
1840     bs->detect_zeroes =
1841         bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1842     if (local_err) {
1843         error_propagate(errp, local_err);
1844         ret = -EINVAL;
1845         goto fail_opts;
1846     }
1847 
1848     if (filename != NULL) {
1849         pstrcpy(bs->filename, sizeof(bs->filename), filename);
1850     } else {
1851         bs->filename[0] = '\0';
1852     }
1853     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1854 
1855     /* Open the image, either directly or using a protocol */
1856     open_flags = bdrv_open_flags(bs, bs->open_flags);
1857     node_name = qemu_opt_get(opts, "node-name");
1858 
1859     assert(!drv->bdrv_file_open || file == NULL);
1860     ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1861     if (ret < 0) {
1862         goto fail_opts;
1863     }
1864 
1865     qemu_opts_del(opts);
1866     return 0;
1867 
1868 fail_opts:
1869     qemu_opts_del(opts);
1870     return ret;
1871 }
1872 
1873 static QDict *parse_json_filename(const char *filename, Error **errp)
1874 {
1875     QObject *options_obj;
1876     QDict *options;
1877     int ret;
1878 
1879     ret = strstart(filename, "json:", &filename);
1880     assert(ret);
1881 
1882     options_obj = qobject_from_json(filename, errp);
1883     if (!options_obj) {
1884         error_prepend(errp, "Could not parse the JSON options: ");
1885         return NULL;
1886     }
1887 
1888     options = qobject_to(QDict, options_obj);
1889     if (!options) {
1890         qobject_unref(options_obj);
1891         error_setg(errp, "Invalid JSON object given");
1892         return NULL;
1893     }
1894 
1895     qdict_flatten(options);
1896 
1897     return options;
1898 }
1899 
1900 static void parse_json_protocol(QDict *options, const char **pfilename,
1901                                 Error **errp)
1902 {
1903     QDict *json_options;
1904     Error *local_err = NULL;
1905 
1906     /* Parse json: pseudo-protocol */
1907     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1908         return;
1909     }
1910 
1911     json_options = parse_json_filename(*pfilename, &local_err);
1912     if (local_err) {
1913         error_propagate(errp, local_err);
1914         return;
1915     }
1916 
1917     /* Options given in the filename have lower priority than options
1918      * specified directly */
1919     qdict_join(options, json_options, false);
1920     qobject_unref(json_options);
1921     *pfilename = NULL;
1922 }
1923 
1924 /*
1925  * Fills in default options for opening images and converts the legacy
1926  * filename/flags pair to option QDict entries.
1927  * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1928  * block driver has been specified explicitly.
1929  */
1930 static int bdrv_fill_options(QDict **options, const char *filename,
1931                              int *flags, Error **errp)
1932 {
1933     const char *drvname;
1934     bool protocol = *flags & BDRV_O_PROTOCOL;
1935     bool parse_filename = false;
1936     BlockDriver *drv = NULL;
1937     Error *local_err = NULL;
1938 
1939     /*
1940      * Caution: while qdict_get_try_str() is fine, getting non-string
1941      * types would require more care.  When @options come from
1942      * -blockdev or blockdev_add, its members are typed according to
1943      * the QAPI schema, but when they come from -drive, they're all
1944      * QString.
1945      */
1946     drvname = qdict_get_try_str(*options, "driver");
1947     if (drvname) {
1948         drv = bdrv_find_format(drvname);
1949         if (!drv) {
1950             error_setg(errp, "Unknown driver '%s'", drvname);
1951             return -ENOENT;
1952         }
1953         /* If the user has explicitly specified the driver, this choice should
1954          * override the BDRV_O_PROTOCOL flag */
1955         protocol = drv->bdrv_file_open;
1956     }
1957 
1958     if (protocol) {
1959         *flags |= BDRV_O_PROTOCOL;
1960     } else {
1961         *flags &= ~BDRV_O_PROTOCOL;
1962     }
1963 
1964     /* Translate cache options from flags into options */
1965     update_options_from_flags(*options, *flags);
1966 
1967     /* Fetch the file name from the options QDict if necessary */
1968     if (protocol && filename) {
1969         if (!qdict_haskey(*options, "filename")) {
1970             qdict_put_str(*options, "filename", filename);
1971             parse_filename = true;
1972         } else {
1973             error_setg(errp, "Can't specify 'file' and 'filename' options at "
1974                              "the same time");
1975             return -EINVAL;
1976         }
1977     }
1978 
1979     /* Find the right block driver */
1980     /* See cautionary note on accessing @options above */
1981     filename = qdict_get_try_str(*options, "filename");
1982 
1983     if (!drvname && protocol) {
1984         if (filename) {
1985             drv = bdrv_find_protocol(filename, parse_filename, errp);
1986             if (!drv) {
1987                 return -EINVAL;
1988             }
1989 
1990             drvname = drv->format_name;
1991             qdict_put_str(*options, "driver", drvname);
1992         } else {
1993             error_setg(errp, "Must specify either driver or file");
1994             return -EINVAL;
1995         }
1996     }
1997 
1998     assert(drv || !protocol);
1999 
2000     /* Driver-specific filename parsing */
2001     if (drv && drv->bdrv_parse_filename && parse_filename) {
2002         drv->bdrv_parse_filename(filename, *options, &local_err);
2003         if (local_err) {
2004             error_propagate(errp, local_err);
2005             return -EINVAL;
2006         }
2007 
2008         if (!drv->bdrv_needs_filename) {
2009             qdict_del(*options, "filename");
2010         }
2011     }
2012 
2013     return 0;
2014 }
2015 
2016 typedef struct BlockReopenQueueEntry {
2017      bool prepared;
2018      bool perms_checked;
2019      BDRVReopenState state;
2020      QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
2021 } BlockReopenQueueEntry;
2022 
2023 /*
2024  * Return the flags that @bs will have after the reopens in @q have
2025  * successfully completed. If @q is NULL (or @bs is not contained in @q),
2026  * return the current flags.
2027  */
2028 static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2029 {
2030     BlockReopenQueueEntry *entry;
2031 
2032     if (q != NULL) {
2033         QTAILQ_FOREACH(entry, q, entry) {
2034             if (entry->state.bs == bs) {
2035                 return entry->state.flags;
2036             }
2037         }
2038     }
2039 
2040     return bs->open_flags;
2041 }
2042 
2043 /* Returns whether the image file can be written to after the reopen queue @q
2044  * has been successfully applied, or right now if @q is NULL. */
2045 static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2046                                           BlockReopenQueue *q)
2047 {
2048     int flags = bdrv_reopen_get_flags(q, bs);
2049 
2050     return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2051 }
2052 
2053 /*
2054  * Return whether the BDS can be written to.  This is not necessarily
2055  * the same as !bdrv_is_read_only(bs), as inactivated images may not
2056  * be written to but do not count as read-only images.
2057  */
2058 bool bdrv_is_writable(BlockDriverState *bs)
2059 {
2060     return bdrv_is_writable_after_reopen(bs, NULL);
2061 }
2062 
2063 static char *bdrv_child_user_desc(BdrvChild *c)
2064 {
2065     return c->klass->get_parent_desc(c);
2066 }
2067 
2068 /*
2069  * Check that @a allows everything that @b needs. @a and @b must reference same
2070  * child node.
2071  */
2072 static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2073 {
2074     const char *child_bs_name;
2075     g_autofree char *a_user = NULL;
2076     g_autofree char *b_user = NULL;
2077     g_autofree char *perms = NULL;
2078 
2079     assert(a->bs);
2080     assert(a->bs == b->bs);
2081 
2082     if ((b->perm & a->shared_perm) == b->perm) {
2083         return true;
2084     }
2085 
2086     child_bs_name = bdrv_get_node_name(b->bs);
2087     a_user = bdrv_child_user_desc(a);
2088     b_user = bdrv_child_user_desc(b);
2089     perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2090 
2091     error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2092                "both required by %s (uses node '%s' as '%s' child) and "
2093                "unshared by %s (uses node '%s' as '%s' child).",
2094                child_bs_name, perms,
2095                b_user, child_bs_name, b->name,
2096                a_user, child_bs_name, a->name);
2097 
2098     return false;
2099 }
2100 
2101 static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
2102 {
2103     BdrvChild *a, *b;
2104 
2105     /*
2106      * During the loop we'll look at each pair twice. That's correct because
2107      * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2108      * directions.
2109      */
2110     QLIST_FOREACH(a, &bs->parents, next_parent) {
2111         QLIST_FOREACH(b, &bs->parents, next_parent) {
2112             if (a == b) {
2113                 continue;
2114             }
2115 
2116             if (!bdrv_a_allow_b(a, b, errp)) {
2117                 return true;
2118             }
2119         }
2120     }
2121 
2122     return false;
2123 }
2124 
2125 static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
2126                             BdrvChild *c, BdrvChildRole role,
2127                             BlockReopenQueue *reopen_queue,
2128                             uint64_t parent_perm, uint64_t parent_shared,
2129                             uint64_t *nperm, uint64_t *nshared)
2130 {
2131     assert(bs->drv && bs->drv->bdrv_child_perm);
2132     bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
2133                              parent_perm, parent_shared,
2134                              nperm, nshared);
2135     /* TODO Take force_share from reopen_queue */
2136     if (child_bs && child_bs->force_share) {
2137         *nshared = BLK_PERM_ALL;
2138     }
2139 }
2140 
2141 /*
2142  * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2143  * nodes that are already in the @list, of course) so that final list is
2144  * topologically sorted. Return the result (GSList @list object is updated, so
2145  * don't use old reference after function call).
2146  *
2147  * On function start @list must be already topologically sorted and for any node
2148  * in the @list the whole subtree of the node must be in the @list as well. The
2149  * simplest way to satisfy this criteria: use only result of
2150  * bdrv_topological_dfs() or NULL as @list parameter.
2151  */
2152 static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2153                                     BlockDriverState *bs)
2154 {
2155     BdrvChild *child;
2156     g_autoptr(GHashTable) local_found = NULL;
2157 
2158     if (!found) {
2159         assert(!list);
2160         found = local_found = g_hash_table_new(NULL, NULL);
2161     }
2162 
2163     if (g_hash_table_contains(found, bs)) {
2164         return list;
2165     }
2166     g_hash_table_add(found, bs);
2167 
2168     QLIST_FOREACH(child, &bs->children, next) {
2169         list = bdrv_topological_dfs(list, found, child->bs);
2170     }
2171 
2172     return g_slist_prepend(list, bs);
2173 }
2174 
2175 typedef struct BdrvChildSetPermState {
2176     BdrvChild *child;
2177     uint64_t old_perm;
2178     uint64_t old_shared_perm;
2179 } BdrvChildSetPermState;
2180 
2181 static void bdrv_child_set_perm_abort(void *opaque)
2182 {
2183     BdrvChildSetPermState *s = opaque;
2184 
2185     s->child->perm = s->old_perm;
2186     s->child->shared_perm = s->old_shared_perm;
2187 }
2188 
2189 static TransactionActionDrv bdrv_child_set_pem_drv = {
2190     .abort = bdrv_child_set_perm_abort,
2191     .clean = g_free,
2192 };
2193 
2194 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2195                                 uint64_t shared, Transaction *tran)
2196 {
2197     BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
2198 
2199     *s = (BdrvChildSetPermState) {
2200         .child = c,
2201         .old_perm = c->perm,
2202         .old_shared_perm = c->shared_perm,
2203     };
2204 
2205     c->perm = perm;
2206     c->shared_perm = shared;
2207 
2208     tran_add(tran, &bdrv_child_set_pem_drv, s);
2209 }
2210 
2211 static void bdrv_drv_set_perm_commit(void *opaque)
2212 {
2213     BlockDriverState *bs = opaque;
2214     uint64_t cumulative_perms, cumulative_shared_perms;
2215 
2216     if (bs->drv->bdrv_set_perm) {
2217         bdrv_get_cumulative_perm(bs, &cumulative_perms,
2218                                  &cumulative_shared_perms);
2219         bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2220     }
2221 }
2222 
2223 static void bdrv_drv_set_perm_abort(void *opaque)
2224 {
2225     BlockDriverState *bs = opaque;
2226 
2227     if (bs->drv->bdrv_abort_perm_update) {
2228         bs->drv->bdrv_abort_perm_update(bs);
2229     }
2230 }
2231 
2232 TransactionActionDrv bdrv_drv_set_perm_drv = {
2233     .abort = bdrv_drv_set_perm_abort,
2234     .commit = bdrv_drv_set_perm_commit,
2235 };
2236 
2237 static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2238                              uint64_t shared_perm, Transaction *tran,
2239                              Error **errp)
2240 {
2241     if (!bs->drv) {
2242         return 0;
2243     }
2244 
2245     if (bs->drv->bdrv_check_perm) {
2246         int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2247         if (ret < 0) {
2248             return ret;
2249         }
2250     }
2251 
2252     if (tran) {
2253         tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2254     }
2255 
2256     return 0;
2257 }
2258 
2259 typedef struct BdrvReplaceChildState {
2260     BdrvChild *child;
2261     BdrvChild **childp;
2262     BlockDriverState *old_bs;
2263     bool free_empty_child;
2264 } BdrvReplaceChildState;
2265 
2266 static void bdrv_replace_child_commit(void *opaque)
2267 {
2268     BdrvReplaceChildState *s = opaque;
2269 
2270     if (s->free_empty_child && !s->child->bs) {
2271         bdrv_child_free(s->child);
2272     }
2273     bdrv_unref(s->old_bs);
2274 }
2275 
2276 static void bdrv_replace_child_abort(void *opaque)
2277 {
2278     BdrvReplaceChildState *s = opaque;
2279     BlockDriverState *new_bs = s->child->bs;
2280 
2281     /*
2282      * old_bs reference is transparently moved from @s to s->child.
2283      *
2284      * Pass &s->child here instead of s->childp, because:
2285      * (1) s->old_bs must be non-NULL, so bdrv_replace_child_noperm() will not
2286      *     modify the BdrvChild * pointer we indirectly pass to it, i.e. it
2287      *     will not modify s->child.  From that perspective, it does not matter
2288      *     whether we pass s->childp or &s->child.
2289      * (2) If new_bs is not NULL, s->childp will be NULL.  We then cannot use
2290      *     it here.
2291      * (3) If new_bs is NULL, *s->childp will have been NULLed by
2292      *     bdrv_replace_child_tran()'s bdrv_replace_child_noperm() call, and we
2293      *     must not pass a NULL *s->childp here.
2294      *
2295      * So whether new_bs was NULL or not, we cannot pass s->childp here; and in
2296      * any case, there is no reason to pass it anyway.
2297      */
2298     bdrv_replace_child_noperm(&s->child, s->old_bs, true);
2299     /*
2300      * The child was pre-existing, so s->old_bs must be non-NULL, and
2301      * s->child thus must not have been freed
2302      */
2303     assert(s->child != NULL);
2304     if (!new_bs) {
2305         /* As described above, *s->childp was cleared, so restore it */
2306         assert(s->childp != NULL);
2307         *s->childp = s->child;
2308     }
2309     bdrv_unref(new_bs);
2310 }
2311 
2312 static TransactionActionDrv bdrv_replace_child_drv = {
2313     .commit = bdrv_replace_child_commit,
2314     .abort = bdrv_replace_child_abort,
2315     .clean = g_free,
2316 };
2317 
2318 /*
2319  * bdrv_replace_child_tran
2320  *
2321  * Note: real unref of old_bs is done only on commit.
2322  *
2323  * The function doesn't update permissions, caller is responsible for this.
2324  *
2325  * (*childp)->bs must not be NULL.
2326  *
2327  * Note that if new_bs == NULL, @childp is stored in a state object attached
2328  * to @tran, so that the old child can be reinstated in the abort handler.
2329  * Therefore, if @new_bs can be NULL, @childp must stay valid until the
2330  * transaction is committed or aborted.
2331  *
2332  * If @free_empty_child is true and @new_bs is NULL, the BdrvChild is
2333  * freed (on commit).  @free_empty_child should only be false if the
2334  * caller will free the BDrvChild themselves (which may be important
2335  * if this is in turn called in another transactional context).
2336  */
2337 static void bdrv_replace_child_tran(BdrvChild **childp,
2338                                     BlockDriverState *new_bs,
2339                                     Transaction *tran,
2340                                     bool free_empty_child)
2341 {
2342     BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2343     *s = (BdrvReplaceChildState) {
2344         .child = *childp,
2345         .childp = new_bs == NULL ? childp : NULL,
2346         .old_bs = (*childp)->bs,
2347         .free_empty_child = free_empty_child,
2348     };
2349     tran_add(tran, &bdrv_replace_child_drv, s);
2350 
2351     /* The abort handler relies on this */
2352     assert(s->old_bs != NULL);
2353 
2354     if (new_bs) {
2355         bdrv_ref(new_bs);
2356     }
2357     /*
2358      * Pass free_empty_child=false, we will free the child (if
2359      * necessary) in bdrv_replace_child_commit() (if our
2360      * @free_empty_child parameter was true).
2361      */
2362     bdrv_replace_child_noperm(childp, new_bs, false);
2363     /* old_bs reference is transparently moved from *childp to @s */
2364 }
2365 
2366 /*
2367  * Refresh permissions in @bs subtree. The function is intended to be called
2368  * after some graph modification that was done without permission update.
2369  */
2370 static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2371                                   Transaction *tran, Error **errp)
2372 {
2373     BlockDriver *drv = bs->drv;
2374     BdrvChild *c;
2375     int ret;
2376     uint64_t cumulative_perms, cumulative_shared_perms;
2377 
2378     bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
2379 
2380     /* Write permissions never work with read-only images */
2381     if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2382         !bdrv_is_writable_after_reopen(bs, q))
2383     {
2384         if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2385             error_setg(errp, "Block node is read-only");
2386         } else {
2387             error_setg(errp, "Read-only block node '%s' cannot support "
2388                        "read-write users", bdrv_get_node_name(bs));
2389         }
2390 
2391         return -EPERM;
2392     }
2393 
2394     /*
2395      * Unaligned requests will automatically be aligned to bl.request_alignment
2396      * and without RESIZE we can't extend requests to write to space beyond the
2397      * end of the image, so it's required that the image size is aligned.
2398      */
2399     if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2400         !(cumulative_perms & BLK_PERM_RESIZE))
2401     {
2402         if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2403             error_setg(errp, "Cannot get 'write' permission without 'resize': "
2404                              "Image size is not a multiple of request "
2405                              "alignment");
2406             return -EPERM;
2407         }
2408     }
2409 
2410     /* Check this node */
2411     if (!drv) {
2412         return 0;
2413     }
2414 
2415     ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
2416                             errp);
2417     if (ret < 0) {
2418         return ret;
2419     }
2420 
2421     /* Drivers that never have children can omit .bdrv_child_perm() */
2422     if (!drv->bdrv_child_perm) {
2423         assert(QLIST_EMPTY(&bs->children));
2424         return 0;
2425     }
2426 
2427     /* Check all children */
2428     QLIST_FOREACH(c, &bs->children, next) {
2429         uint64_t cur_perm, cur_shared;
2430 
2431         bdrv_child_perm(bs, c->bs, c, c->role, q,
2432                         cumulative_perms, cumulative_shared_perms,
2433                         &cur_perm, &cur_shared);
2434         bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
2435     }
2436 
2437     return 0;
2438 }
2439 
2440 static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2441                                    Transaction *tran, Error **errp)
2442 {
2443     int ret;
2444     BlockDriverState *bs;
2445 
2446     for ( ; list; list = list->next) {
2447         bs = list->data;
2448 
2449         if (bdrv_parent_perms_conflict(bs, errp)) {
2450             return -EINVAL;
2451         }
2452 
2453         ret = bdrv_node_refresh_perm(bs, q, tran, errp);
2454         if (ret < 0) {
2455             return ret;
2456         }
2457     }
2458 
2459     return 0;
2460 }
2461 
2462 void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2463                               uint64_t *shared_perm)
2464 {
2465     BdrvChild *c;
2466     uint64_t cumulative_perms = 0;
2467     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2468 
2469     QLIST_FOREACH(c, &bs->parents, next_parent) {
2470         cumulative_perms |= c->perm;
2471         cumulative_shared_perms &= c->shared_perm;
2472     }
2473 
2474     *perm = cumulative_perms;
2475     *shared_perm = cumulative_shared_perms;
2476 }
2477 
2478 char *bdrv_perm_names(uint64_t perm)
2479 {
2480     struct perm_name {
2481         uint64_t perm;
2482         const char *name;
2483     } permissions[] = {
2484         { BLK_PERM_CONSISTENT_READ, "consistent read" },
2485         { BLK_PERM_WRITE,           "write" },
2486         { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2487         { BLK_PERM_RESIZE,          "resize" },
2488         { 0, NULL }
2489     };
2490 
2491     GString *result = g_string_sized_new(30);
2492     struct perm_name *p;
2493 
2494     for (p = permissions; p->name; p++) {
2495         if (perm & p->perm) {
2496             if (result->len > 0) {
2497                 g_string_append(result, ", ");
2498             }
2499             g_string_append(result, p->name);
2500         }
2501     }
2502 
2503     return g_string_free(result, FALSE);
2504 }
2505 
2506 
2507 static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp)
2508 {
2509     int ret;
2510     Transaction *tran = tran_new();
2511     g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
2512 
2513     ret = bdrv_list_refresh_perms(list, NULL, tran, errp);
2514     tran_finalize(tran, ret);
2515 
2516     return ret;
2517 }
2518 
2519 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2520                             Error **errp)
2521 {
2522     Error *local_err = NULL;
2523     Transaction *tran = tran_new();
2524     int ret;
2525 
2526     bdrv_child_set_perm(c, perm, shared, tran);
2527 
2528     ret = bdrv_refresh_perms(c->bs, &local_err);
2529 
2530     tran_finalize(tran, ret);
2531 
2532     if (ret < 0) {
2533         if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2534             /* tighten permissions */
2535             error_propagate(errp, local_err);
2536         } else {
2537             /*
2538              * Our caller may intend to only loosen restrictions and
2539              * does not expect this function to fail.  Errors are not
2540              * fatal in such a case, so we can just hide them from our
2541              * caller.
2542              */
2543             error_free(local_err);
2544             ret = 0;
2545         }
2546     }
2547 
2548     return ret;
2549 }
2550 
2551 int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2552 {
2553     uint64_t parent_perms, parent_shared;
2554     uint64_t perms, shared;
2555 
2556     bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
2557     bdrv_child_perm(bs, c->bs, c, c->role, NULL,
2558                     parent_perms, parent_shared, &perms, &shared);
2559 
2560     return bdrv_child_try_set_perm(c, perms, shared, errp);
2561 }
2562 
2563 /*
2564  * Default implementation for .bdrv_child_perm() for block filters:
2565  * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2566  * filtered child.
2567  */
2568 static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
2569                                       BdrvChildRole role,
2570                                       BlockReopenQueue *reopen_queue,
2571                                       uint64_t perm, uint64_t shared,
2572                                       uint64_t *nperm, uint64_t *nshared)
2573 {
2574     *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2575     *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
2576 }
2577 
2578 static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
2579                                        BdrvChildRole role,
2580                                        BlockReopenQueue *reopen_queue,
2581                                        uint64_t perm, uint64_t shared,
2582                                        uint64_t *nperm, uint64_t *nshared)
2583 {
2584     assert(role & BDRV_CHILD_COW);
2585 
2586     /*
2587      * We want consistent read from backing files if the parent needs it.
2588      * No other operations are performed on backing files.
2589      */
2590     perm &= BLK_PERM_CONSISTENT_READ;
2591 
2592     /*
2593      * If the parent can deal with changing data, we're okay with a
2594      * writable and resizable backing file.
2595      * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2596      */
2597     if (shared & BLK_PERM_WRITE) {
2598         shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2599     } else {
2600         shared = 0;
2601     }
2602 
2603     shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
2604 
2605     if (bs->open_flags & BDRV_O_INACTIVE) {
2606         shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2607     }
2608 
2609     *nperm = perm;
2610     *nshared = shared;
2611 }
2612 
2613 static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
2614                                            BdrvChildRole role,
2615                                            BlockReopenQueue *reopen_queue,
2616                                            uint64_t perm, uint64_t shared,
2617                                            uint64_t *nperm, uint64_t *nshared)
2618 {
2619     int flags;
2620 
2621     assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
2622 
2623     flags = bdrv_reopen_get_flags(reopen_queue, bs);
2624 
2625     /*
2626      * Apart from the modifications below, the same permissions are
2627      * forwarded and left alone as for filters
2628      */
2629     bdrv_filter_default_perms(bs, c, role, reopen_queue,
2630                               perm, shared, &perm, &shared);
2631 
2632     if (role & BDRV_CHILD_METADATA) {
2633         /* Format drivers may touch metadata even if the guest doesn't write */
2634         if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2635             perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2636         }
2637 
2638         /*
2639          * bs->file always needs to be consistent because of the
2640          * metadata. We can never allow other users to resize or write
2641          * to it.
2642          */
2643         if (!(flags & BDRV_O_NO_IO)) {
2644             perm |= BLK_PERM_CONSISTENT_READ;
2645         }
2646         shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2647     }
2648 
2649     if (role & BDRV_CHILD_DATA) {
2650         /*
2651          * Technically, everything in this block is a subset of the
2652          * BDRV_CHILD_METADATA path taken above, and so this could
2653          * be an "else if" branch.  However, that is not obvious, and
2654          * this function is not performance critical, therefore we let
2655          * this be an independent "if".
2656          */
2657 
2658         /*
2659          * We cannot allow other users to resize the file because the
2660          * format driver might have some assumptions about the size
2661          * (e.g. because it is stored in metadata, or because the file
2662          * is split into fixed-size data files).
2663          */
2664         shared &= ~BLK_PERM_RESIZE;
2665 
2666         /*
2667          * WRITE_UNCHANGED often cannot be performed as such on the
2668          * data file.  For example, the qcow2 driver may still need to
2669          * write copied clusters on copy-on-read.
2670          */
2671         if (perm & BLK_PERM_WRITE_UNCHANGED) {
2672             perm |= BLK_PERM_WRITE;
2673         }
2674 
2675         /*
2676          * If the data file is written to, the format driver may
2677          * expect to be able to resize it by writing beyond the EOF.
2678          */
2679         if (perm & BLK_PERM_WRITE) {
2680             perm |= BLK_PERM_RESIZE;
2681         }
2682     }
2683 
2684     if (bs->open_flags & BDRV_O_INACTIVE) {
2685         shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2686     }
2687 
2688     *nperm = perm;
2689     *nshared = shared;
2690 }
2691 
2692 void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
2693                         BdrvChildRole role, BlockReopenQueue *reopen_queue,
2694                         uint64_t perm, uint64_t shared,
2695                         uint64_t *nperm, uint64_t *nshared)
2696 {
2697     if (role & BDRV_CHILD_FILTERED) {
2698         assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2699                          BDRV_CHILD_COW)));
2700         bdrv_filter_default_perms(bs, c, role, reopen_queue,
2701                                   perm, shared, nperm, nshared);
2702     } else if (role & BDRV_CHILD_COW) {
2703         assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
2704         bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
2705                                    perm, shared, nperm, nshared);
2706     } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
2707         bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
2708                                        perm, shared, nperm, nshared);
2709     } else {
2710         g_assert_not_reached();
2711     }
2712 }
2713 
2714 uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2715 {
2716     static const uint64_t permissions[] = {
2717         [BLOCK_PERMISSION_CONSISTENT_READ]  = BLK_PERM_CONSISTENT_READ,
2718         [BLOCK_PERMISSION_WRITE]            = BLK_PERM_WRITE,
2719         [BLOCK_PERMISSION_WRITE_UNCHANGED]  = BLK_PERM_WRITE_UNCHANGED,
2720         [BLOCK_PERMISSION_RESIZE]           = BLK_PERM_RESIZE,
2721     };
2722 
2723     QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2724     QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2725 
2726     assert(qapi_perm < BLOCK_PERMISSION__MAX);
2727 
2728     return permissions[qapi_perm];
2729 }
2730 
2731 /**
2732  * Replace (*childp)->bs by @new_bs.
2733  *
2734  * If @new_bs is NULL, *childp will be set to NULL, too: BDS parents
2735  * generally cannot handle a BdrvChild with .bs == NULL, so clearing
2736  * BdrvChild.bs should generally immediately be followed by the
2737  * BdrvChild pointer being cleared as well.
2738  *
2739  * If @free_empty_child is true and @new_bs is NULL, the BdrvChild is
2740  * freed.  @free_empty_child should only be false if the caller will
2741  * free the BdrvChild themselves (this may be important in a
2742  * transactional context, where it may only be freed on commit).
2743  */
2744 static void bdrv_replace_child_noperm(BdrvChild **childp,
2745                                       BlockDriverState *new_bs,
2746                                       bool free_empty_child)
2747 {
2748     BdrvChild *child = *childp;
2749     BlockDriverState *old_bs = child->bs;
2750     int new_bs_quiesce_counter;
2751     int drain_saldo;
2752 
2753     assert(!child->frozen);
2754     assert(old_bs != new_bs);
2755 
2756     if (old_bs && new_bs) {
2757         assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2758     }
2759 
2760     new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2761     drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2762 
2763     /*
2764      * If the new child node is drained but the old one was not, flush
2765      * all outstanding requests to the old child node.
2766      */
2767     while (drain_saldo > 0 && child->klass->drained_begin) {
2768         bdrv_parent_drained_begin_single(child, true);
2769         drain_saldo--;
2770     }
2771 
2772     if (old_bs) {
2773         /* Detach first so that the recursive drain sections coming from @child
2774          * are already gone and we only end the drain sections that came from
2775          * elsewhere. */
2776         if (child->klass->detach) {
2777             child->klass->detach(child);
2778         }
2779         QLIST_REMOVE(child, next_parent);
2780     }
2781 
2782     child->bs = new_bs;
2783     if (!new_bs) {
2784         *childp = NULL;
2785     }
2786 
2787     if (new_bs) {
2788         QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2789 
2790         /*
2791          * Detaching the old node may have led to the new node's
2792          * quiesce_counter having been decreased.  Not a problem, we
2793          * just need to recognize this here and then invoke
2794          * drained_end appropriately more often.
2795          */
2796         assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2797         drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
2798 
2799         /* Attach only after starting new drained sections, so that recursive
2800          * drain sections coming from @child don't get an extra .drained_begin
2801          * callback. */
2802         if (child->klass->attach) {
2803             child->klass->attach(child);
2804         }
2805     }
2806 
2807     /*
2808      * If the old child node was drained but the new one is not, allow
2809      * requests to come in only after the new node has been attached.
2810      */
2811     while (drain_saldo < 0 && child->klass->drained_end) {
2812         bdrv_parent_drained_end_single(child);
2813         drain_saldo++;
2814     }
2815 
2816     if (free_empty_child && !child->bs) {
2817         bdrv_child_free(child);
2818     }
2819 }
2820 
2821 /**
2822  * Free the given @child.
2823  *
2824  * The child must be empty (i.e. `child->bs == NULL`) and it must be
2825  * unused (i.e. not in a children list).
2826  */
2827 static void bdrv_child_free(BdrvChild *child)
2828 {
2829     assert(!child->bs);
2830     assert(!child->next.le_prev); /* not in children list */
2831 
2832     g_free(child->name);
2833     g_free(child);
2834 }
2835 
2836 typedef struct BdrvAttachChildCommonState {
2837     BdrvChild **child;
2838     AioContext *old_parent_ctx;
2839     AioContext *old_child_ctx;
2840 } BdrvAttachChildCommonState;
2841 
2842 static void bdrv_attach_child_common_abort(void *opaque)
2843 {
2844     BdrvAttachChildCommonState *s = opaque;
2845     BdrvChild *child = *s->child;
2846     BlockDriverState *bs = child->bs;
2847 
2848     /*
2849      * Pass free_empty_child=false, because we still need the child
2850      * for the AioContext operations on the parent below; those
2851      * BdrvChildClass methods all work on a BdrvChild object, so we
2852      * need to keep it as an empty shell (after this function, it will
2853      * not be attached to any parent, and it will not have a .bs).
2854      */
2855     bdrv_replace_child_noperm(s->child, NULL, false);
2856 
2857     if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
2858         bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort);
2859     }
2860 
2861     if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) {
2862         GSList *ignore;
2863 
2864         /* No need to ignore `child`, because it has been detached already */
2865         ignore = NULL;
2866         child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore,
2867                                       &error_abort);
2868         g_slist_free(ignore);
2869 
2870         ignore = NULL;
2871         child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore);
2872         g_slist_free(ignore);
2873     }
2874 
2875     bdrv_unref(bs);
2876     bdrv_child_free(child);
2877 }
2878 
2879 static TransactionActionDrv bdrv_attach_child_common_drv = {
2880     .abort = bdrv_attach_child_common_abort,
2881     .clean = g_free,
2882 };
2883 
2884 /*
2885  * Common part of attaching bdrv child to bs or to blk or to job
2886  *
2887  * Resulting new child is returned through @child.
2888  * At start *@child must be NULL.
2889  * @child is saved to a new entry of @tran, so that *@child could be reverted to
2890  * NULL on abort(). So referenced variable must live at least until transaction
2891  * end.
2892  *
2893  * Function doesn't update permissions, caller is responsible for this.
2894  */
2895 static int bdrv_attach_child_common(BlockDriverState *child_bs,
2896                                     const char *child_name,
2897                                     const BdrvChildClass *child_class,
2898                                     BdrvChildRole child_role,
2899                                     uint64_t perm, uint64_t shared_perm,
2900                                     void *opaque, BdrvChild **child,
2901                                     Transaction *tran, Error **errp)
2902 {
2903     BdrvChild *new_child;
2904     AioContext *parent_ctx;
2905     AioContext *child_ctx = bdrv_get_aio_context(child_bs);
2906 
2907     assert(child);
2908     assert(*child == NULL);
2909     assert(child_class->get_parent_desc);
2910 
2911     new_child = g_new(BdrvChild, 1);
2912     *new_child = (BdrvChild) {
2913         .bs             = NULL,
2914         .name           = g_strdup(child_name),
2915         .klass          = child_class,
2916         .role           = child_role,
2917         .perm           = perm,
2918         .shared_perm    = shared_perm,
2919         .opaque         = opaque,
2920     };
2921 
2922     /*
2923      * If the AioContexts don't match, first try to move the subtree of
2924      * child_bs into the AioContext of the new parent. If this doesn't work,
2925      * try moving the parent into the AioContext of child_bs instead.
2926      */
2927     parent_ctx = bdrv_child_get_parent_aio_context(new_child);
2928     if (child_ctx != parent_ctx) {
2929         Error *local_err = NULL;
2930         int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err);
2931 
2932         if (ret < 0 && child_class->can_set_aio_ctx) {
2933             GSList *ignore = g_slist_prepend(NULL, new_child);
2934             if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore,
2935                                              NULL))
2936             {
2937                 error_free(local_err);
2938                 ret = 0;
2939                 g_slist_free(ignore);
2940                 ignore = g_slist_prepend(NULL, new_child);
2941                 child_class->set_aio_ctx(new_child, child_ctx, &ignore);
2942             }
2943             g_slist_free(ignore);
2944         }
2945 
2946         if (ret < 0) {
2947             error_propagate(errp, local_err);
2948             bdrv_child_free(new_child);
2949             return ret;
2950         }
2951     }
2952 
2953     bdrv_ref(child_bs);
2954     bdrv_replace_child_noperm(&new_child, child_bs, true);
2955     /* child_bs was non-NULL, so new_child must not have been freed */
2956     assert(new_child != NULL);
2957 
2958     *child = new_child;
2959 
2960     BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
2961     *s = (BdrvAttachChildCommonState) {
2962         .child = child,
2963         .old_parent_ctx = parent_ctx,
2964         .old_child_ctx = child_ctx,
2965     };
2966     tran_add(tran, &bdrv_attach_child_common_drv, s);
2967 
2968     return 0;
2969 }
2970 
2971 /*
2972  * Variable referenced by @child must live at least until transaction end.
2973  * (see bdrv_attach_child_common() doc for details)
2974  *
2975  * Function doesn't update permissions, caller is responsible for this.
2976  */
2977 static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
2978                                     BlockDriverState *child_bs,
2979                                     const char *child_name,
2980                                     const BdrvChildClass *child_class,
2981                                     BdrvChildRole child_role,
2982                                     BdrvChild **child,
2983                                     Transaction *tran,
2984                                     Error **errp)
2985 {
2986     int ret;
2987     uint64_t perm, shared_perm;
2988 
2989     assert(parent_bs->drv);
2990 
2991     if (bdrv_recurse_has_child(child_bs, parent_bs)) {
2992         error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
2993                    child_bs->node_name, child_name, parent_bs->node_name);
2994         return -EINVAL;
2995     }
2996 
2997     bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2998     bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2999                     perm, shared_perm, &perm, &shared_perm);
3000 
3001     ret = bdrv_attach_child_common(child_bs, child_name, child_class,
3002                                    child_role, perm, shared_perm, parent_bs,
3003                                    child, tran, errp);
3004     if (ret < 0) {
3005         return ret;
3006     }
3007 
3008     return 0;
3009 }
3010 
3011 static void bdrv_detach_child(BdrvChild **childp)
3012 {
3013     BlockDriverState *old_bs = (*childp)->bs;
3014 
3015     bdrv_replace_child_noperm(childp, NULL, true);
3016 
3017     if (old_bs) {
3018         /*
3019          * Update permissions for old node. We're just taking a parent away, so
3020          * we're loosening restrictions. Errors of permission update are not
3021          * fatal in this case, ignore them.
3022          */
3023         bdrv_refresh_perms(old_bs, NULL);
3024 
3025         /*
3026          * When the parent requiring a non-default AioContext is removed, the
3027          * node moves back to the main AioContext
3028          */
3029         bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
3030     }
3031 }
3032 
3033 /*
3034  * This function steals the reference to child_bs from the caller.
3035  * That reference is later dropped by bdrv_root_unref_child().
3036  *
3037  * On failure NULL is returned, errp is set and the reference to
3038  * child_bs is also dropped.
3039  *
3040  * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3041  * (unless @child_bs is already in @ctx).
3042  */
3043 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3044                                   const char *child_name,
3045                                   const BdrvChildClass *child_class,
3046                                   BdrvChildRole child_role,
3047                                   uint64_t perm, uint64_t shared_perm,
3048                                   void *opaque, Error **errp)
3049 {
3050     int ret;
3051     BdrvChild *child = NULL;
3052     Transaction *tran = tran_new();
3053 
3054     ret = bdrv_attach_child_common(child_bs, child_name, child_class,
3055                                    child_role, perm, shared_perm, opaque,
3056                                    &child, tran, errp);
3057     if (ret < 0) {
3058         goto out;
3059     }
3060 
3061     ret = bdrv_refresh_perms(child_bs, errp);
3062 
3063 out:
3064     tran_finalize(tran, ret);
3065     /* child is unset on failure by bdrv_attach_child_common_abort() */
3066     assert((ret < 0) == !child);
3067 
3068     bdrv_unref(child_bs);
3069     return child;
3070 }
3071 
3072 /*
3073  * This function transfers the reference to child_bs from the caller
3074  * to parent_bs. That reference is later dropped by parent_bs on
3075  * bdrv_close() or if someone calls bdrv_unref_child().
3076  *
3077  * On failure NULL is returned, errp is set and the reference to
3078  * child_bs is also dropped.
3079  *
3080  * If @parent_bs and @child_bs are in different AioContexts, the caller must
3081  * hold the AioContext lock for @child_bs, but not for @parent_bs.
3082  */
3083 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3084                              BlockDriverState *child_bs,
3085                              const char *child_name,
3086                              const BdrvChildClass *child_class,
3087                              BdrvChildRole child_role,
3088                              Error **errp)
3089 {
3090     int ret;
3091     BdrvChild *child = NULL;
3092     Transaction *tran = tran_new();
3093 
3094     ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class,
3095                                    child_role, &child, tran, errp);
3096     if (ret < 0) {
3097         goto out;
3098     }
3099 
3100     ret = bdrv_refresh_perms(parent_bs, errp);
3101     if (ret < 0) {
3102         goto out;
3103     }
3104 
3105 out:
3106     tran_finalize(tran, ret);
3107     /* child is unset on failure by bdrv_attach_child_common_abort() */
3108     assert((ret < 0) == !child);
3109 
3110     bdrv_unref(child_bs);
3111 
3112     return child;
3113 }
3114 
3115 /* Callers must ensure that child->frozen is false. */
3116 void bdrv_root_unref_child(BdrvChild *child)
3117 {
3118     BlockDriverState *child_bs;
3119 
3120     child_bs = child->bs;
3121     bdrv_detach_child(&child);
3122     bdrv_unref(child_bs);
3123 }
3124 
3125 typedef struct BdrvSetInheritsFrom {
3126     BlockDriverState *bs;
3127     BlockDriverState *old_inherits_from;
3128 } BdrvSetInheritsFrom;
3129 
3130 static void bdrv_set_inherits_from_abort(void *opaque)
3131 {
3132     BdrvSetInheritsFrom *s = opaque;
3133 
3134     s->bs->inherits_from = s->old_inherits_from;
3135 }
3136 
3137 static TransactionActionDrv bdrv_set_inherits_from_drv = {
3138     .abort = bdrv_set_inherits_from_abort,
3139     .clean = g_free,
3140 };
3141 
3142 /* @tran is allowed to be NULL. In this case no rollback is possible */
3143 static void bdrv_set_inherits_from(BlockDriverState *bs,
3144                                    BlockDriverState *new_inherits_from,
3145                                    Transaction *tran)
3146 {
3147     if (tran) {
3148         BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3149 
3150         *s = (BdrvSetInheritsFrom) {
3151             .bs = bs,
3152             .old_inherits_from = bs->inherits_from,
3153         };
3154 
3155         tran_add(tran, &bdrv_set_inherits_from_drv, s);
3156     }
3157 
3158     bs->inherits_from = new_inherits_from;
3159 }
3160 
3161 /**
3162  * Clear all inherits_from pointers from children and grandchildren of
3163  * @root that point to @root, where necessary.
3164  * @tran is allowed to be NULL. In this case no rollback is possible
3165  */
3166 static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3167                                      Transaction *tran)
3168 {
3169     BdrvChild *c;
3170 
3171     if (child->bs->inherits_from == root) {
3172         /*
3173          * Remove inherits_from only when the last reference between root and
3174          * child->bs goes away.
3175          */
3176         QLIST_FOREACH(c, &root->children, next) {
3177             if (c != child && c->bs == child->bs) {
3178                 break;
3179             }
3180         }
3181         if (c == NULL) {
3182             bdrv_set_inherits_from(child->bs, NULL, tran);
3183         }
3184     }
3185 
3186     QLIST_FOREACH(c, &child->bs->children, next) {
3187         bdrv_unset_inherits_from(root, c, tran);
3188     }
3189 }
3190 
3191 /* Callers must ensure that child->frozen is false. */
3192 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3193 {
3194     if (child == NULL) {
3195         return;
3196     }
3197 
3198     bdrv_unset_inherits_from(parent, child, NULL);
3199     bdrv_root_unref_child(child);
3200 }
3201 
3202 
3203 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3204 {
3205     BdrvChild *c;
3206     QLIST_FOREACH(c, &bs->parents, next_parent) {
3207         if (c->klass->change_media) {
3208             c->klass->change_media(c, load);
3209         }
3210     }
3211 }
3212 
3213 /* Return true if you can reach parent going through child->inherits_from
3214  * recursively. If parent or child are NULL, return false */
3215 static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3216                                          BlockDriverState *parent)
3217 {
3218     while (child && child != parent) {
3219         child = child->inherits_from;
3220     }
3221 
3222     return child != NULL;
3223 }
3224 
3225 /*
3226  * Return the BdrvChildRole for @bs's backing child.  bs->backing is
3227  * mostly used for COW backing children (role = COW), but also for
3228  * filtered children (role = FILTERED | PRIMARY).
3229  */
3230 static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3231 {
3232     if (bs->drv && bs->drv->is_filter) {
3233         return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3234     } else {
3235         return BDRV_CHILD_COW;
3236     }
3237 }
3238 
3239 /*
3240  * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3241  * callers which don't need their own reference any more must call bdrv_unref().
3242  *
3243  * Function doesn't update permissions, caller is responsible for this.
3244  */
3245 static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3246                                            BlockDriverState *child_bs,
3247                                            bool is_backing,
3248                                            Transaction *tran, Error **errp)
3249 {
3250     int ret = 0;
3251     bool update_inherits_from =
3252         bdrv_inherits_from_recursive(child_bs, parent_bs);
3253     BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3254     BdrvChildRole role;
3255 
3256     if (!parent_bs->drv) {
3257         /*
3258          * Node without drv is an object without a class :/. TODO: finally fix
3259          * qcow2 driver to never clear bs->drv and implement format corruption
3260          * handling in other way.
3261          */
3262         error_setg(errp, "Node corrupted");
3263         return -EINVAL;
3264     }
3265 
3266     if (child && child->frozen) {
3267         error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3268                    child->name, parent_bs->node_name, child->bs->node_name);
3269         return -EPERM;
3270     }
3271 
3272     if (is_backing && !parent_bs->drv->is_filter &&
3273         !parent_bs->drv->supports_backing)
3274     {
3275         error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3276                    "files", parent_bs->drv->format_name, parent_bs->node_name);
3277         return -EINVAL;
3278     }
3279 
3280     if (parent_bs->drv->is_filter) {
3281         role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3282     } else if (is_backing) {
3283         role = BDRV_CHILD_COW;
3284     } else {
3285         /*
3286          * We only can use same role as it is in existing child. We don't have
3287          * infrastructure to determine role of file child in generic way
3288          */
3289         if (!child) {
3290             error_setg(errp, "Cannot set file child to format node without "
3291                        "file child");
3292             return -EINVAL;
3293         }
3294         role = child->role;
3295     }
3296 
3297     if (child) {
3298         bdrv_unset_inherits_from(parent_bs, child, tran);
3299         bdrv_remove_file_or_backing_child(parent_bs, child, tran);
3300     }
3301 
3302     if (!child_bs) {
3303         goto out;
3304     }
3305 
3306     ret = bdrv_attach_child_noperm(parent_bs, child_bs,
3307                                    is_backing ? "backing" : "file",
3308                                    &child_of_bds, role,
3309                                    is_backing ? &parent_bs->backing :
3310                                                 &parent_bs->file,
3311                                    tran, errp);
3312     if (ret < 0) {
3313         return ret;
3314     }
3315 
3316 
3317     /*
3318      * If inherits_from pointed recursively to bs then let's update it to
3319      * point directly to bs (else it will become NULL).
3320      */
3321     if (update_inherits_from) {
3322         bdrv_set_inherits_from(child_bs, parent_bs, tran);
3323     }
3324 
3325 out:
3326     bdrv_refresh_limits(parent_bs, tran, NULL);
3327 
3328     return 0;
3329 }
3330 
3331 static int bdrv_set_backing_noperm(BlockDriverState *bs,
3332                                    BlockDriverState *backing_hd,
3333                                    Transaction *tran, Error **errp)
3334 {
3335     return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3336 }
3337 
3338 int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3339                         Error **errp)
3340 {
3341     int ret;
3342     Transaction *tran = tran_new();
3343 
3344     ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3345     if (ret < 0) {
3346         goto out;
3347     }
3348 
3349     ret = bdrv_refresh_perms(bs, errp);
3350 out:
3351     tran_finalize(tran, ret);
3352 
3353     return ret;
3354 }
3355 
3356 /*
3357  * Opens the backing file for a BlockDriverState if not yet open
3358  *
3359  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3360  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3361  * itself, all options starting with "${bdref_key}." are considered part of the
3362  * BlockdevRef.
3363  *
3364  * TODO Can this be unified with bdrv_open_image()?
3365  */
3366 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3367                            const char *bdref_key, Error **errp)
3368 {
3369     char *backing_filename = NULL;
3370     char *bdref_key_dot;
3371     const char *reference = NULL;
3372     int ret = 0;
3373     bool implicit_backing = false;
3374     BlockDriverState *backing_hd;
3375     QDict *options;
3376     QDict *tmp_parent_options = NULL;
3377     Error *local_err = NULL;
3378 
3379     if (bs->backing != NULL) {
3380         goto free_exit;
3381     }
3382 
3383     /* NULL means an empty set of options */
3384     if (parent_options == NULL) {
3385         tmp_parent_options = qdict_new();
3386         parent_options = tmp_parent_options;
3387     }
3388 
3389     bs->open_flags &= ~BDRV_O_NO_BACKING;
3390 
3391     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3392     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3393     g_free(bdref_key_dot);
3394 
3395     /*
3396      * Caution: while qdict_get_try_str() is fine, getting non-string
3397      * types would require more care.  When @parent_options come from
3398      * -blockdev or blockdev_add, its members are typed according to
3399      * the QAPI schema, but when they come from -drive, they're all
3400      * QString.
3401      */
3402     reference = qdict_get_try_str(parent_options, bdref_key);
3403     if (reference || qdict_haskey(options, "file.filename")) {
3404         /* keep backing_filename NULL */
3405     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
3406         qobject_unref(options);
3407         goto free_exit;
3408     } else {
3409         if (qdict_size(options) == 0) {
3410             /* If the user specifies options that do not modify the
3411              * backing file's behavior, we might still consider it the
3412              * implicit backing file.  But it's easier this way, and
3413              * just specifying some of the backing BDS's options is
3414              * only possible with -drive anyway (otherwise the QAPI
3415              * schema forces the user to specify everything). */
3416             implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3417         }
3418 
3419         backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
3420         if (local_err) {
3421             ret = -EINVAL;
3422             error_propagate(errp, local_err);
3423             qobject_unref(options);
3424             goto free_exit;
3425         }
3426     }
3427 
3428     if (!bs->drv || !bs->drv->supports_backing) {
3429         ret = -EINVAL;
3430         error_setg(errp, "Driver doesn't support backing files");
3431         qobject_unref(options);
3432         goto free_exit;
3433     }
3434 
3435     if (!reference &&
3436         bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
3437         qdict_put_str(options, "driver", bs->backing_format);
3438     }
3439 
3440     backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
3441                                    &child_of_bds, bdrv_backing_role(bs), errp);
3442     if (!backing_hd) {
3443         bs->open_flags |= BDRV_O_NO_BACKING;
3444         error_prepend(errp, "Could not open backing file: ");
3445         ret = -EINVAL;
3446         goto free_exit;
3447     }
3448 
3449     if (implicit_backing) {
3450         bdrv_refresh_filename(backing_hd);
3451         pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3452                 backing_hd->filename);
3453     }
3454 
3455     /* Hook up the backing file link; drop our reference, bs owns the
3456      * backing_hd reference now */
3457     ret = bdrv_set_backing_hd(bs, backing_hd, errp);
3458     bdrv_unref(backing_hd);
3459     if (ret < 0) {
3460         goto free_exit;
3461     }
3462 
3463     qdict_del(parent_options, bdref_key);
3464 
3465 free_exit:
3466     g_free(backing_filename);
3467     qobject_unref(tmp_parent_options);
3468     return ret;
3469 }
3470 
3471 static BlockDriverState *
3472 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
3473                    BlockDriverState *parent, const BdrvChildClass *child_class,
3474                    BdrvChildRole child_role, bool allow_none, Error **errp)
3475 {
3476     BlockDriverState *bs = NULL;
3477     QDict *image_options;
3478     char *bdref_key_dot;
3479     const char *reference;
3480 
3481     assert(child_class != NULL);
3482 
3483     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3484     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3485     g_free(bdref_key_dot);
3486 
3487     /*
3488      * Caution: while qdict_get_try_str() is fine, getting non-string
3489      * types would require more care.  When @options come from
3490      * -blockdev or blockdev_add, its members are typed according to
3491      * the QAPI schema, but when they come from -drive, they're all
3492      * QString.
3493      */
3494     reference = qdict_get_try_str(options, bdref_key);
3495     if (!filename && !reference && !qdict_size(image_options)) {
3496         if (!allow_none) {
3497             error_setg(errp, "A block device must be specified for \"%s\"",
3498                        bdref_key);
3499         }
3500         qobject_unref(image_options);
3501         goto done;
3502     }
3503 
3504     bs = bdrv_open_inherit(filename, reference, image_options, 0,
3505                            parent, child_class, child_role, errp);
3506     if (!bs) {
3507         goto done;
3508     }
3509 
3510 done:
3511     qdict_del(options, bdref_key);
3512     return bs;
3513 }
3514 
3515 /*
3516  * Opens a disk image whose options are given as BlockdevRef in another block
3517  * device's options.
3518  *
3519  * If allow_none is true, no image will be opened if filename is false and no
3520  * BlockdevRef is given. NULL will be returned, but errp remains unset.
3521  *
3522  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3523  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3524  * itself, all options starting with "${bdref_key}." are considered part of the
3525  * BlockdevRef.
3526  *
3527  * The BlockdevRef will be removed from the options QDict.
3528  */
3529 BdrvChild *bdrv_open_child(const char *filename,
3530                            QDict *options, const char *bdref_key,
3531                            BlockDriverState *parent,
3532                            const BdrvChildClass *child_class,
3533                            BdrvChildRole child_role,
3534                            bool allow_none, Error **errp)
3535 {
3536     BlockDriverState *bs;
3537 
3538     bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
3539                             child_role, allow_none, errp);
3540     if (bs == NULL) {
3541         return NULL;
3542     }
3543 
3544     return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3545                              errp);
3546 }
3547 
3548 /*
3549  * TODO Future callers may need to specify parent/child_class in order for
3550  * option inheritance to work. Existing callers use it for the root node.
3551  */
3552 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3553 {
3554     BlockDriverState *bs = NULL;
3555     QObject *obj = NULL;
3556     QDict *qdict = NULL;
3557     const char *reference = NULL;
3558     Visitor *v = NULL;
3559 
3560     if (ref->type == QTYPE_QSTRING) {
3561         reference = ref->u.reference;
3562     } else {
3563         BlockdevOptions *options = &ref->u.definition;
3564         assert(ref->type == QTYPE_QDICT);
3565 
3566         v = qobject_output_visitor_new(&obj);
3567         visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
3568         visit_complete(v, &obj);
3569 
3570         qdict = qobject_to(QDict, obj);
3571         qdict_flatten(qdict);
3572 
3573         /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3574          * compatibility with other callers) rather than what we want as the
3575          * real defaults. Apply the defaults here instead. */
3576         qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3577         qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3578         qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
3579         qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3580 
3581     }
3582 
3583     bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
3584     obj = NULL;
3585     qobject_unref(obj);
3586     visit_free(v);
3587     return bs;
3588 }
3589 
3590 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3591                                                    int flags,
3592                                                    QDict *snapshot_options,
3593                                                    Error **errp)
3594 {
3595     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
3596     char *tmp_filename = g_malloc0(PATH_MAX + 1);
3597     int64_t total_size;
3598     QemuOpts *opts = NULL;
3599     BlockDriverState *bs_snapshot = NULL;
3600     int ret;
3601 
3602     /* if snapshot, we create a temporary backing file and open it
3603        instead of opening 'filename' directly */
3604 
3605     /* Get the required size from the image */
3606     total_size = bdrv_getlength(bs);
3607     if (total_size < 0) {
3608         error_setg_errno(errp, -total_size, "Could not get image size");
3609         goto out;
3610     }
3611 
3612     /* Create the temporary image */
3613     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
3614     if (ret < 0) {
3615         error_setg_errno(errp, -ret, "Could not get temporary filename");
3616         goto out;
3617     }
3618 
3619     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
3620                             &error_abort);
3621     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
3622     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
3623     qemu_opts_del(opts);
3624     if (ret < 0) {
3625         error_prepend(errp, "Could not create temporary overlay '%s': ",
3626                       tmp_filename);
3627         goto out;
3628     }
3629 
3630     /* Prepare options QDict for the temporary file */
3631     qdict_put_str(snapshot_options, "file.driver", "file");
3632     qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3633     qdict_put_str(snapshot_options, "driver", "qcow2");
3634 
3635     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
3636     snapshot_options = NULL;
3637     if (!bs_snapshot) {
3638         goto out;
3639     }
3640 
3641     ret = bdrv_append(bs_snapshot, bs, errp);
3642     if (ret < 0) {
3643         bs_snapshot = NULL;
3644         goto out;
3645     }
3646 
3647 out:
3648     qobject_unref(snapshot_options);
3649     g_free(tmp_filename);
3650     return bs_snapshot;
3651 }
3652 
3653 /*
3654  * Opens a disk image (raw, qcow2, vmdk, ...)
3655  *
3656  * options is a QDict of options to pass to the block drivers, or NULL for an
3657  * empty set of options. The reference to the QDict belongs to the block layer
3658  * after the call (even on failure), so if the caller intends to reuse the
3659  * dictionary, it needs to use qobject_ref() before calling bdrv_open.
3660  *
3661  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3662  * If it is not NULL, the referenced BDS will be reused.
3663  *
3664  * The reference parameter may be used to specify an existing block device which
3665  * should be opened. If specified, neither options nor a filename may be given,
3666  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
3667  */
3668 static BlockDriverState *bdrv_open_inherit(const char *filename,
3669                                            const char *reference,
3670                                            QDict *options, int flags,
3671                                            BlockDriverState *parent,
3672                                            const BdrvChildClass *child_class,
3673                                            BdrvChildRole child_role,
3674                                            Error **errp)
3675 {
3676     int ret;
3677     BlockBackend *file = NULL;
3678     BlockDriverState *bs;
3679     BlockDriver *drv = NULL;
3680     BdrvChild *child;
3681     const char *drvname;
3682     const char *backing;
3683     Error *local_err = NULL;
3684     QDict *snapshot_options = NULL;
3685     int snapshot_flags = 0;
3686 
3687     assert(!child_class || !flags);
3688     assert(!child_class == !parent);
3689 
3690     if (reference) {
3691         bool options_non_empty = options ? qdict_size(options) : false;
3692         qobject_unref(options);
3693 
3694         if (filename || options_non_empty) {
3695             error_setg(errp, "Cannot reference an existing block device with "
3696                        "additional options or a new filename");
3697             return NULL;
3698         }
3699 
3700         bs = bdrv_lookup_bs(reference, reference, errp);
3701         if (!bs) {
3702             return NULL;
3703         }
3704 
3705         bdrv_ref(bs);
3706         return bs;
3707     }
3708 
3709     bs = bdrv_new();
3710 
3711     /* NULL means an empty set of options */
3712     if (options == NULL) {
3713         options = qdict_new();
3714     }
3715 
3716     /* json: syntax counts as explicit options, as if in the QDict */
3717     parse_json_protocol(options, &filename, &local_err);
3718     if (local_err) {
3719         goto fail;
3720     }
3721 
3722     bs->explicit_options = qdict_clone_shallow(options);
3723 
3724     if (child_class) {
3725         bool parent_is_format;
3726 
3727         if (parent->drv) {
3728             parent_is_format = parent->drv->is_format;
3729         } else {
3730             /*
3731              * parent->drv is not set yet because this node is opened for
3732              * (potential) format probing.  That means that @parent is going
3733              * to be a format node.
3734              */
3735             parent_is_format = true;
3736         }
3737 
3738         bs->inherits_from = parent;
3739         child_class->inherit_options(child_role, parent_is_format,
3740                                      &flags, options,
3741                                      parent->open_flags, parent->options);
3742     }
3743 
3744     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
3745     if (ret < 0) {
3746         goto fail;
3747     }
3748 
3749     /*
3750      * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3751      * Caution: getting a boolean member of @options requires care.
3752      * When @options come from -blockdev or blockdev_add, members are
3753      * typed according to the QAPI schema, but when they come from
3754      * -drive, they're all QString.
3755      */
3756     if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3757         !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3758         flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3759     } else {
3760         flags &= ~BDRV_O_RDWR;
3761     }
3762 
3763     if (flags & BDRV_O_SNAPSHOT) {
3764         snapshot_options = qdict_new();
3765         bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3766                                    flags, options);
3767         /* Let bdrv_backing_options() override "read-only" */
3768         qdict_del(options, BDRV_OPT_READ_ONLY);
3769         bdrv_inherited_options(BDRV_CHILD_COW, true,
3770                                &flags, options, flags, options);
3771     }
3772 
3773     bs->open_flags = flags;
3774     bs->options = options;
3775     options = qdict_clone_shallow(options);
3776 
3777     /* Find the right image format driver */
3778     /* See cautionary note on accessing @options above */
3779     drvname = qdict_get_try_str(options, "driver");
3780     if (drvname) {
3781         drv = bdrv_find_format(drvname);
3782         if (!drv) {
3783             error_setg(errp, "Unknown driver: '%s'", drvname);
3784             goto fail;
3785         }
3786     }
3787 
3788     assert(drvname || !(flags & BDRV_O_PROTOCOL));
3789 
3790     /* See cautionary note on accessing @options above */
3791     backing = qdict_get_try_str(options, "backing");
3792     if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3793         (backing && *backing == '\0'))
3794     {
3795         if (backing) {
3796             warn_report("Use of \"backing\": \"\" is deprecated; "
3797                         "use \"backing\": null instead");
3798         }
3799         flags |= BDRV_O_NO_BACKING;
3800         qdict_del(bs->explicit_options, "backing");
3801         qdict_del(bs->options, "backing");
3802         qdict_del(options, "backing");
3803     }
3804 
3805     /* Open image file without format layer. This BlockBackend is only used for
3806      * probing, the block drivers will do their own bdrv_open_child() for the
3807      * same BDS, which is why we put the node name back into options. */
3808     if ((flags & BDRV_O_PROTOCOL) == 0) {
3809         BlockDriverState *file_bs;
3810 
3811         file_bs = bdrv_open_child_bs(filename, options, "file", bs,
3812                                      &child_of_bds, BDRV_CHILD_IMAGE,
3813                                      true, &local_err);
3814         if (local_err) {
3815             goto fail;
3816         }
3817         if (file_bs != NULL) {
3818             /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3819              * looking at the header to guess the image format. This works even
3820              * in cases where a guest would not see a consistent state. */
3821             file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
3822             blk_insert_bs(file, file_bs, &local_err);
3823             bdrv_unref(file_bs);
3824             if (local_err) {
3825                 goto fail;
3826             }
3827 
3828             qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
3829         }
3830     }
3831 
3832     /* Image format probing */
3833     bs->probed = !drv;
3834     if (!drv && file) {
3835         ret = find_image_format(file, filename, &drv, &local_err);
3836         if (ret < 0) {
3837             goto fail;
3838         }
3839         /*
3840          * This option update would logically belong in bdrv_fill_options(),
3841          * but we first need to open bs->file for the probing to work, while
3842          * opening bs->file already requires the (mostly) final set of options
3843          * so that cache mode etc. can be inherited.
3844          *
3845          * Adding the driver later is somewhat ugly, but it's not an option
3846          * that would ever be inherited, so it's correct. We just need to make
3847          * sure to update both bs->options (which has the full effective
3848          * options for bs) and options (which has file.* already removed).
3849          */
3850         qdict_put_str(bs->options, "driver", drv->format_name);
3851         qdict_put_str(options, "driver", drv->format_name);
3852     } else if (!drv) {
3853         error_setg(errp, "Must specify either driver or file");
3854         goto fail;
3855     }
3856 
3857     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3858     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3859     /* file must be NULL if a protocol BDS is about to be created
3860      * (the inverse results in an error message from bdrv_open_common()) */
3861     assert(!(flags & BDRV_O_PROTOCOL) || !file);
3862 
3863     /* Open the image */
3864     ret = bdrv_open_common(bs, file, options, &local_err);
3865     if (ret < 0) {
3866         goto fail;
3867     }
3868 
3869     if (file) {
3870         blk_unref(file);
3871         file = NULL;
3872     }
3873 
3874     /* If there is a backing file, use it */
3875     if ((flags & BDRV_O_NO_BACKING) == 0) {
3876         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
3877         if (ret < 0) {
3878             goto close_and_fail;
3879         }
3880     }
3881 
3882     /* Remove all children options and references
3883      * from bs->options and bs->explicit_options */
3884     QLIST_FOREACH(child, &bs->children, next) {
3885         char *child_key_dot;
3886         child_key_dot = g_strdup_printf("%s.", child->name);
3887         qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3888         qdict_extract_subqdict(bs->options, NULL, child_key_dot);
3889         qdict_del(bs->explicit_options, child->name);
3890         qdict_del(bs->options, child->name);
3891         g_free(child_key_dot);
3892     }
3893 
3894     /* Check if any unknown options were used */
3895     if (qdict_size(options) != 0) {
3896         const QDictEntry *entry = qdict_first(options);
3897         if (flags & BDRV_O_PROTOCOL) {
3898             error_setg(errp, "Block protocol '%s' doesn't support the option "
3899                        "'%s'", drv->format_name, entry->key);
3900         } else {
3901             error_setg(errp,
3902                        "Block format '%s' does not support the option '%s'",
3903                        drv->format_name, entry->key);
3904         }
3905 
3906         goto close_and_fail;
3907     }
3908 
3909     bdrv_parent_cb_change_media(bs, true);
3910 
3911     qobject_unref(options);
3912     options = NULL;
3913 
3914     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3915      * temporary snapshot afterwards. */
3916     if (snapshot_flags) {
3917         BlockDriverState *snapshot_bs;
3918         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3919                                                 snapshot_options, &local_err);
3920         snapshot_options = NULL;
3921         if (local_err) {
3922             goto close_and_fail;
3923         }
3924         /* We are not going to return bs but the overlay on top of it
3925          * (snapshot_bs); thus, we have to drop the strong reference to bs
3926          * (which we obtained by calling bdrv_new()). bs will not be deleted,
3927          * though, because the overlay still has a reference to it. */
3928         bdrv_unref(bs);
3929         bs = snapshot_bs;
3930     }
3931 
3932     return bs;
3933 
3934 fail:
3935     blk_unref(file);
3936     qobject_unref(snapshot_options);
3937     qobject_unref(bs->explicit_options);
3938     qobject_unref(bs->options);
3939     qobject_unref(options);
3940     bs->options = NULL;
3941     bs->explicit_options = NULL;
3942     bdrv_unref(bs);
3943     error_propagate(errp, local_err);
3944     return NULL;
3945 
3946 close_and_fail:
3947     bdrv_unref(bs);
3948     qobject_unref(snapshot_options);
3949     qobject_unref(options);
3950     error_propagate(errp, local_err);
3951     return NULL;
3952 }
3953 
3954 BlockDriverState *bdrv_open(const char *filename, const char *reference,
3955                             QDict *options, int flags, Error **errp)
3956 {
3957     return bdrv_open_inherit(filename, reference, options, flags, NULL,
3958                              NULL, 0, errp);
3959 }
3960 
3961 /* Return true if the NULL-terminated @list contains @str */
3962 static bool is_str_in_list(const char *str, const char *const *list)
3963 {
3964     if (str && list) {
3965         int i;
3966         for (i = 0; list[i] != NULL; i++) {
3967             if (!strcmp(str, list[i])) {
3968                 return true;
3969             }
3970         }
3971     }
3972     return false;
3973 }
3974 
3975 /*
3976  * Check that every option set in @bs->options is also set in
3977  * @new_opts.
3978  *
3979  * Options listed in the common_options list and in
3980  * @bs->drv->mutable_opts are skipped.
3981  *
3982  * Return 0 on success, otherwise return -EINVAL and set @errp.
3983  */
3984 static int bdrv_reset_options_allowed(BlockDriverState *bs,
3985                                       const QDict *new_opts, Error **errp)
3986 {
3987     const QDictEntry *e;
3988     /* These options are common to all block drivers and are handled
3989      * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3990     const char *const common_options[] = {
3991         "node-name", "discard", "cache.direct", "cache.no-flush",
3992         "read-only", "auto-read-only", "detect-zeroes", NULL
3993     };
3994 
3995     for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
3996         if (!qdict_haskey(new_opts, e->key) &&
3997             !is_str_in_list(e->key, common_options) &&
3998             !is_str_in_list(e->key, bs->drv->mutable_opts)) {
3999             error_setg(errp, "Option '%s' cannot be reset "
4000                        "to its default value", e->key);
4001             return -EINVAL;
4002         }
4003     }
4004 
4005     return 0;
4006 }
4007 
4008 /*
4009  * Returns true if @child can be reached recursively from @bs
4010  */
4011 static bool bdrv_recurse_has_child(BlockDriverState *bs,
4012                                    BlockDriverState *child)
4013 {
4014     BdrvChild *c;
4015 
4016     if (bs == child) {
4017         return true;
4018     }
4019 
4020     QLIST_FOREACH(c, &bs->children, next) {
4021         if (bdrv_recurse_has_child(c->bs, child)) {
4022             return true;
4023         }
4024     }
4025 
4026     return false;
4027 }
4028 
4029 /*
4030  * Adds a BlockDriverState to a simple queue for an atomic, transactional
4031  * reopen of multiple devices.
4032  *
4033  * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
4034  * already performed, or alternatively may be NULL a new BlockReopenQueue will
4035  * be created and initialized. This newly created BlockReopenQueue should be
4036  * passed back in for subsequent calls that are intended to be of the same
4037  * atomic 'set'.
4038  *
4039  * bs is the BlockDriverState to add to the reopen queue.
4040  *
4041  * options contains the changed options for the associated bs
4042  * (the BlockReopenQueue takes ownership)
4043  *
4044  * flags contains the open flags for the associated bs
4045  *
4046  * returns a pointer to bs_queue, which is either the newly allocated
4047  * bs_queue, or the existing bs_queue being used.
4048  *
4049  * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
4050  */
4051 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
4052                                                  BlockDriverState *bs,
4053                                                  QDict *options,
4054                                                  const BdrvChildClass *klass,
4055                                                  BdrvChildRole role,
4056                                                  bool parent_is_format,
4057                                                  QDict *parent_options,
4058                                                  int parent_flags,
4059                                                  bool keep_old_opts)
4060 {
4061     assert(bs != NULL);
4062 
4063     BlockReopenQueueEntry *bs_entry;
4064     BdrvChild *child;
4065     QDict *old_options, *explicit_options, *options_copy;
4066     int flags;
4067     QemuOpts *opts;
4068 
4069     /* Make sure that the caller remembered to use a drained section. This is
4070      * important to avoid graph changes between the recursive queuing here and
4071      * bdrv_reopen_multiple(). */
4072     assert(bs->quiesce_counter > 0);
4073 
4074     if (bs_queue == NULL) {
4075         bs_queue = g_new0(BlockReopenQueue, 1);
4076         QTAILQ_INIT(bs_queue);
4077     }
4078 
4079     if (!options) {
4080         options = qdict_new();
4081     }
4082 
4083     /* Check if this BlockDriverState is already in the queue */
4084     QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4085         if (bs == bs_entry->state.bs) {
4086             break;
4087         }
4088     }
4089 
4090     /*
4091      * Precedence of options:
4092      * 1. Explicitly passed in options (highest)
4093      * 2. Retained from explicitly set options of bs
4094      * 3. Inherited from parent node
4095      * 4. Retained from effective options of bs
4096      */
4097 
4098     /* Old explicitly set values (don't overwrite by inherited value) */
4099     if (bs_entry || keep_old_opts) {
4100         old_options = qdict_clone_shallow(bs_entry ?
4101                                           bs_entry->state.explicit_options :
4102                                           bs->explicit_options);
4103         bdrv_join_options(bs, options, old_options);
4104         qobject_unref(old_options);
4105     }
4106 
4107     explicit_options = qdict_clone_shallow(options);
4108 
4109     /* Inherit from parent node */
4110     if (parent_options) {
4111         flags = 0;
4112         klass->inherit_options(role, parent_is_format, &flags, options,
4113                                parent_flags, parent_options);
4114     } else {
4115         flags = bdrv_get_flags(bs);
4116     }
4117 
4118     if (keep_old_opts) {
4119         /* Old values are used for options that aren't set yet */
4120         old_options = qdict_clone_shallow(bs->options);
4121         bdrv_join_options(bs, options, old_options);
4122         qobject_unref(old_options);
4123     }
4124 
4125     /* We have the final set of options so let's update the flags */
4126     options_copy = qdict_clone_shallow(options);
4127     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4128     qemu_opts_absorb_qdict(opts, options_copy, NULL);
4129     update_flags_from_options(&flags, opts);
4130     qemu_opts_del(opts);
4131     qobject_unref(options_copy);
4132 
4133     /* bdrv_open_inherit() sets and clears some additional flags internally */
4134     flags &= ~BDRV_O_PROTOCOL;
4135     if (flags & BDRV_O_RDWR) {
4136         flags |= BDRV_O_ALLOW_RDWR;
4137     }
4138 
4139     if (!bs_entry) {
4140         bs_entry = g_new0(BlockReopenQueueEntry, 1);
4141         QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
4142     } else {
4143         qobject_unref(bs_entry->state.options);
4144         qobject_unref(bs_entry->state.explicit_options);
4145     }
4146 
4147     bs_entry->state.bs = bs;
4148     bs_entry->state.options = options;
4149     bs_entry->state.explicit_options = explicit_options;
4150     bs_entry->state.flags = flags;
4151 
4152     /*
4153      * If keep_old_opts is false then it means that unspecified
4154      * options must be reset to their original value. We don't allow
4155      * resetting 'backing' but we need to know if the option is
4156      * missing in order to decide if we have to return an error.
4157      */
4158     if (!keep_old_opts) {
4159         bs_entry->state.backing_missing =
4160             !qdict_haskey(options, "backing") &&
4161             !qdict_haskey(options, "backing.driver");
4162     }
4163 
4164     QLIST_FOREACH(child, &bs->children, next) {
4165         QDict *new_child_options = NULL;
4166         bool child_keep_old = keep_old_opts;
4167 
4168         /* reopen can only change the options of block devices that were
4169          * implicitly created and inherited options. For other (referenced)
4170          * block devices, a syntax like "backing.foo" results in an error. */
4171         if (child->bs->inherits_from != bs) {
4172             continue;
4173         }
4174 
4175         /* Check if the options contain a child reference */
4176         if (qdict_haskey(options, child->name)) {
4177             const char *childref = qdict_get_try_str(options, child->name);
4178             /*
4179              * The current child must not be reopened if the child
4180              * reference is null or points to a different node.
4181              */
4182             if (g_strcmp0(childref, child->bs->node_name)) {
4183                 continue;
4184             }
4185             /*
4186              * If the child reference points to the current child then
4187              * reopen it with its existing set of options (note that
4188              * it can still inherit new options from the parent).
4189              */
4190             child_keep_old = true;
4191         } else {
4192             /* Extract child options ("child-name.*") */
4193             char *child_key_dot = g_strdup_printf("%s.", child->name);
4194             qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4195             qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4196             g_free(child_key_dot);
4197         }
4198 
4199         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
4200                                 child->klass, child->role, bs->drv->is_format,
4201                                 options, flags, child_keep_old);
4202     }
4203 
4204     return bs_queue;
4205 }
4206 
4207 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4208                                     BlockDriverState *bs,
4209                                     QDict *options, bool keep_old_opts)
4210 {
4211     return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4212                                    NULL, 0, keep_old_opts);
4213 }
4214 
4215 void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4216 {
4217     if (bs_queue) {
4218         BlockReopenQueueEntry *bs_entry, *next;
4219         QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4220             qobject_unref(bs_entry->state.explicit_options);
4221             qobject_unref(bs_entry->state.options);
4222             g_free(bs_entry);
4223         }
4224         g_free(bs_queue);
4225     }
4226 }
4227 
4228 /*
4229  * Reopen multiple BlockDriverStates atomically & transactionally.
4230  *
4231  * The queue passed in (bs_queue) must have been built up previous
4232  * via bdrv_reopen_queue().
4233  *
4234  * Reopens all BDS specified in the queue, with the appropriate
4235  * flags.  All devices are prepared for reopen, and failure of any
4236  * device will cause all device changes to be abandoned, and intermediate
4237  * data cleaned up.
4238  *
4239  * If all devices prepare successfully, then the changes are committed
4240  * to all devices.
4241  *
4242  * All affected nodes must be drained between bdrv_reopen_queue() and
4243  * bdrv_reopen_multiple().
4244  *
4245  * To be called from the main thread, with all other AioContexts unlocked.
4246  */
4247 int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
4248 {
4249     int ret = -1;
4250     BlockReopenQueueEntry *bs_entry, *next;
4251     AioContext *ctx;
4252     Transaction *tran = tran_new();
4253     g_autoptr(GHashTable) found = NULL;
4254     g_autoptr(GSList) refresh_list = NULL;
4255 
4256     assert(qemu_get_current_aio_context() == qemu_get_aio_context());
4257     assert(bs_queue != NULL);
4258 
4259     QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4260         ctx = bdrv_get_aio_context(bs_entry->state.bs);
4261         aio_context_acquire(ctx);
4262         ret = bdrv_flush(bs_entry->state.bs);
4263         aio_context_release(ctx);
4264         if (ret < 0) {
4265             error_setg_errno(errp, -ret, "Error flushing drive");
4266             goto abort;
4267         }
4268     }
4269 
4270     QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4271         assert(bs_entry->state.bs->quiesce_counter > 0);
4272         ctx = bdrv_get_aio_context(bs_entry->state.bs);
4273         aio_context_acquire(ctx);
4274         ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
4275         aio_context_release(ctx);
4276         if (ret < 0) {
4277             goto abort;
4278         }
4279         bs_entry->prepared = true;
4280     }
4281 
4282     found = g_hash_table_new(NULL, NULL);
4283     QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
4284         BDRVReopenState *state = &bs_entry->state;
4285 
4286         refresh_list = bdrv_topological_dfs(refresh_list, found, state->bs);
4287         if (state->old_backing_bs) {
4288             refresh_list = bdrv_topological_dfs(refresh_list, found,
4289                                                 state->old_backing_bs);
4290         }
4291         if (state->old_file_bs) {
4292             refresh_list = bdrv_topological_dfs(refresh_list, found,
4293                                                 state->old_file_bs);
4294         }
4295     }
4296 
4297     /*
4298      * Note that file-posix driver rely on permission update done during reopen
4299      * (even if no permission changed), because it wants "new" permissions for
4300      * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4301      * in raw_reopen_prepare() which is called with "old" permissions.
4302      */
4303     ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4304     if (ret < 0) {
4305         goto abort;
4306     }
4307 
4308     /*
4309      * If we reach this point, we have success and just need to apply the
4310      * changes.
4311      *
4312      * Reverse order is used to comfort qcow2 driver: on commit it need to write
4313      * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4314      * children are usually goes after parents in reopen-queue, so go from last
4315      * to first element.
4316      */
4317     QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4318         ctx = bdrv_get_aio_context(bs_entry->state.bs);
4319         aio_context_acquire(ctx);
4320         bdrv_reopen_commit(&bs_entry->state);
4321         aio_context_release(ctx);
4322     }
4323 
4324     tran_commit(tran);
4325 
4326     QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4327         BlockDriverState *bs = bs_entry->state.bs;
4328 
4329         if (bs->drv->bdrv_reopen_commit_post) {
4330             ctx = bdrv_get_aio_context(bs);
4331             aio_context_acquire(ctx);
4332             bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
4333             aio_context_release(ctx);
4334         }
4335     }
4336 
4337     ret = 0;
4338     goto cleanup;
4339 
4340 abort:
4341     tran_abort(tran);
4342     QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4343         if (bs_entry->prepared) {
4344             ctx = bdrv_get_aio_context(bs_entry->state.bs);
4345             aio_context_acquire(ctx);
4346             bdrv_reopen_abort(&bs_entry->state);
4347             aio_context_release(ctx);
4348         }
4349     }
4350 
4351 cleanup:
4352     bdrv_reopen_queue_free(bs_queue);
4353 
4354     return ret;
4355 }
4356 
4357 int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4358                 Error **errp)
4359 {
4360     AioContext *ctx = bdrv_get_aio_context(bs);
4361     BlockReopenQueue *queue;
4362     int ret;
4363 
4364     bdrv_subtree_drained_begin(bs);
4365     if (ctx != qemu_get_aio_context()) {
4366         aio_context_release(ctx);
4367     }
4368 
4369     queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4370     ret = bdrv_reopen_multiple(queue, errp);
4371 
4372     if (ctx != qemu_get_aio_context()) {
4373         aio_context_acquire(ctx);
4374     }
4375     bdrv_subtree_drained_end(bs);
4376 
4377     return ret;
4378 }
4379 
4380 int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4381                               Error **errp)
4382 {
4383     QDict *opts = qdict_new();
4384 
4385     qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4386 
4387     return bdrv_reopen(bs, opts, true, errp);
4388 }
4389 
4390 /*
4391  * Take a BDRVReopenState and check if the value of 'backing' in the
4392  * reopen_state->options QDict is valid or not.
4393  *
4394  * If 'backing' is missing from the QDict then return 0.
4395  *
4396  * If 'backing' contains the node name of the backing file of
4397  * reopen_state->bs then return 0.
4398  *
4399  * If 'backing' contains a different node name (or is null) then check
4400  * whether the current backing file can be replaced with the new one.
4401  * If that's the case then reopen_state->replace_backing_bs is set to
4402  * true and reopen_state->new_backing_bs contains a pointer to the new
4403  * backing BlockDriverState (or NULL).
4404  *
4405  * Return 0 on success, otherwise return < 0 and set @errp.
4406  */
4407 static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4408                                              bool is_backing, Transaction *tran,
4409                                              Error **errp)
4410 {
4411     BlockDriverState *bs = reopen_state->bs;
4412     BlockDriverState *new_child_bs;
4413     BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) :
4414                                                   child_bs(bs->file);
4415     const char *child_name = is_backing ? "backing" : "file";
4416     QObject *value;
4417     const char *str;
4418 
4419     value = qdict_get(reopen_state->options, child_name);
4420     if (value == NULL) {
4421         return 0;
4422     }
4423 
4424     switch (qobject_type(value)) {
4425     case QTYPE_QNULL:
4426         assert(is_backing); /* The 'file' option does not allow a null value */
4427         new_child_bs = NULL;
4428         break;
4429     case QTYPE_QSTRING:
4430         str = qstring_get_str(qobject_to(QString, value));
4431         new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4432         if (new_child_bs == NULL) {
4433             return -EINVAL;
4434         } else if (bdrv_recurse_has_child(new_child_bs, bs)) {
4435             error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4436                        "cycle", str, child_name, bs->node_name);
4437             return -EINVAL;
4438         }
4439         break;
4440     default:
4441         /*
4442          * The options QDict has been flattened, so 'backing' and 'file'
4443          * do not allow any other data type here.
4444          */
4445         g_assert_not_reached();
4446     }
4447 
4448     if (old_child_bs == new_child_bs) {
4449         return 0;
4450     }
4451 
4452     if (old_child_bs) {
4453         if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
4454             return 0;
4455         }
4456 
4457         if (old_child_bs->implicit) {
4458             error_setg(errp, "Cannot replace implicit %s child of %s",
4459                        child_name, bs->node_name);
4460             return -EPERM;
4461         }
4462     }
4463 
4464     if (bs->drv->is_filter && !old_child_bs) {
4465         /*
4466          * Filters always have a file or a backing child, so we are trying to
4467          * change wrong child
4468          */
4469         error_setg(errp, "'%s' is a %s filter node that does not support a "
4470                    "%s child", bs->node_name, bs->drv->format_name, child_name);
4471         return -EINVAL;
4472     }
4473 
4474     if (is_backing) {
4475         reopen_state->old_backing_bs = old_child_bs;
4476     } else {
4477         reopen_state->old_file_bs = old_child_bs;
4478     }
4479 
4480     return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4481                                            tran, errp);
4482 }
4483 
4484 /*
4485  * Prepares a BlockDriverState for reopen. All changes are staged in the
4486  * 'opaque' field of the BDRVReopenState, which is used and allocated by
4487  * the block driver layer .bdrv_reopen_prepare()
4488  *
4489  * bs is the BlockDriverState to reopen
4490  * flags are the new open flags
4491  * queue is the reopen queue
4492  *
4493  * Returns 0 on success, non-zero on error.  On error errp will be set
4494  * as well.
4495  *
4496  * On failure, bdrv_reopen_abort() will be called to clean up any data.
4497  * It is the responsibility of the caller to then call the abort() or
4498  * commit() for any other BDS that have been left in a prepare() state
4499  *
4500  */
4501 static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
4502                                BlockReopenQueue *queue,
4503                                Transaction *change_child_tran, Error **errp)
4504 {
4505     int ret = -1;
4506     int old_flags;
4507     Error *local_err = NULL;
4508     BlockDriver *drv;
4509     QemuOpts *opts;
4510     QDict *orig_reopen_opts;
4511     char *discard = NULL;
4512     bool read_only;
4513     bool drv_prepared = false;
4514 
4515     assert(reopen_state != NULL);
4516     assert(reopen_state->bs->drv != NULL);
4517     drv = reopen_state->bs->drv;
4518 
4519     /* This function and each driver's bdrv_reopen_prepare() remove
4520      * entries from reopen_state->options as they are processed, so
4521      * we need to make a copy of the original QDict. */
4522     orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4523 
4524     /* Process generic block layer options */
4525     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4526     if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
4527         ret = -EINVAL;
4528         goto error;
4529     }
4530 
4531     /* This was already called in bdrv_reopen_queue_child() so the flags
4532      * are up-to-date. This time we simply want to remove the options from
4533      * QemuOpts in order to indicate that they have been processed. */
4534     old_flags = reopen_state->flags;
4535     update_flags_from_options(&reopen_state->flags, opts);
4536     assert(old_flags == reopen_state->flags);
4537 
4538     discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
4539     if (discard != NULL) {
4540         if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4541             error_setg(errp, "Invalid discard option");
4542             ret = -EINVAL;
4543             goto error;
4544         }
4545     }
4546 
4547     reopen_state->detect_zeroes =
4548         bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4549     if (local_err) {
4550         error_propagate(errp, local_err);
4551         ret = -EINVAL;
4552         goto error;
4553     }
4554 
4555     /* All other options (including node-name and driver) must be unchanged.
4556      * Put them back into the QDict, so that they are checked at the end
4557      * of this function. */
4558     qemu_opts_to_qdict(opts, reopen_state->options);
4559 
4560     /* If we are to stay read-only, do not allow permission change
4561      * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4562      * not set, or if the BDS still has copy_on_read enabled */
4563     read_only = !(reopen_state->flags & BDRV_O_RDWR);
4564     ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
4565     if (local_err) {
4566         error_propagate(errp, local_err);
4567         goto error;
4568     }
4569 
4570     if (drv->bdrv_reopen_prepare) {
4571         /*
4572          * If a driver-specific option is missing, it means that we
4573          * should reset it to its default value.
4574          * But not all options allow that, so we need to check it first.
4575          */
4576         ret = bdrv_reset_options_allowed(reopen_state->bs,
4577                                          reopen_state->options, errp);
4578         if (ret) {
4579             goto error;
4580         }
4581 
4582         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4583         if (ret) {
4584             if (local_err != NULL) {
4585                 error_propagate(errp, local_err);
4586             } else {
4587                 bdrv_refresh_filename(reopen_state->bs);
4588                 error_setg(errp, "failed while preparing to reopen image '%s'",
4589                            reopen_state->bs->filename);
4590             }
4591             goto error;
4592         }
4593     } else {
4594         /* It is currently mandatory to have a bdrv_reopen_prepare()
4595          * handler for each supported drv. */
4596         error_setg(errp, "Block format '%s' used by node '%s' "
4597                    "does not support reopening files", drv->format_name,
4598                    bdrv_get_device_or_node_name(reopen_state->bs));
4599         ret = -1;
4600         goto error;
4601     }
4602 
4603     drv_prepared = true;
4604 
4605     /*
4606      * We must provide the 'backing' option if the BDS has a backing
4607      * file or if the image file has a backing file name as part of
4608      * its metadata. Otherwise the 'backing' option can be omitted.
4609      */
4610     if (drv->supports_backing && reopen_state->backing_missing &&
4611         (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
4612         error_setg(errp, "backing is missing for '%s'",
4613                    reopen_state->bs->node_name);
4614         ret = -EINVAL;
4615         goto error;
4616     }
4617 
4618     /*
4619      * Allow changing the 'backing' option. The new value can be
4620      * either a reference to an existing node (using its node name)
4621      * or NULL to simply detach the current backing file.
4622      */
4623     ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
4624                                             change_child_tran, errp);
4625     if (ret < 0) {
4626         goto error;
4627     }
4628     qdict_del(reopen_state->options, "backing");
4629 
4630     /* Allow changing the 'file' option. In this case NULL is not allowed */
4631     ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
4632                                             change_child_tran, errp);
4633     if (ret < 0) {
4634         goto error;
4635     }
4636     qdict_del(reopen_state->options, "file");
4637 
4638     /* Options that are not handled are only okay if they are unchanged
4639      * compared to the old state. It is expected that some options are only
4640      * used for the initial open, but not reopen (e.g. filename) */
4641     if (qdict_size(reopen_state->options)) {
4642         const QDictEntry *entry = qdict_first(reopen_state->options);
4643 
4644         do {
4645             QObject *new = entry->value;
4646             QObject *old = qdict_get(reopen_state->bs->options, entry->key);
4647 
4648             /* Allow child references (child_name=node_name) as long as they
4649              * point to the current child (i.e. everything stays the same). */
4650             if (qobject_type(new) == QTYPE_QSTRING) {
4651                 BdrvChild *child;
4652                 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4653                     if (!strcmp(child->name, entry->key)) {
4654                         break;
4655                     }
4656                 }
4657 
4658                 if (child) {
4659                     if (!strcmp(child->bs->node_name,
4660                                 qstring_get_str(qobject_to(QString, new)))) {
4661                         continue; /* Found child with this name, skip option */
4662                     }
4663                 }
4664             }
4665 
4666             /*
4667              * TODO: When using -drive to specify blockdev options, all values
4668              * will be strings; however, when using -blockdev, blockdev-add or
4669              * filenames using the json:{} pseudo-protocol, they will be
4670              * correctly typed.
4671              * In contrast, reopening options are (currently) always strings
4672              * (because you can only specify them through qemu-io; all other
4673              * callers do not specify any options).
4674              * Therefore, when using anything other than -drive to create a BDS,
4675              * this cannot detect non-string options as unchanged, because
4676              * qobject_is_equal() always returns false for objects of different
4677              * type.  In the future, this should be remedied by correctly typing
4678              * all options.  For now, this is not too big of an issue because
4679              * the user can simply omit options which cannot be changed anyway,
4680              * so they will stay unchanged.
4681              */
4682             if (!qobject_is_equal(new, old)) {
4683                 error_setg(errp, "Cannot change the option '%s'", entry->key);
4684                 ret = -EINVAL;
4685                 goto error;
4686             }
4687         } while ((entry = qdict_next(reopen_state->options, entry)));
4688     }
4689 
4690     ret = 0;
4691 
4692     /* Restore the original reopen_state->options QDict */
4693     qobject_unref(reopen_state->options);
4694     reopen_state->options = qobject_ref(orig_reopen_opts);
4695 
4696 error:
4697     if (ret < 0 && drv_prepared) {
4698         /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4699          * call drv->bdrv_reopen_abort() before signaling an error
4700          * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4701          * when the respective bdrv_reopen_prepare() has failed) */
4702         if (drv->bdrv_reopen_abort) {
4703             drv->bdrv_reopen_abort(reopen_state);
4704         }
4705     }
4706     qemu_opts_del(opts);
4707     qobject_unref(orig_reopen_opts);
4708     g_free(discard);
4709     return ret;
4710 }
4711 
4712 /*
4713  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4714  * makes them final by swapping the staging BlockDriverState contents into
4715  * the active BlockDriverState contents.
4716  */
4717 static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
4718 {
4719     BlockDriver *drv;
4720     BlockDriverState *bs;
4721     BdrvChild *child;
4722 
4723     assert(reopen_state != NULL);
4724     bs = reopen_state->bs;
4725     drv = bs->drv;
4726     assert(drv != NULL);
4727 
4728     /* If there are any driver level actions to take */
4729     if (drv->bdrv_reopen_commit) {
4730         drv->bdrv_reopen_commit(reopen_state);
4731     }
4732 
4733     /* set BDS specific flags now */
4734     qobject_unref(bs->explicit_options);
4735     qobject_unref(bs->options);
4736     qobject_ref(reopen_state->explicit_options);
4737     qobject_ref(reopen_state->options);
4738 
4739     bs->explicit_options   = reopen_state->explicit_options;
4740     bs->options            = reopen_state->options;
4741     bs->open_flags         = reopen_state->flags;
4742     bs->detect_zeroes      = reopen_state->detect_zeroes;
4743 
4744     /* Remove child references from bs->options and bs->explicit_options.
4745      * Child options were already removed in bdrv_reopen_queue_child() */
4746     QLIST_FOREACH(child, &bs->children, next) {
4747         qdict_del(bs->explicit_options, child->name);
4748         qdict_del(bs->options, child->name);
4749     }
4750     /* backing is probably removed, so it's not handled by previous loop */
4751     qdict_del(bs->explicit_options, "backing");
4752     qdict_del(bs->options, "backing");
4753 
4754     bdrv_refresh_limits(bs, NULL, NULL);
4755 }
4756 
4757 /*
4758  * Abort the reopen, and delete and free the staged changes in
4759  * reopen_state
4760  */
4761 static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
4762 {
4763     BlockDriver *drv;
4764 
4765     assert(reopen_state != NULL);
4766     drv = reopen_state->bs->drv;
4767     assert(drv != NULL);
4768 
4769     if (drv->bdrv_reopen_abort) {
4770         drv->bdrv_reopen_abort(reopen_state);
4771     }
4772 }
4773 
4774 
4775 static void bdrv_close(BlockDriverState *bs)
4776 {
4777     BdrvAioNotifier *ban, *ban_next;
4778     BdrvChild *child, *next;
4779 
4780     assert(!bs->refcnt);
4781 
4782     bdrv_drained_begin(bs); /* complete I/O */
4783     bdrv_flush(bs);
4784     bdrv_drain(bs); /* in case flush left pending I/O */
4785 
4786     if (bs->drv) {
4787         if (bs->drv->bdrv_close) {
4788             /* Must unfreeze all children, so bdrv_unref_child() works */
4789             bs->drv->bdrv_close(bs);
4790         }
4791         bs->drv = NULL;
4792     }
4793 
4794     QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
4795         bdrv_unref_child(bs, child);
4796     }
4797 
4798     bs->backing = NULL;
4799     bs->file = NULL;
4800     g_free(bs->opaque);
4801     bs->opaque = NULL;
4802     qatomic_set(&bs->copy_on_read, 0);
4803     bs->backing_file[0] = '\0';
4804     bs->backing_format[0] = '\0';
4805     bs->total_sectors = 0;
4806     bs->encrypted = false;
4807     bs->sg = false;
4808     qobject_unref(bs->options);
4809     qobject_unref(bs->explicit_options);
4810     bs->options = NULL;
4811     bs->explicit_options = NULL;
4812     qobject_unref(bs->full_open_options);
4813     bs->full_open_options = NULL;
4814     g_free(bs->block_status_cache);
4815     bs->block_status_cache = NULL;
4816 
4817     bdrv_release_named_dirty_bitmaps(bs);
4818     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4819 
4820     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4821         g_free(ban);
4822     }
4823     QLIST_INIT(&bs->aio_notifiers);
4824     bdrv_drained_end(bs);
4825 
4826     /*
4827      * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4828      * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4829      * gets called.
4830      */
4831     if (bs->quiesce_counter) {
4832         bdrv_drain_all_end_quiesce(bs);
4833     }
4834 }
4835 
4836 void bdrv_close_all(void)
4837 {
4838     assert(job_next(NULL) == NULL);
4839 
4840     /* Drop references from requests still in flight, such as canceled block
4841      * jobs whose AIO context has not been polled yet */
4842     bdrv_drain_all();
4843 
4844     blk_remove_all_bs();
4845     blockdev_close_all_bdrv_states();
4846 
4847     assert(QTAILQ_EMPTY(&all_bdrv_states));
4848 }
4849 
4850 static bool should_update_child(BdrvChild *c, BlockDriverState *to)
4851 {
4852     GQueue *queue;
4853     GHashTable *found;
4854     bool ret;
4855 
4856     if (c->klass->stay_at_node) {
4857         return false;
4858     }
4859 
4860     /* If the child @c belongs to the BDS @to, replacing the current
4861      * c->bs by @to would mean to create a loop.
4862      *
4863      * Such a case occurs when appending a BDS to a backing chain.
4864      * For instance, imagine the following chain:
4865      *
4866      *   guest device -> node A -> further backing chain...
4867      *
4868      * Now we create a new BDS B which we want to put on top of this
4869      * chain, so we first attach A as its backing node:
4870      *
4871      *                   node B
4872      *                     |
4873      *                     v
4874      *   guest device -> node A -> further backing chain...
4875      *
4876      * Finally we want to replace A by B.  When doing that, we want to
4877      * replace all pointers to A by pointers to B -- except for the
4878      * pointer from B because (1) that would create a loop, and (2)
4879      * that pointer should simply stay intact:
4880      *
4881      *   guest device -> node B
4882      *                     |
4883      *                     v
4884      *                   node A -> further backing chain...
4885      *
4886      * In general, when replacing a node A (c->bs) by a node B (@to),
4887      * if A is a child of B, that means we cannot replace A by B there
4888      * because that would create a loop.  Silently detaching A from B
4889      * is also not really an option.  So overall just leaving A in
4890      * place there is the most sensible choice.
4891      *
4892      * We would also create a loop in any cases where @c is only
4893      * indirectly referenced by @to. Prevent this by returning false
4894      * if @c is found (by breadth-first search) anywhere in the whole
4895      * subtree of @to.
4896      */
4897 
4898     ret = true;
4899     found = g_hash_table_new(NULL, NULL);
4900     g_hash_table_add(found, to);
4901     queue = g_queue_new();
4902     g_queue_push_tail(queue, to);
4903 
4904     while (!g_queue_is_empty(queue)) {
4905         BlockDriverState *v = g_queue_pop_head(queue);
4906         BdrvChild *c2;
4907 
4908         QLIST_FOREACH(c2, &v->children, next) {
4909             if (c2 == c) {
4910                 ret = false;
4911                 break;
4912             }
4913 
4914             if (g_hash_table_contains(found, c2->bs)) {
4915                 continue;
4916             }
4917 
4918             g_queue_push_tail(queue, c2->bs);
4919             g_hash_table_add(found, c2->bs);
4920         }
4921     }
4922 
4923     g_queue_free(queue);
4924     g_hash_table_destroy(found);
4925 
4926     return ret;
4927 }
4928 
4929 typedef struct BdrvRemoveFilterOrCowChild {
4930     BdrvChild *child;
4931     BlockDriverState *bs;
4932     bool is_backing;
4933 } BdrvRemoveFilterOrCowChild;
4934 
4935 static void bdrv_remove_filter_or_cow_child_abort(void *opaque)
4936 {
4937     BdrvRemoveFilterOrCowChild *s = opaque;
4938     BlockDriverState *parent_bs = s->child->opaque;
4939 
4940     if (s->is_backing) {
4941         parent_bs->backing = s->child;
4942     } else {
4943         parent_bs->file = s->child;
4944     }
4945 
4946     /*
4947      * We don't have to restore child->bs here to undo bdrv_replace_child_tran()
4948      * because that function is transactionable and it registered own completion
4949      * entries in @tran, so .abort() for bdrv_replace_child_safe() will be
4950      * called automatically.
4951      */
4952 }
4953 
4954 static void bdrv_remove_filter_or_cow_child_commit(void *opaque)
4955 {
4956     BdrvRemoveFilterOrCowChild *s = opaque;
4957 
4958     bdrv_child_free(s->child);
4959 }
4960 
4961 static void bdrv_remove_filter_or_cow_child_clean(void *opaque)
4962 {
4963     BdrvRemoveFilterOrCowChild *s = opaque;
4964 
4965     /* Drop the bs reference after the transaction is done */
4966     bdrv_unref(s->bs);
4967     g_free(s);
4968 }
4969 
4970 static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = {
4971     .abort = bdrv_remove_filter_or_cow_child_abort,
4972     .commit = bdrv_remove_filter_or_cow_child_commit,
4973     .clean = bdrv_remove_filter_or_cow_child_clean,
4974 };
4975 
4976 /*
4977  * A function to remove backing or file child of @bs.
4978  * Function doesn't update permissions, caller is responsible for this.
4979  */
4980 static void bdrv_remove_file_or_backing_child(BlockDriverState *bs,
4981                                               BdrvChild *child,
4982                                               Transaction *tran)
4983 {
4984     BdrvChild **childp;
4985     BdrvRemoveFilterOrCowChild *s;
4986 
4987     if (!child) {
4988         return;
4989     }
4990 
4991     /*
4992      * Keep a reference to @bs so @childp will stay valid throughout the
4993      * transaction (required by bdrv_replace_child_tran())
4994      */
4995     bdrv_ref(bs);
4996     if (child == bs->backing) {
4997         childp = &bs->backing;
4998     } else if (child == bs->file) {
4999         childp = &bs->file;
5000     } else {
5001         g_assert_not_reached();
5002     }
5003 
5004     if (child->bs) {
5005         /*
5006          * Pass free_empty_child=false, we will free the child in
5007          * bdrv_remove_filter_or_cow_child_commit()
5008          */
5009         bdrv_replace_child_tran(childp, NULL, tran, false);
5010     }
5011 
5012     s = g_new(BdrvRemoveFilterOrCowChild, 1);
5013     *s = (BdrvRemoveFilterOrCowChild) {
5014         .child = child,
5015         .bs = bs,
5016         .is_backing = (childp == &bs->backing),
5017     };
5018     tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s);
5019 }
5020 
5021 /*
5022  * A function to remove backing-chain child of @bs if exists: cow child for
5023  * format nodes (always .backing) and filter child for filters (may be .file or
5024  * .backing)
5025  */
5026 static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
5027                                             Transaction *tran)
5028 {
5029     bdrv_remove_file_or_backing_child(bs, bdrv_filter_or_cow_child(bs), tran);
5030 }
5031 
5032 static int bdrv_replace_node_noperm(BlockDriverState *from,
5033                                     BlockDriverState *to,
5034                                     bool auto_skip, Transaction *tran,
5035                                     Error **errp)
5036 {
5037     BdrvChild *c, *next;
5038 
5039     assert(to != NULL);
5040 
5041     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5042         assert(c->bs == from);
5043         if (!should_update_child(c, to)) {
5044             if (auto_skip) {
5045                 continue;
5046             }
5047             error_setg(errp, "Should not change '%s' link to '%s'",
5048                        c->name, from->node_name);
5049             return -EINVAL;
5050         }
5051         if (c->frozen) {
5052             error_setg(errp, "Cannot change '%s' link to '%s'",
5053                        c->name, from->node_name);
5054             return -EPERM;
5055         }
5056 
5057         /*
5058          * Passing a pointer to the local variable @c is fine here, because
5059          * @to is not NULL, and so &c will not be attached to the transaction.
5060          */
5061         bdrv_replace_child_tran(&c, to, tran, true);
5062     }
5063 
5064     return 0;
5065 }
5066 
5067 /*
5068  * With auto_skip=true bdrv_replace_node_common skips updating from parents
5069  * if it creates a parent-child relation loop or if parent is block-job.
5070  *
5071  * With auto_skip=false the error is returned if from has a parent which should
5072  * not be updated.
5073  *
5074  * With @detach_subchain=true @to must be in a backing chain of @from. In this
5075  * case backing link of the cow-parent of @to is removed.
5076  *
5077  * @to must not be NULL.
5078  */
5079 static int bdrv_replace_node_common(BlockDriverState *from,
5080                                     BlockDriverState *to,
5081                                     bool auto_skip, bool detach_subchain,
5082                                     Error **errp)
5083 {
5084     Transaction *tran = tran_new();
5085     g_autoptr(GHashTable) found = NULL;
5086     g_autoptr(GSList) refresh_list = NULL;
5087     BlockDriverState *to_cow_parent = NULL;
5088     int ret;
5089 
5090     assert(to != NULL);
5091 
5092     if (detach_subchain) {
5093         assert(bdrv_chain_contains(from, to));
5094         assert(from != to);
5095         for (to_cow_parent = from;
5096              bdrv_filter_or_cow_bs(to_cow_parent) != to;
5097              to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5098         {
5099             ;
5100         }
5101     }
5102 
5103     /* Make sure that @from doesn't go away until we have successfully attached
5104      * all of its parents to @to. */
5105     bdrv_ref(from);
5106 
5107     assert(qemu_get_current_aio_context() == qemu_get_aio_context());
5108     assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
5109     bdrv_drained_begin(from);
5110 
5111     /*
5112      * Do the replacement without permission update.
5113      * Replacement may influence the permissions, we should calculate new
5114      * permissions based on new graph. If we fail, we'll roll-back the
5115      * replacement.
5116      */
5117     ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5118     if (ret < 0) {
5119         goto out;
5120     }
5121 
5122     if (detach_subchain) {
5123         bdrv_remove_filter_or_cow_child(to_cow_parent, tran);
5124     }
5125 
5126     found = g_hash_table_new(NULL, NULL);
5127 
5128     refresh_list = bdrv_topological_dfs(refresh_list, found, to);
5129     refresh_list = bdrv_topological_dfs(refresh_list, found, from);
5130 
5131     ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5132     if (ret < 0) {
5133         goto out;
5134     }
5135 
5136     ret = 0;
5137 
5138 out:
5139     tran_finalize(tran, ret);
5140 
5141     bdrv_drained_end(from);
5142     bdrv_unref(from);
5143 
5144     return ret;
5145 }
5146 
5147 /**
5148  * Replace node @from by @to (where neither may be NULL).
5149  */
5150 int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5151                       Error **errp)
5152 {
5153     return bdrv_replace_node_common(from, to, true, false, errp);
5154 }
5155 
5156 int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5157 {
5158     return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5159                                     errp);
5160 }
5161 
5162 /*
5163  * Add new bs contents at the top of an image chain while the chain is
5164  * live, while keeping required fields on the top layer.
5165  *
5166  * This will modify the BlockDriverState fields, and swap contents
5167  * between bs_new and bs_top. Both bs_new and bs_top are modified.
5168  *
5169  * bs_new must not be attached to a BlockBackend and must not have backing
5170  * child.
5171  *
5172  * This function does not create any image files.
5173  */
5174 int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5175                 Error **errp)
5176 {
5177     int ret;
5178     Transaction *tran = tran_new();
5179 
5180     assert(!bs_new->backing);
5181 
5182     ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5183                                    &child_of_bds, bdrv_backing_role(bs_new),
5184                                    &bs_new->backing, tran, errp);
5185     if (ret < 0) {
5186         goto out;
5187     }
5188 
5189     ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
5190     if (ret < 0) {
5191         goto out;
5192     }
5193 
5194     ret = bdrv_refresh_perms(bs_new, errp);
5195 out:
5196     tran_finalize(tran, ret);
5197 
5198     bdrv_refresh_limits(bs_top, NULL, NULL);
5199 
5200     return ret;
5201 }
5202 
5203 /* Not for empty child */
5204 int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5205                           Error **errp)
5206 {
5207     int ret;
5208     Transaction *tran = tran_new();
5209     g_autoptr(GHashTable) found = NULL;
5210     g_autoptr(GSList) refresh_list = NULL;
5211     BlockDriverState *old_bs = child->bs;
5212 
5213     bdrv_ref(old_bs);
5214     bdrv_drained_begin(old_bs);
5215     bdrv_drained_begin(new_bs);
5216 
5217     bdrv_replace_child_tran(&child, new_bs, tran, true);
5218     /* @new_bs must have been non-NULL, so @child must not have been freed */
5219     assert(child != NULL);
5220 
5221     found = g_hash_table_new(NULL, NULL);
5222     refresh_list = bdrv_topological_dfs(refresh_list, found, old_bs);
5223     refresh_list = bdrv_topological_dfs(refresh_list, found, new_bs);
5224 
5225     ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5226 
5227     tran_finalize(tran, ret);
5228 
5229     bdrv_drained_end(old_bs);
5230     bdrv_drained_end(new_bs);
5231     bdrv_unref(old_bs);
5232 
5233     return ret;
5234 }
5235 
5236 static void bdrv_delete(BlockDriverState *bs)
5237 {
5238     assert(bdrv_op_blocker_is_empty(bs));
5239     assert(!bs->refcnt);
5240 
5241     /* remove from list, if necessary */
5242     if (bs->node_name[0] != '\0') {
5243         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5244     }
5245     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5246 
5247     bdrv_close(bs);
5248 
5249     g_free(bs);
5250 }
5251 
5252 
5253 /*
5254  * Replace @bs by newly created block node.
5255  *
5256  * @options is a QDict of options to pass to the block drivers, or NULL for an
5257  * empty set of options. The reference to the QDict belongs to the block layer
5258  * after the call (even on failure), so if the caller intends to reuse the
5259  * dictionary, it needs to use qobject_ref() before calling bdrv_open.
5260  */
5261 BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
5262                                    int flags, Error **errp)
5263 {
5264     ERRP_GUARD();
5265     int ret;
5266     BlockDriverState *new_node_bs = NULL;
5267     const char *drvname, *node_name;
5268     BlockDriver *drv;
5269 
5270     drvname = qdict_get_try_str(options, "driver");
5271     if (!drvname) {
5272         error_setg(errp, "driver is not specified");
5273         goto fail;
5274     }
5275 
5276     drv = bdrv_find_format(drvname);
5277     if (!drv) {
5278         error_setg(errp, "Unknown driver: '%s'", drvname);
5279         goto fail;
5280     }
5281 
5282     node_name = qdict_get_try_str(options, "node-name");
5283 
5284     new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5285                                             errp);
5286     options = NULL; /* bdrv_new_open_driver() eats options */
5287     if (!new_node_bs) {
5288         error_prepend(errp, "Could not create node: ");
5289         goto fail;
5290     }
5291 
5292     bdrv_drained_begin(bs);
5293     ret = bdrv_replace_node(bs, new_node_bs, errp);
5294     bdrv_drained_end(bs);
5295 
5296     if (ret < 0) {
5297         error_prepend(errp, "Could not replace node: ");
5298         goto fail;
5299     }
5300 
5301     return new_node_bs;
5302 
5303 fail:
5304     qobject_unref(options);
5305     bdrv_unref(new_node_bs);
5306     return NULL;
5307 }
5308 
5309 /*
5310  * Run consistency checks on an image
5311  *
5312  * Returns 0 if the check could be completed (it doesn't mean that the image is
5313  * free of errors) or -errno when an internal error occurred. The results of the
5314  * check are stored in res.
5315  */
5316 int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5317                                BdrvCheckResult *res, BdrvCheckMode fix)
5318 {
5319     if (bs->drv == NULL) {
5320         return -ENOMEDIUM;
5321     }
5322     if (bs->drv->bdrv_co_check == NULL) {
5323         return -ENOTSUP;
5324     }
5325 
5326     memset(res, 0, sizeof(*res));
5327     return bs->drv->bdrv_co_check(bs, res, fix);
5328 }
5329 
5330 /*
5331  * Return values:
5332  * 0        - success
5333  * -EINVAL  - backing format specified, but no file
5334  * -ENOSPC  - can't update the backing file because no space is left in the
5335  *            image file header
5336  * -ENOTSUP - format driver doesn't support changing the backing file
5337  */
5338 int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
5339                              const char *backing_fmt, bool require)
5340 {
5341     BlockDriver *drv = bs->drv;
5342     int ret;
5343 
5344     if (!drv) {
5345         return -ENOMEDIUM;
5346     }
5347 
5348     /* Backing file format doesn't make sense without a backing file */
5349     if (backing_fmt && !backing_file) {
5350         return -EINVAL;
5351     }
5352 
5353     if (require && backing_file && !backing_fmt) {
5354         return -EINVAL;
5355     }
5356 
5357     if (drv->bdrv_change_backing_file != NULL) {
5358         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
5359     } else {
5360         ret = -ENOTSUP;
5361     }
5362 
5363     if (ret == 0) {
5364         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5365         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
5366         pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5367                 backing_file ?: "");
5368     }
5369     return ret;
5370 }
5371 
5372 /*
5373  * Finds the first non-filter node above bs in the chain between
5374  * active and bs.  The returned node is either an immediate parent of
5375  * bs, or there are only filter nodes between the two.
5376  *
5377  * Returns NULL if bs is not found in active's image chain,
5378  * or if active == bs.
5379  *
5380  * Returns the bottommost base image if bs == NULL.
5381  */
5382 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5383                                     BlockDriverState *bs)
5384 {
5385     bs = bdrv_skip_filters(bs);
5386     active = bdrv_skip_filters(active);
5387 
5388     while (active) {
5389         BlockDriverState *next = bdrv_backing_chain_next(active);
5390         if (bs == next) {
5391             return active;
5392         }
5393         active = next;
5394     }
5395 
5396     return NULL;
5397 }
5398 
5399 /* Given a BDS, searches for the base layer. */
5400 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5401 {
5402     return bdrv_find_overlay(bs, NULL);
5403 }
5404 
5405 /*
5406  * Return true if at least one of the COW (backing) and filter links
5407  * between @bs and @base is frozen. @errp is set if that's the case.
5408  * @base must be reachable from @bs, or NULL.
5409  */
5410 bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5411                                   Error **errp)
5412 {
5413     BlockDriverState *i;
5414     BdrvChild *child;
5415 
5416     for (i = bs; i != base; i = child_bs(child)) {
5417         child = bdrv_filter_or_cow_child(i);
5418 
5419         if (child && child->frozen) {
5420             error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
5421                        child->name, i->node_name, child->bs->node_name);
5422             return true;
5423         }
5424     }
5425 
5426     return false;
5427 }
5428 
5429 /*
5430  * Freeze all COW (backing) and filter links between @bs and @base.
5431  * If any of the links is already frozen the operation is aborted and
5432  * none of the links are modified.
5433  * @base must be reachable from @bs, or NULL.
5434  * Returns 0 on success. On failure returns < 0 and sets @errp.
5435  */
5436 int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5437                               Error **errp)
5438 {
5439     BlockDriverState *i;
5440     BdrvChild *child;
5441 
5442     if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5443         return -EPERM;
5444     }
5445 
5446     for (i = bs; i != base; i = child_bs(child)) {
5447         child = bdrv_filter_or_cow_child(i);
5448         if (child && child->bs->never_freeze) {
5449             error_setg(errp, "Cannot freeze '%s' link to '%s'",
5450                        child->name, child->bs->node_name);
5451             return -EPERM;
5452         }
5453     }
5454 
5455     for (i = bs; i != base; i = child_bs(child)) {
5456         child = bdrv_filter_or_cow_child(i);
5457         if (child) {
5458             child->frozen = true;
5459         }
5460     }
5461 
5462     return 0;
5463 }
5464 
5465 /*
5466  * Unfreeze all COW (backing) and filter links between @bs and @base.
5467  * The caller must ensure that all links are frozen before using this
5468  * function.
5469  * @base must be reachable from @bs, or NULL.
5470  */
5471 void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5472 {
5473     BlockDriverState *i;
5474     BdrvChild *child;
5475 
5476     for (i = bs; i != base; i = child_bs(child)) {
5477         child = bdrv_filter_or_cow_child(i);
5478         if (child) {
5479             assert(child->frozen);
5480             child->frozen = false;
5481         }
5482     }
5483 }
5484 
5485 /*
5486  * Drops images above 'base' up to and including 'top', and sets the image
5487  * above 'top' to have base as its backing file.
5488  *
5489  * Requires that the overlay to 'top' is opened r/w, so that the backing file
5490  * information in 'bs' can be properly updated.
5491  *
5492  * E.g., this will convert the following chain:
5493  * bottom <- base <- intermediate <- top <- active
5494  *
5495  * to
5496  *
5497  * bottom <- base <- active
5498  *
5499  * It is allowed for bottom==base, in which case it converts:
5500  *
5501  * base <- intermediate <- top <- active
5502  *
5503  * to
5504  *
5505  * base <- active
5506  *
5507  * If backing_file_str is non-NULL, it will be used when modifying top's
5508  * overlay image metadata.
5509  *
5510  * Error conditions:
5511  *  if active == top, that is considered an error
5512  *
5513  */
5514 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5515                            const char *backing_file_str)
5516 {
5517     BlockDriverState *explicit_top = top;
5518     bool update_inherits_from;
5519     BdrvChild *c;
5520     Error *local_err = NULL;
5521     int ret = -EIO;
5522     g_autoptr(GSList) updated_children = NULL;
5523     GSList *p;
5524 
5525     bdrv_ref(top);
5526     bdrv_subtree_drained_begin(top);
5527 
5528     if (!top->drv || !base->drv) {
5529         goto exit;
5530     }
5531 
5532     /* Make sure that base is in the backing chain of top */
5533     if (!bdrv_chain_contains(top, base)) {
5534         goto exit;
5535     }
5536 
5537     /* If 'base' recursively inherits from 'top' then we should set
5538      * base->inherits_from to top->inherits_from after 'top' and all
5539      * other intermediate nodes have been dropped.
5540      * If 'top' is an implicit node (e.g. "commit_top") we should skip
5541      * it because no one inherits from it. We use explicit_top for that. */
5542     explicit_top = bdrv_skip_implicit_filters(explicit_top);
5543     update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5544 
5545     /* success - we can delete the intermediate states, and link top->base */
5546     if (!backing_file_str) {
5547         bdrv_refresh_filename(base);
5548         backing_file_str = base->filename;
5549     }
5550 
5551     QLIST_FOREACH(c, &top->parents, next_parent) {
5552         updated_children = g_slist_prepend(updated_children, c);
5553     }
5554 
5555     /*
5556      * It seems correct to pass detach_subchain=true here, but it triggers
5557      * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5558      * another drained section, which modify the graph (for example, removing
5559      * the child, which we keep in updated_children list). So, it's a TODO.
5560      *
5561      * Note, bug triggered if pass detach_subchain=true here and run
5562      * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5563      * That's a FIXME.
5564      */
5565     bdrv_replace_node_common(top, base, false, false, &local_err);
5566     if (local_err) {
5567         error_report_err(local_err);
5568         goto exit;
5569     }
5570 
5571     for (p = updated_children; p; p = p->next) {
5572         c = p->data;
5573 
5574         if (c->klass->update_filename) {
5575             ret = c->klass->update_filename(c, base, backing_file_str,
5576                                             &local_err);
5577             if (ret < 0) {
5578                 /*
5579                  * TODO: Actually, we want to rollback all previous iterations
5580                  * of this loop, and (which is almost impossible) previous
5581                  * bdrv_replace_node()...
5582                  *
5583                  * Note, that c->klass->update_filename may lead to permission
5584                  * update, so it's a bad idea to call it inside permission
5585                  * update transaction of bdrv_replace_node.
5586                  */
5587                 error_report_err(local_err);
5588                 goto exit;
5589             }
5590         }
5591     }
5592 
5593     if (update_inherits_from) {
5594         base->inherits_from = explicit_top->inherits_from;
5595     }
5596 
5597     ret = 0;
5598 exit:
5599     bdrv_subtree_drained_end(top);
5600     bdrv_unref(top);
5601     return ret;
5602 }
5603 
5604 /**
5605  * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5606  * sums the size of all data-bearing children.  (This excludes backing
5607  * children.)
5608  */
5609 static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5610 {
5611     BdrvChild *child;
5612     int64_t child_size, sum = 0;
5613 
5614     QLIST_FOREACH(child, &bs->children, next) {
5615         if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5616                            BDRV_CHILD_FILTERED))
5617         {
5618             child_size = bdrv_get_allocated_file_size(child->bs);
5619             if (child_size < 0) {
5620                 return child_size;
5621             }
5622             sum += child_size;
5623         }
5624     }
5625 
5626     return sum;
5627 }
5628 
5629 /**
5630  * Length of a allocated file in bytes. Sparse files are counted by actual
5631  * allocated space. Return < 0 if error or unknown.
5632  */
5633 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5634 {
5635     BlockDriver *drv = bs->drv;
5636     if (!drv) {
5637         return -ENOMEDIUM;
5638     }
5639     if (drv->bdrv_get_allocated_file_size) {
5640         return drv->bdrv_get_allocated_file_size(bs);
5641     }
5642 
5643     if (drv->bdrv_file_open) {
5644         /*
5645          * Protocol drivers default to -ENOTSUP (most of their data is
5646          * not stored in any of their children (if they even have any),
5647          * so there is no generic way to figure it out).
5648          */
5649         return -ENOTSUP;
5650     } else if (drv->is_filter) {
5651         /* Filter drivers default to the size of their filtered child */
5652         return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5653     } else {
5654         /* Other drivers default to summing their children's sizes */
5655         return bdrv_sum_allocated_file_size(bs);
5656     }
5657 }
5658 
5659 /*
5660  * bdrv_measure:
5661  * @drv: Format driver
5662  * @opts: Creation options for new image
5663  * @in_bs: Existing image containing data for new image (may be NULL)
5664  * @errp: Error object
5665  * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5666  *          or NULL on error
5667  *
5668  * Calculate file size required to create a new image.
5669  *
5670  * If @in_bs is given then space for allocated clusters and zero clusters
5671  * from that image are included in the calculation.  If @opts contains a
5672  * backing file that is shared by @in_bs then backing clusters may be omitted
5673  * from the calculation.
5674  *
5675  * If @in_bs is NULL then the calculation includes no allocated clusters
5676  * unless a preallocation option is given in @opts.
5677  *
5678  * Note that @in_bs may use a different BlockDriver from @drv.
5679  *
5680  * If an error occurs the @errp pointer is set.
5681  */
5682 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5683                                BlockDriverState *in_bs, Error **errp)
5684 {
5685     if (!drv->bdrv_measure) {
5686         error_setg(errp, "Block driver '%s' does not support size measurement",
5687                    drv->format_name);
5688         return NULL;
5689     }
5690 
5691     return drv->bdrv_measure(opts, in_bs, errp);
5692 }
5693 
5694 /**
5695  * Return number of sectors on success, -errno on error.
5696  */
5697 int64_t bdrv_nb_sectors(BlockDriverState *bs)
5698 {
5699     BlockDriver *drv = bs->drv;
5700 
5701     if (!drv)
5702         return -ENOMEDIUM;
5703 
5704     if (drv->has_variable_length) {
5705         int ret = refresh_total_sectors(bs, bs->total_sectors);
5706         if (ret < 0) {
5707             return ret;
5708         }
5709     }
5710     return bs->total_sectors;
5711 }
5712 
5713 /**
5714  * Return length in bytes on success, -errno on error.
5715  * The length is always a multiple of BDRV_SECTOR_SIZE.
5716  */
5717 int64_t bdrv_getlength(BlockDriverState *bs)
5718 {
5719     int64_t ret = bdrv_nb_sectors(bs);
5720 
5721     if (ret < 0) {
5722         return ret;
5723     }
5724     if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5725         return -EFBIG;
5726     }
5727     return ret * BDRV_SECTOR_SIZE;
5728 }
5729 
5730 /* return 0 as number of sectors if no device present or error */
5731 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
5732 {
5733     int64_t nb_sectors = bdrv_nb_sectors(bs);
5734 
5735     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
5736 }
5737 
5738 bool bdrv_is_sg(BlockDriverState *bs)
5739 {
5740     return bs->sg;
5741 }
5742 
5743 /**
5744  * Return whether the given node supports compressed writes.
5745  */
5746 bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5747 {
5748     BlockDriverState *filtered;
5749 
5750     if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5751         return false;
5752     }
5753 
5754     filtered = bdrv_filter_bs(bs);
5755     if (filtered) {
5756         /*
5757          * Filters can only forward compressed writes, so we have to
5758          * check the child.
5759          */
5760         return bdrv_supports_compressed_writes(filtered);
5761     }
5762 
5763     return true;
5764 }
5765 
5766 const char *bdrv_get_format_name(BlockDriverState *bs)
5767 {
5768     return bs->drv ? bs->drv->format_name : NULL;
5769 }
5770 
5771 static int qsort_strcmp(const void *a, const void *b)
5772 {
5773     return strcmp(*(char *const *)a, *(char *const *)b);
5774 }
5775 
5776 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
5777                          void *opaque, bool read_only)
5778 {
5779     BlockDriver *drv;
5780     int count = 0;
5781     int i;
5782     const char **formats = NULL;
5783 
5784     QLIST_FOREACH(drv, &bdrv_drivers, list) {
5785         if (drv->format_name) {
5786             bool found = false;
5787             int i = count;
5788 
5789             if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5790                 continue;
5791             }
5792 
5793             while (formats && i && !found) {
5794                 found = !strcmp(formats[--i], drv->format_name);
5795             }
5796 
5797             if (!found) {
5798                 formats = g_renew(const char *, formats, count + 1);
5799                 formats[count++] = drv->format_name;
5800             }
5801         }
5802     }
5803 
5804     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5805         const char *format_name = block_driver_modules[i].format_name;
5806 
5807         if (format_name) {
5808             bool found = false;
5809             int j = count;
5810 
5811             if (use_bdrv_whitelist &&
5812                 !bdrv_format_is_whitelisted(format_name, read_only)) {
5813                 continue;
5814             }
5815 
5816             while (formats && j && !found) {
5817                 found = !strcmp(formats[--j], format_name);
5818             }
5819 
5820             if (!found) {
5821                 formats = g_renew(const char *, formats, count + 1);
5822                 formats[count++] = format_name;
5823             }
5824         }
5825     }
5826 
5827     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5828 
5829     for (i = 0; i < count; i++) {
5830         it(opaque, formats[i]);
5831     }
5832 
5833     g_free(formats);
5834 }
5835 
5836 /* This function is to find a node in the bs graph */
5837 BlockDriverState *bdrv_find_node(const char *node_name)
5838 {
5839     BlockDriverState *bs;
5840 
5841     assert(node_name);
5842 
5843     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5844         if (!strcmp(node_name, bs->node_name)) {
5845             return bs;
5846         }
5847     }
5848     return NULL;
5849 }
5850 
5851 /* Put this QMP function here so it can access the static graph_bdrv_states. */
5852 BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5853                                            Error **errp)
5854 {
5855     BlockDeviceInfoList *list;
5856     BlockDriverState *bs;
5857 
5858     list = NULL;
5859     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5860         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
5861         if (!info) {
5862             qapi_free_BlockDeviceInfoList(list);
5863             return NULL;
5864         }
5865         QAPI_LIST_PREPEND(list, info);
5866     }
5867 
5868     return list;
5869 }
5870 
5871 typedef struct XDbgBlockGraphConstructor {
5872     XDbgBlockGraph *graph;
5873     GHashTable *graph_nodes;
5874 } XDbgBlockGraphConstructor;
5875 
5876 static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5877 {
5878     XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5879 
5880     gr->graph = g_new0(XDbgBlockGraph, 1);
5881     gr->graph_nodes = g_hash_table_new(NULL, NULL);
5882 
5883     return gr;
5884 }
5885 
5886 static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5887 {
5888     XDbgBlockGraph *graph = gr->graph;
5889 
5890     g_hash_table_destroy(gr->graph_nodes);
5891     g_free(gr);
5892 
5893     return graph;
5894 }
5895 
5896 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5897 {
5898     uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5899 
5900     if (ret != 0) {
5901         return ret;
5902     }
5903 
5904     /*
5905      * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5906      * answer of g_hash_table_lookup.
5907      */
5908     ret = g_hash_table_size(gr->graph_nodes) + 1;
5909     g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5910 
5911     return ret;
5912 }
5913 
5914 static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5915                                 XDbgBlockGraphNodeType type, const char *name)
5916 {
5917     XDbgBlockGraphNode *n;
5918 
5919     n = g_new0(XDbgBlockGraphNode, 1);
5920 
5921     n->id = xdbg_graph_node_num(gr, node);
5922     n->type = type;
5923     n->name = g_strdup(name);
5924 
5925     QAPI_LIST_PREPEND(gr->graph->nodes, n);
5926 }
5927 
5928 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5929                                 const BdrvChild *child)
5930 {
5931     BlockPermission qapi_perm;
5932     XDbgBlockGraphEdge *edge;
5933 
5934     edge = g_new0(XDbgBlockGraphEdge, 1);
5935 
5936     edge->parent = xdbg_graph_node_num(gr, parent);
5937     edge->child = xdbg_graph_node_num(gr, child->bs);
5938     edge->name = g_strdup(child->name);
5939 
5940     for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5941         uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5942 
5943         if (flag & child->perm) {
5944             QAPI_LIST_PREPEND(edge->perm, qapi_perm);
5945         }
5946         if (flag & child->shared_perm) {
5947             QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
5948         }
5949     }
5950 
5951     QAPI_LIST_PREPEND(gr->graph->edges, edge);
5952 }
5953 
5954 
5955 XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5956 {
5957     BlockBackend *blk;
5958     BlockJob *job;
5959     BlockDriverState *bs;
5960     BdrvChild *child;
5961     XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5962 
5963     for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5964         char *allocated_name = NULL;
5965         const char *name = blk_name(blk);
5966 
5967         if (!*name) {
5968             name = allocated_name = blk_get_attached_dev_id(blk);
5969         }
5970         xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5971                            name);
5972         g_free(allocated_name);
5973         if (blk_root(blk)) {
5974             xdbg_graph_add_edge(gr, blk, blk_root(blk));
5975         }
5976     }
5977 
5978     for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5979         GSList *el;
5980 
5981         xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5982                            job->job.id);
5983         for (el = job->nodes; el; el = el->next) {
5984             xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5985         }
5986     }
5987 
5988     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5989         xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5990                            bs->node_name);
5991         QLIST_FOREACH(child, &bs->children, next) {
5992             xdbg_graph_add_edge(gr, bs, child);
5993         }
5994     }
5995 
5996     return xdbg_graph_finalize(gr);
5997 }
5998 
5999 BlockDriverState *bdrv_lookup_bs(const char *device,
6000                                  const char *node_name,
6001                                  Error **errp)
6002 {
6003     BlockBackend *blk;
6004     BlockDriverState *bs;
6005 
6006     if (device) {
6007         blk = blk_by_name(device);
6008 
6009         if (blk) {
6010             bs = blk_bs(blk);
6011             if (!bs) {
6012                 error_setg(errp, "Device '%s' has no medium", device);
6013             }
6014 
6015             return bs;
6016         }
6017     }
6018 
6019     if (node_name) {
6020         bs = bdrv_find_node(node_name);
6021 
6022         if (bs) {
6023             return bs;
6024         }
6025     }
6026 
6027     error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
6028                      device ? device : "",
6029                      node_name ? node_name : "");
6030     return NULL;
6031 }
6032 
6033 /* If 'base' is in the same chain as 'top', return true. Otherwise,
6034  * return false.  If either argument is NULL, return false. */
6035 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6036 {
6037     while (top && top != base) {
6038         top = bdrv_filter_or_cow_bs(top);
6039     }
6040 
6041     return top != NULL;
6042 }
6043 
6044 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6045 {
6046     if (!bs) {
6047         return QTAILQ_FIRST(&graph_bdrv_states);
6048     }
6049     return QTAILQ_NEXT(bs, node_list);
6050 }
6051 
6052 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6053 {
6054     if (!bs) {
6055         return QTAILQ_FIRST(&all_bdrv_states);
6056     }
6057     return QTAILQ_NEXT(bs, bs_list);
6058 }
6059 
6060 const char *bdrv_get_node_name(const BlockDriverState *bs)
6061 {
6062     return bs->node_name;
6063 }
6064 
6065 const char *bdrv_get_parent_name(const BlockDriverState *bs)
6066 {
6067     BdrvChild *c;
6068     const char *name;
6069 
6070     /* If multiple parents have a name, just pick the first one. */
6071     QLIST_FOREACH(c, &bs->parents, next_parent) {
6072         if (c->klass->get_name) {
6073             name = c->klass->get_name(c);
6074             if (name && *name) {
6075                 return name;
6076             }
6077         }
6078     }
6079 
6080     return NULL;
6081 }
6082 
6083 /* TODO check what callers really want: bs->node_name or blk_name() */
6084 const char *bdrv_get_device_name(const BlockDriverState *bs)
6085 {
6086     return bdrv_get_parent_name(bs) ?: "";
6087 }
6088 
6089 /* This can be used to identify nodes that might not have a device
6090  * name associated. Since node and device names live in the same
6091  * namespace, the result is unambiguous. The exception is if both are
6092  * absent, then this returns an empty (non-null) string. */
6093 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6094 {
6095     return bdrv_get_parent_name(bs) ?: bs->node_name;
6096 }
6097 
6098 int bdrv_get_flags(BlockDriverState *bs)
6099 {
6100     return bs->open_flags;
6101 }
6102 
6103 int bdrv_has_zero_init_1(BlockDriverState *bs)
6104 {
6105     return 1;
6106 }
6107 
6108 int bdrv_has_zero_init(BlockDriverState *bs)
6109 {
6110     BlockDriverState *filtered;
6111 
6112     if (!bs->drv) {
6113         return 0;
6114     }
6115 
6116     /* If BS is a copy on write image, it is initialized to
6117        the contents of the base image, which may not be zeroes.  */
6118     if (bdrv_cow_child(bs)) {
6119         return 0;
6120     }
6121     if (bs->drv->bdrv_has_zero_init) {
6122         return bs->drv->bdrv_has_zero_init(bs);
6123     }
6124 
6125     filtered = bdrv_filter_bs(bs);
6126     if (filtered) {
6127         return bdrv_has_zero_init(filtered);
6128     }
6129 
6130     /* safe default */
6131     return 0;
6132 }
6133 
6134 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6135 {
6136     if (!(bs->open_flags & BDRV_O_UNMAP)) {
6137         return false;
6138     }
6139 
6140     return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
6141 }
6142 
6143 void bdrv_get_backing_filename(BlockDriverState *bs,
6144                                char *filename, int filename_size)
6145 {
6146     pstrcpy(filename, filename_size, bs->backing_file);
6147 }
6148 
6149 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
6150 {
6151     int ret;
6152     BlockDriver *drv = bs->drv;
6153     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6154     if (!drv) {
6155         return -ENOMEDIUM;
6156     }
6157     if (!drv->bdrv_get_info) {
6158         BlockDriverState *filtered = bdrv_filter_bs(bs);
6159         if (filtered) {
6160             return bdrv_get_info(filtered, bdi);
6161         }
6162         return -ENOTSUP;
6163     }
6164     memset(bdi, 0, sizeof(*bdi));
6165     ret = drv->bdrv_get_info(bs, bdi);
6166     if (ret < 0) {
6167         return ret;
6168     }
6169 
6170     if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6171         return -EINVAL;
6172     }
6173 
6174     return 0;
6175 }
6176 
6177 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6178                                           Error **errp)
6179 {
6180     BlockDriver *drv = bs->drv;
6181     if (drv && drv->bdrv_get_specific_info) {
6182         return drv->bdrv_get_specific_info(bs, errp);
6183     }
6184     return NULL;
6185 }
6186 
6187 BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6188 {
6189     BlockDriver *drv = bs->drv;
6190     if (!drv || !drv->bdrv_get_specific_stats) {
6191         return NULL;
6192     }
6193     return drv->bdrv_get_specific_stats(bs);
6194 }
6195 
6196 void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
6197 {
6198     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
6199         return;
6200     }
6201 
6202     bs->drv->bdrv_debug_event(bs, event);
6203 }
6204 
6205 static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
6206 {
6207     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
6208         bs = bdrv_primary_bs(bs);
6209     }
6210 
6211     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
6212         assert(bs->drv->bdrv_debug_remove_breakpoint);
6213         return bs;
6214     }
6215 
6216     return NULL;
6217 }
6218 
6219 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6220                           const char *tag)
6221 {
6222     bs = bdrv_find_debug_node(bs);
6223     if (bs) {
6224         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6225     }
6226 
6227     return -ENOTSUP;
6228 }
6229 
6230 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6231 {
6232     bs = bdrv_find_debug_node(bs);
6233     if (bs) {
6234         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6235     }
6236 
6237     return -ENOTSUP;
6238 }
6239 
6240 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6241 {
6242     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
6243         bs = bdrv_primary_bs(bs);
6244     }
6245 
6246     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6247         return bs->drv->bdrv_debug_resume(bs, tag);
6248     }
6249 
6250     return -ENOTSUP;
6251 }
6252 
6253 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6254 {
6255     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
6256         bs = bdrv_primary_bs(bs);
6257     }
6258 
6259     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6260         return bs->drv->bdrv_debug_is_suspended(bs, tag);
6261     }
6262 
6263     return false;
6264 }
6265 
6266 /* backing_file can either be relative, or absolute, or a protocol.  If it is
6267  * relative, it must be relative to the chain.  So, passing in bs->filename
6268  * from a BDS as backing_file should not be done, as that may be relative to
6269  * the CWD rather than the chain. */
6270 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6271         const char *backing_file)
6272 {
6273     char *filename_full = NULL;
6274     char *backing_file_full = NULL;
6275     char *filename_tmp = NULL;
6276     int is_protocol = 0;
6277     bool filenames_refreshed = false;
6278     BlockDriverState *curr_bs = NULL;
6279     BlockDriverState *retval = NULL;
6280     BlockDriverState *bs_below;
6281 
6282     if (!bs || !bs->drv || !backing_file) {
6283         return NULL;
6284     }
6285 
6286     filename_full     = g_malloc(PATH_MAX);
6287     backing_file_full = g_malloc(PATH_MAX);
6288 
6289     is_protocol = path_has_protocol(backing_file);
6290 
6291     /*
6292      * Being largely a legacy function, skip any filters here
6293      * (because filters do not have normal filenames, so they cannot
6294      * match anyway; and allowing json:{} filenames is a bit out of
6295      * scope).
6296      */
6297     for (curr_bs = bdrv_skip_filters(bs);
6298          bdrv_cow_child(curr_bs) != NULL;
6299          curr_bs = bs_below)
6300     {
6301         bs_below = bdrv_backing_chain_next(curr_bs);
6302 
6303         if (bdrv_backing_overridden(curr_bs)) {
6304             /*
6305              * If the backing file was overridden, we can only compare
6306              * directly against the backing node's filename.
6307              */
6308 
6309             if (!filenames_refreshed) {
6310                 /*
6311                  * This will automatically refresh all of the
6312                  * filenames in the rest of the backing chain, so we
6313                  * only need to do this once.
6314                  */
6315                 bdrv_refresh_filename(bs_below);
6316                 filenames_refreshed = true;
6317             }
6318 
6319             if (strcmp(backing_file, bs_below->filename) == 0) {
6320                 retval = bs_below;
6321                 break;
6322             }
6323         } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6324             /*
6325              * If either of the filename paths is actually a protocol, then
6326              * compare unmodified paths; otherwise make paths relative.
6327              */
6328             char *backing_file_full_ret;
6329 
6330             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
6331                 retval = bs_below;
6332                 break;
6333             }
6334             /* Also check against the full backing filename for the image */
6335             backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6336                                                                    NULL);
6337             if (backing_file_full_ret) {
6338                 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6339                 g_free(backing_file_full_ret);
6340                 if (equal) {
6341                     retval = bs_below;
6342                     break;
6343                 }
6344             }
6345         } else {
6346             /* If not an absolute filename path, make it relative to the current
6347              * image's filename path */
6348             filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6349                                                        NULL);
6350             /* We are going to compare canonicalized absolute pathnames */
6351             if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6352                 g_free(filename_tmp);
6353                 continue;
6354             }
6355             g_free(filename_tmp);
6356 
6357             /* We need to make sure the backing filename we are comparing against
6358              * is relative to the current image filename (or absolute) */
6359             filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6360             if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6361                 g_free(filename_tmp);
6362                 continue;
6363             }
6364             g_free(filename_tmp);
6365 
6366             if (strcmp(backing_file_full, filename_full) == 0) {
6367                 retval = bs_below;
6368                 break;
6369             }
6370         }
6371     }
6372 
6373     g_free(filename_full);
6374     g_free(backing_file_full);
6375     return retval;
6376 }
6377 
6378 void bdrv_init(void)
6379 {
6380 #ifdef CONFIG_BDRV_WHITELIST_TOOLS
6381     use_bdrv_whitelist = 1;
6382 #endif
6383     module_call_init(MODULE_INIT_BLOCK);
6384 }
6385 
6386 void bdrv_init_with_whitelist(void)
6387 {
6388     use_bdrv_whitelist = 1;
6389     bdrv_init();
6390 }
6391 
6392 int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
6393 {
6394     BdrvChild *child, *parent;
6395     Error *local_err = NULL;
6396     int ret;
6397     BdrvDirtyBitmap *bm;
6398 
6399     if (!bs->drv)  {
6400         return -ENOMEDIUM;
6401     }
6402 
6403     QLIST_FOREACH(child, &bs->children, next) {
6404         bdrv_co_invalidate_cache(child->bs, &local_err);
6405         if (local_err) {
6406             error_propagate(errp, local_err);
6407             return -EINVAL;
6408         }
6409     }
6410 
6411     /*
6412      * Update permissions, they may differ for inactive nodes.
6413      *
6414      * Note that the required permissions of inactive images are always a
6415      * subset of the permissions required after activating the image. This
6416      * allows us to just get the permissions upfront without restricting
6417      * drv->bdrv_invalidate_cache().
6418      *
6419      * It also means that in error cases, we don't have to try and revert to
6420      * the old permissions (which is an operation that could fail, too). We can
6421      * just keep the extended permissions for the next time that an activation
6422      * of the image is tried.
6423      */
6424     if (bs->open_flags & BDRV_O_INACTIVE) {
6425         bs->open_flags &= ~BDRV_O_INACTIVE;
6426         ret = bdrv_refresh_perms(bs, errp);
6427         if (ret < 0) {
6428             bs->open_flags |= BDRV_O_INACTIVE;
6429             return ret;
6430         }
6431 
6432         if (bs->drv->bdrv_co_invalidate_cache) {
6433             bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6434             if (local_err) {
6435                 bs->open_flags |= BDRV_O_INACTIVE;
6436                 error_propagate(errp, local_err);
6437                 return -EINVAL;
6438             }
6439         }
6440 
6441         FOR_EACH_DIRTY_BITMAP(bs, bm) {
6442             bdrv_dirty_bitmap_skip_store(bm, false);
6443         }
6444 
6445         ret = refresh_total_sectors(bs, bs->total_sectors);
6446         if (ret < 0) {
6447             bs->open_flags |= BDRV_O_INACTIVE;
6448             error_setg_errno(errp, -ret, "Could not refresh total sector count");
6449             return ret;
6450         }
6451     }
6452 
6453     QLIST_FOREACH(parent, &bs->parents, next_parent) {
6454         if (parent->klass->activate) {
6455             parent->klass->activate(parent, &local_err);
6456             if (local_err) {
6457                 bs->open_flags |= BDRV_O_INACTIVE;
6458                 error_propagate(errp, local_err);
6459                 return -EINVAL;
6460             }
6461         }
6462     }
6463 
6464     return 0;
6465 }
6466 
6467 void bdrv_invalidate_cache_all(Error **errp)
6468 {
6469     BlockDriverState *bs;
6470     BdrvNextIterator it;
6471 
6472     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6473         AioContext *aio_context = bdrv_get_aio_context(bs);
6474         int ret;
6475 
6476         aio_context_acquire(aio_context);
6477         ret = bdrv_invalidate_cache(bs, errp);
6478         aio_context_release(aio_context);
6479         if (ret < 0) {
6480             bdrv_next_cleanup(&it);
6481             return;
6482         }
6483     }
6484 }
6485 
6486 static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6487 {
6488     BdrvChild *parent;
6489 
6490     QLIST_FOREACH(parent, &bs->parents, next_parent) {
6491         if (parent->klass->parent_is_bds) {
6492             BlockDriverState *parent_bs = parent->opaque;
6493             if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6494                 return true;
6495             }
6496         }
6497     }
6498 
6499     return false;
6500 }
6501 
6502 static int bdrv_inactivate_recurse(BlockDriverState *bs)
6503 {
6504     BdrvChild *child, *parent;
6505     int ret;
6506     uint64_t cumulative_perms, cumulative_shared_perms;
6507 
6508     if (!bs->drv) {
6509         return -ENOMEDIUM;
6510     }
6511 
6512     /* Make sure that we don't inactivate a child before its parent.
6513      * It will be covered by recursion from the yet active parent. */
6514     if (bdrv_has_bds_parent(bs, true)) {
6515         return 0;
6516     }
6517 
6518     assert(!(bs->open_flags & BDRV_O_INACTIVE));
6519 
6520     /* Inactivate this node */
6521     if (bs->drv->bdrv_inactivate) {
6522         ret = bs->drv->bdrv_inactivate(bs);
6523         if (ret < 0) {
6524             return ret;
6525         }
6526     }
6527 
6528     QLIST_FOREACH(parent, &bs->parents, next_parent) {
6529         if (parent->klass->inactivate) {
6530             ret = parent->klass->inactivate(parent);
6531             if (ret < 0) {
6532                 return ret;
6533             }
6534         }
6535     }
6536 
6537     bdrv_get_cumulative_perm(bs, &cumulative_perms,
6538                              &cumulative_shared_perms);
6539     if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
6540         /* Our inactive parents still need write access. Inactivation failed. */
6541         return -EPERM;
6542     }
6543 
6544     bs->open_flags |= BDRV_O_INACTIVE;
6545 
6546     /*
6547      * Update permissions, they may differ for inactive nodes.
6548      * We only tried to loosen restrictions, so errors are not fatal, ignore
6549      * them.
6550      */
6551     bdrv_refresh_perms(bs, NULL);
6552 
6553     /* Recursively inactivate children */
6554     QLIST_FOREACH(child, &bs->children, next) {
6555         ret = bdrv_inactivate_recurse(child->bs);
6556         if (ret < 0) {
6557             return ret;
6558         }
6559     }
6560 
6561     return 0;
6562 }
6563 
6564 int bdrv_inactivate_all(void)
6565 {
6566     BlockDriverState *bs = NULL;
6567     BdrvNextIterator it;
6568     int ret = 0;
6569     GSList *aio_ctxs = NULL, *ctx;
6570 
6571     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6572         AioContext *aio_context = bdrv_get_aio_context(bs);
6573 
6574         if (!g_slist_find(aio_ctxs, aio_context)) {
6575             aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6576             aio_context_acquire(aio_context);
6577         }
6578     }
6579 
6580     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6581         /* Nodes with BDS parents are covered by recursion from the last
6582          * parent that gets inactivated. Don't inactivate them a second
6583          * time if that has already happened. */
6584         if (bdrv_has_bds_parent(bs, false)) {
6585             continue;
6586         }
6587         ret = bdrv_inactivate_recurse(bs);
6588         if (ret < 0) {
6589             bdrv_next_cleanup(&it);
6590             goto out;
6591         }
6592     }
6593 
6594 out:
6595     for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6596         AioContext *aio_context = ctx->data;
6597         aio_context_release(aio_context);
6598     }
6599     g_slist_free(aio_ctxs);
6600 
6601     return ret;
6602 }
6603 
6604 /**************************************************************/
6605 /* removable device support */
6606 
6607 /**
6608  * Return TRUE if the media is present
6609  */
6610 bool bdrv_is_inserted(BlockDriverState *bs)
6611 {
6612     BlockDriver *drv = bs->drv;
6613     BdrvChild *child;
6614 
6615     if (!drv) {
6616         return false;
6617     }
6618     if (drv->bdrv_is_inserted) {
6619         return drv->bdrv_is_inserted(bs);
6620     }
6621     QLIST_FOREACH(child, &bs->children, next) {
6622         if (!bdrv_is_inserted(child->bs)) {
6623             return false;
6624         }
6625     }
6626     return true;
6627 }
6628 
6629 /**
6630  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6631  */
6632 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
6633 {
6634     BlockDriver *drv = bs->drv;
6635 
6636     if (drv && drv->bdrv_eject) {
6637         drv->bdrv_eject(bs, eject_flag);
6638     }
6639 }
6640 
6641 /**
6642  * Lock or unlock the media (if it is locked, the user won't be able
6643  * to eject it manually).
6644  */
6645 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
6646 {
6647     BlockDriver *drv = bs->drv;
6648 
6649     trace_bdrv_lock_medium(bs, locked);
6650 
6651     if (drv && drv->bdrv_lock_medium) {
6652         drv->bdrv_lock_medium(bs, locked);
6653     }
6654 }
6655 
6656 /* Get a reference to bs */
6657 void bdrv_ref(BlockDriverState *bs)
6658 {
6659     bs->refcnt++;
6660 }
6661 
6662 /* Release a previously grabbed reference to bs.
6663  * If after releasing, reference count is zero, the BlockDriverState is
6664  * deleted. */
6665 void bdrv_unref(BlockDriverState *bs)
6666 {
6667     if (!bs) {
6668         return;
6669     }
6670     assert(bs->refcnt > 0);
6671     if (--bs->refcnt == 0) {
6672         bdrv_delete(bs);
6673     }
6674 }
6675 
6676 struct BdrvOpBlocker {
6677     Error *reason;
6678     QLIST_ENTRY(BdrvOpBlocker) list;
6679 };
6680 
6681 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6682 {
6683     BdrvOpBlocker *blocker;
6684     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6685     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6686         blocker = QLIST_FIRST(&bs->op_blockers[op]);
6687         error_propagate_prepend(errp, error_copy(blocker->reason),
6688                                 "Node '%s' is busy: ",
6689                                 bdrv_get_device_or_node_name(bs));
6690         return true;
6691     }
6692     return false;
6693 }
6694 
6695 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6696 {
6697     BdrvOpBlocker *blocker;
6698     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6699 
6700     blocker = g_new0(BdrvOpBlocker, 1);
6701     blocker->reason = reason;
6702     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6703 }
6704 
6705 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6706 {
6707     BdrvOpBlocker *blocker, *next;
6708     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6709     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6710         if (blocker->reason == reason) {
6711             QLIST_REMOVE(blocker, list);
6712             g_free(blocker);
6713         }
6714     }
6715 }
6716 
6717 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6718 {
6719     int i;
6720     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6721         bdrv_op_block(bs, i, reason);
6722     }
6723 }
6724 
6725 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6726 {
6727     int i;
6728     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6729         bdrv_op_unblock(bs, i, reason);
6730     }
6731 }
6732 
6733 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6734 {
6735     int i;
6736 
6737     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6738         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6739             return false;
6740         }
6741     }
6742     return true;
6743 }
6744 
6745 void bdrv_img_create(const char *filename, const char *fmt,
6746                      const char *base_filename, const char *base_fmt,
6747                      char *options, uint64_t img_size, int flags, bool quiet,
6748                      Error **errp)
6749 {
6750     QemuOptsList *create_opts = NULL;
6751     QemuOpts *opts = NULL;
6752     const char *backing_fmt, *backing_file;
6753     int64_t size;
6754     BlockDriver *drv, *proto_drv;
6755     Error *local_err = NULL;
6756     int ret = 0;
6757 
6758     /* Find driver and parse its options */
6759     drv = bdrv_find_format(fmt);
6760     if (!drv) {
6761         error_setg(errp, "Unknown file format '%s'", fmt);
6762         return;
6763     }
6764 
6765     proto_drv = bdrv_find_protocol(filename, true, errp);
6766     if (!proto_drv) {
6767         return;
6768     }
6769 
6770     if (!drv->create_opts) {
6771         error_setg(errp, "Format driver '%s' does not support image creation",
6772                    drv->format_name);
6773         return;
6774     }
6775 
6776     if (!proto_drv->create_opts) {
6777         error_setg(errp, "Protocol driver '%s' does not support image creation",
6778                    proto_drv->format_name);
6779         return;
6780     }
6781 
6782     /* Create parameter list */
6783     create_opts = qemu_opts_append(create_opts, drv->create_opts);
6784     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
6785 
6786     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
6787 
6788     /* Parse -o options */
6789     if (options) {
6790         if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
6791             goto out;
6792         }
6793     }
6794 
6795     if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6796         qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6797     } else if (img_size != UINT64_C(-1)) {
6798         error_setg(errp, "The image size must be specified only once");
6799         goto out;
6800     }
6801 
6802     if (base_filename) {
6803         if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
6804                           NULL)) {
6805             error_setg(errp, "Backing file not supported for file format '%s'",
6806                        fmt);
6807             goto out;
6808         }
6809     }
6810 
6811     if (base_fmt) {
6812         if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
6813             error_setg(errp, "Backing file format not supported for file "
6814                              "format '%s'", fmt);
6815             goto out;
6816         }
6817     }
6818 
6819     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6820     if (backing_file) {
6821         if (!strcmp(filename, backing_file)) {
6822             error_setg(errp, "Error: Trying to create an image with the "
6823                              "same filename as the backing file");
6824             goto out;
6825         }
6826         if (backing_file[0] == '\0') {
6827             error_setg(errp, "Expected backing file name, got empty string");
6828             goto out;
6829         }
6830     }
6831 
6832     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
6833 
6834     /* The size for the image must always be specified, unless we have a backing
6835      * file and we have not been forbidden from opening it. */
6836     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
6837     if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6838         BlockDriverState *bs;
6839         char *full_backing;
6840         int back_flags;
6841         QDict *backing_options = NULL;
6842 
6843         full_backing =
6844             bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6845                                                          &local_err);
6846         if (local_err) {
6847             goto out;
6848         }
6849         assert(full_backing);
6850 
6851         /*
6852          * No need to do I/O here, which allows us to open encrypted
6853          * backing images without needing the secret
6854          */
6855         back_flags = flags;
6856         back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
6857         back_flags |= BDRV_O_NO_IO;
6858 
6859         backing_options = qdict_new();
6860         if (backing_fmt) {
6861             qdict_put_str(backing_options, "driver", backing_fmt);
6862         }
6863         qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
6864 
6865         bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6866                        &local_err);
6867         g_free(full_backing);
6868         if (!bs) {
6869             error_append_hint(&local_err, "Could not open backing image.\n");
6870             goto out;
6871         } else {
6872             if (!backing_fmt) {
6873                 error_setg(&local_err,
6874                            "Backing file specified without backing format");
6875                 error_append_hint(&local_err, "Detected format of %s.",
6876                                   bs->drv->format_name);
6877                 goto out;
6878             }
6879             if (size == -1) {
6880                 /* Opened BS, have no size */
6881                 size = bdrv_getlength(bs);
6882                 if (size < 0) {
6883                     error_setg_errno(errp, -size, "Could not get size of '%s'",
6884                                      backing_file);
6885                     bdrv_unref(bs);
6886                     goto out;
6887                 }
6888                 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6889             }
6890             bdrv_unref(bs);
6891         }
6892         /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6893     } else if (backing_file && !backing_fmt) {
6894         error_setg(&local_err,
6895                    "Backing file specified without backing format");
6896         goto out;
6897     }
6898 
6899     if (size == -1) {
6900         error_setg(errp, "Image creation needs a size parameter");
6901         goto out;
6902     }
6903 
6904     if (!quiet) {
6905         printf("Formatting '%s', fmt=%s ", filename, fmt);
6906         qemu_opts_print(opts, " ");
6907         puts("");
6908         fflush(stdout);
6909     }
6910 
6911     ret = bdrv_create(drv, filename, opts, &local_err);
6912 
6913     if (ret == -EFBIG) {
6914         /* This is generally a better message than whatever the driver would
6915          * deliver (especially because of the cluster_size_hint), since that
6916          * is most probably not much different from "image too large". */
6917         const char *cluster_size_hint = "";
6918         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
6919             cluster_size_hint = " (try using a larger cluster size)";
6920         }
6921         error_setg(errp, "The image size is too large for file format '%s'"
6922                    "%s", fmt, cluster_size_hint);
6923         error_free(local_err);
6924         local_err = NULL;
6925     }
6926 
6927 out:
6928     qemu_opts_del(opts);
6929     qemu_opts_free(create_opts);
6930     error_propagate(errp, local_err);
6931 }
6932 
6933 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6934 {
6935     return bs ? bs->aio_context : qemu_get_aio_context();
6936 }
6937 
6938 AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
6939 {
6940     Coroutine *self = qemu_coroutine_self();
6941     AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
6942     AioContext *new_ctx;
6943 
6944     /*
6945      * Increase bs->in_flight to ensure that this operation is completed before
6946      * moving the node to a different AioContext. Read new_ctx only afterwards.
6947      */
6948     bdrv_inc_in_flight(bs);
6949 
6950     new_ctx = bdrv_get_aio_context(bs);
6951     aio_co_reschedule_self(new_ctx);
6952     return old_ctx;
6953 }
6954 
6955 void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
6956 {
6957     aio_co_reschedule_self(old_ctx);
6958     bdrv_dec_in_flight(bs);
6959 }
6960 
6961 void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
6962 {
6963     AioContext *ctx = bdrv_get_aio_context(bs);
6964 
6965     /* In the main thread, bs->aio_context won't change concurrently */
6966     assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6967 
6968     /*
6969      * We're in coroutine context, so we already hold the lock of the main
6970      * loop AioContext. Don't lock it twice to avoid deadlocks.
6971      */
6972     assert(qemu_in_coroutine());
6973     if (ctx != qemu_get_aio_context()) {
6974         aio_context_acquire(ctx);
6975     }
6976 }
6977 
6978 void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
6979 {
6980     AioContext *ctx = bdrv_get_aio_context(bs);
6981 
6982     assert(qemu_in_coroutine());
6983     if (ctx != qemu_get_aio_context()) {
6984         aio_context_release(ctx);
6985     }
6986 }
6987 
6988 void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6989 {
6990     aio_co_enter(bdrv_get_aio_context(bs), co);
6991 }
6992 
6993 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6994 {
6995     QLIST_REMOVE(ban, list);
6996     g_free(ban);
6997 }
6998 
6999 static void bdrv_detach_aio_context(BlockDriverState *bs)
7000 {
7001     BdrvAioNotifier *baf, *baf_tmp;
7002 
7003     assert(!bs->walking_aio_notifiers);
7004     bs->walking_aio_notifiers = true;
7005     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7006         if (baf->deleted) {
7007             bdrv_do_remove_aio_context_notifier(baf);
7008         } else {
7009             baf->detach_aio_context(baf->opaque);
7010         }
7011     }
7012     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
7013      * remove remaining aio notifiers if we aren't called again.
7014      */
7015     bs->walking_aio_notifiers = false;
7016 
7017     if (bs->drv && bs->drv->bdrv_detach_aio_context) {
7018         bs->drv->bdrv_detach_aio_context(bs);
7019     }
7020 
7021     if (bs->quiesce_counter) {
7022         aio_enable_external(bs->aio_context);
7023     }
7024     bs->aio_context = NULL;
7025 }
7026 
7027 static void bdrv_attach_aio_context(BlockDriverState *bs,
7028                                     AioContext *new_context)
7029 {
7030     BdrvAioNotifier *ban, *ban_tmp;
7031 
7032     if (bs->quiesce_counter) {
7033         aio_disable_external(new_context);
7034     }
7035 
7036     bs->aio_context = new_context;
7037 
7038     if (bs->drv && bs->drv->bdrv_attach_aio_context) {
7039         bs->drv->bdrv_attach_aio_context(bs, new_context);
7040     }
7041 
7042     assert(!bs->walking_aio_notifiers);
7043     bs->walking_aio_notifiers = true;
7044     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7045         if (ban->deleted) {
7046             bdrv_do_remove_aio_context_notifier(ban);
7047         } else {
7048             ban->attached_aio_context(new_context, ban->opaque);
7049         }
7050     }
7051     bs->walking_aio_notifiers = false;
7052 }
7053 
7054 /*
7055  * Changes the AioContext used for fd handlers, timers, and BHs by this
7056  * BlockDriverState and all its children and parents.
7057  *
7058  * Must be called from the main AioContext.
7059  *
7060  * The caller must own the AioContext lock for the old AioContext of bs, but it
7061  * must not own the AioContext lock for new_context (unless new_context is the
7062  * same as the current context of bs).
7063  *
7064  * @ignore will accumulate all visited BdrvChild object. The caller is
7065  * responsible for freeing the list afterwards.
7066  */
7067 void bdrv_set_aio_context_ignore(BlockDriverState *bs,
7068                                  AioContext *new_context, GSList **ignore)
7069 {
7070     AioContext *old_context = bdrv_get_aio_context(bs);
7071     GSList *children_to_process = NULL;
7072     GSList *parents_to_process = NULL;
7073     GSList *entry;
7074     BdrvChild *child, *parent;
7075 
7076     g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7077 
7078     if (old_context == new_context) {
7079         return;
7080     }
7081 
7082     bdrv_drained_begin(bs);
7083 
7084     QLIST_FOREACH(child, &bs->children, next) {
7085         if (g_slist_find(*ignore, child)) {
7086             continue;
7087         }
7088         *ignore = g_slist_prepend(*ignore, child);
7089         children_to_process = g_slist_prepend(children_to_process, child);
7090     }
7091 
7092     QLIST_FOREACH(parent, &bs->parents, next_parent) {
7093         if (g_slist_find(*ignore, parent)) {
7094             continue;
7095         }
7096         *ignore = g_slist_prepend(*ignore, parent);
7097         parents_to_process = g_slist_prepend(parents_to_process, parent);
7098     }
7099 
7100     for (entry = children_to_process;
7101          entry != NULL;
7102          entry = g_slist_next(entry)) {
7103         child = entry->data;
7104         bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
7105     }
7106     g_slist_free(children_to_process);
7107 
7108     for (entry = parents_to_process;
7109          entry != NULL;
7110          entry = g_slist_next(entry)) {
7111         parent = entry->data;
7112         assert(parent->klass->set_aio_ctx);
7113         parent->klass->set_aio_ctx(parent, new_context, ignore);
7114     }
7115     g_slist_free(parents_to_process);
7116 
7117     bdrv_detach_aio_context(bs);
7118 
7119     /* Acquire the new context, if necessary */
7120     if (qemu_get_aio_context() != new_context) {
7121         aio_context_acquire(new_context);
7122     }
7123 
7124     bdrv_attach_aio_context(bs, new_context);
7125 
7126     /*
7127      * If this function was recursively called from
7128      * bdrv_set_aio_context_ignore(), there may be nodes in the
7129      * subtree that have not yet been moved to the new AioContext.
7130      * Release the old one so bdrv_drained_end() can poll them.
7131      */
7132     if (qemu_get_aio_context() != old_context) {
7133         aio_context_release(old_context);
7134     }
7135 
7136     bdrv_drained_end(bs);
7137 
7138     if (qemu_get_aio_context() != old_context) {
7139         aio_context_acquire(old_context);
7140     }
7141     if (qemu_get_aio_context() != new_context) {
7142         aio_context_release(new_context);
7143     }
7144 }
7145 
7146 static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7147                                             GSList **ignore, Error **errp)
7148 {
7149     if (g_slist_find(*ignore, c)) {
7150         return true;
7151     }
7152     *ignore = g_slist_prepend(*ignore, c);
7153 
7154     /*
7155      * A BdrvChildClass that doesn't handle AioContext changes cannot
7156      * tolerate any AioContext changes
7157      */
7158     if (!c->klass->can_set_aio_ctx) {
7159         char *user = bdrv_child_user_desc(c);
7160         error_setg(errp, "Changing iothreads is not supported by %s", user);
7161         g_free(user);
7162         return false;
7163     }
7164     if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
7165         assert(!errp || *errp);
7166         return false;
7167     }
7168     return true;
7169 }
7170 
7171 bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7172                                     GSList **ignore, Error **errp)
7173 {
7174     if (g_slist_find(*ignore, c)) {
7175         return true;
7176     }
7177     *ignore = g_slist_prepend(*ignore, c);
7178     return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
7179 }
7180 
7181 /* @ignore will accumulate all visited BdrvChild object. The caller is
7182  * responsible for freeing the list afterwards. */
7183 bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7184                               GSList **ignore, Error **errp)
7185 {
7186     BdrvChild *c;
7187 
7188     if (bdrv_get_aio_context(bs) == ctx) {
7189         return true;
7190     }
7191 
7192     QLIST_FOREACH(c, &bs->parents, next_parent) {
7193         if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
7194             return false;
7195         }
7196     }
7197     QLIST_FOREACH(c, &bs->children, next) {
7198         if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
7199             return false;
7200         }
7201     }
7202 
7203     return true;
7204 }
7205 
7206 int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7207                                    BdrvChild *ignore_child, Error **errp)
7208 {
7209     GSList *ignore;
7210     bool ret;
7211 
7212     ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7213     ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
7214     g_slist_free(ignore);
7215 
7216     if (!ret) {
7217         return -EPERM;
7218     }
7219 
7220     ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7221     bdrv_set_aio_context_ignore(bs, ctx, &ignore);
7222     g_slist_free(ignore);
7223 
7224     return 0;
7225 }
7226 
7227 int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7228                              Error **errp)
7229 {
7230     return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
7231 }
7232 
7233 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7234         void (*attached_aio_context)(AioContext *new_context, void *opaque),
7235         void (*detach_aio_context)(void *opaque), void *opaque)
7236 {
7237     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7238     *ban = (BdrvAioNotifier){
7239         .attached_aio_context = attached_aio_context,
7240         .detach_aio_context   = detach_aio_context,
7241         .opaque               = opaque
7242     };
7243 
7244     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7245 }
7246 
7247 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7248                                       void (*attached_aio_context)(AioContext *,
7249                                                                    void *),
7250                                       void (*detach_aio_context)(void *),
7251                                       void *opaque)
7252 {
7253     BdrvAioNotifier *ban, *ban_next;
7254 
7255     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7256         if (ban->attached_aio_context == attached_aio_context &&
7257             ban->detach_aio_context   == detach_aio_context   &&
7258             ban->opaque               == opaque               &&
7259             ban->deleted              == false)
7260         {
7261             if (bs->walking_aio_notifiers) {
7262                 ban->deleted = true;
7263             } else {
7264                 bdrv_do_remove_aio_context_notifier(ban);
7265             }
7266             return;
7267         }
7268     }
7269 
7270     abort();
7271 }
7272 
7273 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
7274                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
7275                        bool force,
7276                        Error **errp)
7277 {
7278     if (!bs->drv) {
7279         error_setg(errp, "Node is ejected");
7280         return -ENOMEDIUM;
7281     }
7282     if (!bs->drv->bdrv_amend_options) {
7283         error_setg(errp, "Block driver '%s' does not support option amendment",
7284                    bs->drv->format_name);
7285         return -ENOTSUP;
7286     }
7287     return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7288                                        cb_opaque, force, errp);
7289 }
7290 
7291 /*
7292  * This function checks whether the given @to_replace is allowed to be
7293  * replaced by a node that always shows the same data as @bs.  This is
7294  * used for example to verify whether the mirror job can replace
7295  * @to_replace by the target mirrored from @bs.
7296  * To be replaceable, @bs and @to_replace may either be guaranteed to
7297  * always show the same data (because they are only connected through
7298  * filters), or some driver may allow replacing one of its children
7299  * because it can guarantee that this child's data is not visible at
7300  * all (for example, for dissenting quorum children that have no other
7301  * parents).
7302  */
7303 bool bdrv_recurse_can_replace(BlockDriverState *bs,
7304                               BlockDriverState *to_replace)
7305 {
7306     BlockDriverState *filtered;
7307 
7308     if (!bs || !bs->drv) {
7309         return false;
7310     }
7311 
7312     if (bs == to_replace) {
7313         return true;
7314     }
7315 
7316     /* See what the driver can do */
7317     if (bs->drv->bdrv_recurse_can_replace) {
7318         return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7319     }
7320 
7321     /* For filters without an own implementation, we can recurse on our own */
7322     filtered = bdrv_filter_bs(bs);
7323     if (filtered) {
7324         return bdrv_recurse_can_replace(filtered, to_replace);
7325     }
7326 
7327     /* Safe default */
7328     return false;
7329 }
7330 
7331 /*
7332  * Check whether the given @node_name can be replaced by a node that
7333  * has the same data as @parent_bs.  If so, return @node_name's BDS;
7334  * NULL otherwise.
7335  *
7336  * @node_name must be a (recursive) *child of @parent_bs (or this
7337  * function will return NULL).
7338  *
7339  * The result (whether the node can be replaced or not) is only valid
7340  * for as long as no graph or permission changes occur.
7341  */
7342 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7343                                         const char *node_name, Error **errp)
7344 {
7345     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
7346     AioContext *aio_context;
7347 
7348     if (!to_replace_bs) {
7349         error_setg(errp, "Failed to find node with node-name='%s'", node_name);
7350         return NULL;
7351     }
7352 
7353     aio_context = bdrv_get_aio_context(to_replace_bs);
7354     aio_context_acquire(aio_context);
7355 
7356     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
7357         to_replace_bs = NULL;
7358         goto out;
7359     }
7360 
7361     /* We don't want arbitrary node of the BDS chain to be replaced only the top
7362      * most non filter in order to prevent data corruption.
7363      * Another benefit is that this tests exclude backing files which are
7364      * blocked by the backing blockers.
7365      */
7366     if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7367         error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7368                    "because it cannot be guaranteed that doing so would not "
7369                    "lead to an abrupt change of visible data",
7370                    node_name, parent_bs->node_name);
7371         to_replace_bs = NULL;
7372         goto out;
7373     }
7374 
7375 out:
7376     aio_context_release(aio_context);
7377     return to_replace_bs;
7378 }
7379 
7380 /**
7381  * Iterates through the list of runtime option keys that are said to
7382  * be "strong" for a BDS.  An option is called "strong" if it changes
7383  * a BDS's data.  For example, the null block driver's "size" and
7384  * "read-zeroes" options are strong, but its "latency-ns" option is
7385  * not.
7386  *
7387  * If a key returned by this function ends with a dot, all options
7388  * starting with that prefix are strong.
7389  */
7390 static const char *const *strong_options(BlockDriverState *bs,
7391                                          const char *const *curopt)
7392 {
7393     static const char *const global_options[] = {
7394         "driver", "filename", NULL
7395     };
7396 
7397     if (!curopt) {
7398         return &global_options[0];
7399     }
7400 
7401     curopt++;
7402     if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7403         curopt = bs->drv->strong_runtime_opts;
7404     }
7405 
7406     return (curopt && *curopt) ? curopt : NULL;
7407 }
7408 
7409 /**
7410  * Copies all strong runtime options from bs->options to the given
7411  * QDict.  The set of strong option keys is determined by invoking
7412  * strong_options().
7413  *
7414  * Returns true iff any strong option was present in bs->options (and
7415  * thus copied to the target QDict) with the exception of "filename"
7416  * and "driver".  The caller is expected to use this value to decide
7417  * whether the existence of strong options prevents the generation of
7418  * a plain filename.
7419  */
7420 static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7421 {
7422     bool found_any = false;
7423     const char *const *option_name = NULL;
7424 
7425     if (!bs->drv) {
7426         return false;
7427     }
7428 
7429     while ((option_name = strong_options(bs, option_name))) {
7430         bool option_given = false;
7431 
7432         assert(strlen(*option_name) > 0);
7433         if ((*option_name)[strlen(*option_name) - 1] != '.') {
7434             QObject *entry = qdict_get(bs->options, *option_name);
7435             if (!entry) {
7436                 continue;
7437             }
7438 
7439             qdict_put_obj(d, *option_name, qobject_ref(entry));
7440             option_given = true;
7441         } else {
7442             const QDictEntry *entry;
7443             for (entry = qdict_first(bs->options); entry;
7444                  entry = qdict_next(bs->options, entry))
7445             {
7446                 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7447                     qdict_put_obj(d, qdict_entry_key(entry),
7448                                   qobject_ref(qdict_entry_value(entry)));
7449                     option_given = true;
7450                 }
7451             }
7452         }
7453 
7454         /* While "driver" and "filename" need to be included in a JSON filename,
7455          * their existence does not prohibit generation of a plain filename. */
7456         if (!found_any && option_given &&
7457             strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7458         {
7459             found_any = true;
7460         }
7461     }
7462 
7463     if (!qdict_haskey(d, "driver")) {
7464         /* Drivers created with bdrv_new_open_driver() may not have a
7465          * @driver option.  Add it here. */
7466         qdict_put_str(d, "driver", bs->drv->format_name);
7467     }
7468 
7469     return found_any;
7470 }
7471 
7472 /* Note: This function may return false positives; it may return true
7473  * even if opening the backing file specified by bs's image header
7474  * would result in exactly bs->backing. */
7475 static bool bdrv_backing_overridden(BlockDriverState *bs)
7476 {
7477     if (bs->backing) {
7478         return strcmp(bs->auto_backing_file,
7479                       bs->backing->bs->filename);
7480     } else {
7481         /* No backing BDS, so if the image header reports any backing
7482          * file, it must have been suppressed */
7483         return bs->auto_backing_file[0] != '\0';
7484     }
7485 }
7486 
7487 /* Updates the following BDS fields:
7488  *  - exact_filename: A filename which may be used for opening a block device
7489  *                    which (mostly) equals the given BDS (even without any
7490  *                    other options; so reading and writing must return the same
7491  *                    results, but caching etc. may be different)
7492  *  - full_open_options: Options which, when given when opening a block device
7493  *                       (without a filename), result in a BDS (mostly)
7494  *                       equalling the given one
7495  *  - filename: If exact_filename is set, it is copied here. Otherwise,
7496  *              full_open_options is converted to a JSON object, prefixed with
7497  *              "json:" (for use through the JSON pseudo protocol) and put here.
7498  */
7499 void bdrv_refresh_filename(BlockDriverState *bs)
7500 {
7501     BlockDriver *drv = bs->drv;
7502     BdrvChild *child;
7503     BlockDriverState *primary_child_bs;
7504     QDict *opts;
7505     bool backing_overridden;
7506     bool generate_json_filename; /* Whether our default implementation should
7507                                     fill exact_filename (false) or not (true) */
7508 
7509     if (!drv) {
7510         return;
7511     }
7512 
7513     /* This BDS's file name may depend on any of its children's file names, so
7514      * refresh those first */
7515     QLIST_FOREACH(child, &bs->children, next) {
7516         bdrv_refresh_filename(child->bs);
7517     }
7518 
7519     if (bs->implicit) {
7520         /* For implicit nodes, just copy everything from the single child */
7521         child = QLIST_FIRST(&bs->children);
7522         assert(QLIST_NEXT(child, next) == NULL);
7523 
7524         pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7525                 child->bs->exact_filename);
7526         pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7527 
7528         qobject_unref(bs->full_open_options);
7529         bs->full_open_options = qobject_ref(child->bs->full_open_options);
7530 
7531         return;
7532     }
7533 
7534     backing_overridden = bdrv_backing_overridden(bs);
7535 
7536     if (bs->open_flags & BDRV_O_NO_IO) {
7537         /* Without I/O, the backing file does not change anything.
7538          * Therefore, in such a case (primarily qemu-img), we can
7539          * pretend the backing file has not been overridden even if
7540          * it technically has been. */
7541         backing_overridden = false;
7542     }
7543 
7544     /* Gather the options QDict */
7545     opts = qdict_new();
7546     generate_json_filename = append_strong_runtime_options(opts, bs);
7547     generate_json_filename |= backing_overridden;
7548 
7549     if (drv->bdrv_gather_child_options) {
7550         /* Some block drivers may not want to present all of their children's
7551          * options, or name them differently from BdrvChild.name */
7552         drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7553     } else {
7554         QLIST_FOREACH(child, &bs->children, next) {
7555             if (child == bs->backing && !backing_overridden) {
7556                 /* We can skip the backing BDS if it has not been overridden */
7557                 continue;
7558             }
7559 
7560             qdict_put(opts, child->name,
7561                       qobject_ref(child->bs->full_open_options));
7562         }
7563 
7564         if (backing_overridden && !bs->backing) {
7565             /* Force no backing file */
7566             qdict_put_null(opts, "backing");
7567         }
7568     }
7569 
7570     qobject_unref(bs->full_open_options);
7571     bs->full_open_options = opts;
7572 
7573     primary_child_bs = bdrv_primary_bs(bs);
7574 
7575     if (drv->bdrv_refresh_filename) {
7576         /* Obsolete information is of no use here, so drop the old file name
7577          * information before refreshing it */
7578         bs->exact_filename[0] = '\0';
7579 
7580         drv->bdrv_refresh_filename(bs);
7581     } else if (primary_child_bs) {
7582         /*
7583          * Try to reconstruct valid information from the underlying
7584          * file -- this only works for format nodes (filter nodes
7585          * cannot be probed and as such must be selected by the user
7586          * either through an options dict, or through a special
7587          * filename which the filter driver must construct in its
7588          * .bdrv_refresh_filename() implementation).
7589          */
7590 
7591         bs->exact_filename[0] = '\0';
7592 
7593         /*
7594          * We can use the underlying file's filename if:
7595          * - it has a filename,
7596          * - the current BDS is not a filter,
7597          * - the file is a protocol BDS, and
7598          * - opening that file (as this BDS's format) will automatically create
7599          *   the BDS tree we have right now, that is:
7600          *   - the user did not significantly change this BDS's behavior with
7601          *     some explicit (strong) options
7602          *   - no non-file child of this BDS has been overridden by the user
7603          *   Both of these conditions are represented by generate_json_filename.
7604          */
7605         if (primary_child_bs->exact_filename[0] &&
7606             primary_child_bs->drv->bdrv_file_open &&
7607             !drv->is_filter && !generate_json_filename)
7608         {
7609             strcpy(bs->exact_filename, primary_child_bs->exact_filename);
7610         }
7611     }
7612 
7613     if (bs->exact_filename[0]) {
7614         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
7615     } else {
7616         GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
7617         if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
7618                      json->str) >= sizeof(bs->filename)) {
7619             /* Give user a hint if we truncated things. */
7620             strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7621         }
7622         g_string_free(json, true);
7623     }
7624 }
7625 
7626 char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7627 {
7628     BlockDriver *drv = bs->drv;
7629     BlockDriverState *child_bs;
7630 
7631     if (!drv) {
7632         error_setg(errp, "Node '%s' is ejected", bs->node_name);
7633         return NULL;
7634     }
7635 
7636     if (drv->bdrv_dirname) {
7637         return drv->bdrv_dirname(bs, errp);
7638     }
7639 
7640     child_bs = bdrv_primary_bs(bs);
7641     if (child_bs) {
7642         return bdrv_dirname(child_bs, errp);
7643     }
7644 
7645     bdrv_refresh_filename(bs);
7646     if (bs->exact_filename[0] != '\0') {
7647         return path_combine(bs->exact_filename, "");
7648     }
7649 
7650     error_setg(errp, "Cannot generate a base directory for %s nodes",
7651                drv->format_name);
7652     return NULL;
7653 }
7654 
7655 /*
7656  * Hot add/remove a BDS's child. So the user can take a child offline when
7657  * it is broken and take a new child online
7658  */
7659 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7660                     Error **errp)
7661 {
7662 
7663     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7664         error_setg(errp, "The node %s does not support adding a child",
7665                    bdrv_get_device_or_node_name(parent_bs));
7666         return;
7667     }
7668 
7669     if (!QLIST_EMPTY(&child_bs->parents)) {
7670         error_setg(errp, "The node %s already has a parent",
7671                    child_bs->node_name);
7672         return;
7673     }
7674 
7675     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7676 }
7677 
7678 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7679 {
7680     BdrvChild *tmp;
7681 
7682     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7683         error_setg(errp, "The node %s does not support removing a child",
7684                    bdrv_get_device_or_node_name(parent_bs));
7685         return;
7686     }
7687 
7688     QLIST_FOREACH(tmp, &parent_bs->children, next) {
7689         if (tmp == child) {
7690             break;
7691         }
7692     }
7693 
7694     if (!tmp) {
7695         error_setg(errp, "The node %s does not have a child named %s",
7696                    bdrv_get_device_or_node_name(parent_bs),
7697                    bdrv_get_device_or_node_name(child->bs));
7698         return;
7699     }
7700 
7701     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7702 }
7703 
7704 int bdrv_make_empty(BdrvChild *c, Error **errp)
7705 {
7706     BlockDriver *drv = c->bs->drv;
7707     int ret;
7708 
7709     assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7710 
7711     if (!drv->bdrv_make_empty) {
7712         error_setg(errp, "%s does not support emptying nodes",
7713                    drv->format_name);
7714         return -ENOTSUP;
7715     }
7716 
7717     ret = drv->bdrv_make_empty(c->bs);
7718     if (ret < 0) {
7719         error_setg_errno(errp, -ret, "Failed to empty %s",
7720                          c->bs->filename);
7721         return ret;
7722     }
7723 
7724     return 0;
7725 }
7726 
7727 /*
7728  * Return the child that @bs acts as an overlay for, and from which data may be
7729  * copied in COW or COR operations.  Usually this is the backing file.
7730  */
7731 BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7732 {
7733     if (!bs || !bs->drv) {
7734         return NULL;
7735     }
7736 
7737     if (bs->drv->is_filter) {
7738         return NULL;
7739     }
7740 
7741     if (!bs->backing) {
7742         return NULL;
7743     }
7744 
7745     assert(bs->backing->role & BDRV_CHILD_COW);
7746     return bs->backing;
7747 }
7748 
7749 /*
7750  * If @bs acts as a filter for exactly one of its children, return
7751  * that child.
7752  */
7753 BdrvChild *bdrv_filter_child(BlockDriverState *bs)
7754 {
7755     BdrvChild *c;
7756 
7757     if (!bs || !bs->drv) {
7758         return NULL;
7759     }
7760 
7761     if (!bs->drv->is_filter) {
7762         return NULL;
7763     }
7764 
7765     /* Only one of @backing or @file may be used */
7766     assert(!(bs->backing && bs->file));
7767 
7768     c = bs->backing ?: bs->file;
7769     if (!c) {
7770         return NULL;
7771     }
7772 
7773     assert(c->role & BDRV_CHILD_FILTERED);
7774     return c;
7775 }
7776 
7777 /*
7778  * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7779  * whichever is non-NULL.
7780  *
7781  * Return NULL if both are NULL.
7782  */
7783 BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
7784 {
7785     BdrvChild *cow_child = bdrv_cow_child(bs);
7786     BdrvChild *filter_child = bdrv_filter_child(bs);
7787 
7788     /* Filter nodes cannot have COW backing files */
7789     assert(!(cow_child && filter_child));
7790 
7791     return cow_child ?: filter_child;
7792 }
7793 
7794 /*
7795  * Return the primary child of this node: For filters, that is the
7796  * filtered child.  For other nodes, that is usually the child storing
7797  * metadata.
7798  * (A generally more helpful description is that this is (usually) the
7799  * child that has the same filename as @bs.)
7800  *
7801  * Drivers do not necessarily have a primary child; for example quorum
7802  * does not.
7803  */
7804 BdrvChild *bdrv_primary_child(BlockDriverState *bs)
7805 {
7806     BdrvChild *c, *found = NULL;
7807 
7808     QLIST_FOREACH(c, &bs->children, next) {
7809         if (c->role & BDRV_CHILD_PRIMARY) {
7810             assert(!found);
7811             found = c;
7812         }
7813     }
7814 
7815     return found;
7816 }
7817 
7818 static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
7819                                               bool stop_on_explicit_filter)
7820 {
7821     BdrvChild *c;
7822 
7823     if (!bs) {
7824         return NULL;
7825     }
7826 
7827     while (!(stop_on_explicit_filter && !bs->implicit)) {
7828         c = bdrv_filter_child(bs);
7829         if (!c) {
7830             /*
7831              * A filter that is embedded in a working block graph must
7832              * have a child.  Assert this here so this function does
7833              * not return a filter node that is not expected by the
7834              * caller.
7835              */
7836             assert(!bs->drv || !bs->drv->is_filter);
7837             break;
7838         }
7839         bs = c->bs;
7840     }
7841     /*
7842      * Note that this treats nodes with bs->drv == NULL as not being
7843      * filters (bs->drv == NULL should be replaced by something else
7844      * anyway).
7845      * The advantage of this behavior is that this function will thus
7846      * always return a non-NULL value (given a non-NULL @bs).
7847      */
7848 
7849     return bs;
7850 }
7851 
7852 /*
7853  * Return the first BDS that has not been added implicitly or that
7854  * does not have a filtered child down the chain starting from @bs
7855  * (including @bs itself).
7856  */
7857 BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
7858 {
7859     return bdrv_do_skip_filters(bs, true);
7860 }
7861 
7862 /*
7863  * Return the first BDS that does not have a filtered child down the
7864  * chain starting from @bs (including @bs itself).
7865  */
7866 BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
7867 {
7868     return bdrv_do_skip_filters(bs, false);
7869 }
7870 
7871 /*
7872  * For a backing chain, return the first non-filter backing image of
7873  * the first non-filter image.
7874  */
7875 BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
7876 {
7877     return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
7878 }
7879 
7880 /**
7881  * Check whether [offset, offset + bytes) overlaps with the cached
7882  * block-status data region.
7883  *
7884  * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
7885  * which is what bdrv_bsc_is_data()'s interface needs.
7886  * Otherwise, *pnum is not touched.
7887  */
7888 static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
7889                                            int64_t offset, int64_t bytes,
7890                                            int64_t *pnum)
7891 {
7892     BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
7893     bool overlaps;
7894 
7895     overlaps =
7896         qatomic_read(&bsc->valid) &&
7897         ranges_overlap(offset, bytes, bsc->data_start,
7898                        bsc->data_end - bsc->data_start);
7899 
7900     if (overlaps && pnum) {
7901         *pnum = bsc->data_end - offset;
7902     }
7903 
7904     return overlaps;
7905 }
7906 
7907 /**
7908  * See block_int.h for this function's documentation.
7909  */
7910 bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
7911 {
7912     RCU_READ_LOCK_GUARD();
7913 
7914     return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
7915 }
7916 
7917 /**
7918  * See block_int.h for this function's documentation.
7919  */
7920 void bdrv_bsc_invalidate_range(BlockDriverState *bs,
7921                                int64_t offset, int64_t bytes)
7922 {
7923     RCU_READ_LOCK_GUARD();
7924 
7925     if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
7926         qatomic_set(&bs->block_status_cache->valid, false);
7927     }
7928 }
7929 
7930 /**
7931  * See block_int.h for this function's documentation.
7932  */
7933 void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
7934 {
7935     BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
7936     BdrvBlockStatusCache *old_bsc;
7937 
7938     *new_bsc = (BdrvBlockStatusCache) {
7939         .valid = true,
7940         .data_start = offset,
7941         .data_end = offset + bytes,
7942     };
7943 
7944     QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
7945 
7946     old_bsc = qatomic_rcu_read(&bs->block_status_cache);
7947     qatomic_rcu_set(&bs->block_status_cache, new_bsc);
7948     if (old_bsc) {
7949         g_free_rcu(old_bsc, rcu);
7950     }
7951 }
7952