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