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