xref: /openbmc/qemu/block.c (revision 1b6cc579ded4f9d7923d9d59147512edd623f4c0)
1fc01f7e7Sbellard /*
2fc01f7e7Sbellard  * QEMU System Emulator block driver
3fc01f7e7Sbellard  *
4fc01f7e7Sbellard  * Copyright (c) 2003 Fabrice Bellard
5fc01f7e7Sbellard  *
6fc01f7e7Sbellard  * Permission is hereby granted, free of charge, to any person obtaining a copy
7fc01f7e7Sbellard  * of this software and associated documentation files (the "Software"), to deal
8fc01f7e7Sbellard  * in the Software without restriction, including without limitation the rights
9fc01f7e7Sbellard  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10fc01f7e7Sbellard  * copies of the Software, and to permit persons to whom the Software is
11fc01f7e7Sbellard  * furnished to do so, subject to the following conditions:
12fc01f7e7Sbellard  *
13fc01f7e7Sbellard  * The above copyright notice and this permission notice shall be included in
14fc01f7e7Sbellard  * all copies or substantial portions of the Software.
15fc01f7e7Sbellard  *
16fc01f7e7Sbellard  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17fc01f7e7Sbellard  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18fc01f7e7Sbellard  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19fc01f7e7Sbellard  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20fc01f7e7Sbellard  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21fc01f7e7Sbellard  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22fc01f7e7Sbellard  * THE SOFTWARE.
23fc01f7e7Sbellard  */
24d38ea87aSPeter Maydell #include "qemu/osdep.h"
250ab8ed18SDaniel P. Berrange #include "block/trace.h"
26737e150eSPaolo Bonzini #include "block/block_int.h"
27737e150eSPaolo Bonzini #include "block/blockjob.h"
28cd7fca95SKevin Wolf #include "block/nbd.h"
29d49b6836SMarkus Armbruster #include "qemu/error-report.h"
3088d88798SMarc Mari #include "module_block.h"
311de7afc9SPaolo Bonzini #include "qemu/module.h"
32cc7a8ea7SMarkus Armbruster #include "qapi/qmp/qerror.h"
3391a097e7SKevin Wolf #include "qapi/qmp/qbool.h"
347b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h"
35bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h"
369c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
371de7afc9SPaolo Bonzini #include "qemu/notify.h"
3810817bf0SDaniel P. Berrange #include "qemu/coroutine.h"
39c13163fbSBenoît Canet #include "block/qapi.h"
40b2023818SLuiz Capitulino #include "qmp-commands.h"
411de7afc9SPaolo Bonzini #include "qemu/timer.h"
42a5ee7bd4SWenchao Xia #include "qapi-event.h"
43f348b6d1SVeronia Bahaa #include "qemu/cutils.h"
44f348b6d1SVeronia Bahaa #include "qemu/id.h"
45fc01f7e7Sbellard 
4671e72a19SJuan Quintela #ifdef CONFIG_BSD
477674e7bfSbellard #include <sys/ioctl.h>
4872cf2d4fSBlue Swirl #include <sys/queue.h>
49c5e97233Sblueswir1 #ifndef __DragonFly__
507674e7bfSbellard #include <sys/disk.h>
517674e7bfSbellard #endif
52c5e97233Sblueswir1 #endif
537674e7bfSbellard 
5449dc768dSaliguori #ifdef _WIN32
5549dc768dSaliguori #include <windows.h>
5649dc768dSaliguori #endif
5749dc768dSaliguori 
581c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
591c9805a3SStefan Hajnoczi 
60dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
61dc364f4cSBenoît Canet     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
62dc364f4cSBenoît Canet 
632c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
642c1d04e0SMax Reitz     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
652c1d04e0SMax Reitz 
668a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers =
678a22f02aSStefan Hajnoczi     QLIST_HEAD_INITIALIZER(bdrv_drivers);
68ea2384d3Sbellard 
695b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
705b363937SMax Reitz                                            const char *reference,
715b363937SMax Reitz                                            QDict *options, int flags,
72f3930ed0SKevin Wolf                                            BlockDriverState *parent,
735b363937SMax Reitz                                            const BdrvChildRole *child_role,
745b363937SMax Reitz                                            Error **errp);
75f3930ed0SKevin Wolf 
76eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */
77eb852011SMarkus Armbruster static int use_bdrv_whitelist;
78eb852011SMarkus Armbruster 
799e0b22f4SStefan Hajnoczi #ifdef _WIN32
809e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename)
819e0b22f4SStefan Hajnoczi {
829e0b22f4SStefan Hajnoczi     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
839e0b22f4SStefan Hajnoczi              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
849e0b22f4SStefan Hajnoczi             filename[1] == ':');
859e0b22f4SStefan Hajnoczi }
869e0b22f4SStefan Hajnoczi 
879e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename)
889e0b22f4SStefan Hajnoczi {
899e0b22f4SStefan Hajnoczi     if (is_windows_drive_prefix(filename) &&
909e0b22f4SStefan Hajnoczi         filename[2] == '\0')
919e0b22f4SStefan Hajnoczi         return 1;
929e0b22f4SStefan Hajnoczi     if (strstart(filename, "\\\\.\\", NULL) ||
939e0b22f4SStefan Hajnoczi         strstart(filename, "//./", NULL))
949e0b22f4SStefan Hajnoczi         return 1;
959e0b22f4SStefan Hajnoczi     return 0;
969e0b22f4SStefan Hajnoczi }
979e0b22f4SStefan Hajnoczi #endif
989e0b22f4SStefan Hajnoczi 
99339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs)
100339064d5SKevin Wolf {
101339064d5SKevin Wolf     if (!bs || !bs->drv) {
102459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
103459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
104339064d5SKevin Wolf     }
105339064d5SKevin Wolf 
106339064d5SKevin Wolf     return bs->bl.opt_mem_alignment;
107339064d5SKevin Wolf }
108339064d5SKevin Wolf 
1094196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs)
1104196d2f0SDenis V. Lunev {
1114196d2f0SDenis V. Lunev     if (!bs || !bs->drv) {
112459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
113459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
1144196d2f0SDenis V. Lunev     }
1154196d2f0SDenis V. Lunev 
1164196d2f0SDenis V. Lunev     return bs->bl.min_mem_alignment;
1174196d2f0SDenis V. Lunev }
1184196d2f0SDenis V. Lunev 
1199e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */
1205c98415bSMax Reitz int path_has_protocol(const char *path)
1219e0b22f4SStefan Hajnoczi {
122947995c0SPaolo Bonzini     const char *p;
123947995c0SPaolo Bonzini 
1249e0b22f4SStefan Hajnoczi #ifdef _WIN32
1259e0b22f4SStefan Hajnoczi     if (is_windows_drive(path) ||
1269e0b22f4SStefan Hajnoczi         is_windows_drive_prefix(path)) {
1279e0b22f4SStefan Hajnoczi         return 0;
1289e0b22f4SStefan Hajnoczi     }
129947995c0SPaolo Bonzini     p = path + strcspn(path, ":/\\");
130947995c0SPaolo Bonzini #else
131947995c0SPaolo Bonzini     p = path + strcspn(path, ":/");
1329e0b22f4SStefan Hajnoczi #endif
1339e0b22f4SStefan Hajnoczi 
134947995c0SPaolo Bonzini     return *p == ':';
1359e0b22f4SStefan Hajnoczi }
1369e0b22f4SStefan Hajnoczi 
13783f64091Sbellard int path_is_absolute(const char *path)
13883f64091Sbellard {
13921664424Sbellard #ifdef _WIN32
14021664424Sbellard     /* specific case for names like: "\\.\d:" */
141f53f4da9SPaolo Bonzini     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
14221664424Sbellard         return 1;
143f53f4da9SPaolo Bonzini     }
144f53f4da9SPaolo Bonzini     return (*path == '/' || *path == '\\');
1453b9f94e1Sbellard #else
146f53f4da9SPaolo Bonzini     return (*path == '/');
1473b9f94e1Sbellard #endif
14883f64091Sbellard }
14983f64091Sbellard 
15083f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a
15183f64091Sbellard    path to it by considering it is relative to base_path. URL are
15283f64091Sbellard    supported. */
15383f64091Sbellard void path_combine(char *dest, int dest_size,
15483f64091Sbellard                   const char *base_path,
15583f64091Sbellard                   const char *filename)
15683f64091Sbellard {
15783f64091Sbellard     const char *p, *p1;
15883f64091Sbellard     int len;
15983f64091Sbellard 
16083f64091Sbellard     if (dest_size <= 0)
16183f64091Sbellard         return;
16283f64091Sbellard     if (path_is_absolute(filename)) {
16383f64091Sbellard         pstrcpy(dest, dest_size, filename);
16483f64091Sbellard     } else {
1650d54a6feSMax Reitz         const char *protocol_stripped = NULL;
1660d54a6feSMax Reitz 
1670d54a6feSMax Reitz         if (path_has_protocol(base_path)) {
1680d54a6feSMax Reitz             protocol_stripped = strchr(base_path, ':');
1690d54a6feSMax Reitz             if (protocol_stripped) {
1700d54a6feSMax Reitz                 protocol_stripped++;
1710d54a6feSMax Reitz             }
1720d54a6feSMax Reitz         }
1730d54a6feSMax Reitz         p = protocol_stripped ?: base_path;
1740d54a6feSMax Reitz 
1753b9f94e1Sbellard         p1 = strrchr(base_path, '/');
1763b9f94e1Sbellard #ifdef _WIN32
1773b9f94e1Sbellard         {
1783b9f94e1Sbellard             const char *p2;
1793b9f94e1Sbellard             p2 = strrchr(base_path, '\\');
1803b9f94e1Sbellard             if (!p1 || p2 > p1)
1813b9f94e1Sbellard                 p1 = p2;
1823b9f94e1Sbellard         }
1833b9f94e1Sbellard #endif
18483f64091Sbellard         if (p1)
18583f64091Sbellard             p1++;
18683f64091Sbellard         else
18783f64091Sbellard             p1 = base_path;
18883f64091Sbellard         if (p1 > p)
18983f64091Sbellard             p = p1;
19083f64091Sbellard         len = p - base_path;
19183f64091Sbellard         if (len > dest_size - 1)
19283f64091Sbellard             len = dest_size - 1;
19383f64091Sbellard         memcpy(dest, base_path, len);
19483f64091Sbellard         dest[len] = '\0';
19583f64091Sbellard         pstrcat(dest, dest_size, filename);
19683f64091Sbellard     }
19783f64091Sbellard }
19883f64091Sbellard 
19903c320d8SMax Reitz /*
20003c320d8SMax Reitz  * Helper function for bdrv_parse_filename() implementations to remove optional
20103c320d8SMax Reitz  * protocol prefixes (especially "file:") from a filename and for putting the
20203c320d8SMax Reitz  * stripped filename into the options QDict if there is such a prefix.
20303c320d8SMax Reitz  */
20403c320d8SMax Reitz void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
20503c320d8SMax Reitz                                       QDict *options)
20603c320d8SMax Reitz {
20703c320d8SMax Reitz     if (strstart(filename, prefix, &filename)) {
20803c320d8SMax Reitz         /* Stripping the explicit protocol prefix may result in a protocol
20903c320d8SMax Reitz          * prefix being (wrongly) detected (if the filename contains a colon) */
21003c320d8SMax Reitz         if (path_has_protocol(filename)) {
21103c320d8SMax Reitz             QString *fat_filename;
21203c320d8SMax Reitz 
21303c320d8SMax Reitz             /* This means there is some colon before the first slash; therefore,
21403c320d8SMax Reitz              * this cannot be an absolute path */
21503c320d8SMax Reitz             assert(!path_is_absolute(filename));
21603c320d8SMax Reitz 
21703c320d8SMax Reitz             /* And we can thus fix the protocol detection issue by prefixing it
21803c320d8SMax Reitz              * by "./" */
21903c320d8SMax Reitz             fat_filename = qstring_from_str("./");
22003c320d8SMax Reitz             qstring_append(fat_filename, filename);
22103c320d8SMax Reitz 
22203c320d8SMax Reitz             assert(!path_has_protocol(qstring_get_str(fat_filename)));
22303c320d8SMax Reitz 
22403c320d8SMax Reitz             qdict_put(options, "filename", fat_filename);
22503c320d8SMax Reitz         } else {
22603c320d8SMax Reitz             /* If no protocol prefix was detected, we can use the shortened
22703c320d8SMax Reitz              * filename as-is */
22803c320d8SMax Reitz             qdict_put_str(options, "filename", filename);
22903c320d8SMax Reitz         }
23003c320d8SMax Reitz     }
23103c320d8SMax Reitz }
23203c320d8SMax Reitz 
23303c320d8SMax Reitz 
2349c5e6594SKevin Wolf /* Returns whether the image file is opened as read-only. Note that this can
2359c5e6594SKevin Wolf  * return false and writing to the image file is still not possible because the
2369c5e6594SKevin Wolf  * image is inactivated. */
23793ed524eSJeff Cody bool bdrv_is_read_only(BlockDriverState *bs)
23893ed524eSJeff Cody {
23993ed524eSJeff Cody     return bs->read_only;
24093ed524eSJeff Cody }
24193ed524eSJeff Cody 
24254a32bfeSKevin Wolf int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
24354a32bfeSKevin Wolf                            bool ignore_allow_rdw, Error **errp)
244fe5241bfSJeff Cody {
245e2b8247aSJeff Cody     /* Do not set read_only if copy_on_read is enabled */
246e2b8247aSJeff Cody     if (bs->copy_on_read && read_only) {
247e2b8247aSJeff Cody         error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
248e2b8247aSJeff Cody                    bdrv_get_device_or_node_name(bs));
249e2b8247aSJeff Cody         return -EINVAL;
250e2b8247aSJeff Cody     }
251e2b8247aSJeff Cody 
252d6fcdf06SJeff Cody     /* Do not clear read_only if it is prohibited */
25354a32bfeSKevin Wolf     if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
25454a32bfeSKevin Wolf         !ignore_allow_rdw)
25554a32bfeSKevin Wolf     {
256d6fcdf06SJeff Cody         error_setg(errp, "Node '%s' is read only",
257d6fcdf06SJeff Cody                    bdrv_get_device_or_node_name(bs));
258d6fcdf06SJeff Cody         return -EPERM;
259d6fcdf06SJeff Cody     }
260d6fcdf06SJeff Cody 
26145803a03SJeff Cody     return 0;
26245803a03SJeff Cody }
26345803a03SJeff Cody 
26445803a03SJeff Cody int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp)
26545803a03SJeff Cody {
26645803a03SJeff Cody     int ret = 0;
26745803a03SJeff Cody 
26854a32bfeSKevin Wolf     ret = bdrv_can_set_read_only(bs, read_only, false, errp);
26945803a03SJeff Cody     if (ret < 0) {
27045803a03SJeff Cody         return ret;
27145803a03SJeff Cody     }
27245803a03SJeff Cody 
273fe5241bfSJeff Cody     bs->read_only = read_only;
274e2b8247aSJeff Cody     return 0;
275fe5241bfSJeff Cody }
276fe5241bfSJeff Cody 
2770a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed,
2780a82855aSMax Reitz                                                   const char *backing,
2799f07429eSMax Reitz                                                   char *dest, size_t sz,
2809f07429eSMax Reitz                                                   Error **errp)
2810a82855aSMax Reitz {
2829f07429eSMax Reitz     if (backing[0] == '\0' || path_has_protocol(backing) ||
2839f07429eSMax Reitz         path_is_absolute(backing))
2849f07429eSMax Reitz     {
2850a82855aSMax Reitz         pstrcpy(dest, sz, backing);
2869f07429eSMax Reitz     } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
2879f07429eSMax Reitz         error_setg(errp, "Cannot use relative backing file names for '%s'",
2889f07429eSMax Reitz                    backed);
2890a82855aSMax Reitz     } else {
2900a82855aSMax Reitz         path_combine(dest, sz, backed, backing);
2910a82855aSMax Reitz     }
2920a82855aSMax Reitz }
2930a82855aSMax Reitz 
2949f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
2959f07429eSMax Reitz                                     Error **errp)
296dc5a1371SPaolo Bonzini {
2979f07429eSMax Reitz     char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
2989f07429eSMax Reitz 
2999f07429eSMax Reitz     bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
3009f07429eSMax Reitz                                                  dest, sz, errp);
301dc5a1371SPaolo Bonzini }
302dc5a1371SPaolo Bonzini 
3030eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv)
3040eb7217eSStefan Hajnoczi {
3058a22f02aSStefan Hajnoczi     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
306ea2384d3Sbellard }
307b338082bSbellard 
308e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void)
309e4e9986bSMarkus Armbruster {
310e4e9986bSMarkus Armbruster     BlockDriverState *bs;
311e4e9986bSMarkus Armbruster     int i;
312e4e9986bSMarkus Armbruster 
3135839e53bSMarkus Armbruster     bs = g_new0(BlockDriverState, 1);
314e4654d2dSFam Zheng     QLIST_INIT(&bs->dirty_bitmaps);
315fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
316fbe40ff7SFam Zheng         QLIST_INIT(&bs->op_blockers[i]);
317fbe40ff7SFam Zheng     }
318d616b224SStefan Hajnoczi     notifier_with_return_list_init(&bs->before_write_notifiers);
3193783fa3dSPaolo Bonzini     qemu_co_mutex_init(&bs->reqs_lock);
3202119882cSPaolo Bonzini     qemu_mutex_init(&bs->dirty_bitmap_mutex);
3219fcb0251SFam Zheng     bs->refcnt = 1;
322dcd04228SStefan Hajnoczi     bs->aio_context = qemu_get_aio_context();
323d7d512f6SPaolo Bonzini 
3243ff2f67aSEvgeny Yakovlev     qemu_co_queue_init(&bs->flush_queue);
3253ff2f67aSEvgeny Yakovlev 
3262c1d04e0SMax Reitz     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
3272c1d04e0SMax Reitz 
328b338082bSbellard     return bs;
329b338082bSbellard }
330b338082bSbellard 
33188d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name)
332ea2384d3Sbellard {
333ea2384d3Sbellard     BlockDriver *drv1;
33488d88798SMarc Mari 
3358a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
3368a22f02aSStefan Hajnoczi         if (!strcmp(drv1->format_name, format_name)) {
337ea2384d3Sbellard             return drv1;
338ea2384d3Sbellard         }
3398a22f02aSStefan Hajnoczi     }
34088d88798SMarc Mari 
341ea2384d3Sbellard     return NULL;
342ea2384d3Sbellard }
343ea2384d3Sbellard 
34488d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name)
34588d88798SMarc Mari {
34688d88798SMarc Mari     BlockDriver *drv1;
34788d88798SMarc Mari     int i;
34888d88798SMarc Mari 
34988d88798SMarc Mari     drv1 = bdrv_do_find_format(format_name);
35088d88798SMarc Mari     if (drv1) {
35188d88798SMarc Mari         return drv1;
35288d88798SMarc Mari     }
35388d88798SMarc Mari 
35488d88798SMarc Mari     /* The driver isn't registered, maybe we need to load a module */
35588d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
35688d88798SMarc Mari         if (!strcmp(block_driver_modules[i].format_name, format_name)) {
35788d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
35888d88798SMarc Mari             break;
35988d88798SMarc Mari         }
36088d88798SMarc Mari     }
36188d88798SMarc Mari 
36288d88798SMarc Mari     return bdrv_do_find_format(format_name);
36388d88798SMarc Mari }
36488d88798SMarc Mari 
365b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
366eb852011SMarkus Armbruster {
367b64ec4e4SFam Zheng     static const char *whitelist_rw[] = {
368b64ec4e4SFam Zheng         CONFIG_BDRV_RW_WHITELIST
369b64ec4e4SFam Zheng     };
370b64ec4e4SFam Zheng     static const char *whitelist_ro[] = {
371b64ec4e4SFam Zheng         CONFIG_BDRV_RO_WHITELIST
372eb852011SMarkus Armbruster     };
373eb852011SMarkus Armbruster     const char **p;
374eb852011SMarkus Armbruster 
375b64ec4e4SFam Zheng     if (!whitelist_rw[0] && !whitelist_ro[0]) {
376eb852011SMarkus Armbruster         return 1;               /* no whitelist, anything goes */
377b64ec4e4SFam Zheng     }
378eb852011SMarkus Armbruster 
379b64ec4e4SFam Zheng     for (p = whitelist_rw; *p; p++) {
380eb852011SMarkus Armbruster         if (!strcmp(drv->format_name, *p)) {
381eb852011SMarkus Armbruster             return 1;
382eb852011SMarkus Armbruster         }
383eb852011SMarkus Armbruster     }
384b64ec4e4SFam Zheng     if (read_only) {
385b64ec4e4SFam Zheng         for (p = whitelist_ro; *p; p++) {
386b64ec4e4SFam Zheng             if (!strcmp(drv->format_name, *p)) {
387b64ec4e4SFam Zheng                 return 1;
388b64ec4e4SFam Zheng             }
389b64ec4e4SFam Zheng         }
390b64ec4e4SFam Zheng     }
391eb852011SMarkus Armbruster     return 0;
392eb852011SMarkus Armbruster }
393eb852011SMarkus Armbruster 
394e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void)
395e6ff69bfSDaniel P. Berrange {
396e6ff69bfSDaniel P. Berrange     return use_bdrv_whitelist;
397e6ff69bfSDaniel P. Berrange }
398e6ff69bfSDaniel P. Berrange 
3995b7e1542SZhi Yong Wu typedef struct CreateCo {
4005b7e1542SZhi Yong Wu     BlockDriver *drv;
4015b7e1542SZhi Yong Wu     char *filename;
40283d0521aSChunyan Liu     QemuOpts *opts;
4035b7e1542SZhi Yong Wu     int ret;
404cc84d90fSMax Reitz     Error *err;
4055b7e1542SZhi Yong Wu } CreateCo;
4065b7e1542SZhi Yong Wu 
4075b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque)
4085b7e1542SZhi Yong Wu {
409cc84d90fSMax Reitz     Error *local_err = NULL;
410cc84d90fSMax Reitz     int ret;
411cc84d90fSMax Reitz 
4125b7e1542SZhi Yong Wu     CreateCo *cco = opaque;
4135b7e1542SZhi Yong Wu     assert(cco->drv);
4145b7e1542SZhi Yong Wu 
415c282e1fdSChunyan Liu     ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err);
416cc84d90fSMax Reitz     error_propagate(&cco->err, local_err);
417cc84d90fSMax Reitz     cco->ret = ret;
4185b7e1542SZhi Yong Wu }
4195b7e1542SZhi Yong Wu 
4200e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename,
42183d0521aSChunyan Liu                 QemuOpts *opts, Error **errp)
422ea2384d3Sbellard {
4235b7e1542SZhi Yong Wu     int ret;
4240e7e1989SKevin Wolf 
4255b7e1542SZhi Yong Wu     Coroutine *co;
4265b7e1542SZhi Yong Wu     CreateCo cco = {
4275b7e1542SZhi Yong Wu         .drv = drv,
4285b7e1542SZhi Yong Wu         .filename = g_strdup(filename),
42983d0521aSChunyan Liu         .opts = opts,
4305b7e1542SZhi Yong Wu         .ret = NOT_DONE,
431cc84d90fSMax Reitz         .err = NULL,
4325b7e1542SZhi Yong Wu     };
4335b7e1542SZhi Yong Wu 
434c282e1fdSChunyan Liu     if (!drv->bdrv_create) {
435cc84d90fSMax Reitz         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
43680168bffSLuiz Capitulino         ret = -ENOTSUP;
43780168bffSLuiz Capitulino         goto out;
4385b7e1542SZhi Yong Wu     }
4395b7e1542SZhi Yong Wu 
4405b7e1542SZhi Yong Wu     if (qemu_in_coroutine()) {
4415b7e1542SZhi Yong Wu         /* Fast-path if already in coroutine context */
4425b7e1542SZhi Yong Wu         bdrv_create_co_entry(&cco);
4435b7e1542SZhi Yong Wu     } else {
4440b8b8753SPaolo Bonzini         co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
4450b8b8753SPaolo Bonzini         qemu_coroutine_enter(co);
4465b7e1542SZhi Yong Wu         while (cco.ret == NOT_DONE) {
447b47ec2c4SPaolo Bonzini             aio_poll(qemu_get_aio_context(), true);
4485b7e1542SZhi Yong Wu         }
4495b7e1542SZhi Yong Wu     }
4505b7e1542SZhi Yong Wu 
4515b7e1542SZhi Yong Wu     ret = cco.ret;
452cc84d90fSMax Reitz     if (ret < 0) {
45384d18f06SMarkus Armbruster         if (cco.err) {
454cc84d90fSMax Reitz             error_propagate(errp, cco.err);
455cc84d90fSMax Reitz         } else {
456cc84d90fSMax Reitz             error_setg_errno(errp, -ret, "Could not create image");
457cc84d90fSMax Reitz         }
458cc84d90fSMax Reitz     }
4595b7e1542SZhi Yong Wu 
46080168bffSLuiz Capitulino out:
46180168bffSLuiz Capitulino     g_free(cco.filename);
4625b7e1542SZhi Yong Wu     return ret;
463ea2384d3Sbellard }
464ea2384d3Sbellard 
465c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
46684a12e66SChristoph Hellwig {
46784a12e66SChristoph Hellwig     BlockDriver *drv;
468cc84d90fSMax Reitz     Error *local_err = NULL;
469cc84d90fSMax Reitz     int ret;
47084a12e66SChristoph Hellwig 
471b65a5e12SMax Reitz     drv = bdrv_find_protocol(filename, true, errp);
47284a12e66SChristoph Hellwig     if (drv == NULL) {
47316905d71SStefan Hajnoczi         return -ENOENT;
47484a12e66SChristoph Hellwig     }
47584a12e66SChristoph Hellwig 
476c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
477cc84d90fSMax Reitz     error_propagate(errp, local_err);
478cc84d90fSMax Reitz     return ret;
47984a12e66SChristoph Hellwig }
48084a12e66SChristoph Hellwig 
481892b7de8SEkaterina Tumanova /**
482892b7de8SEkaterina Tumanova  * Try to get @bs's logical and physical block size.
483892b7de8SEkaterina Tumanova  * On success, store them in @bsz struct and return 0.
484892b7de8SEkaterina Tumanova  * On failure return -errno.
485892b7de8SEkaterina Tumanova  * @bs must not be empty.
486892b7de8SEkaterina Tumanova  */
487892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
488892b7de8SEkaterina Tumanova {
489892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
490892b7de8SEkaterina Tumanova 
491892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_blocksizes) {
492892b7de8SEkaterina Tumanova         return drv->bdrv_probe_blocksizes(bs, bsz);
4935a612c00SManos Pitsidianakis     } else if (drv && drv->is_filter && bs->file) {
4945a612c00SManos Pitsidianakis         return bdrv_probe_blocksizes(bs->file->bs, bsz);
495892b7de8SEkaterina Tumanova     }
496892b7de8SEkaterina Tumanova 
497892b7de8SEkaterina Tumanova     return -ENOTSUP;
498892b7de8SEkaterina Tumanova }
499892b7de8SEkaterina Tumanova 
500892b7de8SEkaterina Tumanova /**
501892b7de8SEkaterina Tumanova  * Try to get @bs's geometry (cyls, heads, sectors).
502892b7de8SEkaterina Tumanova  * On success, store them in @geo struct and return 0.
503892b7de8SEkaterina Tumanova  * On failure return -errno.
504892b7de8SEkaterina Tumanova  * @bs must not be empty.
505892b7de8SEkaterina Tumanova  */
506892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
507892b7de8SEkaterina Tumanova {
508892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
509892b7de8SEkaterina Tumanova 
510892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_geometry) {
511892b7de8SEkaterina Tumanova         return drv->bdrv_probe_geometry(bs, geo);
5125a612c00SManos Pitsidianakis     } else if (drv && drv->is_filter && bs->file) {
5135a612c00SManos Pitsidianakis         return bdrv_probe_geometry(bs->file->bs, geo);
514892b7de8SEkaterina Tumanova     }
515892b7de8SEkaterina Tumanova 
516892b7de8SEkaterina Tumanova     return -ENOTSUP;
517892b7de8SEkaterina Tumanova }
518892b7de8SEkaterina Tumanova 
519eba25057SJim Meyering /*
520eba25057SJim Meyering  * Create a uniquely-named empty temporary file.
521eba25057SJim Meyering  * Return 0 upon success, otherwise a negative errno value.
522eba25057SJim Meyering  */
523eba25057SJim Meyering int get_tmp_filename(char *filename, int size)
524eba25057SJim Meyering {
525d5249393Sbellard #ifdef _WIN32
5263b9f94e1Sbellard     char temp_dir[MAX_PATH];
527eba25057SJim Meyering     /* GetTempFileName requires that its output buffer (4th param)
528eba25057SJim Meyering        have length MAX_PATH or greater.  */
529eba25057SJim Meyering     assert(size >= MAX_PATH);
530eba25057SJim Meyering     return (GetTempPath(MAX_PATH, temp_dir)
531eba25057SJim Meyering             && GetTempFileName(temp_dir, "qem", 0, filename)
532eba25057SJim Meyering             ? 0 : -GetLastError());
533d5249393Sbellard #else
534ea2384d3Sbellard     int fd;
5357ccfb2ebSblueswir1     const char *tmpdir;
5360badc1eeSaurel32     tmpdir = getenv("TMPDIR");
53769bef793SAmit Shah     if (!tmpdir) {
53869bef793SAmit Shah         tmpdir = "/var/tmp";
53969bef793SAmit Shah     }
540eba25057SJim Meyering     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
541eba25057SJim Meyering         return -EOVERFLOW;
542ea2384d3Sbellard     }
543eba25057SJim Meyering     fd = mkstemp(filename);
544fe235a06SDunrong Huang     if (fd < 0) {
545fe235a06SDunrong Huang         return -errno;
546fe235a06SDunrong Huang     }
547fe235a06SDunrong Huang     if (close(fd) != 0) {
548fe235a06SDunrong Huang         unlink(filename);
549eba25057SJim Meyering         return -errno;
550eba25057SJim Meyering     }
551eba25057SJim Meyering     return 0;
552d5249393Sbellard #endif
553eba25057SJim Meyering }
554ea2384d3Sbellard 
555f3a5d3f8SChristoph Hellwig /*
556f3a5d3f8SChristoph Hellwig  * Detect host devices. By convention, /dev/cdrom[N] is always
557f3a5d3f8SChristoph Hellwig  * recognized as a host CDROM.
558f3a5d3f8SChristoph Hellwig  */
559f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename)
560f3a5d3f8SChristoph Hellwig {
561508c7cb3SChristoph Hellwig     int score_max = 0, score;
562508c7cb3SChristoph Hellwig     BlockDriver *drv = NULL, *d;
563f3a5d3f8SChristoph Hellwig 
5648a22f02aSStefan Hajnoczi     QLIST_FOREACH(d, &bdrv_drivers, list) {
565508c7cb3SChristoph Hellwig         if (d->bdrv_probe_device) {
566508c7cb3SChristoph Hellwig             score = d->bdrv_probe_device(filename);
567508c7cb3SChristoph Hellwig             if (score > score_max) {
568508c7cb3SChristoph Hellwig                 score_max = score;
569508c7cb3SChristoph Hellwig                 drv = d;
570f3a5d3f8SChristoph Hellwig             }
571508c7cb3SChristoph Hellwig         }
572f3a5d3f8SChristoph Hellwig     }
573f3a5d3f8SChristoph Hellwig 
574508c7cb3SChristoph Hellwig     return drv;
575f3a5d3f8SChristoph Hellwig }
576f3a5d3f8SChristoph Hellwig 
57788d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol)
57888d88798SMarc Mari {
57988d88798SMarc Mari     BlockDriver *drv1;
58088d88798SMarc Mari 
58188d88798SMarc Mari     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
58288d88798SMarc Mari         if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
58388d88798SMarc Mari             return drv1;
58488d88798SMarc Mari         }
58588d88798SMarc Mari     }
58688d88798SMarc Mari 
58788d88798SMarc Mari     return NULL;
58888d88798SMarc Mari }
58988d88798SMarc Mari 
59098289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename,
591b65a5e12SMax Reitz                                 bool allow_protocol_prefix,
592b65a5e12SMax Reitz                                 Error **errp)
59384a12e66SChristoph Hellwig {
59484a12e66SChristoph Hellwig     BlockDriver *drv1;
59584a12e66SChristoph Hellwig     char protocol[128];
59684a12e66SChristoph Hellwig     int len;
59784a12e66SChristoph Hellwig     const char *p;
59888d88798SMarc Mari     int i;
59984a12e66SChristoph Hellwig 
60066f82ceeSKevin Wolf     /* TODO Drivers without bdrv_file_open must be specified explicitly */
60166f82ceeSKevin Wolf 
60239508e7aSChristoph Hellwig     /*
60339508e7aSChristoph Hellwig      * XXX(hch): we really should not let host device detection
60439508e7aSChristoph Hellwig      * override an explicit protocol specification, but moving this
60539508e7aSChristoph Hellwig      * later breaks access to device names with colons in them.
60639508e7aSChristoph Hellwig      * Thanks to the brain-dead persistent naming schemes on udev-
60739508e7aSChristoph Hellwig      * based Linux systems those actually are quite common.
60839508e7aSChristoph Hellwig      */
60984a12e66SChristoph Hellwig     drv1 = find_hdev_driver(filename);
61039508e7aSChristoph Hellwig     if (drv1) {
61184a12e66SChristoph Hellwig         return drv1;
61284a12e66SChristoph Hellwig     }
61339508e7aSChristoph Hellwig 
61498289620SKevin Wolf     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
615ef810437SMax Reitz         return &bdrv_file;
61639508e7aSChristoph Hellwig     }
61798289620SKevin Wolf 
6189e0b22f4SStefan Hajnoczi     p = strchr(filename, ':');
6199e0b22f4SStefan Hajnoczi     assert(p != NULL);
62084a12e66SChristoph Hellwig     len = p - filename;
62184a12e66SChristoph Hellwig     if (len > sizeof(protocol) - 1)
62284a12e66SChristoph Hellwig         len = sizeof(protocol) - 1;
62384a12e66SChristoph Hellwig     memcpy(protocol, filename, len);
62484a12e66SChristoph Hellwig     protocol[len] = '\0';
62588d88798SMarc Mari 
62688d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
62788d88798SMarc Mari     if (drv1) {
62884a12e66SChristoph Hellwig         return drv1;
62984a12e66SChristoph Hellwig     }
63088d88798SMarc Mari 
63188d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
63288d88798SMarc Mari         if (block_driver_modules[i].protocol_name &&
63388d88798SMarc Mari             !strcmp(block_driver_modules[i].protocol_name, protocol)) {
63488d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
63588d88798SMarc Mari             break;
63688d88798SMarc Mari         }
63784a12e66SChristoph Hellwig     }
638b65a5e12SMax Reitz 
63988d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
64088d88798SMarc Mari     if (!drv1) {
641b65a5e12SMax Reitz         error_setg(errp, "Unknown protocol '%s'", protocol);
64288d88798SMarc Mari     }
64388d88798SMarc Mari     return drv1;
64484a12e66SChristoph Hellwig }
64584a12e66SChristoph Hellwig 
646c6684249SMarkus Armbruster /*
647c6684249SMarkus Armbruster  * Guess image format by probing its contents.
648c6684249SMarkus Armbruster  * This is not a good idea when your image is raw (CVE-2008-2004), but
649c6684249SMarkus Armbruster  * we do it anyway for backward compatibility.
650c6684249SMarkus Armbruster  *
651c6684249SMarkus Armbruster  * @buf         contains the image's first @buf_size bytes.
6527cddd372SKevin Wolf  * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
6537cddd372SKevin Wolf  *              but can be smaller if the image file is smaller)
654c6684249SMarkus Armbruster  * @filename    is its filename.
655c6684249SMarkus Armbruster  *
656c6684249SMarkus Armbruster  * For all block drivers, call the bdrv_probe() method to get its
657c6684249SMarkus Armbruster  * probing score.
658c6684249SMarkus Armbruster  * Return the first block driver with the highest probing score.
659c6684249SMarkus Armbruster  */
66038f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
661c6684249SMarkus Armbruster                             const char *filename)
662c6684249SMarkus Armbruster {
663c6684249SMarkus Armbruster     int score_max = 0, score;
664c6684249SMarkus Armbruster     BlockDriver *drv = NULL, *d;
665c6684249SMarkus Armbruster 
666c6684249SMarkus Armbruster     QLIST_FOREACH(d, &bdrv_drivers, list) {
667c6684249SMarkus Armbruster         if (d->bdrv_probe) {
668c6684249SMarkus Armbruster             score = d->bdrv_probe(buf, buf_size, filename);
669c6684249SMarkus Armbruster             if (score > score_max) {
670c6684249SMarkus Armbruster                 score_max = score;
671c6684249SMarkus Armbruster                 drv = d;
672c6684249SMarkus Armbruster             }
673c6684249SMarkus Armbruster         }
674c6684249SMarkus Armbruster     }
675c6684249SMarkus Armbruster 
676c6684249SMarkus Armbruster     return drv;
677c6684249SMarkus Armbruster }
678c6684249SMarkus Armbruster 
6795696c6e3SKevin Wolf static int find_image_format(BlockBackend *file, const char *filename,
68034b5d2c6SMax Reitz                              BlockDriver **pdrv, Error **errp)
681ea2384d3Sbellard {
682c6684249SMarkus Armbruster     BlockDriver *drv;
6837cddd372SKevin Wolf     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
684f500a6d3SKevin Wolf     int ret = 0;
685f8ea0b00SNicholas Bellinger 
68608a00559SKevin Wolf     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
6875696c6e3SKevin Wolf     if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
688ef810437SMax Reitz         *pdrv = &bdrv_raw;
689c98ac35dSStefan Weil         return ret;
6901a396859SNicholas A. Bellinger     }
691f8ea0b00SNicholas Bellinger 
6925696c6e3SKevin Wolf     ret = blk_pread(file, 0, buf, sizeof(buf));
693ea2384d3Sbellard     if (ret < 0) {
69434b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not read image for determining its "
69534b5d2c6SMax Reitz                          "format");
696c98ac35dSStefan Weil         *pdrv = NULL;
697c98ac35dSStefan Weil         return ret;
698ea2384d3Sbellard     }
699ea2384d3Sbellard 
700c6684249SMarkus Armbruster     drv = bdrv_probe_all(buf, ret, filename);
701c98ac35dSStefan Weil     if (!drv) {
70234b5d2c6SMax Reitz         error_setg(errp, "Could not determine image format: No compatible "
70334b5d2c6SMax Reitz                    "driver found");
704c98ac35dSStefan Weil         ret = -ENOENT;
705c98ac35dSStefan Weil     }
706c98ac35dSStefan Weil     *pdrv = drv;
707c98ac35dSStefan Weil     return ret;
708ea2384d3Sbellard }
709ea2384d3Sbellard 
71051762288SStefan Hajnoczi /**
71151762288SStefan Hajnoczi  * Set the current 'total_sectors' value
71265a9bb25SMarkus Armbruster  * Return 0 on success, -errno on error.
71351762288SStefan Hajnoczi  */
71451762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
71551762288SStefan Hajnoczi {
71651762288SStefan Hajnoczi     BlockDriver *drv = bs->drv;
71751762288SStefan Hajnoczi 
718396759adSNicholas Bellinger     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
719b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs))
720396759adSNicholas Bellinger         return 0;
721396759adSNicholas Bellinger 
72251762288SStefan Hajnoczi     /* query actual device if possible, otherwise just trust the hint */
72351762288SStefan Hajnoczi     if (drv->bdrv_getlength) {
72451762288SStefan Hajnoczi         int64_t length = drv->bdrv_getlength(bs);
72551762288SStefan Hajnoczi         if (length < 0) {
72651762288SStefan Hajnoczi             return length;
72751762288SStefan Hajnoczi         }
7287e382003SFam Zheng         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
72951762288SStefan Hajnoczi     }
73051762288SStefan Hajnoczi 
73151762288SStefan Hajnoczi     bs->total_sectors = hint;
73251762288SStefan Hajnoczi     return 0;
73351762288SStefan Hajnoczi }
73451762288SStefan Hajnoczi 
735c3993cdcSStefan Hajnoczi /**
736cddff5baSKevin Wolf  * Combines a QDict of new block driver @options with any missing options taken
737cddff5baSKevin Wolf  * from @old_options, so that leaving out an option defaults to its old value.
738cddff5baSKevin Wolf  */
739cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options,
740cddff5baSKevin Wolf                               QDict *old_options)
741cddff5baSKevin Wolf {
742cddff5baSKevin Wolf     if (bs->drv && bs->drv->bdrv_join_options) {
743cddff5baSKevin Wolf         bs->drv->bdrv_join_options(options, old_options);
744cddff5baSKevin Wolf     } else {
745cddff5baSKevin Wolf         qdict_join(options, old_options, false);
746cddff5baSKevin Wolf     }
747cddff5baSKevin Wolf }
748cddff5baSKevin Wolf 
749cddff5baSKevin Wolf /**
7509e8f1835SPaolo Bonzini  * Set open flags for a given discard mode
7519e8f1835SPaolo Bonzini  *
7529e8f1835SPaolo Bonzini  * Return 0 on success, -1 if the discard mode was invalid.
7539e8f1835SPaolo Bonzini  */
7549e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags)
7559e8f1835SPaolo Bonzini {
7569e8f1835SPaolo Bonzini     *flags &= ~BDRV_O_UNMAP;
7579e8f1835SPaolo Bonzini 
7589e8f1835SPaolo Bonzini     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
7599e8f1835SPaolo Bonzini         /* do nothing */
7609e8f1835SPaolo Bonzini     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
7619e8f1835SPaolo Bonzini         *flags |= BDRV_O_UNMAP;
7629e8f1835SPaolo Bonzini     } else {
7639e8f1835SPaolo Bonzini         return -1;
7649e8f1835SPaolo Bonzini     }
7659e8f1835SPaolo Bonzini 
7669e8f1835SPaolo Bonzini     return 0;
7679e8f1835SPaolo Bonzini }
7689e8f1835SPaolo Bonzini 
7699e8f1835SPaolo Bonzini /**
770c3993cdcSStefan Hajnoczi  * Set open flags for a given cache mode
771c3993cdcSStefan Hajnoczi  *
772c3993cdcSStefan Hajnoczi  * Return 0 on success, -1 if the cache mode was invalid.
773c3993cdcSStefan Hajnoczi  */
77453e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
775c3993cdcSStefan Hajnoczi {
776c3993cdcSStefan Hajnoczi     *flags &= ~BDRV_O_CACHE_MASK;
777c3993cdcSStefan Hajnoczi 
778c3993cdcSStefan Hajnoczi     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
77953e8ae01SKevin Wolf         *writethrough = false;
78053e8ae01SKevin Wolf         *flags |= BDRV_O_NOCACHE;
78192196b2fSStefan Hajnoczi     } else if (!strcmp(mode, "directsync")) {
78253e8ae01SKevin Wolf         *writethrough = true;
78392196b2fSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE;
784c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writeback")) {
78553e8ae01SKevin Wolf         *writethrough = false;
786c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "unsafe")) {
78753e8ae01SKevin Wolf         *writethrough = false;
788c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NO_FLUSH;
789c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writethrough")) {
79053e8ae01SKevin Wolf         *writethrough = true;
791c3993cdcSStefan Hajnoczi     } else {
792c3993cdcSStefan Hajnoczi         return -1;
793c3993cdcSStefan Hajnoczi     }
794c3993cdcSStefan Hajnoczi 
795c3993cdcSStefan Hajnoczi     return 0;
796c3993cdcSStefan Hajnoczi }
797c3993cdcSStefan Hajnoczi 
798b5411555SKevin Wolf static char *bdrv_child_get_parent_desc(BdrvChild *c)
799b5411555SKevin Wolf {
800b5411555SKevin Wolf     BlockDriverState *parent = c->opaque;
801b5411555SKevin Wolf     return g_strdup(bdrv_get_device_or_node_name(parent));
802b5411555SKevin Wolf }
803b5411555SKevin Wolf 
80420018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child)
80520018e12SKevin Wolf {
80620018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
80720018e12SKevin Wolf     bdrv_drained_begin(bs);
80820018e12SKevin Wolf }
80920018e12SKevin Wolf 
81020018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child)
81120018e12SKevin Wolf {
81220018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
81320018e12SKevin Wolf     bdrv_drained_end(bs);
81420018e12SKevin Wolf }
81520018e12SKevin Wolf 
81638701b6aSKevin Wolf static int bdrv_child_cb_inactivate(BdrvChild *child)
81738701b6aSKevin Wolf {
81838701b6aSKevin Wolf     BlockDriverState *bs = child->opaque;
81938701b6aSKevin Wolf     assert(bs->open_flags & BDRV_O_INACTIVE);
82038701b6aSKevin Wolf     return 0;
82138701b6aSKevin Wolf }
82238701b6aSKevin Wolf 
8230b50cc88SKevin Wolf /*
82473176beeSKevin Wolf  * Returns the options and flags that a temporary snapshot should get, based on
82573176beeSKevin Wolf  * the originally requested flags (the originally requested image will have
82673176beeSKevin Wolf  * flags like a backing file)
827b1e6fc08SKevin Wolf  */
82873176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
82973176beeSKevin Wolf                                        int parent_flags, QDict *parent_options)
830b1e6fc08SKevin Wolf {
83173176beeSKevin Wolf     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
83273176beeSKevin Wolf 
83373176beeSKevin Wolf     /* For temporary files, unconditional cache=unsafe is fine */
83473176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
83573176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
83641869044SKevin Wolf 
837f87a0e29SAlberto Garcia     /* Copy the read-only option from the parent */
838f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
839f87a0e29SAlberto Garcia 
84041869044SKevin Wolf     /* aio=native doesn't work for cache.direct=off, so disable it for the
84141869044SKevin Wolf      * temporary snapshot */
84241869044SKevin Wolf     *child_flags &= ~BDRV_O_NATIVE_AIO;
843b1e6fc08SKevin Wolf }
844b1e6fc08SKevin Wolf 
845b1e6fc08SKevin Wolf /*
8468e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if a protocol driver
8478e2160e2SKevin Wolf  * is expected, based on the given options and flags for the parent BDS
8480b50cc88SKevin Wolf  */
8498e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options,
8508e2160e2SKevin Wolf                                    int parent_flags, QDict *parent_options)
8510b50cc88SKevin Wolf {
8528e2160e2SKevin Wolf     int flags = parent_flags;
8538e2160e2SKevin Wolf 
8540b50cc88SKevin Wolf     /* Enable protocol handling, disable format probing for bs->file */
8550b50cc88SKevin Wolf     flags |= BDRV_O_PROTOCOL;
8560b50cc88SKevin Wolf 
85791a097e7SKevin Wolf     /* If the cache mode isn't explicitly set, inherit direct and no-flush from
85891a097e7SKevin Wolf      * the parent. */
85991a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
86091a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
8615a9347c6SFam Zheng     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
86291a097e7SKevin Wolf 
863f87a0e29SAlberto Garcia     /* Inherit the read-only option from the parent if it's not set */
864f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
865f87a0e29SAlberto Garcia 
8660b50cc88SKevin Wolf     /* Our block drivers take care to send flushes and respect unmap policy,
86791a097e7SKevin Wolf      * so we can default to enable both on lower layers regardless of the
86891a097e7SKevin Wolf      * corresponding parent options. */
869818584a4SKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
8700b50cc88SKevin Wolf 
8710b50cc88SKevin Wolf     /* Clear flags that only apply to the top layer */
872abb06c5aSDaniel P. Berrange     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
873abb06c5aSDaniel P. Berrange                BDRV_O_NO_IO);
8740b50cc88SKevin Wolf 
8758e2160e2SKevin Wolf     *child_flags = flags;
8760b50cc88SKevin Wolf }
8770b50cc88SKevin Wolf 
878f3930ed0SKevin Wolf const BdrvChildRole child_file = {
879b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
8808e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_options,
88120018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
88220018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
88338701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
884f3930ed0SKevin Wolf };
885f3930ed0SKevin Wolf 
886f3930ed0SKevin Wolf /*
8878e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if the use of formats
8888e2160e2SKevin Wolf  * (and not only protocols) is permitted for it, based on the given options and
8898e2160e2SKevin Wolf  * flags for the parent BDS
890f3930ed0SKevin Wolf  */
8918e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
8928e2160e2SKevin Wolf                                        int parent_flags, QDict *parent_options)
893f3930ed0SKevin Wolf {
8948e2160e2SKevin Wolf     child_file.inherit_options(child_flags, child_options,
8958e2160e2SKevin Wolf                                parent_flags, parent_options);
8968e2160e2SKevin Wolf 
897abb06c5aSDaniel P. Berrange     *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
898f3930ed0SKevin Wolf }
899f3930ed0SKevin Wolf 
900f3930ed0SKevin Wolf const BdrvChildRole child_format = {
901b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
9028e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_fmt_options,
90320018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
90420018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
90538701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
906f3930ed0SKevin Wolf };
907f3930ed0SKevin Wolf 
908db95dbbaSKevin Wolf static void bdrv_backing_attach(BdrvChild *c)
909db95dbbaSKevin Wolf {
910db95dbbaSKevin Wolf     BlockDriverState *parent = c->opaque;
911db95dbbaSKevin Wolf     BlockDriverState *backing_hd = c->bs;
912db95dbbaSKevin Wolf 
913db95dbbaSKevin Wolf     assert(!parent->backing_blocker);
914db95dbbaSKevin Wolf     error_setg(&parent->backing_blocker,
915db95dbbaSKevin Wolf                "node is used as backing hd of '%s'",
916db95dbbaSKevin Wolf                bdrv_get_device_or_node_name(parent));
917db95dbbaSKevin Wolf 
918db95dbbaSKevin Wolf     parent->open_flags &= ~BDRV_O_NO_BACKING;
919db95dbbaSKevin Wolf     pstrcpy(parent->backing_file, sizeof(parent->backing_file),
920db95dbbaSKevin Wolf             backing_hd->filename);
921db95dbbaSKevin Wolf     pstrcpy(parent->backing_format, sizeof(parent->backing_format),
922db95dbbaSKevin Wolf             backing_hd->drv ? backing_hd->drv->format_name : "");
923db95dbbaSKevin Wolf 
924db95dbbaSKevin Wolf     bdrv_op_block_all(backing_hd, parent->backing_blocker);
925db95dbbaSKevin Wolf     /* Otherwise we won't be able to commit or stream */
926db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
927db95dbbaSKevin Wolf                     parent->backing_blocker);
928db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
929db95dbbaSKevin Wolf                     parent->backing_blocker);
930db95dbbaSKevin Wolf     /*
931db95dbbaSKevin Wolf      * We do backup in 3 ways:
932db95dbbaSKevin Wolf      * 1. drive backup
933db95dbbaSKevin Wolf      *    The target bs is new opened, and the source is top BDS
934db95dbbaSKevin Wolf      * 2. blockdev backup
935db95dbbaSKevin Wolf      *    Both the source and the target are top BDSes.
936db95dbbaSKevin Wolf      * 3. internal backup(used for block replication)
937db95dbbaSKevin Wolf      *    Both the source and the target are backing file
938db95dbbaSKevin Wolf      *
939db95dbbaSKevin Wolf      * In case 1 and 2, neither the source nor the target is the backing file.
940db95dbbaSKevin Wolf      * In case 3, we will block the top BDS, so there is only one block job
941db95dbbaSKevin Wolf      * for the top BDS and its backing chain.
942db95dbbaSKevin Wolf      */
943db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
944db95dbbaSKevin Wolf                     parent->backing_blocker);
945db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
946db95dbbaSKevin Wolf                     parent->backing_blocker);
947db95dbbaSKevin Wolf }
948db95dbbaSKevin Wolf 
949db95dbbaSKevin Wolf static void bdrv_backing_detach(BdrvChild *c)
950db95dbbaSKevin Wolf {
951db95dbbaSKevin Wolf     BlockDriverState *parent = c->opaque;
952db95dbbaSKevin Wolf 
953db95dbbaSKevin Wolf     assert(parent->backing_blocker);
954db95dbbaSKevin Wolf     bdrv_op_unblock_all(c->bs, parent->backing_blocker);
955db95dbbaSKevin Wolf     error_free(parent->backing_blocker);
956db95dbbaSKevin Wolf     parent->backing_blocker = NULL;
957db95dbbaSKevin Wolf }
958db95dbbaSKevin Wolf 
959317fc44eSKevin Wolf /*
9608e2160e2SKevin Wolf  * Returns the options and flags that bs->backing should get, based on the
9618e2160e2SKevin Wolf  * given options and flags for the parent BDS
962317fc44eSKevin Wolf  */
9638e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options,
9648e2160e2SKevin Wolf                                  int parent_flags, QDict *parent_options)
965317fc44eSKevin Wolf {
9668e2160e2SKevin Wolf     int flags = parent_flags;
9678e2160e2SKevin Wolf 
968b8816a43SKevin Wolf     /* The cache mode is inherited unmodified for backing files; except WCE,
969b8816a43SKevin Wolf      * which is only applied on the top level (BlockBackend) */
97091a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
97191a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
9725a9347c6SFam Zheng     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
97391a097e7SKevin Wolf 
974317fc44eSKevin Wolf     /* backing files always opened read-only */
975f87a0e29SAlberto Garcia     qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
976f87a0e29SAlberto Garcia     flags &= ~BDRV_O_COPY_ON_READ;
977317fc44eSKevin Wolf 
978317fc44eSKevin Wolf     /* snapshot=on is handled on the top layer */
9798bfea15dSKevin Wolf     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
980317fc44eSKevin Wolf 
9818e2160e2SKevin Wolf     *child_flags = flags;
982317fc44eSKevin Wolf }
983317fc44eSKevin Wolf 
98491ef3825SKevin Wolf const BdrvChildRole child_backing = {
985b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
986db95dbbaSKevin Wolf     .attach          = bdrv_backing_attach,
987db95dbbaSKevin Wolf     .detach          = bdrv_backing_detach,
9888e2160e2SKevin Wolf     .inherit_options = bdrv_backing_options,
98920018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
99020018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
99138701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
992f3930ed0SKevin Wolf };
993f3930ed0SKevin Wolf 
9947b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags)
9957b272452SKevin Wolf {
99661de4c68SKevin Wolf     int open_flags = flags;
9977b272452SKevin Wolf 
9987b272452SKevin Wolf     /*
9997b272452SKevin Wolf      * Clear flags that are internal to the block layer before opening the
10007b272452SKevin Wolf      * image.
10017b272452SKevin Wolf      */
100220cca275SKevin Wolf     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
10037b272452SKevin Wolf 
10047b272452SKevin Wolf     /*
10057b272452SKevin Wolf      * Snapshots should be writable.
10067b272452SKevin Wolf      */
10078bfea15dSKevin Wolf     if (flags & BDRV_O_TEMPORARY) {
10087b272452SKevin Wolf         open_flags |= BDRV_O_RDWR;
10097b272452SKevin Wolf     }
10107b272452SKevin Wolf 
10117b272452SKevin Wolf     return open_flags;
10127b272452SKevin Wolf }
10137b272452SKevin Wolf 
101491a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts)
101591a097e7SKevin Wolf {
101691a097e7SKevin Wolf     *flags &= ~BDRV_O_CACHE_MASK;
101791a097e7SKevin Wolf 
101891a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
101991a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
102091a097e7SKevin Wolf         *flags |= BDRV_O_NO_FLUSH;
102191a097e7SKevin Wolf     }
102291a097e7SKevin Wolf 
102391a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
102491a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
102591a097e7SKevin Wolf         *flags |= BDRV_O_NOCACHE;
102691a097e7SKevin Wolf     }
1027f87a0e29SAlberto Garcia 
1028f87a0e29SAlberto Garcia     *flags &= ~BDRV_O_RDWR;
1029f87a0e29SAlberto Garcia 
1030f87a0e29SAlberto Garcia     assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
1031f87a0e29SAlberto Garcia     if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) {
1032f87a0e29SAlberto Garcia         *flags |= BDRV_O_RDWR;
1033f87a0e29SAlberto Garcia     }
1034f87a0e29SAlberto Garcia 
103591a097e7SKevin Wolf }
103691a097e7SKevin Wolf 
103791a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags)
103891a097e7SKevin Wolf {
103991a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
104046f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
104191a097e7SKevin Wolf     }
104291a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
104346f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
104446f5ac20SEric Blake                        flags & BDRV_O_NO_FLUSH);
104591a097e7SKevin Wolf     }
1046f87a0e29SAlberto Garcia     if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
104746f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1048f87a0e29SAlberto Garcia     }
104991a097e7SKevin Wolf }
105091a097e7SKevin Wolf 
1051636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs,
10526913c0c2SBenoît Canet                                   const char *node_name,
10536913c0c2SBenoît Canet                                   Error **errp)
10546913c0c2SBenoît Canet {
105515489c76SJeff Cody     char *gen_node_name = NULL;
10566913c0c2SBenoît Canet 
105715489c76SJeff Cody     if (!node_name) {
105815489c76SJeff Cody         node_name = gen_node_name = id_generate(ID_BLOCK);
105915489c76SJeff Cody     } else if (!id_wellformed(node_name)) {
106015489c76SJeff Cody         /*
106115489c76SJeff Cody          * Check for empty string or invalid characters, but not if it is
106215489c76SJeff Cody          * generated (generated names use characters not available to the user)
106315489c76SJeff Cody          */
10649aebf3b8SKevin Wolf         error_setg(errp, "Invalid node name");
1065636ea370SKevin Wolf         return;
10666913c0c2SBenoît Canet     }
10676913c0c2SBenoît Canet 
10680c5e94eeSBenoît Canet     /* takes care of avoiding namespaces collisions */
10697f06d47eSMarkus Armbruster     if (blk_by_name(node_name)) {
10700c5e94eeSBenoît Canet         error_setg(errp, "node-name=%s is conflicting with a device id",
10710c5e94eeSBenoît Canet                    node_name);
107215489c76SJeff Cody         goto out;
10730c5e94eeSBenoît Canet     }
10740c5e94eeSBenoît Canet 
10756913c0c2SBenoît Canet     /* takes care of avoiding duplicates node names */
10766913c0c2SBenoît Canet     if (bdrv_find_node(node_name)) {
10776913c0c2SBenoît Canet         error_setg(errp, "Duplicate node name");
107815489c76SJeff Cody         goto out;
10796913c0c2SBenoît Canet     }
10806913c0c2SBenoît Canet 
10816913c0c2SBenoît Canet     /* copy node name into the bs and insert it into the graph list */
10826913c0c2SBenoît Canet     pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
10836913c0c2SBenoît Canet     QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
108415489c76SJeff Cody out:
108515489c76SJeff Cody     g_free(gen_node_name);
10866913c0c2SBenoît Canet }
10876913c0c2SBenoît Canet 
108801a56501SKevin Wolf static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
108901a56501SKevin Wolf                             const char *node_name, QDict *options,
109001a56501SKevin Wolf                             int open_flags, Error **errp)
109101a56501SKevin Wolf {
109201a56501SKevin Wolf     Error *local_err = NULL;
109301a56501SKevin Wolf     int ret;
109401a56501SKevin Wolf 
109501a56501SKevin Wolf     bdrv_assign_node_name(bs, node_name, &local_err);
109601a56501SKevin Wolf     if (local_err) {
109701a56501SKevin Wolf         error_propagate(errp, local_err);
109801a56501SKevin Wolf         return -EINVAL;
109901a56501SKevin Wolf     }
110001a56501SKevin Wolf 
110101a56501SKevin Wolf     bs->drv = drv;
1102680c7f96SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
110301a56501SKevin Wolf     bs->opaque = g_malloc0(drv->instance_size);
110401a56501SKevin Wolf 
110501a56501SKevin Wolf     if (drv->bdrv_file_open) {
110601a56501SKevin Wolf         assert(!drv->bdrv_needs_filename || bs->filename[0]);
110701a56501SKevin Wolf         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1108680c7f96SKevin Wolf     } else if (drv->bdrv_open) {
110901a56501SKevin Wolf         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1110680c7f96SKevin Wolf     } else {
1111680c7f96SKevin Wolf         ret = 0;
111201a56501SKevin Wolf     }
111301a56501SKevin Wolf 
111401a56501SKevin Wolf     if (ret < 0) {
111501a56501SKevin Wolf         if (local_err) {
111601a56501SKevin Wolf             error_propagate(errp, local_err);
111701a56501SKevin Wolf         } else if (bs->filename[0]) {
111801a56501SKevin Wolf             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
111901a56501SKevin Wolf         } else {
112001a56501SKevin Wolf             error_setg_errno(errp, -ret, "Could not open image");
112101a56501SKevin Wolf         }
1122180ca19aSManos Pitsidianakis         goto open_failed;
112301a56501SKevin Wolf     }
112401a56501SKevin Wolf 
112501a56501SKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
112601a56501SKevin Wolf     if (ret < 0) {
112701a56501SKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
1128180ca19aSManos Pitsidianakis         return ret;
112901a56501SKevin Wolf     }
113001a56501SKevin Wolf 
113101a56501SKevin Wolf     bdrv_refresh_limits(bs, &local_err);
113201a56501SKevin Wolf     if (local_err) {
113301a56501SKevin Wolf         error_propagate(errp, local_err);
1134180ca19aSManos Pitsidianakis         return -EINVAL;
113501a56501SKevin Wolf     }
113601a56501SKevin Wolf 
113701a56501SKevin Wolf     assert(bdrv_opt_mem_align(bs) != 0);
113801a56501SKevin Wolf     assert(bdrv_min_mem_align(bs) != 0);
113901a56501SKevin Wolf     assert(is_power_of_2(bs->bl.request_alignment));
114001a56501SKevin Wolf 
114101a56501SKevin Wolf     return 0;
1142180ca19aSManos Pitsidianakis open_failed:
1143180ca19aSManos Pitsidianakis     bs->drv = NULL;
1144180ca19aSManos Pitsidianakis     if (bs->file != NULL) {
1145180ca19aSManos Pitsidianakis         bdrv_unref_child(bs, bs->file);
1146180ca19aSManos Pitsidianakis         bs->file = NULL;
1147180ca19aSManos Pitsidianakis     }
114801a56501SKevin Wolf     g_free(bs->opaque);
114901a56501SKevin Wolf     bs->opaque = NULL;
115001a56501SKevin Wolf     return ret;
115101a56501SKevin Wolf }
115201a56501SKevin Wolf 
1153680c7f96SKevin Wolf BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1154680c7f96SKevin Wolf                                        int flags, Error **errp)
1155680c7f96SKevin Wolf {
1156680c7f96SKevin Wolf     BlockDriverState *bs;
1157680c7f96SKevin Wolf     int ret;
1158680c7f96SKevin Wolf 
1159680c7f96SKevin Wolf     bs = bdrv_new();
1160680c7f96SKevin Wolf     bs->open_flags = flags;
1161680c7f96SKevin Wolf     bs->explicit_options = qdict_new();
1162680c7f96SKevin Wolf     bs->options = qdict_new();
1163680c7f96SKevin Wolf     bs->opaque = NULL;
1164680c7f96SKevin Wolf 
1165680c7f96SKevin Wolf     update_options_from_flags(bs->options, flags);
1166680c7f96SKevin Wolf 
1167680c7f96SKevin Wolf     ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1168680c7f96SKevin Wolf     if (ret < 0) {
1169680c7f96SKevin Wolf         QDECREF(bs->explicit_options);
1170180ca19aSManos Pitsidianakis         bs->explicit_options = NULL;
1171680c7f96SKevin Wolf         QDECREF(bs->options);
1172180ca19aSManos Pitsidianakis         bs->options = NULL;
1173680c7f96SKevin Wolf         bdrv_unref(bs);
1174680c7f96SKevin Wolf         return NULL;
1175680c7f96SKevin Wolf     }
1176680c7f96SKevin Wolf 
1177680c7f96SKevin Wolf     return bs;
1178680c7f96SKevin Wolf }
1179680c7f96SKevin Wolf 
1180c5f3014bSKevin Wolf QemuOptsList bdrv_runtime_opts = {
118118edf289SKevin Wolf     .name = "bdrv_common",
118218edf289SKevin Wolf     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
118318edf289SKevin Wolf     .desc = {
118418edf289SKevin Wolf         {
118518edf289SKevin Wolf             .name = "node-name",
118618edf289SKevin Wolf             .type = QEMU_OPT_STRING,
118718edf289SKevin Wolf             .help = "Node name of the block device node",
118818edf289SKevin Wolf         },
118962392ebbSKevin Wolf         {
119062392ebbSKevin Wolf             .name = "driver",
119162392ebbSKevin Wolf             .type = QEMU_OPT_STRING,
119262392ebbSKevin Wolf             .help = "Block driver to use for the node",
119362392ebbSKevin Wolf         },
119491a097e7SKevin Wolf         {
119591a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_DIRECT,
119691a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
119791a097e7SKevin Wolf             .help = "Bypass software writeback cache on the host",
119891a097e7SKevin Wolf         },
119991a097e7SKevin Wolf         {
120091a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_NO_FLUSH,
120191a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
120291a097e7SKevin Wolf             .help = "Ignore flush requests",
120391a097e7SKevin Wolf         },
1204f87a0e29SAlberto Garcia         {
1205f87a0e29SAlberto Garcia             .name = BDRV_OPT_READ_ONLY,
1206f87a0e29SAlberto Garcia             .type = QEMU_OPT_BOOL,
1207f87a0e29SAlberto Garcia             .help = "Node is opened in read-only mode",
1208f87a0e29SAlberto Garcia         },
1209692e01a2SKevin Wolf         {
1210692e01a2SKevin Wolf             .name = "detect-zeroes",
1211692e01a2SKevin Wolf             .type = QEMU_OPT_STRING,
1212692e01a2SKevin Wolf             .help = "try to optimize zero writes (off, on, unmap)",
1213692e01a2SKevin Wolf         },
1214818584a4SKevin Wolf         {
1215818584a4SKevin Wolf             .name = "discard",
1216818584a4SKevin Wolf             .type = QEMU_OPT_STRING,
1217818584a4SKevin Wolf             .help = "discard operation (ignore/off, unmap/on)",
1218818584a4SKevin Wolf         },
12195a9347c6SFam Zheng         {
12205a9347c6SFam Zheng             .name = BDRV_OPT_FORCE_SHARE,
12215a9347c6SFam Zheng             .type = QEMU_OPT_BOOL,
12225a9347c6SFam Zheng             .help = "always accept other writers (default: off)",
12235a9347c6SFam Zheng         },
122418edf289SKevin Wolf         { /* end of list */ }
122518edf289SKevin Wolf     },
122618edf289SKevin Wolf };
122718edf289SKevin Wolf 
1228b6ce07aaSKevin Wolf /*
122957915332SKevin Wolf  * Common part for opening disk images and files
1230b6ad491aSKevin Wolf  *
1231b6ad491aSKevin Wolf  * Removes all processed options from *options.
123257915332SKevin Wolf  */
12335696c6e3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
123482dc8b41SKevin Wolf                             QDict *options, Error **errp)
123557915332SKevin Wolf {
123657915332SKevin Wolf     int ret, open_flags;
1237035fccdfSKevin Wolf     const char *filename;
123862392ebbSKevin Wolf     const char *driver_name = NULL;
12396913c0c2SBenoît Canet     const char *node_name = NULL;
1240818584a4SKevin Wolf     const char *discard;
1241692e01a2SKevin Wolf     const char *detect_zeroes;
124218edf289SKevin Wolf     QemuOpts *opts;
124362392ebbSKevin Wolf     BlockDriver *drv;
124434b5d2c6SMax Reitz     Error *local_err = NULL;
124557915332SKevin Wolf 
12466405875cSPaolo Bonzini     assert(bs->file == NULL);
1247707ff828SKevin Wolf     assert(options != NULL && bs->options != options);
124857915332SKevin Wolf 
124962392ebbSKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
125062392ebbSKevin Wolf     qemu_opts_absorb_qdict(opts, options, &local_err);
125162392ebbSKevin Wolf     if (local_err) {
125262392ebbSKevin Wolf         error_propagate(errp, local_err);
125362392ebbSKevin Wolf         ret = -EINVAL;
125462392ebbSKevin Wolf         goto fail_opts;
125562392ebbSKevin Wolf     }
125662392ebbSKevin Wolf 
12579b7e8691SAlberto Garcia     update_flags_from_options(&bs->open_flags, opts);
12589b7e8691SAlberto Garcia 
125962392ebbSKevin Wolf     driver_name = qemu_opt_get(opts, "driver");
126062392ebbSKevin Wolf     drv = bdrv_find_format(driver_name);
126162392ebbSKevin Wolf     assert(drv != NULL);
126262392ebbSKevin Wolf 
12635a9347c6SFam Zheng     bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
12645a9347c6SFam Zheng 
12655a9347c6SFam Zheng     if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
12665a9347c6SFam Zheng         error_setg(errp,
12675a9347c6SFam Zheng                    BDRV_OPT_FORCE_SHARE
12685a9347c6SFam Zheng                    "=on can only be used with read-only images");
12695a9347c6SFam Zheng         ret = -EINVAL;
12705a9347c6SFam Zheng         goto fail_opts;
12715a9347c6SFam Zheng     }
12725a9347c6SFam Zheng 
127345673671SKevin Wolf     if (file != NULL) {
12745696c6e3SKevin Wolf         filename = blk_bs(file)->filename;
127545673671SKevin Wolf     } else {
1276129c7d1cSMarkus Armbruster         /*
1277129c7d1cSMarkus Armbruster          * Caution: while qdict_get_try_str() is fine, getting
1278129c7d1cSMarkus Armbruster          * non-string types would require more care.  When @options
1279129c7d1cSMarkus Armbruster          * come from -blockdev or blockdev_add, its members are typed
1280129c7d1cSMarkus Armbruster          * according to the QAPI schema, but when they come from
1281129c7d1cSMarkus Armbruster          * -drive, they're all QString.
1282129c7d1cSMarkus Armbruster          */
128345673671SKevin Wolf         filename = qdict_get_try_str(options, "filename");
128445673671SKevin Wolf     }
128545673671SKevin Wolf 
12864a008240SMax Reitz     if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1287765003dbSKevin Wolf         error_setg(errp, "The '%s' block driver requires a file name",
1288765003dbSKevin Wolf                    drv->format_name);
128918edf289SKevin Wolf         ret = -EINVAL;
129018edf289SKevin Wolf         goto fail_opts;
129118edf289SKevin Wolf     }
129218edf289SKevin Wolf 
129382dc8b41SKevin Wolf     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
129482dc8b41SKevin Wolf                            drv->format_name);
129562392ebbSKevin Wolf 
129682dc8b41SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1297b64ec4e4SFam Zheng 
1298b64ec4e4SFam Zheng     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
12998f94a6e4SKevin Wolf         error_setg(errp,
13008f94a6e4SKevin Wolf                    !bs->read_only && bdrv_is_whitelisted(drv, true)
13018f94a6e4SKevin Wolf                         ? "Driver '%s' can only be used for read-only devices"
13028f94a6e4SKevin Wolf                         : "Driver '%s' is not whitelisted",
13038f94a6e4SKevin Wolf                    drv->format_name);
130418edf289SKevin Wolf         ret = -ENOTSUP;
130518edf289SKevin Wolf         goto fail_opts;
1306b64ec4e4SFam Zheng     }
130757915332SKevin Wolf 
1308d3faa13eSPaolo Bonzini     /* bdrv_new() and bdrv_close() make it so */
1309d3faa13eSPaolo Bonzini     assert(atomic_read(&bs->copy_on_read) == 0);
1310d3faa13eSPaolo Bonzini 
131182dc8b41SKevin Wolf     if (bs->open_flags & BDRV_O_COPY_ON_READ) {
13120ebd24e0SKevin Wolf         if (!bs->read_only) {
131353fec9d3SStefan Hajnoczi             bdrv_enable_copy_on_read(bs);
13140ebd24e0SKevin Wolf         } else {
13150ebd24e0SKevin Wolf             error_setg(errp, "Can't use copy-on-read on read-only device");
131618edf289SKevin Wolf             ret = -EINVAL;
131718edf289SKevin Wolf             goto fail_opts;
13180ebd24e0SKevin Wolf         }
131953fec9d3SStefan Hajnoczi     }
132053fec9d3SStefan Hajnoczi 
1321818584a4SKevin Wolf     discard = qemu_opt_get(opts, "discard");
1322818584a4SKevin Wolf     if (discard != NULL) {
1323818584a4SKevin Wolf         if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1324818584a4SKevin Wolf             error_setg(errp, "Invalid discard option");
1325818584a4SKevin Wolf             ret = -EINVAL;
1326818584a4SKevin Wolf             goto fail_opts;
1327818584a4SKevin Wolf         }
1328818584a4SKevin Wolf     }
1329818584a4SKevin Wolf 
1330692e01a2SKevin Wolf     detect_zeroes = qemu_opt_get(opts, "detect-zeroes");
1331692e01a2SKevin Wolf     if (detect_zeroes) {
1332692e01a2SKevin Wolf         BlockdevDetectZeroesOptions value =
1333f7abe0ecSMarc-André Lureau             qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
1334692e01a2SKevin Wolf                             detect_zeroes,
1335692e01a2SKevin Wolf                             BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
1336692e01a2SKevin Wolf                             &local_err);
1337692e01a2SKevin Wolf         if (local_err) {
1338692e01a2SKevin Wolf             error_propagate(errp, local_err);
1339692e01a2SKevin Wolf             ret = -EINVAL;
1340692e01a2SKevin Wolf             goto fail_opts;
1341692e01a2SKevin Wolf         }
1342692e01a2SKevin Wolf 
1343692e01a2SKevin Wolf         if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1344692e01a2SKevin Wolf             !(bs->open_flags & BDRV_O_UNMAP))
1345692e01a2SKevin Wolf         {
1346692e01a2SKevin Wolf             error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1347692e01a2SKevin Wolf                              "without setting discard operation to unmap");
1348692e01a2SKevin Wolf             ret = -EINVAL;
1349692e01a2SKevin Wolf             goto fail_opts;
1350692e01a2SKevin Wolf         }
1351692e01a2SKevin Wolf 
1352692e01a2SKevin Wolf         bs->detect_zeroes = value;
1353692e01a2SKevin Wolf     }
1354692e01a2SKevin Wolf 
1355c2ad1b0cSKevin Wolf     if (filename != NULL) {
135657915332SKevin Wolf         pstrcpy(bs->filename, sizeof(bs->filename), filename);
1357c2ad1b0cSKevin Wolf     } else {
1358c2ad1b0cSKevin Wolf         bs->filename[0] = '\0';
1359c2ad1b0cSKevin Wolf     }
136091af7014SMax Reitz     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
136157915332SKevin Wolf 
136266f82ceeSKevin Wolf     /* Open the image, either directly or using a protocol */
136382dc8b41SKevin Wolf     open_flags = bdrv_open_flags(bs, bs->open_flags);
136401a56501SKevin Wolf     node_name = qemu_opt_get(opts, "node-name");
136566f82ceeSKevin Wolf 
136601a56501SKevin Wolf     assert(!drv->bdrv_file_open || file == NULL);
136701a56501SKevin Wolf     ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
136857915332SKevin Wolf     if (ret < 0) {
136901a56501SKevin Wolf         goto fail_opts;
137034b5d2c6SMax Reitz     }
137118edf289SKevin Wolf 
137218edf289SKevin Wolf     qemu_opts_del(opts);
137357915332SKevin Wolf     return 0;
137457915332SKevin Wolf 
137518edf289SKevin Wolf fail_opts:
137618edf289SKevin Wolf     qemu_opts_del(opts);
137757915332SKevin Wolf     return ret;
137857915332SKevin Wolf }
137957915332SKevin Wolf 
13805e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp)
13815e5c4f63SKevin Wolf {
13825e5c4f63SKevin Wolf     QObject *options_obj;
13835e5c4f63SKevin Wolf     QDict *options;
13845e5c4f63SKevin Wolf     int ret;
13855e5c4f63SKevin Wolf 
13865e5c4f63SKevin Wolf     ret = strstart(filename, "json:", &filename);
13875e5c4f63SKevin Wolf     assert(ret);
13885e5c4f63SKevin Wolf 
13895577fff7SMarkus Armbruster     options_obj = qobject_from_json(filename, errp);
13905e5c4f63SKevin Wolf     if (!options_obj) {
13915577fff7SMarkus Armbruster         /* Work around qobject_from_json() lossage TODO fix that */
13925577fff7SMarkus Armbruster         if (errp && !*errp) {
13935e5c4f63SKevin Wolf             error_setg(errp, "Could not parse the JSON options");
13945e5c4f63SKevin Wolf             return NULL;
13955e5c4f63SKevin Wolf         }
13965577fff7SMarkus Armbruster         error_prepend(errp, "Could not parse the JSON options: ");
13975577fff7SMarkus Armbruster         return NULL;
13985577fff7SMarkus Armbruster     }
13995e5c4f63SKevin Wolf 
1400ca6b6e1eSMarkus Armbruster     options = qobject_to_qdict(options_obj);
1401ca6b6e1eSMarkus Armbruster     if (!options) {
14025e5c4f63SKevin Wolf         qobject_decref(options_obj);
14035e5c4f63SKevin Wolf         error_setg(errp, "Invalid JSON object given");
14045e5c4f63SKevin Wolf         return NULL;
14055e5c4f63SKevin Wolf     }
14065e5c4f63SKevin Wolf 
14075e5c4f63SKevin Wolf     qdict_flatten(options);
14085e5c4f63SKevin Wolf 
14095e5c4f63SKevin Wolf     return options;
14105e5c4f63SKevin Wolf }
14115e5c4f63SKevin Wolf 
1412de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename,
1413de3b53f0SKevin Wolf                                 Error **errp)
1414de3b53f0SKevin Wolf {
1415de3b53f0SKevin Wolf     QDict *json_options;
1416de3b53f0SKevin Wolf     Error *local_err = NULL;
1417de3b53f0SKevin Wolf 
1418de3b53f0SKevin Wolf     /* Parse json: pseudo-protocol */
1419de3b53f0SKevin Wolf     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1420de3b53f0SKevin Wolf         return;
1421de3b53f0SKevin Wolf     }
1422de3b53f0SKevin Wolf 
1423de3b53f0SKevin Wolf     json_options = parse_json_filename(*pfilename, &local_err);
1424de3b53f0SKevin Wolf     if (local_err) {
1425de3b53f0SKevin Wolf         error_propagate(errp, local_err);
1426de3b53f0SKevin Wolf         return;
1427de3b53f0SKevin Wolf     }
1428de3b53f0SKevin Wolf 
1429de3b53f0SKevin Wolf     /* Options given in the filename have lower priority than options
1430de3b53f0SKevin Wolf      * specified directly */
1431de3b53f0SKevin Wolf     qdict_join(options, json_options, false);
1432de3b53f0SKevin Wolf     QDECREF(json_options);
1433de3b53f0SKevin Wolf     *pfilename = NULL;
1434de3b53f0SKevin Wolf }
1435de3b53f0SKevin Wolf 
143657915332SKevin Wolf /*
1437f54120ffSKevin Wolf  * Fills in default options for opening images and converts the legacy
1438f54120ffSKevin Wolf  * filename/flags pair to option QDict entries.
143953a29513SMax Reitz  * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
144053a29513SMax Reitz  * block driver has been specified explicitly.
1441f54120ffSKevin Wolf  */
1442de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename,
1443053e1578SMax Reitz                              int *flags, Error **errp)
1444f54120ffSKevin Wolf {
1445f54120ffSKevin Wolf     const char *drvname;
144653a29513SMax Reitz     bool protocol = *flags & BDRV_O_PROTOCOL;
1447f54120ffSKevin Wolf     bool parse_filename = false;
1448053e1578SMax Reitz     BlockDriver *drv = NULL;
1449f54120ffSKevin Wolf     Error *local_err = NULL;
1450f54120ffSKevin Wolf 
1451129c7d1cSMarkus Armbruster     /*
1452129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
1453129c7d1cSMarkus Armbruster      * types would require more care.  When @options come from
1454129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
1455129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
1456129c7d1cSMarkus Armbruster      * QString.
1457129c7d1cSMarkus Armbruster      */
145853a29513SMax Reitz     drvname = qdict_get_try_str(*options, "driver");
1459053e1578SMax Reitz     if (drvname) {
1460053e1578SMax Reitz         drv = bdrv_find_format(drvname);
1461053e1578SMax Reitz         if (!drv) {
1462053e1578SMax Reitz             error_setg(errp, "Unknown driver '%s'", drvname);
1463053e1578SMax Reitz             return -ENOENT;
1464053e1578SMax Reitz         }
146553a29513SMax Reitz         /* If the user has explicitly specified the driver, this choice should
146653a29513SMax Reitz          * override the BDRV_O_PROTOCOL flag */
1467053e1578SMax Reitz         protocol = drv->bdrv_file_open;
146853a29513SMax Reitz     }
146953a29513SMax Reitz 
147053a29513SMax Reitz     if (protocol) {
147153a29513SMax Reitz         *flags |= BDRV_O_PROTOCOL;
147253a29513SMax Reitz     } else {
147353a29513SMax Reitz         *flags &= ~BDRV_O_PROTOCOL;
147453a29513SMax Reitz     }
147553a29513SMax Reitz 
147691a097e7SKevin Wolf     /* Translate cache options from flags into options */
147791a097e7SKevin Wolf     update_options_from_flags(*options, *flags);
147891a097e7SKevin Wolf 
1479f54120ffSKevin Wolf     /* Fetch the file name from the options QDict if necessary */
148017b005f1SKevin Wolf     if (protocol && filename) {
1481f54120ffSKevin Wolf         if (!qdict_haskey(*options, "filename")) {
148246f5ac20SEric Blake             qdict_put_str(*options, "filename", filename);
1483f54120ffSKevin Wolf             parse_filename = true;
1484f54120ffSKevin Wolf         } else {
1485f54120ffSKevin Wolf             error_setg(errp, "Can't specify 'file' and 'filename' options at "
1486f54120ffSKevin Wolf                              "the same time");
1487f54120ffSKevin Wolf             return -EINVAL;
1488f54120ffSKevin Wolf         }
1489f54120ffSKevin Wolf     }
1490f54120ffSKevin Wolf 
1491f54120ffSKevin Wolf     /* Find the right block driver */
1492129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
1493f54120ffSKevin Wolf     filename = qdict_get_try_str(*options, "filename");
1494f54120ffSKevin Wolf 
149517b005f1SKevin Wolf     if (!drvname && protocol) {
1496f54120ffSKevin Wolf         if (filename) {
1497b65a5e12SMax Reitz             drv = bdrv_find_protocol(filename, parse_filename, errp);
1498f54120ffSKevin Wolf             if (!drv) {
1499f54120ffSKevin Wolf                 return -EINVAL;
1500f54120ffSKevin Wolf             }
1501f54120ffSKevin Wolf 
1502f54120ffSKevin Wolf             drvname = drv->format_name;
150346f5ac20SEric Blake             qdict_put_str(*options, "driver", drvname);
1504f54120ffSKevin Wolf         } else {
1505f54120ffSKevin Wolf             error_setg(errp, "Must specify either driver or file");
1506f54120ffSKevin Wolf             return -EINVAL;
1507f54120ffSKevin Wolf         }
150817b005f1SKevin Wolf     }
150917b005f1SKevin Wolf 
151017b005f1SKevin Wolf     assert(drv || !protocol);
1511f54120ffSKevin Wolf 
1512f54120ffSKevin Wolf     /* Driver-specific filename parsing */
151317b005f1SKevin Wolf     if (drv && drv->bdrv_parse_filename && parse_filename) {
1514f54120ffSKevin Wolf         drv->bdrv_parse_filename(filename, *options, &local_err);
1515f54120ffSKevin Wolf         if (local_err) {
1516f54120ffSKevin Wolf             error_propagate(errp, local_err);
1517f54120ffSKevin Wolf             return -EINVAL;
1518f54120ffSKevin Wolf         }
1519f54120ffSKevin Wolf 
1520f54120ffSKevin Wolf         if (!drv->bdrv_needs_filename) {
1521f54120ffSKevin Wolf             qdict_del(*options, "filename");
1522f54120ffSKevin Wolf         }
1523f54120ffSKevin Wolf     }
1524f54120ffSKevin Wolf 
1525f54120ffSKevin Wolf     return 0;
1526f54120ffSKevin Wolf }
1527f54120ffSKevin Wolf 
15283121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
15293121fb45SKevin Wolf                                  uint64_t perm, uint64_t shared,
1530c1cef672SFam Zheng                                  GSList *ignore_children, Error **errp);
1531c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c);
1532c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1533c1cef672SFam Zheng 
1534148eb13cSKevin Wolf typedef struct BlockReopenQueueEntry {
1535148eb13cSKevin Wolf      bool prepared;
1536148eb13cSKevin Wolf      BDRVReopenState state;
1537148eb13cSKevin Wolf      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1538148eb13cSKevin Wolf } BlockReopenQueueEntry;
1539148eb13cSKevin Wolf 
1540148eb13cSKevin Wolf /*
1541148eb13cSKevin Wolf  * Return the flags that @bs will have after the reopens in @q have
1542148eb13cSKevin Wolf  * successfully completed. If @q is NULL (or @bs is not contained in @q),
1543148eb13cSKevin Wolf  * return the current flags.
1544148eb13cSKevin Wolf  */
1545148eb13cSKevin Wolf static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1546148eb13cSKevin Wolf {
1547148eb13cSKevin Wolf     BlockReopenQueueEntry *entry;
1548148eb13cSKevin Wolf 
1549148eb13cSKevin Wolf     if (q != NULL) {
1550148eb13cSKevin Wolf         QSIMPLEQ_FOREACH(entry, q, entry) {
1551148eb13cSKevin Wolf             if (entry->state.bs == bs) {
1552148eb13cSKevin Wolf                 return entry->state.flags;
1553148eb13cSKevin Wolf             }
1554148eb13cSKevin Wolf         }
1555148eb13cSKevin Wolf     }
1556148eb13cSKevin Wolf 
1557148eb13cSKevin Wolf     return bs->open_flags;
1558148eb13cSKevin Wolf }
1559148eb13cSKevin Wolf 
1560148eb13cSKevin Wolf /* Returns whether the image file can be written to after the reopen queue @q
1561148eb13cSKevin Wolf  * has been successfully applied, or right now if @q is NULL. */
1562148eb13cSKevin Wolf static bool bdrv_is_writable(BlockDriverState *bs, BlockReopenQueue *q)
1563148eb13cSKevin Wolf {
1564148eb13cSKevin Wolf     int flags = bdrv_reopen_get_flags(q, bs);
1565148eb13cSKevin Wolf 
1566148eb13cSKevin Wolf     return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1567148eb13cSKevin Wolf }
1568148eb13cSKevin Wolf 
1569ffd1a5a2SFam Zheng static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
1570e0995dc3SKevin Wolf                             BdrvChild *c, const BdrvChildRole *role,
1571e0995dc3SKevin Wolf                             BlockReopenQueue *reopen_queue,
1572ffd1a5a2SFam Zheng                             uint64_t parent_perm, uint64_t parent_shared,
1573ffd1a5a2SFam Zheng                             uint64_t *nperm, uint64_t *nshared)
1574ffd1a5a2SFam Zheng {
1575ffd1a5a2SFam Zheng     if (bs->drv && bs->drv->bdrv_child_perm) {
1576e0995dc3SKevin Wolf         bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
1577ffd1a5a2SFam Zheng                                  parent_perm, parent_shared,
1578ffd1a5a2SFam Zheng                                  nperm, nshared);
1579ffd1a5a2SFam Zheng     }
1580e0995dc3SKevin Wolf     /* TODO Take force_share from reopen_queue */
1581ffd1a5a2SFam Zheng     if (child_bs && child_bs->force_share) {
1582ffd1a5a2SFam Zheng         *nshared = BLK_PERM_ALL;
1583ffd1a5a2SFam Zheng     }
1584ffd1a5a2SFam Zheng }
1585ffd1a5a2SFam Zheng 
158633a610c3SKevin Wolf /*
158733a610c3SKevin Wolf  * Check whether permissions on this node can be changed in a way that
158833a610c3SKevin Wolf  * @cumulative_perms and @cumulative_shared_perms are the new cumulative
158933a610c3SKevin Wolf  * permissions of all its parents. This involves checking whether all necessary
159033a610c3SKevin Wolf  * permission changes to child nodes can be performed.
159133a610c3SKevin Wolf  *
159233a610c3SKevin Wolf  * A call to this function must always be followed by a call to bdrv_set_perm()
159333a610c3SKevin Wolf  * or bdrv_abort_perm_update().
159433a610c3SKevin Wolf  */
15953121fb45SKevin Wolf static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
15963121fb45SKevin Wolf                            uint64_t cumulative_perms,
159746181129SKevin Wolf                            uint64_t cumulative_shared_perms,
159846181129SKevin Wolf                            GSList *ignore_children, Error **errp)
159933a610c3SKevin Wolf {
160033a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
160133a610c3SKevin Wolf     BdrvChild *c;
160233a610c3SKevin Wolf     int ret;
160333a610c3SKevin Wolf 
160433a610c3SKevin Wolf     /* Write permissions never work with read-only images */
160533a610c3SKevin Wolf     if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
1606148eb13cSKevin Wolf         !bdrv_is_writable(bs, q))
160733a610c3SKevin Wolf     {
160833a610c3SKevin Wolf         error_setg(errp, "Block node is read-only");
160933a610c3SKevin Wolf         return -EPERM;
161033a610c3SKevin Wolf     }
161133a610c3SKevin Wolf 
161233a610c3SKevin Wolf     /* Check this node */
161333a610c3SKevin Wolf     if (!drv) {
161433a610c3SKevin Wolf         return 0;
161533a610c3SKevin Wolf     }
161633a610c3SKevin Wolf 
161733a610c3SKevin Wolf     if (drv->bdrv_check_perm) {
161833a610c3SKevin Wolf         return drv->bdrv_check_perm(bs, cumulative_perms,
161933a610c3SKevin Wolf                                     cumulative_shared_perms, errp);
162033a610c3SKevin Wolf     }
162133a610c3SKevin Wolf 
162278e421c9SKevin Wolf     /* Drivers that never have children can omit .bdrv_child_perm() */
162333a610c3SKevin Wolf     if (!drv->bdrv_child_perm) {
162478e421c9SKevin Wolf         assert(QLIST_EMPTY(&bs->children));
162533a610c3SKevin Wolf         return 0;
162633a610c3SKevin Wolf     }
162733a610c3SKevin Wolf 
162833a610c3SKevin Wolf     /* Check all children */
162933a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
163033a610c3SKevin Wolf         uint64_t cur_perm, cur_shared;
16313121fb45SKevin Wolf         bdrv_child_perm(bs, c->bs, c, c->role, q,
163233a610c3SKevin Wolf                         cumulative_perms, cumulative_shared_perms,
163333a610c3SKevin Wolf                         &cur_perm, &cur_shared);
16343121fb45SKevin Wolf         ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
16353121fb45SKevin Wolf                                     ignore_children, errp);
163633a610c3SKevin Wolf         if (ret < 0) {
163733a610c3SKevin Wolf             return ret;
163833a610c3SKevin Wolf         }
163933a610c3SKevin Wolf     }
164033a610c3SKevin Wolf 
164133a610c3SKevin Wolf     return 0;
164233a610c3SKevin Wolf }
164333a610c3SKevin Wolf 
164433a610c3SKevin Wolf /*
164533a610c3SKevin Wolf  * Notifies drivers that after a previous bdrv_check_perm() call, the
164633a610c3SKevin Wolf  * permission update is not performed and any preparations made for it (e.g.
164733a610c3SKevin Wolf  * taken file locks) need to be undone.
164833a610c3SKevin Wolf  *
164933a610c3SKevin Wolf  * This function recursively notifies all child nodes.
165033a610c3SKevin Wolf  */
165133a610c3SKevin Wolf static void bdrv_abort_perm_update(BlockDriverState *bs)
165233a610c3SKevin Wolf {
165333a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
165433a610c3SKevin Wolf     BdrvChild *c;
165533a610c3SKevin Wolf 
165633a610c3SKevin Wolf     if (!drv) {
165733a610c3SKevin Wolf         return;
165833a610c3SKevin Wolf     }
165933a610c3SKevin Wolf 
166033a610c3SKevin Wolf     if (drv->bdrv_abort_perm_update) {
166133a610c3SKevin Wolf         drv->bdrv_abort_perm_update(bs);
166233a610c3SKevin Wolf     }
166333a610c3SKevin Wolf 
166433a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
166533a610c3SKevin Wolf         bdrv_child_abort_perm_update(c);
166633a610c3SKevin Wolf     }
166733a610c3SKevin Wolf }
166833a610c3SKevin Wolf 
166933a610c3SKevin Wolf static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
167033a610c3SKevin Wolf                           uint64_t cumulative_shared_perms)
167133a610c3SKevin Wolf {
167233a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
167333a610c3SKevin Wolf     BdrvChild *c;
167433a610c3SKevin Wolf 
167533a610c3SKevin Wolf     if (!drv) {
167633a610c3SKevin Wolf         return;
167733a610c3SKevin Wolf     }
167833a610c3SKevin Wolf 
167933a610c3SKevin Wolf     /* Update this node */
168033a610c3SKevin Wolf     if (drv->bdrv_set_perm) {
168133a610c3SKevin Wolf         drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
168233a610c3SKevin Wolf     }
168333a610c3SKevin Wolf 
168478e421c9SKevin Wolf     /* Drivers that never have children can omit .bdrv_child_perm() */
168533a610c3SKevin Wolf     if (!drv->bdrv_child_perm) {
168678e421c9SKevin Wolf         assert(QLIST_EMPTY(&bs->children));
168733a610c3SKevin Wolf         return;
168833a610c3SKevin Wolf     }
168933a610c3SKevin Wolf 
169033a610c3SKevin Wolf     /* Update all children */
169133a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
169233a610c3SKevin Wolf         uint64_t cur_perm, cur_shared;
1693e0995dc3SKevin Wolf         bdrv_child_perm(bs, c->bs, c, c->role, NULL,
169433a610c3SKevin Wolf                         cumulative_perms, cumulative_shared_perms,
169533a610c3SKevin Wolf                         &cur_perm, &cur_shared);
169633a610c3SKevin Wolf         bdrv_child_set_perm(c, cur_perm, cur_shared);
169733a610c3SKevin Wolf     }
169833a610c3SKevin Wolf }
169933a610c3SKevin Wolf 
170033a610c3SKevin Wolf static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
170133a610c3SKevin Wolf                                      uint64_t *shared_perm)
170233a610c3SKevin Wolf {
170333a610c3SKevin Wolf     BdrvChild *c;
170433a610c3SKevin Wolf     uint64_t cumulative_perms = 0;
170533a610c3SKevin Wolf     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
170633a610c3SKevin Wolf 
170733a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
170833a610c3SKevin Wolf         cumulative_perms |= c->perm;
170933a610c3SKevin Wolf         cumulative_shared_perms &= c->shared_perm;
171033a610c3SKevin Wolf     }
171133a610c3SKevin Wolf 
171233a610c3SKevin Wolf     *perm = cumulative_perms;
171333a610c3SKevin Wolf     *shared_perm = cumulative_shared_perms;
171433a610c3SKevin Wolf }
171533a610c3SKevin Wolf 
1716d083319fSKevin Wolf static char *bdrv_child_user_desc(BdrvChild *c)
1717d083319fSKevin Wolf {
1718d083319fSKevin Wolf     if (c->role->get_parent_desc) {
1719d083319fSKevin Wolf         return c->role->get_parent_desc(c);
1720d083319fSKevin Wolf     }
1721d083319fSKevin Wolf 
1722d083319fSKevin Wolf     return g_strdup("another user");
1723d083319fSKevin Wolf }
1724d083319fSKevin Wolf 
17255176196cSFam Zheng char *bdrv_perm_names(uint64_t perm)
1726d083319fSKevin Wolf {
1727d083319fSKevin Wolf     struct perm_name {
1728d083319fSKevin Wolf         uint64_t perm;
1729d083319fSKevin Wolf         const char *name;
1730d083319fSKevin Wolf     } permissions[] = {
1731d083319fSKevin Wolf         { BLK_PERM_CONSISTENT_READ, "consistent read" },
1732d083319fSKevin Wolf         { BLK_PERM_WRITE,           "write" },
1733d083319fSKevin Wolf         { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1734d083319fSKevin Wolf         { BLK_PERM_RESIZE,          "resize" },
1735d083319fSKevin Wolf         { BLK_PERM_GRAPH_MOD,       "change children" },
1736d083319fSKevin Wolf         { 0, NULL }
1737d083319fSKevin Wolf     };
1738d083319fSKevin Wolf 
1739d083319fSKevin Wolf     char *result = g_strdup("");
1740d083319fSKevin Wolf     struct perm_name *p;
1741d083319fSKevin Wolf 
1742d083319fSKevin Wolf     for (p = permissions; p->name; p++) {
1743d083319fSKevin Wolf         if (perm & p->perm) {
1744d083319fSKevin Wolf             char *old = result;
1745d083319fSKevin Wolf             result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1746d083319fSKevin Wolf             g_free(old);
1747d083319fSKevin Wolf         }
1748d083319fSKevin Wolf     }
1749d083319fSKevin Wolf 
1750d083319fSKevin Wolf     return result;
1751d083319fSKevin Wolf }
1752d083319fSKevin Wolf 
175333a610c3SKevin Wolf /*
175433a610c3SKevin Wolf  * Checks whether a new reference to @bs can be added if the new user requires
175546181129SKevin Wolf  * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
175646181129SKevin Wolf  * set, the BdrvChild objects in this list are ignored in the calculations;
175746181129SKevin Wolf  * this allows checking permission updates for an existing reference.
175833a610c3SKevin Wolf  *
175933a610c3SKevin Wolf  * Needs to be followed by a call to either bdrv_set_perm() or
176033a610c3SKevin Wolf  * bdrv_abort_perm_update(). */
17613121fb45SKevin Wolf static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
17623121fb45SKevin Wolf                                   uint64_t new_used_perm,
1763d5e6f437SKevin Wolf                                   uint64_t new_shared_perm,
176446181129SKevin Wolf                                   GSList *ignore_children, Error **errp)
1765d5e6f437SKevin Wolf {
1766d5e6f437SKevin Wolf     BdrvChild *c;
176733a610c3SKevin Wolf     uint64_t cumulative_perms = new_used_perm;
176833a610c3SKevin Wolf     uint64_t cumulative_shared_perms = new_shared_perm;
1769d5e6f437SKevin Wolf 
1770d5e6f437SKevin Wolf     /* There is no reason why anyone couldn't tolerate write_unchanged */
1771d5e6f437SKevin Wolf     assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1772d5e6f437SKevin Wolf 
1773d5e6f437SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
177446181129SKevin Wolf         if (g_slist_find(ignore_children, c)) {
1775d5e6f437SKevin Wolf             continue;
1776d5e6f437SKevin Wolf         }
1777d5e6f437SKevin Wolf 
1778d083319fSKevin Wolf         if ((new_used_perm & c->shared_perm) != new_used_perm) {
1779d083319fSKevin Wolf             char *user = bdrv_child_user_desc(c);
1780d083319fSKevin Wolf             char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1781d083319fSKevin Wolf             error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1782d083319fSKevin Wolf                              "allow '%s' on %s",
1783d083319fSKevin Wolf                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1784d083319fSKevin Wolf             g_free(user);
1785d083319fSKevin Wolf             g_free(perm_names);
1786d083319fSKevin Wolf             return -EPERM;
1787d5e6f437SKevin Wolf         }
1788d083319fSKevin Wolf 
1789d083319fSKevin Wolf         if ((c->perm & new_shared_perm) != c->perm) {
1790d083319fSKevin Wolf             char *user = bdrv_child_user_desc(c);
1791d083319fSKevin Wolf             char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1792d083319fSKevin Wolf             error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1793d083319fSKevin Wolf                              "'%s' on %s",
1794d083319fSKevin Wolf                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1795d083319fSKevin Wolf             g_free(user);
1796d083319fSKevin Wolf             g_free(perm_names);
1797d5e6f437SKevin Wolf             return -EPERM;
1798d5e6f437SKevin Wolf         }
179933a610c3SKevin Wolf 
180033a610c3SKevin Wolf         cumulative_perms |= c->perm;
180133a610c3SKevin Wolf         cumulative_shared_perms &= c->shared_perm;
1802d5e6f437SKevin Wolf     }
1803d5e6f437SKevin Wolf 
18043121fb45SKevin Wolf     return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
180546181129SKevin Wolf                            ignore_children, errp);
180633a610c3SKevin Wolf }
180733a610c3SKevin Wolf 
180833a610c3SKevin Wolf /* Needs to be followed by a call to either bdrv_child_set_perm() or
180933a610c3SKevin Wolf  * bdrv_child_abort_perm_update(). */
18103121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
18113121fb45SKevin Wolf                                  uint64_t perm, uint64_t shared,
181246181129SKevin Wolf                                  GSList *ignore_children, Error **errp)
181333a610c3SKevin Wolf {
181446181129SKevin Wolf     int ret;
181546181129SKevin Wolf 
181646181129SKevin Wolf     ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
18173121fb45SKevin Wolf     ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
181846181129SKevin Wolf     g_slist_free(ignore_children);
181946181129SKevin Wolf 
182046181129SKevin Wolf     return ret;
182133a610c3SKevin Wolf }
182233a610c3SKevin Wolf 
1823c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
182433a610c3SKevin Wolf {
182533a610c3SKevin Wolf     uint64_t cumulative_perms, cumulative_shared_perms;
182633a610c3SKevin Wolf 
182733a610c3SKevin Wolf     c->perm = perm;
182833a610c3SKevin Wolf     c->shared_perm = shared;
182933a610c3SKevin Wolf 
183033a610c3SKevin Wolf     bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
183133a610c3SKevin Wolf                              &cumulative_shared_perms);
183233a610c3SKevin Wolf     bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
183333a610c3SKevin Wolf }
183433a610c3SKevin Wolf 
1835c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c)
183633a610c3SKevin Wolf {
183733a610c3SKevin Wolf     bdrv_abort_perm_update(c->bs);
183833a610c3SKevin Wolf }
183933a610c3SKevin Wolf 
184033a610c3SKevin Wolf int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
184133a610c3SKevin Wolf                             Error **errp)
184233a610c3SKevin Wolf {
184333a610c3SKevin Wolf     int ret;
184433a610c3SKevin Wolf 
18453121fb45SKevin Wolf     ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
184633a610c3SKevin Wolf     if (ret < 0) {
184733a610c3SKevin Wolf         bdrv_child_abort_perm_update(c);
184833a610c3SKevin Wolf         return ret;
184933a610c3SKevin Wolf     }
185033a610c3SKevin Wolf 
185133a610c3SKevin Wolf     bdrv_child_set_perm(c, perm, shared);
185233a610c3SKevin Wolf 
1853d5e6f437SKevin Wolf     return 0;
1854d5e6f437SKevin Wolf }
1855d5e6f437SKevin Wolf 
18566a1b9ee1SKevin Wolf #define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \
18576a1b9ee1SKevin Wolf                                  | BLK_PERM_WRITE \
18586a1b9ee1SKevin Wolf                                  | BLK_PERM_WRITE_UNCHANGED \
18596a1b9ee1SKevin Wolf                                  | BLK_PERM_RESIZE)
18606a1b9ee1SKevin Wolf #define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH)
18616a1b9ee1SKevin Wolf 
18626a1b9ee1SKevin Wolf void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
18636a1b9ee1SKevin Wolf                                const BdrvChildRole *role,
1864e0995dc3SKevin Wolf                                BlockReopenQueue *reopen_queue,
18656a1b9ee1SKevin Wolf                                uint64_t perm, uint64_t shared,
18666a1b9ee1SKevin Wolf                                uint64_t *nperm, uint64_t *nshared)
18676a1b9ee1SKevin Wolf {
18686a1b9ee1SKevin Wolf     if (c == NULL) {
18696a1b9ee1SKevin Wolf         *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
18706a1b9ee1SKevin Wolf         *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
18716a1b9ee1SKevin Wolf         return;
18726a1b9ee1SKevin Wolf     }
18736a1b9ee1SKevin Wolf 
18746a1b9ee1SKevin Wolf     *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
18756a1b9ee1SKevin Wolf              (c->perm & DEFAULT_PERM_UNCHANGED);
18766a1b9ee1SKevin Wolf     *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
18776a1b9ee1SKevin Wolf                (c->shared_perm & DEFAULT_PERM_UNCHANGED);
18786a1b9ee1SKevin Wolf }
18796a1b9ee1SKevin Wolf 
18806b1a044aSKevin Wolf void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
18816b1a044aSKevin Wolf                                const BdrvChildRole *role,
1882e0995dc3SKevin Wolf                                BlockReopenQueue *reopen_queue,
18836b1a044aSKevin Wolf                                uint64_t perm, uint64_t shared,
18846b1a044aSKevin Wolf                                uint64_t *nperm, uint64_t *nshared)
18856b1a044aSKevin Wolf {
18866b1a044aSKevin Wolf     bool backing = (role == &child_backing);
18876b1a044aSKevin Wolf     assert(role == &child_backing || role == &child_file);
18886b1a044aSKevin Wolf 
18896b1a044aSKevin Wolf     if (!backing) {
18906b1a044aSKevin Wolf         /* Apart from the modifications below, the same permissions are
18916b1a044aSKevin Wolf          * forwarded and left alone as for filters */
1892e0995dc3SKevin Wolf         bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
1893e0995dc3SKevin Wolf                                   &perm, &shared);
18946b1a044aSKevin Wolf 
18956b1a044aSKevin Wolf         /* Format drivers may touch metadata even if the guest doesn't write */
1896148eb13cSKevin Wolf         if (bdrv_is_writable(bs, reopen_queue)) {
18976b1a044aSKevin Wolf             perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
18986b1a044aSKevin Wolf         }
18996b1a044aSKevin Wolf 
19006b1a044aSKevin Wolf         /* bs->file always needs to be consistent because of the metadata. We
19016b1a044aSKevin Wolf          * can never allow other users to resize or write to it. */
19026b1a044aSKevin Wolf         perm |= BLK_PERM_CONSISTENT_READ;
19036b1a044aSKevin Wolf         shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
19046b1a044aSKevin Wolf     } else {
19056b1a044aSKevin Wolf         /* We want consistent read from backing files if the parent needs it.
19066b1a044aSKevin Wolf          * No other operations are performed on backing files. */
19076b1a044aSKevin Wolf         perm &= BLK_PERM_CONSISTENT_READ;
19086b1a044aSKevin Wolf 
19096b1a044aSKevin Wolf         /* If the parent can deal with changing data, we're okay with a
19106b1a044aSKevin Wolf          * writable and resizable backing file. */
19116b1a044aSKevin Wolf         /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
19126b1a044aSKevin Wolf         if (shared & BLK_PERM_WRITE) {
19136b1a044aSKevin Wolf             shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
19146b1a044aSKevin Wolf         } else {
19156b1a044aSKevin Wolf             shared = 0;
19166b1a044aSKevin Wolf         }
19176b1a044aSKevin Wolf 
19186b1a044aSKevin Wolf         shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
19196b1a044aSKevin Wolf                   BLK_PERM_WRITE_UNCHANGED;
19206b1a044aSKevin Wolf     }
19216b1a044aSKevin Wolf 
19229c5e6594SKevin Wolf     if (bs->open_flags & BDRV_O_INACTIVE) {
19239c5e6594SKevin Wolf         shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
19249c5e6594SKevin Wolf     }
19259c5e6594SKevin Wolf 
19266b1a044aSKevin Wolf     *nperm = perm;
19276b1a044aSKevin Wolf     *nshared = shared;
19286b1a044aSKevin Wolf }
19296b1a044aSKevin Wolf 
19308ee03995SKevin Wolf static void bdrv_replace_child_noperm(BdrvChild *child,
19318ee03995SKevin Wolf                                       BlockDriverState *new_bs)
1932e9740bc6SKevin Wolf {
1933e9740bc6SKevin Wolf     BlockDriverState *old_bs = child->bs;
1934e9740bc6SKevin Wolf 
1935bb2614e9SFam Zheng     if (old_bs && new_bs) {
1936bb2614e9SFam Zheng         assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
1937bb2614e9SFam Zheng     }
1938e9740bc6SKevin Wolf     if (old_bs) {
193936fe1331SKevin Wolf         if (old_bs->quiesce_counter && child->role->drained_end) {
194036fe1331SKevin Wolf             child->role->drained_end(child);
1941e9740bc6SKevin Wolf         }
1942db95dbbaSKevin Wolf         if (child->role->detach) {
1943db95dbbaSKevin Wolf             child->role->detach(child);
1944db95dbbaSKevin Wolf         }
194536fe1331SKevin Wolf         QLIST_REMOVE(child, next_parent);
1946e9740bc6SKevin Wolf     }
1947e9740bc6SKevin Wolf 
1948e9740bc6SKevin Wolf     child->bs = new_bs;
194936fe1331SKevin Wolf 
195036fe1331SKevin Wolf     if (new_bs) {
195136fe1331SKevin Wolf         QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
195236fe1331SKevin Wolf         if (new_bs->quiesce_counter && child->role->drained_begin) {
195336fe1331SKevin Wolf             child->role->drained_begin(child);
195436fe1331SKevin Wolf         }
195533a610c3SKevin Wolf 
1956db95dbbaSKevin Wolf         if (child->role->attach) {
1957db95dbbaSKevin Wolf             child->role->attach(child);
1958db95dbbaSKevin Wolf         }
195936fe1331SKevin Wolf     }
1960e9740bc6SKevin Wolf }
1961e9740bc6SKevin Wolf 
1962466787fbSKevin Wolf /*
1963466787fbSKevin Wolf  * Updates @child to change its reference to point to @new_bs, including
1964466787fbSKevin Wolf  * checking and applying the necessary permisson updates both to the old node
1965466787fbSKevin Wolf  * and to @new_bs.
1966466787fbSKevin Wolf  *
1967466787fbSKevin Wolf  * NULL is passed as @new_bs for removing the reference before freeing @child.
1968466787fbSKevin Wolf  *
1969466787fbSKevin Wolf  * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
1970466787fbSKevin Wolf  * function uses bdrv_set_perm() to update the permissions according to the new
1971466787fbSKevin Wolf  * reference that @new_bs gets.
1972466787fbSKevin Wolf  */
1973466787fbSKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
19748ee03995SKevin Wolf {
19758ee03995SKevin Wolf     BlockDriverState *old_bs = child->bs;
19768ee03995SKevin Wolf     uint64_t perm, shared_perm;
19778ee03995SKevin Wolf 
19788aecf1d1SKevin Wolf     bdrv_replace_child_noperm(child, new_bs);
19798aecf1d1SKevin Wolf 
19808ee03995SKevin Wolf     if (old_bs) {
19818ee03995SKevin Wolf         /* Update permissions for old node. This is guaranteed to succeed
19828ee03995SKevin Wolf          * because we're just taking a parent away, so we're loosening
19838ee03995SKevin Wolf          * restrictions. */
19848ee03995SKevin Wolf         bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
19853121fb45SKevin Wolf         bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
19868ee03995SKevin Wolf         bdrv_set_perm(old_bs, perm, shared_perm);
19878ee03995SKevin Wolf     }
19888ee03995SKevin Wolf 
19898ee03995SKevin Wolf     if (new_bs) {
1990f54120ffSKevin Wolf         bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
1991f54120ffSKevin Wolf         bdrv_set_perm(new_bs, perm, shared_perm);
1992f54120ffSKevin Wolf     }
1993f54120ffSKevin Wolf }
1994f54120ffSKevin Wolf 
1995f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
1996260fecf1SKevin Wolf                                   const char *child_name,
199736fe1331SKevin Wolf                                   const BdrvChildRole *child_role,
1998d5e6f437SKevin Wolf                                   uint64_t perm, uint64_t shared_perm,
1999d5e6f437SKevin Wolf                                   void *opaque, Error **errp)
2000df581792SKevin Wolf {
2001d5e6f437SKevin Wolf     BdrvChild *child;
2002d5e6f437SKevin Wolf     int ret;
2003d5e6f437SKevin Wolf 
20043121fb45SKevin Wolf     ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
2005d5e6f437SKevin Wolf     if (ret < 0) {
200633a610c3SKevin Wolf         bdrv_abort_perm_update(child_bs);
2007d5e6f437SKevin Wolf         return NULL;
2008d5e6f437SKevin Wolf     }
2009d5e6f437SKevin Wolf 
2010d5e6f437SKevin Wolf     child = g_new(BdrvChild, 1);
2011df581792SKevin Wolf     *child = (BdrvChild) {
2012e9740bc6SKevin Wolf         .bs             = NULL,
2013260fecf1SKevin Wolf         .name           = g_strdup(child_name),
2014df581792SKevin Wolf         .role           = child_role,
2015d5e6f437SKevin Wolf         .perm           = perm,
2016d5e6f437SKevin Wolf         .shared_perm    = shared_perm,
201736fe1331SKevin Wolf         .opaque         = opaque,
2018df581792SKevin Wolf     };
2019df581792SKevin Wolf 
202033a610c3SKevin Wolf     /* This performs the matching bdrv_set_perm() for the above check. */
2021466787fbSKevin Wolf     bdrv_replace_child(child, child_bs);
2022b4b059f6SKevin Wolf 
2023b4b059f6SKevin Wolf     return child;
2024df581792SKevin Wolf }
2025df581792SKevin Wolf 
202698292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2027f21d96d0SKevin Wolf                              BlockDriverState *child_bs,
2028f21d96d0SKevin Wolf                              const char *child_name,
20298b2ff529SKevin Wolf                              const BdrvChildRole *child_role,
20308b2ff529SKevin Wolf                              Error **errp)
2031f21d96d0SKevin Wolf {
2032d5e6f437SKevin Wolf     BdrvChild *child;
2033f68c598bSKevin Wolf     uint64_t perm, shared_perm;
2034d5e6f437SKevin Wolf 
2035f68c598bSKevin Wolf     bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2036f68c598bSKevin Wolf 
2037f68c598bSKevin Wolf     assert(parent_bs->drv);
2038bb2614e9SFam Zheng     assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
2039e0995dc3SKevin Wolf     bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2040f68c598bSKevin Wolf                     perm, shared_perm, &perm, &shared_perm);
2041f68c598bSKevin Wolf 
2042d5e6f437SKevin Wolf     child = bdrv_root_attach_child(child_bs, child_name, child_role,
2043f68c598bSKevin Wolf                                    perm, shared_perm, parent_bs, errp);
2044d5e6f437SKevin Wolf     if (child == NULL) {
2045d5e6f437SKevin Wolf         return NULL;
2046d5e6f437SKevin Wolf     }
2047d5e6f437SKevin Wolf 
2048f21d96d0SKevin Wolf     QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2049f21d96d0SKevin Wolf     return child;
2050f21d96d0SKevin Wolf }
2051f21d96d0SKevin Wolf 
20523f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child)
205333a60407SKevin Wolf {
2054f21d96d0SKevin Wolf     if (child->next.le_prev) {
205533a60407SKevin Wolf         QLIST_REMOVE(child, next);
2056f21d96d0SKevin Wolf         child->next.le_prev = NULL;
2057f21d96d0SKevin Wolf     }
2058e9740bc6SKevin Wolf 
2059466787fbSKevin Wolf     bdrv_replace_child(child, NULL);
2060e9740bc6SKevin Wolf 
2061260fecf1SKevin Wolf     g_free(child->name);
206233a60407SKevin Wolf     g_free(child);
206333a60407SKevin Wolf }
206433a60407SKevin Wolf 
2065f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child)
206633a60407SKevin Wolf {
2067779020cbSKevin Wolf     BlockDriverState *child_bs;
2068779020cbSKevin Wolf 
2069f21d96d0SKevin Wolf     child_bs = child->bs;
2070f21d96d0SKevin Wolf     bdrv_detach_child(child);
2071f21d96d0SKevin Wolf     bdrv_unref(child_bs);
2072f21d96d0SKevin Wolf }
2073f21d96d0SKevin Wolf 
2074f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2075f21d96d0SKevin Wolf {
2076779020cbSKevin Wolf     if (child == NULL) {
2077779020cbSKevin Wolf         return;
2078779020cbSKevin Wolf     }
207933a60407SKevin Wolf 
208033a60407SKevin Wolf     if (child->bs->inherits_from == parent) {
20814e4bf5c4SKevin Wolf         BdrvChild *c;
20824e4bf5c4SKevin Wolf 
20834e4bf5c4SKevin Wolf         /* Remove inherits_from only when the last reference between parent and
20844e4bf5c4SKevin Wolf          * child->bs goes away. */
20854e4bf5c4SKevin Wolf         QLIST_FOREACH(c, &parent->children, next) {
20864e4bf5c4SKevin Wolf             if (c != child && c->bs == child->bs) {
20874e4bf5c4SKevin Wolf                 break;
20884e4bf5c4SKevin Wolf             }
20894e4bf5c4SKevin Wolf         }
20904e4bf5c4SKevin Wolf         if (c == NULL) {
209133a60407SKevin Wolf             child->bs->inherits_from = NULL;
209233a60407SKevin Wolf         }
20934e4bf5c4SKevin Wolf     }
209433a60407SKevin Wolf 
2095f21d96d0SKevin Wolf     bdrv_root_unref_child(child);
209633a60407SKevin Wolf }
209733a60407SKevin Wolf 
20985c8cab48SKevin Wolf 
20995c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
21005c8cab48SKevin Wolf {
21015c8cab48SKevin Wolf     BdrvChild *c;
21025c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
21035c8cab48SKevin Wolf         if (c->role->change_media) {
21045c8cab48SKevin Wolf             c->role->change_media(c, load);
21055c8cab48SKevin Wolf         }
21065c8cab48SKevin Wolf     }
21075c8cab48SKevin Wolf }
21085c8cab48SKevin Wolf 
21095c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs)
21105c8cab48SKevin Wolf {
21115c8cab48SKevin Wolf     BdrvChild *c;
21125c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
21135c8cab48SKevin Wolf         if (c->role->resize) {
21145c8cab48SKevin Wolf             c->role->resize(c);
21155c8cab48SKevin Wolf         }
21165c8cab48SKevin Wolf     }
21175c8cab48SKevin Wolf }
21185c8cab48SKevin Wolf 
21195db15a57SKevin Wolf /*
21205db15a57SKevin Wolf  * Sets the backing file link of a BDS. A new reference is created; callers
21215db15a57SKevin Wolf  * which don't need their own reference any more must call bdrv_unref().
21225db15a57SKevin Wolf  */
212312fa4af6SKevin Wolf void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
212412fa4af6SKevin Wolf                          Error **errp)
21258d24cce1SFam Zheng {
21265db15a57SKevin Wolf     if (backing_hd) {
21275db15a57SKevin Wolf         bdrv_ref(backing_hd);
21285db15a57SKevin Wolf     }
21298d24cce1SFam Zheng 
2130760e0063SKevin Wolf     if (bs->backing) {
21315db15a57SKevin Wolf         bdrv_unref_child(bs, bs->backing);
2132826b6ca0SFam Zheng     }
2133826b6ca0SFam Zheng 
21348d24cce1SFam Zheng     if (!backing_hd) {
2135760e0063SKevin Wolf         bs->backing = NULL;
21368d24cce1SFam Zheng         goto out;
21378d24cce1SFam Zheng     }
213812fa4af6SKevin Wolf 
21398b2ff529SKevin Wolf     bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
214012fa4af6SKevin Wolf                                     errp);
214112fa4af6SKevin Wolf     if (!bs->backing) {
214212fa4af6SKevin Wolf         bdrv_unref(backing_hd);
214312fa4af6SKevin Wolf     }
2144826b6ca0SFam Zheng 
21459e7e940cSKevin Wolf     bdrv_refresh_filename(bs);
21469e7e940cSKevin Wolf 
21478d24cce1SFam Zheng out:
21483baca891SKevin Wolf     bdrv_refresh_limits(bs, NULL);
21498d24cce1SFam Zheng }
21508d24cce1SFam Zheng 
215131ca6d07SKevin Wolf /*
215231ca6d07SKevin Wolf  * Opens the backing file for a BlockDriverState if not yet open
215331ca6d07SKevin Wolf  *
2154d9b7b057SKevin Wolf  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2155d9b7b057SKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2156d9b7b057SKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
2157d9b7b057SKevin Wolf  * BlockdevRef.
2158d9b7b057SKevin Wolf  *
2159d9b7b057SKevin Wolf  * TODO Can this be unified with bdrv_open_image()?
216031ca6d07SKevin Wolf  */
2161d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2162d9b7b057SKevin Wolf                            const char *bdref_key, Error **errp)
21639156df12SPaolo Bonzini {
21641ba4b6a5SBenoît Canet     char *backing_filename = g_malloc0(PATH_MAX);
2165d9b7b057SKevin Wolf     char *bdref_key_dot;
2166d9b7b057SKevin Wolf     const char *reference = NULL;
2167317fc44eSKevin Wolf     int ret = 0;
21688d24cce1SFam Zheng     BlockDriverState *backing_hd;
2169d9b7b057SKevin Wolf     QDict *options;
2170d9b7b057SKevin Wolf     QDict *tmp_parent_options = NULL;
217134b5d2c6SMax Reitz     Error *local_err = NULL;
21729156df12SPaolo Bonzini 
2173760e0063SKevin Wolf     if (bs->backing != NULL) {
21741ba4b6a5SBenoît Canet         goto free_exit;
21759156df12SPaolo Bonzini     }
21769156df12SPaolo Bonzini 
217731ca6d07SKevin Wolf     /* NULL means an empty set of options */
2178d9b7b057SKevin Wolf     if (parent_options == NULL) {
2179d9b7b057SKevin Wolf         tmp_parent_options = qdict_new();
2180d9b7b057SKevin Wolf         parent_options = tmp_parent_options;
218131ca6d07SKevin Wolf     }
218231ca6d07SKevin Wolf 
21839156df12SPaolo Bonzini     bs->open_flags &= ~BDRV_O_NO_BACKING;
2184d9b7b057SKevin Wolf 
2185d9b7b057SKevin Wolf     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2186d9b7b057SKevin Wolf     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2187d9b7b057SKevin Wolf     g_free(bdref_key_dot);
2188d9b7b057SKevin Wolf 
2189129c7d1cSMarkus Armbruster     /*
2190129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
2191129c7d1cSMarkus Armbruster      * types would require more care.  When @parent_options come from
2192129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
2193129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
2194129c7d1cSMarkus Armbruster      * QString.
2195129c7d1cSMarkus Armbruster      */
2196d9b7b057SKevin Wolf     reference = qdict_get_try_str(parent_options, bdref_key);
2197d9b7b057SKevin Wolf     if (reference || qdict_haskey(options, "file.filename")) {
21981cb6f506SKevin Wolf         backing_filename[0] = '\0';
21991cb6f506SKevin Wolf     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
220031ca6d07SKevin Wolf         QDECREF(options);
22011ba4b6a5SBenoît Canet         goto free_exit;
2202dbecebddSFam Zheng     } else {
22039f07429eSMax Reitz         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
22049f07429eSMax Reitz                                        &local_err);
22059f07429eSMax Reitz         if (local_err) {
22069f07429eSMax Reitz             ret = -EINVAL;
22079f07429eSMax Reitz             error_propagate(errp, local_err);
22089f07429eSMax Reitz             QDECREF(options);
22099f07429eSMax Reitz             goto free_exit;
22109f07429eSMax Reitz         }
22119156df12SPaolo Bonzini     }
22129156df12SPaolo Bonzini 
22138ee79e70SKevin Wolf     if (!bs->drv || !bs->drv->supports_backing) {
22148ee79e70SKevin Wolf         ret = -EINVAL;
22158ee79e70SKevin Wolf         error_setg(errp, "Driver doesn't support backing files");
22168ee79e70SKevin Wolf         QDECREF(options);
22178ee79e70SKevin Wolf         goto free_exit;
22188ee79e70SKevin Wolf     }
22198ee79e70SKevin Wolf 
2220c5f6e493SKevin Wolf     if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
222146f5ac20SEric Blake         qdict_put_str(options, "driver", bs->backing_format);
22229156df12SPaolo Bonzini     }
22239156df12SPaolo Bonzini 
22245b363937SMax Reitz     backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2225d9b7b057SKevin Wolf                                    reference, options, 0, bs, &child_backing,
2226e43bfd9cSMarkus Armbruster                                    errp);
22275b363937SMax Reitz     if (!backing_hd) {
22289156df12SPaolo Bonzini         bs->open_flags |= BDRV_O_NO_BACKING;
2229e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not open backing file: ");
22305b363937SMax Reitz         ret = -EINVAL;
22311ba4b6a5SBenoît Canet         goto free_exit;
22329156df12SPaolo Bonzini     }
22335ce6bfe2Ssochin.jiang     bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
2234df581792SKevin Wolf 
22355db15a57SKevin Wolf     /* Hook up the backing file link; drop our reference, bs owns the
22365db15a57SKevin Wolf      * backing_hd reference now */
223712fa4af6SKevin Wolf     bdrv_set_backing_hd(bs, backing_hd, &local_err);
22385db15a57SKevin Wolf     bdrv_unref(backing_hd);
223912fa4af6SKevin Wolf     if (local_err) {
22408cd1a3e4SFam Zheng         error_propagate(errp, local_err);
224112fa4af6SKevin Wolf         ret = -EINVAL;
224212fa4af6SKevin Wolf         goto free_exit;
224312fa4af6SKevin Wolf     }
2244d80ac658SPeter Feiner 
2245d9b7b057SKevin Wolf     qdict_del(parent_options, bdref_key);
2246d9b7b057SKevin Wolf 
22471ba4b6a5SBenoît Canet free_exit:
22481ba4b6a5SBenoît Canet     g_free(backing_filename);
2249d9b7b057SKevin Wolf     QDECREF(tmp_parent_options);
22501ba4b6a5SBenoît Canet     return ret;
22519156df12SPaolo Bonzini }
22529156df12SPaolo Bonzini 
22532d6b86afSKevin Wolf static BlockDriverState *
22542d6b86afSKevin Wolf bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
22552d6b86afSKevin Wolf                    BlockDriverState *parent, const BdrvChildRole *child_role,
2256f7d9fd8cSMax Reitz                    bool allow_none, Error **errp)
2257da557aacSMax Reitz {
22582d6b86afSKevin Wolf     BlockDriverState *bs = NULL;
2259da557aacSMax Reitz     QDict *image_options;
2260da557aacSMax Reitz     char *bdref_key_dot;
2261da557aacSMax Reitz     const char *reference;
2262da557aacSMax Reitz 
2263df581792SKevin Wolf     assert(child_role != NULL);
2264f67503e5SMax Reitz 
2265da557aacSMax Reitz     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2266da557aacSMax Reitz     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2267da557aacSMax Reitz     g_free(bdref_key_dot);
2268da557aacSMax Reitz 
2269129c7d1cSMarkus Armbruster     /*
2270129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
2271129c7d1cSMarkus Armbruster      * types would require more care.  When @options come from
2272129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
2273129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
2274129c7d1cSMarkus Armbruster      * QString.
2275129c7d1cSMarkus Armbruster      */
2276da557aacSMax Reitz     reference = qdict_get_try_str(options, bdref_key);
2277da557aacSMax Reitz     if (!filename && !reference && !qdict_size(image_options)) {
2278b4b059f6SKevin Wolf         if (!allow_none) {
2279da557aacSMax Reitz             error_setg(errp, "A block device must be specified for \"%s\"",
2280da557aacSMax Reitz                        bdref_key);
2281da557aacSMax Reitz         }
2282b20e61e0SMarkus Armbruster         QDECREF(image_options);
2283da557aacSMax Reitz         goto done;
2284da557aacSMax Reitz     }
2285da557aacSMax Reitz 
22865b363937SMax Reitz     bs = bdrv_open_inherit(filename, reference, image_options, 0,
2287ce343771SMax Reitz                            parent, child_role, errp);
22885b363937SMax Reitz     if (!bs) {
2289df581792SKevin Wolf         goto done;
2290df581792SKevin Wolf     }
2291df581792SKevin Wolf 
2292da557aacSMax Reitz done:
2293da557aacSMax Reitz     qdict_del(options, bdref_key);
22942d6b86afSKevin Wolf     return bs;
22952d6b86afSKevin Wolf }
22962d6b86afSKevin Wolf 
22972d6b86afSKevin Wolf /*
22982d6b86afSKevin Wolf  * Opens a disk image whose options are given as BlockdevRef in another block
22992d6b86afSKevin Wolf  * device's options.
23002d6b86afSKevin Wolf  *
23012d6b86afSKevin Wolf  * If allow_none is true, no image will be opened if filename is false and no
23022d6b86afSKevin Wolf  * BlockdevRef is given. NULL will be returned, but errp remains unset.
23032d6b86afSKevin Wolf  *
23042d6b86afSKevin Wolf  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
23052d6b86afSKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
23062d6b86afSKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
23072d6b86afSKevin Wolf  * BlockdevRef.
23082d6b86afSKevin Wolf  *
23092d6b86afSKevin Wolf  * The BlockdevRef will be removed from the options QDict.
23102d6b86afSKevin Wolf  */
23112d6b86afSKevin Wolf BdrvChild *bdrv_open_child(const char *filename,
23122d6b86afSKevin Wolf                            QDict *options, const char *bdref_key,
23132d6b86afSKevin Wolf                            BlockDriverState *parent,
23142d6b86afSKevin Wolf                            const BdrvChildRole *child_role,
23152d6b86afSKevin Wolf                            bool allow_none, Error **errp)
23162d6b86afSKevin Wolf {
23178b2ff529SKevin Wolf     BdrvChild *c;
23182d6b86afSKevin Wolf     BlockDriverState *bs;
23192d6b86afSKevin Wolf 
23202d6b86afSKevin Wolf     bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
23212d6b86afSKevin Wolf                             allow_none, errp);
23222d6b86afSKevin Wolf     if (bs == NULL) {
23232d6b86afSKevin Wolf         return NULL;
23242d6b86afSKevin Wolf     }
23252d6b86afSKevin Wolf 
23268b2ff529SKevin Wolf     c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
23278b2ff529SKevin Wolf     if (!c) {
23288b2ff529SKevin Wolf         bdrv_unref(bs);
23298b2ff529SKevin Wolf         return NULL;
23308b2ff529SKevin Wolf     }
23318b2ff529SKevin Wolf 
23328b2ff529SKevin Wolf     return c;
2333b4b059f6SKevin Wolf }
2334b4b059f6SKevin Wolf 
233566836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
233666836189SMax Reitz                                                    int flags,
233766836189SMax Reitz                                                    QDict *snapshot_options,
233866836189SMax Reitz                                                    Error **errp)
2339b998875dSKevin Wolf {
2340b998875dSKevin Wolf     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
23411ba4b6a5SBenoît Canet     char *tmp_filename = g_malloc0(PATH_MAX + 1);
2342b998875dSKevin Wolf     int64_t total_size;
234383d0521aSChunyan Liu     QemuOpts *opts = NULL;
2344ff6ed714SEric Blake     BlockDriverState *bs_snapshot = NULL;
2345b2c2832cSKevin Wolf     Error *local_err = NULL;
2346b998875dSKevin Wolf     int ret;
2347b998875dSKevin Wolf 
2348b998875dSKevin Wolf     /* if snapshot, we create a temporary backing file and open it
2349b998875dSKevin Wolf        instead of opening 'filename' directly */
2350b998875dSKevin Wolf 
2351b998875dSKevin Wolf     /* Get the required size from the image */
2352f187743aSKevin Wolf     total_size = bdrv_getlength(bs);
2353f187743aSKevin Wolf     if (total_size < 0) {
2354f187743aSKevin Wolf         error_setg_errno(errp, -total_size, "Could not get image size");
23551ba4b6a5SBenoît Canet         goto out;
2356f187743aSKevin Wolf     }
2357b998875dSKevin Wolf 
2358b998875dSKevin Wolf     /* Create the temporary image */
23591ba4b6a5SBenoît Canet     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
2360b998875dSKevin Wolf     if (ret < 0) {
2361b998875dSKevin Wolf         error_setg_errno(errp, -ret, "Could not get temporary filename");
23621ba4b6a5SBenoît Canet         goto out;
2363b998875dSKevin Wolf     }
2364b998875dSKevin Wolf 
2365ef810437SMax Reitz     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
2366c282e1fdSChunyan Liu                             &error_abort);
236739101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
2368e43bfd9cSMarkus Armbruster     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
236983d0521aSChunyan Liu     qemu_opts_del(opts);
2370b998875dSKevin Wolf     if (ret < 0) {
2371e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not create temporary overlay '%s': ",
2372e43bfd9cSMarkus Armbruster                       tmp_filename);
23731ba4b6a5SBenoît Canet         goto out;
2374b998875dSKevin Wolf     }
2375b998875dSKevin Wolf 
237673176beeSKevin Wolf     /* Prepare options QDict for the temporary file */
237746f5ac20SEric Blake     qdict_put_str(snapshot_options, "file.driver", "file");
237846f5ac20SEric Blake     qdict_put_str(snapshot_options, "file.filename", tmp_filename);
237946f5ac20SEric Blake     qdict_put_str(snapshot_options, "driver", "qcow2");
2380b998875dSKevin Wolf 
23815b363937SMax Reitz     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
238273176beeSKevin Wolf     snapshot_options = NULL;
23835b363937SMax Reitz     if (!bs_snapshot) {
23841ba4b6a5SBenoît Canet         goto out;
2385b998875dSKevin Wolf     }
2386b998875dSKevin Wolf 
2387ff6ed714SEric Blake     /* bdrv_append() consumes a strong reference to bs_snapshot
2388ff6ed714SEric Blake      * (i.e. it will call bdrv_unref() on it) even on error, so in
2389ff6ed714SEric Blake      * order to be able to return one, we have to increase
2390ff6ed714SEric Blake      * bs_snapshot's refcount here */
239166836189SMax Reitz     bdrv_ref(bs_snapshot);
2392b2c2832cSKevin Wolf     bdrv_append(bs_snapshot, bs, &local_err);
2393b2c2832cSKevin Wolf     if (local_err) {
2394b2c2832cSKevin Wolf         error_propagate(errp, local_err);
2395ff6ed714SEric Blake         bs_snapshot = NULL;
2396b2c2832cSKevin Wolf         goto out;
2397b2c2832cSKevin Wolf     }
23981ba4b6a5SBenoît Canet 
23991ba4b6a5SBenoît Canet out:
240073176beeSKevin Wolf     QDECREF(snapshot_options);
24011ba4b6a5SBenoît Canet     g_free(tmp_filename);
2402ff6ed714SEric Blake     return bs_snapshot;
2403b998875dSKevin Wolf }
2404b998875dSKevin Wolf 
2405da557aacSMax Reitz /*
2406b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
2407de9c0cecSKevin Wolf  *
2408de9c0cecSKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
2409de9c0cecSKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
2410de9c0cecSKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
2411de9c0cecSKevin Wolf  * dictionary, it needs to use QINCREF() before calling bdrv_open.
2412f67503e5SMax Reitz  *
2413f67503e5SMax Reitz  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2414f67503e5SMax Reitz  * If it is not NULL, the referenced BDS will be reused.
2415ddf5636dSMax Reitz  *
2416ddf5636dSMax Reitz  * The reference parameter may be used to specify an existing block device which
2417ddf5636dSMax Reitz  * should be opened. If specified, neither options nor a filename may be given,
2418ddf5636dSMax Reitz  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
2419b6ce07aaSKevin Wolf  */
24205b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
24215b363937SMax Reitz                                            const char *reference,
24225b363937SMax Reitz                                            QDict *options, int flags,
2423f3930ed0SKevin Wolf                                            BlockDriverState *parent,
24245b363937SMax Reitz                                            const BdrvChildRole *child_role,
24255b363937SMax Reitz                                            Error **errp)
2426ea2384d3Sbellard {
2427b6ce07aaSKevin Wolf     int ret;
24285696c6e3SKevin Wolf     BlockBackend *file = NULL;
24299a4f4c31SKevin Wolf     BlockDriverState *bs;
2430ce343771SMax Reitz     BlockDriver *drv = NULL;
243174fe54f2SKevin Wolf     const char *drvname;
24323e8c2e57SAlberto Garcia     const char *backing;
243334b5d2c6SMax Reitz     Error *local_err = NULL;
243473176beeSKevin Wolf     QDict *snapshot_options = NULL;
2435b1e6fc08SKevin Wolf     int snapshot_flags = 0;
243633e3963eSbellard 
2437f3930ed0SKevin Wolf     assert(!child_role || !flags);
2438f3930ed0SKevin Wolf     assert(!child_role == !parent);
2439f67503e5SMax Reitz 
2440ddf5636dSMax Reitz     if (reference) {
2441ddf5636dSMax Reitz         bool options_non_empty = options ? qdict_size(options) : false;
2442ddf5636dSMax Reitz         QDECREF(options);
2443ddf5636dSMax Reitz 
2444ddf5636dSMax Reitz         if (filename || options_non_empty) {
2445ddf5636dSMax Reitz             error_setg(errp, "Cannot reference an existing block device with "
2446ddf5636dSMax Reitz                        "additional options or a new filename");
24475b363937SMax Reitz             return NULL;
2448ddf5636dSMax Reitz         }
2449ddf5636dSMax Reitz 
2450ddf5636dSMax Reitz         bs = bdrv_lookup_bs(reference, reference, errp);
2451ddf5636dSMax Reitz         if (!bs) {
24525b363937SMax Reitz             return NULL;
2453ddf5636dSMax Reitz         }
245476b22320SKevin Wolf 
2455ddf5636dSMax Reitz         bdrv_ref(bs);
24565b363937SMax Reitz         return bs;
2457ddf5636dSMax Reitz     }
2458ddf5636dSMax Reitz 
2459e4e9986bSMarkus Armbruster     bs = bdrv_new();
2460f67503e5SMax Reitz 
2461de9c0cecSKevin Wolf     /* NULL means an empty set of options */
2462de9c0cecSKevin Wolf     if (options == NULL) {
2463de9c0cecSKevin Wolf         options = qdict_new();
2464de9c0cecSKevin Wolf     }
2465de9c0cecSKevin Wolf 
2466145f598eSKevin Wolf     /* json: syntax counts as explicit options, as if in the QDict */
2467de3b53f0SKevin Wolf     parse_json_protocol(options, &filename, &local_err);
2468de3b53f0SKevin Wolf     if (local_err) {
2469de3b53f0SKevin Wolf         goto fail;
2470de3b53f0SKevin Wolf     }
2471de3b53f0SKevin Wolf 
2472145f598eSKevin Wolf     bs->explicit_options = qdict_clone_shallow(options);
2473145f598eSKevin Wolf 
2474f3930ed0SKevin Wolf     if (child_role) {
2475bddcec37SKevin Wolf         bs->inherits_from = parent;
24768e2160e2SKevin Wolf         child_role->inherit_options(&flags, options,
24778e2160e2SKevin Wolf                                     parent->open_flags, parent->options);
2478f3930ed0SKevin Wolf     }
2479f3930ed0SKevin Wolf 
2480de3b53f0SKevin Wolf     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
2481462f5bcfSKevin Wolf     if (local_err) {
2482462f5bcfSKevin Wolf         goto fail;
2483462f5bcfSKevin Wolf     }
2484462f5bcfSKevin Wolf 
2485129c7d1cSMarkus Armbruster     /*
2486129c7d1cSMarkus Armbruster      * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2487129c7d1cSMarkus Armbruster      * Caution: getting a boolean member of @options requires care.
2488129c7d1cSMarkus Armbruster      * When @options come from -blockdev or blockdev_add, members are
2489129c7d1cSMarkus Armbruster      * typed according to the QAPI schema, but when they come from
2490129c7d1cSMarkus Armbruster      * -drive, they're all QString.
2491129c7d1cSMarkus Armbruster      */
2492f87a0e29SAlberto Garcia     if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2493f87a0e29SAlberto Garcia         !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2494f87a0e29SAlberto Garcia         flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2495f87a0e29SAlberto Garcia     } else {
2496f87a0e29SAlberto Garcia         flags &= ~BDRV_O_RDWR;
249714499ea5SAlberto Garcia     }
249814499ea5SAlberto Garcia 
249914499ea5SAlberto Garcia     if (flags & BDRV_O_SNAPSHOT) {
250014499ea5SAlberto Garcia         snapshot_options = qdict_new();
250114499ea5SAlberto Garcia         bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
250214499ea5SAlberto Garcia                                    flags, options);
2503f87a0e29SAlberto Garcia         /* Let bdrv_backing_options() override "read-only" */
2504f87a0e29SAlberto Garcia         qdict_del(options, BDRV_OPT_READ_ONLY);
250514499ea5SAlberto Garcia         bdrv_backing_options(&flags, options, flags, options);
250614499ea5SAlberto Garcia     }
250714499ea5SAlberto Garcia 
250862392ebbSKevin Wolf     bs->open_flags = flags;
250962392ebbSKevin Wolf     bs->options = options;
251062392ebbSKevin Wolf     options = qdict_clone_shallow(options);
251162392ebbSKevin Wolf 
251276c591b0SKevin Wolf     /* Find the right image format driver */
2513129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
251476c591b0SKevin Wolf     drvname = qdict_get_try_str(options, "driver");
251576c591b0SKevin Wolf     if (drvname) {
251676c591b0SKevin Wolf         drv = bdrv_find_format(drvname);
251776c591b0SKevin Wolf         if (!drv) {
251876c591b0SKevin Wolf             error_setg(errp, "Unknown driver: '%s'", drvname);
251976c591b0SKevin Wolf             goto fail;
252076c591b0SKevin Wolf         }
252176c591b0SKevin Wolf     }
252276c591b0SKevin Wolf 
252376c591b0SKevin Wolf     assert(drvname || !(flags & BDRV_O_PROTOCOL));
252476c591b0SKevin Wolf 
2525129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
25263e8c2e57SAlberto Garcia     backing = qdict_get_try_str(options, "backing");
25273e8c2e57SAlberto Garcia     if (backing && *backing == '\0') {
25283e8c2e57SAlberto Garcia         flags |= BDRV_O_NO_BACKING;
25293e8c2e57SAlberto Garcia         qdict_del(options, "backing");
25303e8c2e57SAlberto Garcia     }
25313e8c2e57SAlberto Garcia 
25325696c6e3SKevin Wolf     /* Open image file without format layer. This BlockBackend is only used for
25334e4bf5c4SKevin Wolf      * probing, the block drivers will do their own bdrv_open_child() for the
25344e4bf5c4SKevin Wolf      * same BDS, which is why we put the node name back into options. */
2535f4788adcSKevin Wolf     if ((flags & BDRV_O_PROTOCOL) == 0) {
25365696c6e3SKevin Wolf         BlockDriverState *file_bs;
25375696c6e3SKevin Wolf 
25385696c6e3SKevin Wolf         file_bs = bdrv_open_child_bs(filename, options, "file", bs,
25391fdd6933SKevin Wolf                                      &child_file, true, &local_err);
25401fdd6933SKevin Wolf         if (local_err) {
25418bfea15dSKevin Wolf             goto fail;
2542f500a6d3SKevin Wolf         }
25435696c6e3SKevin Wolf         if (file_bs != NULL) {
25446d0eb64dSKevin Wolf             file = blk_new(BLK_PERM_CONSISTENT_READ, BLK_PERM_ALL);
2545d7086422SKevin Wolf             blk_insert_bs(file, file_bs, &local_err);
25465696c6e3SKevin Wolf             bdrv_unref(file_bs);
2547d7086422SKevin Wolf             if (local_err) {
2548d7086422SKevin Wolf                 goto fail;
2549d7086422SKevin Wolf             }
25505696c6e3SKevin Wolf 
255146f5ac20SEric Blake             qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
25524e4bf5c4SKevin Wolf         }
2553f4788adcSKevin Wolf     }
2554f500a6d3SKevin Wolf 
255576c591b0SKevin Wolf     /* Image format probing */
255638f3ef57SKevin Wolf     bs->probed = !drv;
255776c591b0SKevin Wolf     if (!drv && file) {
2558cf2ab8fcSKevin Wolf         ret = find_image_format(file, filename, &drv, &local_err);
255917b005f1SKevin Wolf         if (ret < 0) {
256017b005f1SKevin Wolf             goto fail;
256117b005f1SKevin Wolf         }
256262392ebbSKevin Wolf         /*
256362392ebbSKevin Wolf          * This option update would logically belong in bdrv_fill_options(),
256462392ebbSKevin Wolf          * but we first need to open bs->file for the probing to work, while
256562392ebbSKevin Wolf          * opening bs->file already requires the (mostly) final set of options
256662392ebbSKevin Wolf          * so that cache mode etc. can be inherited.
256762392ebbSKevin Wolf          *
256862392ebbSKevin Wolf          * Adding the driver later is somewhat ugly, but it's not an option
256962392ebbSKevin Wolf          * that would ever be inherited, so it's correct. We just need to make
257062392ebbSKevin Wolf          * sure to update both bs->options (which has the full effective
257162392ebbSKevin Wolf          * options for bs) and options (which has file.* already removed).
257262392ebbSKevin Wolf          */
257346f5ac20SEric Blake         qdict_put_str(bs->options, "driver", drv->format_name);
257446f5ac20SEric Blake         qdict_put_str(options, "driver", drv->format_name);
257576c591b0SKevin Wolf     } else if (!drv) {
25762a05cbe4SMax Reitz         error_setg(errp, "Must specify either driver or file");
25778bfea15dSKevin Wolf         goto fail;
25782a05cbe4SMax Reitz     }
2579f500a6d3SKevin Wolf 
258053a29513SMax Reitz     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
258153a29513SMax Reitz     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
258253a29513SMax Reitz     /* file must be NULL if a protocol BDS is about to be created
258353a29513SMax Reitz      * (the inverse results in an error message from bdrv_open_common()) */
258453a29513SMax Reitz     assert(!(flags & BDRV_O_PROTOCOL) || !file);
258553a29513SMax Reitz 
2586b6ce07aaSKevin Wolf     /* Open the image */
258782dc8b41SKevin Wolf     ret = bdrv_open_common(bs, file, options, &local_err);
2588b6ce07aaSKevin Wolf     if (ret < 0) {
25898bfea15dSKevin Wolf         goto fail;
25906987307cSChristoph Hellwig     }
25916987307cSChristoph Hellwig 
25924e4bf5c4SKevin Wolf     if (file) {
25935696c6e3SKevin Wolf         blk_unref(file);
2594f500a6d3SKevin Wolf         file = NULL;
2595f500a6d3SKevin Wolf     }
2596f500a6d3SKevin Wolf 
2597b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
25989156df12SPaolo Bonzini     if ((flags & BDRV_O_NO_BACKING) == 0) {
2599d9b7b057SKevin Wolf         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
2600b6ce07aaSKevin Wolf         if (ret < 0) {
2601b6ad491aSKevin Wolf             goto close_and_fail;
2602b6ce07aaSKevin Wolf         }
2603b6ce07aaSKevin Wolf     }
2604b6ce07aaSKevin Wolf 
260591af7014SMax Reitz     bdrv_refresh_filename(bs);
260691af7014SMax Reitz 
2607b6ad491aSKevin Wolf     /* Check if any unknown options were used */
26087ad2757fSPaolo Bonzini     if (qdict_size(options) != 0) {
2609b6ad491aSKevin Wolf         const QDictEntry *entry = qdict_first(options);
26105acd9d81SMax Reitz         if (flags & BDRV_O_PROTOCOL) {
26115acd9d81SMax Reitz             error_setg(errp, "Block protocol '%s' doesn't support the option "
26125acd9d81SMax Reitz                        "'%s'", drv->format_name, entry->key);
26135acd9d81SMax Reitz         } else {
2614d0e46a55SMax Reitz             error_setg(errp,
2615d0e46a55SMax Reitz                        "Block format '%s' does not support the option '%s'",
2616d0e46a55SMax Reitz                        drv->format_name, entry->key);
26175acd9d81SMax Reitz         }
2618b6ad491aSKevin Wolf 
2619b6ad491aSKevin Wolf         goto close_and_fail;
2620b6ad491aSKevin Wolf     }
2621b6ad491aSKevin Wolf 
26225c8cab48SKevin Wolf     bdrv_parent_cb_change_media(bs, true);
2623b6ce07aaSKevin Wolf 
2624c3adb58fSMarkus Armbruster     QDECREF(options);
2625dd62f1caSKevin Wolf 
2626dd62f1caSKevin Wolf     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2627dd62f1caSKevin Wolf      * temporary snapshot afterwards. */
2628dd62f1caSKevin Wolf     if (snapshot_flags) {
262966836189SMax Reitz         BlockDriverState *snapshot_bs;
263066836189SMax Reitz         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
263166836189SMax Reitz                                                 snapshot_options, &local_err);
263273176beeSKevin Wolf         snapshot_options = NULL;
2633dd62f1caSKevin Wolf         if (local_err) {
2634dd62f1caSKevin Wolf             goto close_and_fail;
2635dd62f1caSKevin Wolf         }
263666836189SMax Reitz         /* We are not going to return bs but the overlay on top of it
263766836189SMax Reitz          * (snapshot_bs); thus, we have to drop the strong reference to bs
26385b363937SMax Reitz          * (which we obtained by calling bdrv_new()). bs will not be deleted,
26395b363937SMax Reitz          * though, because the overlay still has a reference to it. */
264066836189SMax Reitz         bdrv_unref(bs);
264166836189SMax Reitz         bs = snapshot_bs;
264266836189SMax Reitz     }
264366836189SMax Reitz 
26445b363937SMax Reitz     return bs;
2645b6ce07aaSKevin Wolf 
26468bfea15dSKevin Wolf fail:
26475696c6e3SKevin Wolf     blk_unref(file);
264873176beeSKevin Wolf     QDECREF(snapshot_options);
2649145f598eSKevin Wolf     QDECREF(bs->explicit_options);
2650de9c0cecSKevin Wolf     QDECREF(bs->options);
2651b6ad491aSKevin Wolf     QDECREF(options);
2652de9c0cecSKevin Wolf     bs->options = NULL;
2653998cbd6aSManos Pitsidianakis     bs->explicit_options = NULL;
2654f67503e5SMax Reitz     bdrv_unref(bs);
265534b5d2c6SMax Reitz     error_propagate(errp, local_err);
26565b363937SMax Reitz     return NULL;
2657de9c0cecSKevin Wolf 
2658b6ad491aSKevin Wolf close_and_fail:
2659f67503e5SMax Reitz     bdrv_unref(bs);
266073176beeSKevin Wolf     QDECREF(snapshot_options);
2661b6ad491aSKevin Wolf     QDECREF(options);
266234b5d2c6SMax Reitz     error_propagate(errp, local_err);
26635b363937SMax Reitz     return NULL;
2664b6ce07aaSKevin Wolf }
2665b6ce07aaSKevin Wolf 
26665b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference,
26675b363937SMax Reitz                             QDict *options, int flags, Error **errp)
2668f3930ed0SKevin Wolf {
26695b363937SMax Reitz     return bdrv_open_inherit(filename, reference, options, flags, NULL,
2670ce343771SMax Reitz                              NULL, errp);
2671f3930ed0SKevin Wolf }
2672f3930ed0SKevin Wolf 
2673e971aa12SJeff Cody /*
2674e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
2675e971aa12SJeff Cody  * reopen of multiple devices.
2676e971aa12SJeff Cody  *
2677e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2678e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
2679e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
2680e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
2681e971aa12SJeff Cody  * atomic 'set'.
2682e971aa12SJeff Cody  *
2683e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
2684e971aa12SJeff Cody  *
26854d2cb092SKevin Wolf  * options contains the changed options for the associated bs
26864d2cb092SKevin Wolf  * (the BlockReopenQueue takes ownership)
26874d2cb092SKevin Wolf  *
2688e971aa12SJeff Cody  * flags contains the open flags for the associated bs
2689e971aa12SJeff Cody  *
2690e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
2691e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
2692e971aa12SJeff Cody  *
2693e971aa12SJeff Cody  */
269428518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
26954d2cb092SKevin Wolf                                                  BlockDriverState *bs,
269628518102SKevin Wolf                                                  QDict *options,
269728518102SKevin Wolf                                                  int flags,
269828518102SKevin Wolf                                                  const BdrvChildRole *role,
269928518102SKevin Wolf                                                  QDict *parent_options,
270028518102SKevin Wolf                                                  int parent_flags)
2701e971aa12SJeff Cody {
2702e971aa12SJeff Cody     assert(bs != NULL);
2703e971aa12SJeff Cody 
2704e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
270567251a31SKevin Wolf     BdrvChild *child;
2706145f598eSKevin Wolf     QDict *old_options, *explicit_options;
270767251a31SKevin Wolf 
2708e971aa12SJeff Cody     if (bs_queue == NULL) {
2709e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
2710e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
2711e971aa12SJeff Cody     }
2712e971aa12SJeff Cody 
27134d2cb092SKevin Wolf     if (!options) {
27144d2cb092SKevin Wolf         options = qdict_new();
27154d2cb092SKevin Wolf     }
27164d2cb092SKevin Wolf 
27175b7ba05fSAlberto Garcia     /* Check if this BlockDriverState is already in the queue */
27185b7ba05fSAlberto Garcia     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
27195b7ba05fSAlberto Garcia         if (bs == bs_entry->state.bs) {
27205b7ba05fSAlberto Garcia             break;
27215b7ba05fSAlberto Garcia         }
27225b7ba05fSAlberto Garcia     }
27235b7ba05fSAlberto Garcia 
272428518102SKevin Wolf     /*
272528518102SKevin Wolf      * Precedence of options:
272628518102SKevin Wolf      * 1. Explicitly passed in options (highest)
272791a097e7SKevin Wolf      * 2. Set in flags (only for top level)
2728145f598eSKevin Wolf      * 3. Retained from explicitly set options of bs
27298e2160e2SKevin Wolf      * 4. Inherited from parent node
273028518102SKevin Wolf      * 5. Retained from effective options of bs
273128518102SKevin Wolf      */
273228518102SKevin Wolf 
273391a097e7SKevin Wolf     if (!parent_options) {
273491a097e7SKevin Wolf         /*
273591a097e7SKevin Wolf          * Any setting represented by flags is always updated. If the
273691a097e7SKevin Wolf          * corresponding QDict option is set, it takes precedence. Otherwise
273791a097e7SKevin Wolf          * the flag is translated into a QDict option. The old setting of bs is
273891a097e7SKevin Wolf          * not considered.
273991a097e7SKevin Wolf          */
274091a097e7SKevin Wolf         update_options_from_flags(options, flags);
274191a097e7SKevin Wolf     }
274291a097e7SKevin Wolf 
2743145f598eSKevin Wolf     /* Old explicitly set values (don't overwrite by inherited value) */
27445b7ba05fSAlberto Garcia     if (bs_entry) {
27455b7ba05fSAlberto Garcia         old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
27465b7ba05fSAlberto Garcia     } else {
2747145f598eSKevin Wolf         old_options = qdict_clone_shallow(bs->explicit_options);
27485b7ba05fSAlberto Garcia     }
2749145f598eSKevin Wolf     bdrv_join_options(bs, options, old_options);
2750145f598eSKevin Wolf     QDECREF(old_options);
2751145f598eSKevin Wolf 
2752145f598eSKevin Wolf     explicit_options = qdict_clone_shallow(options);
2753145f598eSKevin Wolf 
275428518102SKevin Wolf     /* Inherit from parent node */
275528518102SKevin Wolf     if (parent_options) {
275628518102SKevin Wolf         assert(!flags);
27578e2160e2SKevin Wolf         role->inherit_options(&flags, options, parent_flags, parent_options);
275828518102SKevin Wolf     }
275928518102SKevin Wolf 
276028518102SKevin Wolf     /* Old values are used for options that aren't set yet */
27614d2cb092SKevin Wolf     old_options = qdict_clone_shallow(bs->options);
2762cddff5baSKevin Wolf     bdrv_join_options(bs, options, old_options);
27634d2cb092SKevin Wolf     QDECREF(old_options);
27644d2cb092SKevin Wolf 
2765fd452021SKevin Wolf     /* bdrv_open_inherit() sets and clears some additional flags internally */
2766f1f25a2eSKevin Wolf     flags &= ~BDRV_O_PROTOCOL;
2767fd452021SKevin Wolf     if (flags & BDRV_O_RDWR) {
2768fd452021SKevin Wolf         flags |= BDRV_O_ALLOW_RDWR;
2769fd452021SKevin Wolf     }
2770f1f25a2eSKevin Wolf 
27711857c97bSKevin Wolf     if (!bs_entry) {
27721857c97bSKevin Wolf         bs_entry = g_new0(BlockReopenQueueEntry, 1);
27731857c97bSKevin Wolf         QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
27741857c97bSKevin Wolf     } else {
27751857c97bSKevin Wolf         QDECREF(bs_entry->state.options);
27761857c97bSKevin Wolf         QDECREF(bs_entry->state.explicit_options);
27771857c97bSKevin Wolf     }
27781857c97bSKevin Wolf 
27791857c97bSKevin Wolf     bs_entry->state.bs = bs;
27801857c97bSKevin Wolf     bs_entry->state.options = options;
27811857c97bSKevin Wolf     bs_entry->state.explicit_options = explicit_options;
27821857c97bSKevin Wolf     bs_entry->state.flags = flags;
27831857c97bSKevin Wolf 
278430450259SKevin Wolf     /* This needs to be overwritten in bdrv_reopen_prepare() */
278530450259SKevin Wolf     bs_entry->state.perm = UINT64_MAX;
278630450259SKevin Wolf     bs_entry->state.shared_perm = 0;
278730450259SKevin Wolf 
278867251a31SKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
27894c9dfe5dSKevin Wolf         QDict *new_child_options;
27904c9dfe5dSKevin Wolf         char *child_key_dot;
279167251a31SKevin Wolf 
27924c9dfe5dSKevin Wolf         /* reopen can only change the options of block devices that were
27934c9dfe5dSKevin Wolf          * implicitly created and inherited options. For other (referenced)
27944c9dfe5dSKevin Wolf          * block devices, a syntax like "backing.foo" results in an error. */
279567251a31SKevin Wolf         if (child->bs->inherits_from != bs) {
279667251a31SKevin Wolf             continue;
279767251a31SKevin Wolf         }
279867251a31SKevin Wolf 
27994c9dfe5dSKevin Wolf         child_key_dot = g_strdup_printf("%s.", child->name);
28004c9dfe5dSKevin Wolf         qdict_extract_subqdict(options, &new_child_options, child_key_dot);
28014c9dfe5dSKevin Wolf         g_free(child_key_dot);
28024c9dfe5dSKevin Wolf 
280328518102SKevin Wolf         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
280428518102SKevin Wolf                                 child->role, options, flags);
2805e971aa12SJeff Cody     }
2806e971aa12SJeff Cody 
2807e971aa12SJeff Cody     return bs_queue;
2808e971aa12SJeff Cody }
2809e971aa12SJeff Cody 
281028518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
281128518102SKevin Wolf                                     BlockDriverState *bs,
281228518102SKevin Wolf                                     QDict *options, int flags)
281328518102SKevin Wolf {
281428518102SKevin Wolf     return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
281528518102SKevin Wolf                                    NULL, NULL, 0);
281628518102SKevin Wolf }
281728518102SKevin Wolf 
2818e971aa12SJeff Cody /*
2819e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
2820e971aa12SJeff Cody  *
2821e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
2822e971aa12SJeff Cody  * via bdrv_reopen_queue().
2823e971aa12SJeff Cody  *
2824e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
2825e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
2826e971aa12SJeff Cody  * device will cause all device changes to be abandonded, and intermediate
2827e971aa12SJeff Cody  * data cleaned up.
2828e971aa12SJeff Cody  *
2829e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
2830e971aa12SJeff Cody  * to all devices.
2831e971aa12SJeff Cody  *
2832e971aa12SJeff Cody  */
2833720150f3SPaolo Bonzini int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
2834e971aa12SJeff Cody {
2835e971aa12SJeff Cody     int ret = -1;
2836e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
2837e971aa12SJeff Cody     Error *local_err = NULL;
2838e971aa12SJeff Cody 
2839e971aa12SJeff Cody     assert(bs_queue != NULL);
2840e971aa12SJeff Cody 
2841c9d1a561SPaolo Bonzini     aio_context_release(ctx);
284240840e41SAlberto Garcia     bdrv_drain_all_begin();
2843c9d1a561SPaolo Bonzini     aio_context_acquire(ctx);
2844e971aa12SJeff Cody 
2845e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2846e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
2847e971aa12SJeff Cody             error_propagate(errp, local_err);
2848e971aa12SJeff Cody             goto cleanup;
2849e971aa12SJeff Cody         }
2850e971aa12SJeff Cody         bs_entry->prepared = true;
2851e971aa12SJeff Cody     }
2852e971aa12SJeff Cody 
2853e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
2854e971aa12SJeff Cody      * changes
2855e971aa12SJeff Cody      */
2856e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2857e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
2858e971aa12SJeff Cody     }
2859e971aa12SJeff Cody 
2860e971aa12SJeff Cody     ret = 0;
2861e971aa12SJeff Cody 
2862e971aa12SJeff Cody cleanup:
2863e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
2864e971aa12SJeff Cody         if (ret && bs_entry->prepared) {
2865e971aa12SJeff Cody             bdrv_reopen_abort(&bs_entry->state);
2866145f598eSKevin Wolf         } else if (ret) {
2867145f598eSKevin Wolf             QDECREF(bs_entry->state.explicit_options);
2868e971aa12SJeff Cody         }
28694d2cb092SKevin Wolf         QDECREF(bs_entry->state.options);
2870e971aa12SJeff Cody         g_free(bs_entry);
2871e971aa12SJeff Cody     }
2872e971aa12SJeff Cody     g_free(bs_queue);
287340840e41SAlberto Garcia 
287440840e41SAlberto Garcia     bdrv_drain_all_end();
287540840e41SAlberto Garcia 
2876e971aa12SJeff Cody     return ret;
2877e971aa12SJeff Cody }
2878e971aa12SJeff Cody 
2879e971aa12SJeff Cody 
2880e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */
2881e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
2882e971aa12SJeff Cody {
2883e971aa12SJeff Cody     int ret = -1;
2884e971aa12SJeff Cody     Error *local_err = NULL;
28854d2cb092SKevin Wolf     BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
2886e971aa12SJeff Cody 
2887720150f3SPaolo Bonzini     ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err);
2888e971aa12SJeff Cody     if (local_err != NULL) {
2889e971aa12SJeff Cody         error_propagate(errp, local_err);
2890e971aa12SJeff Cody     }
2891e971aa12SJeff Cody     return ret;
2892e971aa12SJeff Cody }
2893e971aa12SJeff Cody 
289430450259SKevin Wolf static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
289530450259SKevin Wolf                                                           BdrvChild *c)
289630450259SKevin Wolf {
289730450259SKevin Wolf     BlockReopenQueueEntry *entry;
289830450259SKevin Wolf 
289930450259SKevin Wolf     QSIMPLEQ_FOREACH(entry, q, entry) {
290030450259SKevin Wolf         BlockDriverState *bs = entry->state.bs;
290130450259SKevin Wolf         BdrvChild *child;
290230450259SKevin Wolf 
290330450259SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
290430450259SKevin Wolf             if (child == c) {
290530450259SKevin Wolf                 return entry;
290630450259SKevin Wolf             }
290730450259SKevin Wolf         }
290830450259SKevin Wolf     }
290930450259SKevin Wolf 
291030450259SKevin Wolf     return NULL;
291130450259SKevin Wolf }
291230450259SKevin Wolf 
291330450259SKevin Wolf static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
291430450259SKevin Wolf                              uint64_t *perm, uint64_t *shared)
291530450259SKevin Wolf {
291630450259SKevin Wolf     BdrvChild *c;
291730450259SKevin Wolf     BlockReopenQueueEntry *parent;
291830450259SKevin Wolf     uint64_t cumulative_perms = 0;
291930450259SKevin Wolf     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
292030450259SKevin Wolf 
292130450259SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
292230450259SKevin Wolf         parent = find_parent_in_reopen_queue(q, c);
292330450259SKevin Wolf         if (!parent) {
292430450259SKevin Wolf             cumulative_perms |= c->perm;
292530450259SKevin Wolf             cumulative_shared_perms &= c->shared_perm;
292630450259SKevin Wolf         } else {
292730450259SKevin Wolf             uint64_t nperm, nshared;
292830450259SKevin Wolf 
292930450259SKevin Wolf             bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
293030450259SKevin Wolf                             parent->state.perm, parent->state.shared_perm,
293130450259SKevin Wolf                             &nperm, &nshared);
293230450259SKevin Wolf 
293330450259SKevin Wolf             cumulative_perms |= nperm;
293430450259SKevin Wolf             cumulative_shared_perms &= nshared;
293530450259SKevin Wolf         }
293630450259SKevin Wolf     }
293730450259SKevin Wolf     *perm = cumulative_perms;
293830450259SKevin Wolf     *shared = cumulative_shared_perms;
293930450259SKevin Wolf }
2940e971aa12SJeff Cody 
2941e971aa12SJeff Cody /*
2942e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
2943e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
2944e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
2945e971aa12SJeff Cody  *
2946e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
2947e971aa12SJeff Cody  * flags are the new open flags
2948e971aa12SJeff Cody  * queue is the reopen queue
2949e971aa12SJeff Cody  *
2950e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
2951e971aa12SJeff Cody  * as well.
2952e971aa12SJeff Cody  *
2953e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
2954e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
2955e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
2956e971aa12SJeff Cody  *
2957e971aa12SJeff Cody  */
2958e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
2959e971aa12SJeff Cody                         Error **errp)
2960e971aa12SJeff Cody {
2961e971aa12SJeff Cody     int ret = -1;
2962e971aa12SJeff Cody     Error *local_err = NULL;
2963e971aa12SJeff Cody     BlockDriver *drv;
2964ccf9dc07SKevin Wolf     QemuOpts *opts;
2965ccf9dc07SKevin Wolf     const char *value;
29663d8ce171SJeff Cody     bool read_only;
2967e971aa12SJeff Cody 
2968e971aa12SJeff Cody     assert(reopen_state != NULL);
2969e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
2970e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2971e971aa12SJeff Cody 
2972ccf9dc07SKevin Wolf     /* Process generic block layer options */
2973ccf9dc07SKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2974ccf9dc07SKevin Wolf     qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
2975ccf9dc07SKevin Wolf     if (local_err) {
2976ccf9dc07SKevin Wolf         error_propagate(errp, local_err);
2977ccf9dc07SKevin Wolf         ret = -EINVAL;
2978ccf9dc07SKevin Wolf         goto error;
2979ccf9dc07SKevin Wolf     }
2980ccf9dc07SKevin Wolf 
298191a097e7SKevin Wolf     update_flags_from_options(&reopen_state->flags, opts);
298291a097e7SKevin Wolf 
2983ccf9dc07SKevin Wolf     /* node-name and driver must be unchanged. Put them back into the QDict, so
2984ccf9dc07SKevin Wolf      * that they are checked at the end of this function. */
2985ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "node-name");
2986ccf9dc07SKevin Wolf     if (value) {
298746f5ac20SEric Blake         qdict_put_str(reopen_state->options, "node-name", value);
2988ccf9dc07SKevin Wolf     }
2989ccf9dc07SKevin Wolf 
2990ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "driver");
2991ccf9dc07SKevin Wolf     if (value) {
299246f5ac20SEric Blake         qdict_put_str(reopen_state->options, "driver", value);
2993ccf9dc07SKevin Wolf     }
2994ccf9dc07SKevin Wolf 
29953d8ce171SJeff Cody     /* If we are to stay read-only, do not allow permission change
29963d8ce171SJeff Cody      * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
29973d8ce171SJeff Cody      * not set, or if the BDS still has copy_on_read enabled */
29983d8ce171SJeff Cody     read_only = !(reopen_state->flags & BDRV_O_RDWR);
299954a32bfeSKevin Wolf     ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
30003d8ce171SJeff Cody     if (local_err) {
30013d8ce171SJeff Cody         error_propagate(errp, local_err);
3002e971aa12SJeff Cody         goto error;
3003e971aa12SJeff Cody     }
3004e971aa12SJeff Cody 
300530450259SKevin Wolf     /* Calculate required permissions after reopening */
300630450259SKevin Wolf     bdrv_reopen_perm(queue, reopen_state->bs,
300730450259SKevin Wolf                      &reopen_state->perm, &reopen_state->shared_perm);
3008e971aa12SJeff Cody 
3009e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
3010e971aa12SJeff Cody     if (ret) {
3011455b0fdeSEric Blake         error_setg_errno(errp, -ret, "Error flushing drive");
3012e971aa12SJeff Cody         goto error;
3013e971aa12SJeff Cody     }
3014e971aa12SJeff Cody 
3015e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
3016e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3017e971aa12SJeff Cody         if (ret) {
3018e971aa12SJeff Cody             if (local_err != NULL) {
3019e971aa12SJeff Cody                 error_propagate(errp, local_err);
3020e971aa12SJeff Cody             } else {
3021d8b6895fSLuiz Capitulino                 error_setg(errp, "failed while preparing to reopen image '%s'",
3022e971aa12SJeff Cody                            reopen_state->bs->filename);
3023e971aa12SJeff Cody             }
3024e971aa12SJeff Cody             goto error;
3025e971aa12SJeff Cody         }
3026e971aa12SJeff Cody     } else {
3027e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
3028e971aa12SJeff Cody          * handler for each supported drv. */
302981e5f78aSAlberto Garcia         error_setg(errp, "Block format '%s' used by node '%s' "
303081e5f78aSAlberto Garcia                    "does not support reopening files", drv->format_name,
303181e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
3032e971aa12SJeff Cody         ret = -1;
3033e971aa12SJeff Cody         goto error;
3034e971aa12SJeff Cody     }
3035e971aa12SJeff Cody 
30364d2cb092SKevin Wolf     /* Options that are not handled are only okay if they are unchanged
30374d2cb092SKevin Wolf      * compared to the old state. It is expected that some options are only
30384d2cb092SKevin Wolf      * used for the initial open, but not reopen (e.g. filename) */
30394d2cb092SKevin Wolf     if (qdict_size(reopen_state->options)) {
30404d2cb092SKevin Wolf         const QDictEntry *entry = qdict_first(reopen_state->options);
30414d2cb092SKevin Wolf 
30424d2cb092SKevin Wolf         do {
30434d2cb092SKevin Wolf             QString *new_obj = qobject_to_qstring(entry->value);
30444d2cb092SKevin Wolf             const char *new = qstring_get_str(new_obj);
3045129c7d1cSMarkus Armbruster             /*
3046129c7d1cSMarkus Armbruster              * Caution: while qdict_get_try_str() is fine, getting
3047129c7d1cSMarkus Armbruster              * non-string types would require more care.  When
3048129c7d1cSMarkus Armbruster              * bs->options come from -blockdev or blockdev_add, its
3049129c7d1cSMarkus Armbruster              * members are typed according to the QAPI schema, but
3050129c7d1cSMarkus Armbruster              * when they come from -drive, they're all QString.
3051129c7d1cSMarkus Armbruster              */
30524d2cb092SKevin Wolf             const char *old = qdict_get_try_str(reopen_state->bs->options,
30534d2cb092SKevin Wolf                                                 entry->key);
30544d2cb092SKevin Wolf 
30554d2cb092SKevin Wolf             if (!old || strcmp(new, old)) {
30564d2cb092SKevin Wolf                 error_setg(errp, "Cannot change the option '%s'", entry->key);
30574d2cb092SKevin Wolf                 ret = -EINVAL;
30584d2cb092SKevin Wolf                 goto error;
30594d2cb092SKevin Wolf             }
30604d2cb092SKevin Wolf         } while ((entry = qdict_next(reopen_state->options, entry)));
30614d2cb092SKevin Wolf     }
30624d2cb092SKevin Wolf 
306330450259SKevin Wolf     ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
306430450259SKevin Wolf                           reopen_state->shared_perm, NULL, errp);
306530450259SKevin Wolf     if (ret < 0) {
306630450259SKevin Wolf         goto error;
306730450259SKevin Wolf     }
306830450259SKevin Wolf 
3069e971aa12SJeff Cody     ret = 0;
3070e971aa12SJeff Cody 
3071e971aa12SJeff Cody error:
3072ccf9dc07SKevin Wolf     qemu_opts_del(opts);
3073e971aa12SJeff Cody     return ret;
3074e971aa12SJeff Cody }
3075e971aa12SJeff Cody 
3076e971aa12SJeff Cody /*
3077e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3078e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
3079e971aa12SJeff Cody  * the active BlockDriverState contents.
3080e971aa12SJeff Cody  */
3081e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3082e971aa12SJeff Cody {
3083e971aa12SJeff Cody     BlockDriver *drv;
308450bf65baSVladimir Sementsov-Ogievskiy     BlockDriverState *bs;
3085cb9ff6c2SVladimir Sementsov-Ogievskiy     bool old_can_write, new_can_write;
3086e971aa12SJeff Cody 
3087e971aa12SJeff Cody     assert(reopen_state != NULL);
308850bf65baSVladimir Sementsov-Ogievskiy     bs = reopen_state->bs;
308950bf65baSVladimir Sementsov-Ogievskiy     drv = bs->drv;
3090e971aa12SJeff Cody     assert(drv != NULL);
3091e971aa12SJeff Cody 
3092cb9ff6c2SVladimir Sementsov-Ogievskiy     old_can_write =
3093cb9ff6c2SVladimir Sementsov-Ogievskiy         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3094cb9ff6c2SVladimir Sementsov-Ogievskiy 
3095e971aa12SJeff Cody     /* If there are any driver level actions to take */
3096e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
3097e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
3098e971aa12SJeff Cody     }
3099e971aa12SJeff Cody 
3100e971aa12SJeff Cody     /* set BDS specific flags now */
310150bf65baSVladimir Sementsov-Ogievskiy     QDECREF(bs->explicit_options);
3102145f598eSKevin Wolf 
310350bf65baSVladimir Sementsov-Ogievskiy     bs->explicit_options   = reopen_state->explicit_options;
310450bf65baSVladimir Sementsov-Ogievskiy     bs->open_flags         = reopen_state->flags;
310550bf65baSVladimir Sementsov-Ogievskiy     bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
3106355ef4acSKevin Wolf 
310750bf65baSVladimir Sementsov-Ogievskiy     bdrv_refresh_limits(bs, NULL);
3108cb9ff6c2SVladimir Sementsov-Ogievskiy 
310930450259SKevin Wolf     bdrv_set_perm(reopen_state->bs, reopen_state->perm,
311030450259SKevin Wolf                   reopen_state->shared_perm);
311130450259SKevin Wolf 
3112cb9ff6c2SVladimir Sementsov-Ogievskiy     new_can_write =
3113cb9ff6c2SVladimir Sementsov-Ogievskiy         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3114cb9ff6c2SVladimir Sementsov-Ogievskiy     if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3115cb9ff6c2SVladimir Sementsov-Ogievskiy         Error *local_err = NULL;
3116cb9ff6c2SVladimir Sementsov-Ogievskiy         if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3117cb9ff6c2SVladimir Sementsov-Ogievskiy             /* This is not fatal, bitmaps just left read-only, so all following
3118cb9ff6c2SVladimir Sementsov-Ogievskiy              * writes will fail. User can remove read-only bitmaps to unblock
3119cb9ff6c2SVladimir Sementsov-Ogievskiy              * writes.
3120cb9ff6c2SVladimir Sementsov-Ogievskiy              */
3121cb9ff6c2SVladimir Sementsov-Ogievskiy             error_reportf_err(local_err,
3122cb9ff6c2SVladimir Sementsov-Ogievskiy                               "%s: Failed to make dirty bitmaps writable: ",
3123cb9ff6c2SVladimir Sementsov-Ogievskiy                               bdrv_get_node_name(bs));
3124cb9ff6c2SVladimir Sementsov-Ogievskiy         }
3125cb9ff6c2SVladimir Sementsov-Ogievskiy     }
3126e971aa12SJeff Cody }
3127e971aa12SJeff Cody 
3128e971aa12SJeff Cody /*
3129e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
3130e971aa12SJeff Cody  * reopen_state
3131e971aa12SJeff Cody  */
3132e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3133e971aa12SJeff Cody {
3134e971aa12SJeff Cody     BlockDriver *drv;
3135e971aa12SJeff Cody 
3136e971aa12SJeff Cody     assert(reopen_state != NULL);
3137e971aa12SJeff Cody     drv = reopen_state->bs->drv;
3138e971aa12SJeff Cody     assert(drv != NULL);
3139e971aa12SJeff Cody 
3140e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
3141e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
3142e971aa12SJeff Cody     }
3143145f598eSKevin Wolf 
3144145f598eSKevin Wolf     QDECREF(reopen_state->explicit_options);
314530450259SKevin Wolf 
314630450259SKevin Wolf     bdrv_abort_perm_update(reopen_state->bs);
3147e971aa12SJeff Cody }
3148e971aa12SJeff Cody 
3149e971aa12SJeff Cody 
315064dff520SMax Reitz static void bdrv_close(BlockDriverState *bs)
3151fc01f7e7Sbellard {
315233384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
315333384421SMax Reitz 
3154ca9bd24cSMax Reitz     assert(!bs->job);
315530f55fb8SMax Reitz     assert(!bs->refcnt);
315699b7e775SAlberto Garcia 
3157fc27291dSPaolo Bonzini     bdrv_drained_begin(bs); /* complete I/O */
315858fda173SStefan Hajnoczi     bdrv_flush(bs);
315953ec73e2SFam Zheng     bdrv_drain(bs); /* in case flush left pending I/O */
3160fc27291dSPaolo Bonzini 
31613cbc002cSPaolo Bonzini     if (bs->drv) {
31626e93e7c4SKevin Wolf         BdrvChild *child, *next;
31636e93e7c4SKevin Wolf 
31649a7dedbcSKevin Wolf         bs->drv->bdrv_close(bs);
31659a4f4c31SKevin Wolf         bs->drv = NULL;
31669a7dedbcSKevin Wolf 
316712fa4af6SKevin Wolf         bdrv_set_backing_hd(bs, NULL, &error_abort);
31689a7dedbcSKevin Wolf 
31699a4f4c31SKevin Wolf         if (bs->file != NULL) {
31709a4f4c31SKevin Wolf             bdrv_unref_child(bs, bs->file);
31719a4f4c31SKevin Wolf             bs->file = NULL;
31729a4f4c31SKevin Wolf         }
31739a4f4c31SKevin Wolf 
31746e93e7c4SKevin Wolf         QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
317533a60407SKevin Wolf             /* TODO Remove bdrv_unref() from drivers' close function and use
317633a60407SKevin Wolf              * bdrv_unref_child() here */
3177bddcec37SKevin Wolf             if (child->bs->inherits_from == bs) {
3178bddcec37SKevin Wolf                 child->bs->inherits_from = NULL;
3179bddcec37SKevin Wolf             }
318033a60407SKevin Wolf             bdrv_detach_child(child);
31816e93e7c4SKevin Wolf         }
31826e93e7c4SKevin Wolf 
31837267c094SAnthony Liguori         g_free(bs->opaque);
3184ea2384d3Sbellard         bs->opaque = NULL;
3185d3faa13eSPaolo Bonzini         atomic_set(&bs->copy_on_read, 0);
3186a275fa42SPaolo Bonzini         bs->backing_file[0] = '\0';
3187a275fa42SPaolo Bonzini         bs->backing_format[0] = '\0';
31886405875cSPaolo Bonzini         bs->total_sectors = 0;
318954115412SEric Blake         bs->encrypted = false;
319054115412SEric Blake         bs->sg = false;
3191de9c0cecSKevin Wolf         QDECREF(bs->options);
3192145f598eSKevin Wolf         QDECREF(bs->explicit_options);
3193de9c0cecSKevin Wolf         bs->options = NULL;
3194998cbd6aSManos Pitsidianakis         bs->explicit_options = NULL;
319591af7014SMax Reitz         QDECREF(bs->full_open_options);
319691af7014SMax Reitz         bs->full_open_options = NULL;
31979ca11154SPavel Hrdina     }
319866f82ceeSKevin Wolf 
3199cca43ae1SVladimir Sementsov-Ogievskiy     bdrv_release_named_dirty_bitmaps(bs);
3200cca43ae1SVladimir Sementsov-Ogievskiy     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3201cca43ae1SVladimir Sementsov-Ogievskiy 
320233384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
320333384421SMax Reitz         g_free(ban);
320433384421SMax Reitz     }
320533384421SMax Reitz     QLIST_INIT(&bs->aio_notifiers);
3206fc27291dSPaolo Bonzini     bdrv_drained_end(bs);
3207b338082bSbellard }
3208b338082bSbellard 
32092bc93fedSMORITA Kazutaka void bdrv_close_all(void)
32102bc93fedSMORITA Kazutaka {
3211a1a2af07SKevin Wolf     block_job_cancel_sync_all();
3212cd7fca95SKevin Wolf     nbd_export_close_all();
32132bc93fedSMORITA Kazutaka 
3214ca9bd24cSMax Reitz     /* Drop references from requests still in flight, such as canceled block
3215ca9bd24cSMax Reitz      * jobs whose AIO context has not been polled yet */
3216ca9bd24cSMax Reitz     bdrv_drain_all();
3217ca9bd24cSMax Reitz 
3218ca9bd24cSMax Reitz     blk_remove_all_bs();
3219ca9bd24cSMax Reitz     blockdev_close_all_bdrv_states();
3220ca9bd24cSMax Reitz 
3221a1a2af07SKevin Wolf     assert(QTAILQ_EMPTY(&all_bdrv_states));
32222bc93fedSMORITA Kazutaka }
32232bc93fedSMORITA Kazutaka 
3224d0ac0380SKevin Wolf static bool should_update_child(BdrvChild *c, BlockDriverState *to)
3225dd62f1caSKevin Wolf {
3226d0ac0380SKevin Wolf     BdrvChild *to_c;
3227dd62f1caSKevin Wolf 
322826de9438SKevin Wolf     if (c->role->stay_at_node) {
3229d0ac0380SKevin Wolf         return false;
323026de9438SKevin Wolf     }
3231d0ac0380SKevin Wolf 
32329bd910e2SMax Reitz     if (c->role == &child_backing) {
32333e44c8e0SKevin Wolf         /* If @from is a backing file of @to, ignore the child to avoid
32343e44c8e0SKevin Wolf          * creating a loop. We only want to change the pointer of other
32353e44c8e0SKevin Wolf          * parents. */
32369bd910e2SMax Reitz         QLIST_FOREACH(to_c, &to->children, next) {
32379bd910e2SMax Reitz             if (to_c == c) {
32389bd910e2SMax Reitz                 break;
32399bd910e2SMax Reitz             }
32409bd910e2SMax Reitz         }
32419bd910e2SMax Reitz         if (to_c) {
3242d0ac0380SKevin Wolf             return false;
32439bd910e2SMax Reitz         }
32449bd910e2SMax Reitz     }
32459bd910e2SMax Reitz 
3246d0ac0380SKevin Wolf     return true;
3247d0ac0380SKevin Wolf }
3248d0ac0380SKevin Wolf 
32495fe31c25SKevin Wolf void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
32505fe31c25SKevin Wolf                        Error **errp)
3251d0ac0380SKevin Wolf {
3252d0ac0380SKevin Wolf     BdrvChild *c, *next;
3253234ac1a9SKevin Wolf     GSList *list = NULL, *p;
3254234ac1a9SKevin Wolf     uint64_t old_perm, old_shared;
3255234ac1a9SKevin Wolf     uint64_t perm = 0, shared = BLK_PERM_ALL;
3256234ac1a9SKevin Wolf     int ret;
3257d0ac0380SKevin Wolf 
32585fe31c25SKevin Wolf     assert(!atomic_read(&from->in_flight));
32595fe31c25SKevin Wolf     assert(!atomic_read(&to->in_flight));
32605fe31c25SKevin Wolf 
3261234ac1a9SKevin Wolf     /* Make sure that @from doesn't go away until we have successfully attached
3262234ac1a9SKevin Wolf      * all of its parents to @to. */
3263234ac1a9SKevin Wolf     bdrv_ref(from);
3264234ac1a9SKevin Wolf 
3265234ac1a9SKevin Wolf     /* Put all parents into @list and calculate their cumulative permissions */
3266d0ac0380SKevin Wolf     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
3267d0ac0380SKevin Wolf         if (!should_update_child(c, to)) {
3268d0ac0380SKevin Wolf             continue;
3269d0ac0380SKevin Wolf         }
3270234ac1a9SKevin Wolf         list = g_slist_prepend(list, c);
3271234ac1a9SKevin Wolf         perm |= c->perm;
3272234ac1a9SKevin Wolf         shared &= c->shared_perm;
3273234ac1a9SKevin Wolf     }
3274234ac1a9SKevin Wolf 
3275234ac1a9SKevin Wolf     /* Check whether the required permissions can be granted on @to, ignoring
3276234ac1a9SKevin Wolf      * all BdrvChild in @list so that they can't block themselves. */
32773121fb45SKevin Wolf     ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
3278234ac1a9SKevin Wolf     if (ret < 0) {
3279234ac1a9SKevin Wolf         bdrv_abort_perm_update(to);
3280234ac1a9SKevin Wolf         goto out;
3281234ac1a9SKevin Wolf     }
3282234ac1a9SKevin Wolf 
3283234ac1a9SKevin Wolf     /* Now actually perform the change. We performed the permission check for
3284234ac1a9SKevin Wolf      * all elements of @list at once, so set the permissions all at once at the
3285234ac1a9SKevin Wolf      * very end. */
3286234ac1a9SKevin Wolf     for (p = list; p != NULL; p = p->next) {
3287234ac1a9SKevin Wolf         c = p->data;
3288d0ac0380SKevin Wolf 
3289dd62f1caSKevin Wolf         bdrv_ref(to);
3290234ac1a9SKevin Wolf         bdrv_replace_child_noperm(c, to);
3291dd62f1caSKevin Wolf         bdrv_unref(from);
3292dd62f1caSKevin Wolf     }
3293234ac1a9SKevin Wolf 
3294234ac1a9SKevin Wolf     bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3295234ac1a9SKevin Wolf     bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3296234ac1a9SKevin Wolf 
3297234ac1a9SKevin Wolf out:
3298234ac1a9SKevin Wolf     g_slist_free(list);
3299234ac1a9SKevin Wolf     bdrv_unref(from);
3300dd62f1caSKevin Wolf }
3301dd62f1caSKevin Wolf 
33028802d1fdSJeff Cody /*
33038802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
33048802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
33058802d1fdSJeff Cody  *
33068802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
33078802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
33088802d1fdSJeff Cody  *
3309bfb197e0SMarkus Armbruster  * bs_new must not be attached to a BlockBackend.
3310f6801b83SJeff Cody  *
33118802d1fdSJeff Cody  * This function does not create any image files.
3312dd62f1caSKevin Wolf  *
3313dd62f1caSKevin Wolf  * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3314dd62f1caSKevin Wolf  * that's what the callers commonly need. bs_new will be referenced by the old
3315dd62f1caSKevin Wolf  * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3316dd62f1caSKevin Wolf  * reference of its own, it must call bdrv_ref().
33178802d1fdSJeff Cody  */
3318b2c2832cSKevin Wolf void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3319b2c2832cSKevin Wolf                  Error **errp)
33208802d1fdSJeff Cody {
3321b2c2832cSKevin Wolf     Error *local_err = NULL;
3322b2c2832cSKevin Wolf 
3323b2c2832cSKevin Wolf     bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3324b2c2832cSKevin Wolf     if (local_err) {
3325b2c2832cSKevin Wolf         error_propagate(errp, local_err);
3326b2c2832cSKevin Wolf         goto out;
3327b2c2832cSKevin Wolf     }
3328dd62f1caSKevin Wolf 
33295fe31c25SKevin Wolf     bdrv_replace_node(bs_top, bs_new, &local_err);
3330234ac1a9SKevin Wolf     if (local_err) {
3331234ac1a9SKevin Wolf         error_propagate(errp, local_err);
3332234ac1a9SKevin Wolf         bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3333234ac1a9SKevin Wolf         goto out;
3334234ac1a9SKevin Wolf     }
3335dd62f1caSKevin Wolf 
3336dd62f1caSKevin Wolf     /* bs_new is now referenced by its new parents, we don't need the
3337dd62f1caSKevin Wolf      * additional reference any more. */
3338b2c2832cSKevin Wolf out:
3339dd62f1caSKevin Wolf     bdrv_unref(bs_new);
33408802d1fdSJeff Cody }
33418802d1fdSJeff Cody 
33424f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs)
3343b338082bSbellard {
33443e914655SPaolo Bonzini     assert(!bs->job);
33453718d8abSFam Zheng     assert(bdrv_op_blocker_is_empty(bs));
33464f6fd349SFam Zheng     assert(!bs->refcnt);
334718846deeSMarkus Armbruster 
3348e1b5c52eSStefan Hajnoczi     bdrv_close(bs);
3349e1b5c52eSStefan Hajnoczi 
33501b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
335163eaaae0SKevin Wolf     if (bs->node_name[0] != '\0') {
335263eaaae0SKevin Wolf         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
335363eaaae0SKevin Wolf     }
33542c1d04e0SMax Reitz     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
33552c1d04e0SMax Reitz 
33567267c094SAnthony Liguori     g_free(bs);
3357fc01f7e7Sbellard }
3358fc01f7e7Sbellard 
3359e97fc193Saliguori /*
3360e97fc193Saliguori  * Run consistency checks on an image
3361e97fc193Saliguori  *
3362e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
3363a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
3364e076f338SKevin Wolf  * check are stored in res.
3365e97fc193Saliguori  */
33664534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
3367e97fc193Saliguori {
3368908bcd54SMax Reitz     if (bs->drv == NULL) {
3369908bcd54SMax Reitz         return -ENOMEDIUM;
3370908bcd54SMax Reitz     }
3371e97fc193Saliguori     if (bs->drv->bdrv_check == NULL) {
3372e97fc193Saliguori         return -ENOTSUP;
3373e97fc193Saliguori     }
3374e97fc193Saliguori 
3375e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
33764534ff54SKevin Wolf     return bs->drv->bdrv_check(bs, res, fix);
3377e97fc193Saliguori }
3378e97fc193Saliguori 
3379756e6736SKevin Wolf /*
3380756e6736SKevin Wolf  * Return values:
3381756e6736SKevin Wolf  * 0        - success
3382756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
3383756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
3384756e6736SKevin Wolf  *            image file header
3385756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
3386756e6736SKevin Wolf  */
3387756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
3388756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
3389756e6736SKevin Wolf {
3390756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
3391469ef350SPaolo Bonzini     int ret;
3392756e6736SKevin Wolf 
33935f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
33945f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
33955f377794SPaolo Bonzini         return -EINVAL;
33965f377794SPaolo Bonzini     }
33975f377794SPaolo Bonzini 
3398756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
3399469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
3400756e6736SKevin Wolf     } else {
3401469ef350SPaolo Bonzini         ret = -ENOTSUP;
3402756e6736SKevin Wolf     }
3403469ef350SPaolo Bonzini 
3404469ef350SPaolo Bonzini     if (ret == 0) {
3405469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3406469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3407469ef350SPaolo Bonzini     }
3408469ef350SPaolo Bonzini     return ret;
3409756e6736SKevin Wolf }
3410756e6736SKevin Wolf 
34116ebdcee2SJeff Cody /*
34126ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
34136ebdcee2SJeff Cody  *
34146ebdcee2SJeff Cody  * active is the current topmost image.
34156ebdcee2SJeff Cody  *
34166ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
34176ebdcee2SJeff Cody  * or if active == bs.
34184caf0fcdSJeff Cody  *
34194caf0fcdSJeff Cody  * Returns the bottommost base image if bs == NULL.
34206ebdcee2SJeff Cody  */
34216ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
34226ebdcee2SJeff Cody                                     BlockDriverState *bs)
34236ebdcee2SJeff Cody {
3424760e0063SKevin Wolf     while (active && bs != backing_bs(active)) {
3425760e0063SKevin Wolf         active = backing_bs(active);
34266ebdcee2SJeff Cody     }
34276ebdcee2SJeff Cody 
34284caf0fcdSJeff Cody     return active;
34296ebdcee2SJeff Cody }
34306ebdcee2SJeff Cody 
34314caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */
34324caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs)
34334caf0fcdSJeff Cody {
34344caf0fcdSJeff Cody     return bdrv_find_overlay(bs, NULL);
34356ebdcee2SJeff Cody }
34366ebdcee2SJeff Cody 
34376ebdcee2SJeff Cody /*
34386ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
34396ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
34406ebdcee2SJeff Cody  *
34416ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
34426ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
34436ebdcee2SJeff Cody  *
34446ebdcee2SJeff Cody  * E.g., this will convert the following chain:
34456ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
34466ebdcee2SJeff Cody  *
34476ebdcee2SJeff Cody  * to
34486ebdcee2SJeff Cody  *
34496ebdcee2SJeff Cody  * bottom <- base <- active
34506ebdcee2SJeff Cody  *
34516ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
34526ebdcee2SJeff Cody  *
34536ebdcee2SJeff Cody  * base <- intermediate <- top <- active
34546ebdcee2SJeff Cody  *
34556ebdcee2SJeff Cody  * to
34566ebdcee2SJeff Cody  *
34576ebdcee2SJeff Cody  * base <- active
34586ebdcee2SJeff Cody  *
345954e26900SJeff Cody  * If backing_file_str is non-NULL, it will be used when modifying top's
346054e26900SJeff Cody  * overlay image metadata.
346154e26900SJeff Cody  *
34626ebdcee2SJeff Cody  * Error conditions:
34636ebdcee2SJeff Cody  *  if active == top, that is considered an error
34646ebdcee2SJeff Cody  *
34656ebdcee2SJeff Cody  */
34666ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
346754e26900SJeff Cody                            BlockDriverState *base, const char *backing_file_str)
34686ebdcee2SJeff Cody {
34696ebdcee2SJeff Cody     BlockDriverState *new_top_bs = NULL;
347012fa4af6SKevin Wolf     Error *local_err = NULL;
34716ebdcee2SJeff Cody     int ret = -EIO;
34726ebdcee2SJeff Cody 
34736ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
34746ebdcee2SJeff Cody         goto exit;
34756ebdcee2SJeff Cody     }
34766ebdcee2SJeff Cody 
34776ebdcee2SJeff Cody     new_top_bs = bdrv_find_overlay(active, top);
34786ebdcee2SJeff Cody 
34796ebdcee2SJeff Cody     if (new_top_bs == NULL) {
34806ebdcee2SJeff Cody         /* we could not find the image above 'top', this is an error */
34816ebdcee2SJeff Cody         goto exit;
34826ebdcee2SJeff Cody     }
34836ebdcee2SJeff Cody 
3484760e0063SKevin Wolf     /* special case of new_top_bs->backing->bs already pointing to base - nothing
34856ebdcee2SJeff Cody      * to do, no intermediate images */
3486760e0063SKevin Wolf     if (backing_bs(new_top_bs) == base) {
34876ebdcee2SJeff Cody         ret = 0;
34886ebdcee2SJeff Cody         goto exit;
34896ebdcee2SJeff Cody     }
34906ebdcee2SJeff Cody 
34915db15a57SKevin Wolf     /* Make sure that base is in the backing chain of top */
34925db15a57SKevin Wolf     if (!bdrv_chain_contains(top, base)) {
34936ebdcee2SJeff Cody         goto exit;
34946ebdcee2SJeff Cody     }
34956ebdcee2SJeff Cody 
34966ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
34975db15a57SKevin Wolf     backing_file_str = backing_file_str ? backing_file_str : base->filename;
349854e26900SJeff Cody     ret = bdrv_change_backing_file(new_top_bs, backing_file_str,
34995db15a57SKevin Wolf                                    base->drv ? base->drv->format_name : "");
35006ebdcee2SJeff Cody     if (ret) {
35016ebdcee2SJeff Cody         goto exit;
35026ebdcee2SJeff Cody     }
350312fa4af6SKevin Wolf 
350412fa4af6SKevin Wolf     bdrv_set_backing_hd(new_top_bs, base, &local_err);
350512fa4af6SKevin Wolf     if (local_err) {
350612fa4af6SKevin Wolf         ret = -EPERM;
350712fa4af6SKevin Wolf         error_report_err(local_err);
350812fa4af6SKevin Wolf         goto exit;
350912fa4af6SKevin Wolf     }
35106ebdcee2SJeff Cody 
35116ebdcee2SJeff Cody     ret = 0;
35126ebdcee2SJeff Cody exit:
35136ebdcee2SJeff Cody     return ret;
35146ebdcee2SJeff Cody }
35156ebdcee2SJeff Cody 
351683f64091Sbellard /**
351783f64091Sbellard  * Truncate file to 'offset' bytes (needed only for file protocols)
351883f64091Sbellard  */
35197ea37c30SMax Reitz int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc,
35207ea37c30SMax Reitz                   Error **errp)
352183f64091Sbellard {
352252cdbc58SKevin Wolf     BlockDriverState *bs = child->bs;
352383f64091Sbellard     BlockDriver *drv = bs->drv;
352451762288SStefan Hajnoczi     int ret;
3525c8f6d58eSKevin Wolf 
3526362b3786SMax Reitz     assert(child->perm & BLK_PERM_RESIZE);
3527c8f6d58eSKevin Wolf 
35285a612c00SManos Pitsidianakis     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
3529ed3d2ec9SMax Reitz     if (!drv) {
3530ed3d2ec9SMax Reitz         error_setg(errp, "No medium inserted");
353119cb3738Sbellard         return -ENOMEDIUM;
3532ed3d2ec9SMax Reitz     }
3533ed3d2ec9SMax Reitz     if (!drv->bdrv_truncate) {
35345a612c00SManos Pitsidianakis         if (bs->file && drv->is_filter) {
35355a612c00SManos Pitsidianakis             return bdrv_truncate(bs->file, offset, prealloc, errp);
35365a612c00SManos Pitsidianakis         }
3537ed3d2ec9SMax Reitz         error_setg(errp, "Image format driver does not support resize");
353883f64091Sbellard         return -ENOTSUP;
3539ed3d2ec9SMax Reitz     }
3540ed3d2ec9SMax Reitz     if (bs->read_only) {
3541ed3d2ec9SMax Reitz         error_setg(errp, "Image is read-only");
354259f2689dSNaphtali Sprei         return -EACCES;
3543ed3d2ec9SMax Reitz     }
35449c75e168SJeff Cody 
3545504c205aSDenis V. Lunev     assert(!(bs->open_flags & BDRV_O_INACTIVE));
3546504c205aSDenis V. Lunev 
35477ea37c30SMax Reitz     ret = drv->bdrv_truncate(bs, offset, prealloc, errp);
3548*1b6cc579SEric Blake     if (ret < 0) {
3549*1b6cc579SEric Blake         return ret;
3550*1b6cc579SEric Blake     }
355151762288SStefan Hajnoczi     ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
3552*1b6cc579SEric Blake     if (ret < 0) {
3553*1b6cc579SEric Blake         error_setg_errno(errp, -ret, "Could not refresh total sector count");
3554*1b6cc579SEric Blake     } else {
3555*1b6cc579SEric Blake         offset = bs->total_sectors * BDRV_SECTOR_SIZE;
3556*1b6cc579SEric Blake     }
3557*1b6cc579SEric Blake     bdrv_dirty_bitmap_truncate(bs, offset);
35585c8cab48SKevin Wolf     bdrv_parent_cb_resize(bs);
355947fec599SPaolo Bonzini     atomic_inc(&bs->write_gen);
356051762288SStefan Hajnoczi     return ret;
356183f64091Sbellard }
356283f64091Sbellard 
356383f64091Sbellard /**
35644a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
35654a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
35664a1d5e1fSFam Zheng  */
35674a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
35684a1d5e1fSFam Zheng {
35694a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
35704a1d5e1fSFam Zheng     if (!drv) {
35714a1d5e1fSFam Zheng         return -ENOMEDIUM;
35724a1d5e1fSFam Zheng     }
35734a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
35744a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
35754a1d5e1fSFam Zheng     }
35764a1d5e1fSFam Zheng     if (bs->file) {
35779a4f4c31SKevin Wolf         return bdrv_get_allocated_file_size(bs->file->bs);
35784a1d5e1fSFam Zheng     }
35794a1d5e1fSFam Zheng     return -ENOTSUP;
35804a1d5e1fSFam Zheng }
35814a1d5e1fSFam Zheng 
358290880ff1SStefan Hajnoczi /*
358390880ff1SStefan Hajnoczi  * bdrv_measure:
358490880ff1SStefan Hajnoczi  * @drv: Format driver
358590880ff1SStefan Hajnoczi  * @opts: Creation options for new image
358690880ff1SStefan Hajnoczi  * @in_bs: Existing image containing data for new image (may be NULL)
358790880ff1SStefan Hajnoczi  * @errp: Error object
358890880ff1SStefan Hajnoczi  * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
358990880ff1SStefan Hajnoczi  *          or NULL on error
359090880ff1SStefan Hajnoczi  *
359190880ff1SStefan Hajnoczi  * Calculate file size required to create a new image.
359290880ff1SStefan Hajnoczi  *
359390880ff1SStefan Hajnoczi  * If @in_bs is given then space for allocated clusters and zero clusters
359490880ff1SStefan Hajnoczi  * from that image are included in the calculation.  If @opts contains a
359590880ff1SStefan Hajnoczi  * backing file that is shared by @in_bs then backing clusters may be omitted
359690880ff1SStefan Hajnoczi  * from the calculation.
359790880ff1SStefan Hajnoczi  *
359890880ff1SStefan Hajnoczi  * If @in_bs is NULL then the calculation includes no allocated clusters
359990880ff1SStefan Hajnoczi  * unless a preallocation option is given in @opts.
360090880ff1SStefan Hajnoczi  *
360190880ff1SStefan Hajnoczi  * Note that @in_bs may use a different BlockDriver from @drv.
360290880ff1SStefan Hajnoczi  *
360390880ff1SStefan Hajnoczi  * If an error occurs the @errp pointer is set.
360490880ff1SStefan Hajnoczi  */
360590880ff1SStefan Hajnoczi BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
360690880ff1SStefan Hajnoczi                                BlockDriverState *in_bs, Error **errp)
360790880ff1SStefan Hajnoczi {
360890880ff1SStefan Hajnoczi     if (!drv->bdrv_measure) {
360990880ff1SStefan Hajnoczi         error_setg(errp, "Block driver '%s' does not support size measurement",
361090880ff1SStefan Hajnoczi                    drv->format_name);
361190880ff1SStefan Hajnoczi         return NULL;
361290880ff1SStefan Hajnoczi     }
361390880ff1SStefan Hajnoczi 
361490880ff1SStefan Hajnoczi     return drv->bdrv_measure(opts, in_bs, errp);
361590880ff1SStefan Hajnoczi }
361690880ff1SStefan Hajnoczi 
36174a1d5e1fSFam Zheng /**
361865a9bb25SMarkus Armbruster  * Return number of sectors on success, -errno on error.
361983f64091Sbellard  */
362065a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs)
362183f64091Sbellard {
362283f64091Sbellard     BlockDriver *drv = bs->drv;
362365a9bb25SMarkus Armbruster 
362483f64091Sbellard     if (!drv)
362519cb3738Sbellard         return -ENOMEDIUM;
362651762288SStefan Hajnoczi 
3627b94a2610SKevin Wolf     if (drv->has_variable_length) {
3628b94a2610SKevin Wolf         int ret = refresh_total_sectors(bs, bs->total_sectors);
3629b94a2610SKevin Wolf         if (ret < 0) {
3630b94a2610SKevin Wolf             return ret;
3631fc01f7e7Sbellard         }
363246a4e4e6SStefan Hajnoczi     }
363365a9bb25SMarkus Armbruster     return bs->total_sectors;
363465a9bb25SMarkus Armbruster }
363565a9bb25SMarkus Armbruster 
363665a9bb25SMarkus Armbruster /**
363765a9bb25SMarkus Armbruster  * Return length in bytes on success, -errno on error.
363865a9bb25SMarkus Armbruster  * The length is always a multiple of BDRV_SECTOR_SIZE.
363965a9bb25SMarkus Armbruster  */
364065a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs)
364165a9bb25SMarkus Armbruster {
364265a9bb25SMarkus Armbruster     int64_t ret = bdrv_nb_sectors(bs);
364365a9bb25SMarkus Armbruster 
36444a9c9ea0SFam Zheng     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
364565a9bb25SMarkus Armbruster     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
364646a4e4e6SStefan Hajnoczi }
3647fc01f7e7Sbellard 
364819cb3738Sbellard /* return 0 as number of sectors if no device present or error */
364996b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
3650fc01f7e7Sbellard {
365165a9bb25SMarkus Armbruster     int64_t nb_sectors = bdrv_nb_sectors(bs);
365265a9bb25SMarkus Armbruster 
365365a9bb25SMarkus Armbruster     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
3654fc01f7e7Sbellard }
3655cf98951bSbellard 
365654115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs)
3657985a03b0Sths {
3658985a03b0Sths     return bs->sg;
3659985a03b0Sths }
3660985a03b0Sths 
366154115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs)
3662ea2384d3Sbellard {
3663760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
366454115412SEric Blake         return true;
3665760e0063SKevin Wolf     }
3666ea2384d3Sbellard     return bs->encrypted;
3667ea2384d3Sbellard }
3668ea2384d3Sbellard 
3669f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
3670ea2384d3Sbellard {
3671f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
3672ea2384d3Sbellard }
3673ea2384d3Sbellard 
3674ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b)
3675ada42401SStefan Hajnoczi {
3676ceff5bd7SMax Reitz     return strcmp(*(char *const *)a, *(char *const *)b);
3677ada42401SStefan Hajnoczi }
3678ada42401SStefan Hajnoczi 
3679ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
3680ea2384d3Sbellard                          void *opaque)
3681ea2384d3Sbellard {
3682ea2384d3Sbellard     BlockDriver *drv;
3683e855e4fbSJeff Cody     int count = 0;
3684ada42401SStefan Hajnoczi     int i;
3685e855e4fbSJeff Cody     const char **formats = NULL;
3686ea2384d3Sbellard 
36878a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
3688e855e4fbSJeff Cody         if (drv->format_name) {
3689e855e4fbSJeff Cody             bool found = false;
3690e855e4fbSJeff Cody             int i = count;
3691e855e4fbSJeff Cody             while (formats && i && !found) {
3692e855e4fbSJeff Cody                 found = !strcmp(formats[--i], drv->format_name);
3693e855e4fbSJeff Cody             }
3694e855e4fbSJeff Cody 
3695e855e4fbSJeff Cody             if (!found) {
36965839e53bSMarkus Armbruster                 formats = g_renew(const char *, formats, count + 1);
3697e855e4fbSJeff Cody                 formats[count++] = drv->format_name;
3698ea2384d3Sbellard             }
3699ea2384d3Sbellard         }
3700e855e4fbSJeff Cody     }
3701ada42401SStefan Hajnoczi 
3702eb0df69fSMax Reitz     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
3703eb0df69fSMax Reitz         const char *format_name = block_driver_modules[i].format_name;
3704eb0df69fSMax Reitz 
3705eb0df69fSMax Reitz         if (format_name) {
3706eb0df69fSMax Reitz             bool found = false;
3707eb0df69fSMax Reitz             int j = count;
3708eb0df69fSMax Reitz 
3709eb0df69fSMax Reitz             while (formats && j && !found) {
3710eb0df69fSMax Reitz                 found = !strcmp(formats[--j], format_name);
3711eb0df69fSMax Reitz             }
3712eb0df69fSMax Reitz 
3713eb0df69fSMax Reitz             if (!found) {
3714eb0df69fSMax Reitz                 formats = g_renew(const char *, formats, count + 1);
3715eb0df69fSMax Reitz                 formats[count++] = format_name;
3716eb0df69fSMax Reitz             }
3717eb0df69fSMax Reitz         }
3718eb0df69fSMax Reitz     }
3719eb0df69fSMax Reitz 
3720ada42401SStefan Hajnoczi     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
3721ada42401SStefan Hajnoczi 
3722ada42401SStefan Hajnoczi     for (i = 0; i < count; i++) {
3723ada42401SStefan Hajnoczi         it(opaque, formats[i]);
3724ada42401SStefan Hajnoczi     }
3725ada42401SStefan Hajnoczi 
3726e855e4fbSJeff Cody     g_free(formats);
3727e855e4fbSJeff Cody }
3728ea2384d3Sbellard 
3729dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */
3730dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name)
3731dc364f4cSBenoît Canet {
3732dc364f4cSBenoît Canet     BlockDriverState *bs;
3733dc364f4cSBenoît Canet 
3734dc364f4cSBenoît Canet     assert(node_name);
3735dc364f4cSBenoît Canet 
3736dc364f4cSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3737dc364f4cSBenoît Canet         if (!strcmp(node_name, bs->node_name)) {
3738dc364f4cSBenoît Canet             return bs;
3739dc364f4cSBenoît Canet         }
3740dc364f4cSBenoît Canet     }
3741dc364f4cSBenoît Canet     return NULL;
3742dc364f4cSBenoît Canet }
3743dc364f4cSBenoît Canet 
3744c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */
3745d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
3746c13163fbSBenoît Canet {
3747c13163fbSBenoît Canet     BlockDeviceInfoList *list, *entry;
3748c13163fbSBenoît Canet     BlockDriverState *bs;
3749c13163fbSBenoît Canet 
3750c13163fbSBenoît Canet     list = NULL;
3751c13163fbSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3752c83f9fbaSKevin Wolf         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
3753d5a8ee60SAlberto Garcia         if (!info) {
3754d5a8ee60SAlberto Garcia             qapi_free_BlockDeviceInfoList(list);
3755d5a8ee60SAlberto Garcia             return NULL;
3756d5a8ee60SAlberto Garcia         }
3757c13163fbSBenoît Canet         entry = g_malloc0(sizeof(*entry));
3758d5a8ee60SAlberto Garcia         entry->value = info;
3759c13163fbSBenoît Canet         entry->next = list;
3760c13163fbSBenoît Canet         list = entry;
3761c13163fbSBenoît Canet     }
3762c13163fbSBenoît Canet 
3763c13163fbSBenoît Canet     return list;
3764c13163fbSBenoît Canet }
3765c13163fbSBenoît Canet 
376612d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device,
376712d3ba82SBenoît Canet                                  const char *node_name,
376812d3ba82SBenoît Canet                                  Error **errp)
376912d3ba82SBenoît Canet {
37707f06d47eSMarkus Armbruster     BlockBackend *blk;
37717f06d47eSMarkus Armbruster     BlockDriverState *bs;
377212d3ba82SBenoît Canet 
377312d3ba82SBenoît Canet     if (device) {
37747f06d47eSMarkus Armbruster         blk = blk_by_name(device);
377512d3ba82SBenoît Canet 
37767f06d47eSMarkus Armbruster         if (blk) {
37779f4ed6fbSAlberto Garcia             bs = blk_bs(blk);
37789f4ed6fbSAlberto Garcia             if (!bs) {
37795433c24fSMax Reitz                 error_setg(errp, "Device '%s' has no medium", device);
37805433c24fSMax Reitz             }
37815433c24fSMax Reitz 
37829f4ed6fbSAlberto Garcia             return bs;
378312d3ba82SBenoît Canet         }
3784dd67fa50SBenoît Canet     }
378512d3ba82SBenoît Canet 
3786dd67fa50SBenoît Canet     if (node_name) {
378712d3ba82SBenoît Canet         bs = bdrv_find_node(node_name);
378812d3ba82SBenoît Canet 
3789dd67fa50SBenoît Canet         if (bs) {
3790dd67fa50SBenoît Canet             return bs;
3791dd67fa50SBenoît Canet         }
379212d3ba82SBenoît Canet     }
379312d3ba82SBenoît Canet 
3794dd67fa50SBenoît Canet     error_setg(errp, "Cannot find device=%s nor node_name=%s",
3795dd67fa50SBenoît Canet                      device ? device : "",
3796dd67fa50SBenoît Canet                      node_name ? node_name : "");
3797dd67fa50SBenoît Canet     return NULL;
379812d3ba82SBenoît Canet }
379912d3ba82SBenoît Canet 
38005a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise,
38015a6684d2SJeff Cody  * return false.  If either argument is NULL, return false. */
38025a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
38035a6684d2SJeff Cody {
38045a6684d2SJeff Cody     while (top && top != base) {
3805760e0063SKevin Wolf         top = backing_bs(top);
38065a6684d2SJeff Cody     }
38075a6684d2SJeff Cody 
38085a6684d2SJeff Cody     return top != NULL;
38095a6684d2SJeff Cody }
38105a6684d2SJeff Cody 
381104df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs)
381204df765aSFam Zheng {
381304df765aSFam Zheng     if (!bs) {
381404df765aSFam Zheng         return QTAILQ_FIRST(&graph_bdrv_states);
381504df765aSFam Zheng     }
381604df765aSFam Zheng     return QTAILQ_NEXT(bs, node_list);
381704df765aSFam Zheng }
381804df765aSFam Zheng 
381920a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs)
382020a9e77dSFam Zheng {
382120a9e77dSFam Zheng     return bs->node_name;
382220a9e77dSFam Zheng }
382320a9e77dSFam Zheng 
38241f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs)
38254c265bf9SKevin Wolf {
38264c265bf9SKevin Wolf     BdrvChild *c;
38274c265bf9SKevin Wolf     const char *name;
38284c265bf9SKevin Wolf 
38294c265bf9SKevin Wolf     /* If multiple parents have a name, just pick the first one. */
38304c265bf9SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
38314c265bf9SKevin Wolf         if (c->role->get_name) {
38324c265bf9SKevin Wolf             name = c->role->get_name(c);
38334c265bf9SKevin Wolf             if (name && *name) {
38344c265bf9SKevin Wolf                 return name;
38354c265bf9SKevin Wolf             }
38364c265bf9SKevin Wolf         }
38374c265bf9SKevin Wolf     }
38384c265bf9SKevin Wolf 
38394c265bf9SKevin Wolf     return NULL;
38404c265bf9SKevin Wolf }
38414c265bf9SKevin Wolf 
38427f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */
3843bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs)
3844ea2384d3Sbellard {
38454c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: "";
3846ea2384d3Sbellard }
3847ea2384d3Sbellard 
38489b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device
38499b2aa84fSAlberto Garcia  * name associated. Since node and device names live in the same
38509b2aa84fSAlberto Garcia  * namespace, the result is unambiguous. The exception is if both are
38519b2aa84fSAlberto Garcia  * absent, then this returns an empty (non-null) string. */
38529b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
38539b2aa84fSAlberto Garcia {
38544c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: bs->node_name;
38559b2aa84fSAlberto Garcia }
38569b2aa84fSAlberto Garcia 
3857c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
3858c8433287SMarkus Armbruster {
3859c8433287SMarkus Armbruster     return bs->open_flags;
3860c8433287SMarkus Armbruster }
3861c8433287SMarkus Armbruster 
38623ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs)
38633ac21627SPeter Lieven {
38643ac21627SPeter Lieven     return 1;
38653ac21627SPeter Lieven }
38663ac21627SPeter Lieven 
3867f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
3868f2feebbdSKevin Wolf {
3869f2feebbdSKevin Wolf     assert(bs->drv);
3870f2feebbdSKevin Wolf 
387111212d8fSPaolo Bonzini     /* If BS is a copy on write image, it is initialized to
387211212d8fSPaolo Bonzini        the contents of the base image, which may not be zeroes.  */
3873760e0063SKevin Wolf     if (bs->backing) {
387411212d8fSPaolo Bonzini         return 0;
387511212d8fSPaolo Bonzini     }
3876336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
3877336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
3878f2feebbdSKevin Wolf     }
38795a612c00SManos Pitsidianakis     if (bs->file && bs->drv->is_filter) {
38805a612c00SManos Pitsidianakis         return bdrv_has_zero_init(bs->file->bs);
38815a612c00SManos Pitsidianakis     }
3882f2feebbdSKevin Wolf 
38833ac21627SPeter Lieven     /* safe default */
38843ac21627SPeter Lieven     return 0;
3885f2feebbdSKevin Wolf }
3886f2feebbdSKevin Wolf 
38874ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
38884ce78691SPeter Lieven {
38894ce78691SPeter Lieven     BlockDriverInfo bdi;
38904ce78691SPeter Lieven 
3891760e0063SKevin Wolf     if (bs->backing) {
38924ce78691SPeter Lieven         return false;
38934ce78691SPeter Lieven     }
38944ce78691SPeter Lieven 
38954ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
38964ce78691SPeter Lieven         return bdi.unallocated_blocks_are_zero;
38974ce78691SPeter Lieven     }
38984ce78691SPeter Lieven 
38994ce78691SPeter Lieven     return false;
39004ce78691SPeter Lieven }
39014ce78691SPeter Lieven 
39024ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
39034ce78691SPeter Lieven {
39044ce78691SPeter Lieven     BlockDriverInfo bdi;
39054ce78691SPeter Lieven 
39062f0342efSDenis V. Lunev     if (!(bs->open_flags & BDRV_O_UNMAP)) {
39074ce78691SPeter Lieven         return false;
39084ce78691SPeter Lieven     }
39094ce78691SPeter Lieven 
39104ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
39114ce78691SPeter Lieven         return bdi.can_write_zeroes_with_unmap;
39124ce78691SPeter Lieven     }
39134ce78691SPeter Lieven 
39144ce78691SPeter Lieven     return false;
39154ce78691SPeter Lieven }
39164ce78691SPeter Lieven 
3917045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
3918045df330Saliguori {
3919760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted)
3920045df330Saliguori         return bs->backing_file;
3921045df330Saliguori     else if (bs->encrypted)
3922045df330Saliguori         return bs->filename;
3923045df330Saliguori     else
3924045df330Saliguori         return NULL;
3925045df330Saliguori }
3926045df330Saliguori 
392783f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
392883f64091Sbellard                                char *filename, int filename_size)
392983f64091Sbellard {
393083f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
393183f64091Sbellard }
393283f64091Sbellard 
3933faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
3934faea38e7Sbellard {
3935faea38e7Sbellard     BlockDriver *drv = bs->drv;
39365a612c00SManos Pitsidianakis     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
39375a612c00SManos Pitsidianakis     if (!drv) {
393819cb3738Sbellard         return -ENOMEDIUM;
39395a612c00SManos Pitsidianakis     }
39405a612c00SManos Pitsidianakis     if (!drv->bdrv_get_info) {
39415a612c00SManos Pitsidianakis         if (bs->file && drv->is_filter) {
39425a612c00SManos Pitsidianakis             return bdrv_get_info(bs->file->bs, bdi);
39435a612c00SManos Pitsidianakis         }
3944faea38e7Sbellard         return -ENOTSUP;
39455a612c00SManos Pitsidianakis     }
3946faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
3947faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
3948faea38e7Sbellard }
3949faea38e7Sbellard 
3950eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
3951eae041feSMax Reitz {
3952eae041feSMax Reitz     BlockDriver *drv = bs->drv;
3953eae041feSMax Reitz     if (drv && drv->bdrv_get_specific_info) {
3954eae041feSMax Reitz         return drv->bdrv_get_specific_info(bs);
3955eae041feSMax Reitz     }
3956eae041feSMax Reitz     return NULL;
3957eae041feSMax Reitz }
3958eae041feSMax Reitz 
3959a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
39608b9b0cc2SKevin Wolf {
3961bf736fe3SKevin Wolf     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
39628b9b0cc2SKevin Wolf         return;
39638b9b0cc2SKevin Wolf     }
39648b9b0cc2SKevin Wolf 
3965bf736fe3SKevin Wolf     bs->drv->bdrv_debug_event(bs, event);
396641c695c7SKevin Wolf }
39678b9b0cc2SKevin Wolf 
396841c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
396941c695c7SKevin Wolf                           const char *tag)
397041c695c7SKevin Wolf {
397141c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
39729a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
397341c695c7SKevin Wolf     }
397441c695c7SKevin Wolf 
397541c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
397641c695c7SKevin Wolf         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
397741c695c7SKevin Wolf     }
397841c695c7SKevin Wolf 
397941c695c7SKevin Wolf     return -ENOTSUP;
398041c695c7SKevin Wolf }
398141c695c7SKevin Wolf 
39824cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
39834cc70e93SFam Zheng {
39844cc70e93SFam Zheng     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
39859a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
39864cc70e93SFam Zheng     }
39874cc70e93SFam Zheng 
39884cc70e93SFam Zheng     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
39894cc70e93SFam Zheng         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
39904cc70e93SFam Zheng     }
39914cc70e93SFam Zheng 
39924cc70e93SFam Zheng     return -ENOTSUP;
39934cc70e93SFam Zheng }
39944cc70e93SFam Zheng 
399541c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
399641c695c7SKevin Wolf {
3997938789eaSMax Reitz     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
39989a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
399941c695c7SKevin Wolf     }
400041c695c7SKevin Wolf 
400141c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
400241c695c7SKevin Wolf         return bs->drv->bdrv_debug_resume(bs, tag);
400341c695c7SKevin Wolf     }
400441c695c7SKevin Wolf 
400541c695c7SKevin Wolf     return -ENOTSUP;
400641c695c7SKevin Wolf }
400741c695c7SKevin Wolf 
400841c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
400941c695c7SKevin Wolf {
401041c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
40119a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
401241c695c7SKevin Wolf     }
401341c695c7SKevin Wolf 
401441c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
401541c695c7SKevin Wolf         return bs->drv->bdrv_debug_is_suspended(bs, tag);
401641c695c7SKevin Wolf     }
401741c695c7SKevin Wolf 
401841c695c7SKevin Wolf     return false;
40198b9b0cc2SKevin Wolf }
40208b9b0cc2SKevin Wolf 
4021b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol.  If it is
4022b1b1d783SJeff Cody  * relative, it must be relative to the chain.  So, passing in bs->filename
4023b1b1d783SJeff Cody  * from a BDS as backing_file should not be done, as that may be relative to
4024b1b1d783SJeff Cody  * the CWD rather than the chain. */
4025e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4026e8a6bb9cSMarcelo Tosatti         const char *backing_file)
4027e8a6bb9cSMarcelo Tosatti {
4028b1b1d783SJeff Cody     char *filename_full = NULL;
4029b1b1d783SJeff Cody     char *backing_file_full = NULL;
4030b1b1d783SJeff Cody     char *filename_tmp = NULL;
4031b1b1d783SJeff Cody     int is_protocol = 0;
4032b1b1d783SJeff Cody     BlockDriverState *curr_bs = NULL;
4033b1b1d783SJeff Cody     BlockDriverState *retval = NULL;
4034418661e0SJeff Cody     Error *local_error = NULL;
4035b1b1d783SJeff Cody 
4036b1b1d783SJeff Cody     if (!bs || !bs->drv || !backing_file) {
4037e8a6bb9cSMarcelo Tosatti         return NULL;
4038e8a6bb9cSMarcelo Tosatti     }
4039e8a6bb9cSMarcelo Tosatti 
4040b1b1d783SJeff Cody     filename_full     = g_malloc(PATH_MAX);
4041b1b1d783SJeff Cody     backing_file_full = g_malloc(PATH_MAX);
4042b1b1d783SJeff Cody     filename_tmp      = g_malloc(PATH_MAX);
4043b1b1d783SJeff Cody 
4044b1b1d783SJeff Cody     is_protocol = path_has_protocol(backing_file);
4045b1b1d783SJeff Cody 
4046760e0063SKevin Wolf     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
4047b1b1d783SJeff Cody 
4048b1b1d783SJeff Cody         /* If either of the filename paths is actually a protocol, then
4049b1b1d783SJeff Cody          * compare unmodified paths; otherwise make paths relative */
4050b1b1d783SJeff Cody         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4051b1b1d783SJeff Cody             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4052760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
4053b1b1d783SJeff Cody                 break;
4054b1b1d783SJeff Cody             }
4055418661e0SJeff Cody             /* Also check against the full backing filename for the image */
4056418661e0SJeff Cody             bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
4057418661e0SJeff Cody                                            &local_error);
4058418661e0SJeff Cody             if (local_error == NULL) {
4059418661e0SJeff Cody                 if (strcmp(backing_file, backing_file_full) == 0) {
4060418661e0SJeff Cody                     retval = curr_bs->backing->bs;
4061418661e0SJeff Cody                     break;
4062418661e0SJeff Cody                 }
4063418661e0SJeff Cody             } else {
4064418661e0SJeff Cody                 error_free(local_error);
4065418661e0SJeff Cody                 local_error = NULL;
4066418661e0SJeff Cody             }
4067e8a6bb9cSMarcelo Tosatti         } else {
4068b1b1d783SJeff Cody             /* If not an absolute filename path, make it relative to the current
4069b1b1d783SJeff Cody              * image's filename path */
4070b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4071b1b1d783SJeff Cody                          backing_file);
4072b1b1d783SJeff Cody 
4073b1b1d783SJeff Cody             /* We are going to compare absolute pathnames */
4074b1b1d783SJeff Cody             if (!realpath(filename_tmp, filename_full)) {
4075b1b1d783SJeff Cody                 continue;
4076b1b1d783SJeff Cody             }
4077b1b1d783SJeff Cody 
4078b1b1d783SJeff Cody             /* We need to make sure the backing filename we are comparing against
4079b1b1d783SJeff Cody              * is relative to the current image filename (or absolute) */
4080b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4081b1b1d783SJeff Cody                          curr_bs->backing_file);
4082b1b1d783SJeff Cody 
4083b1b1d783SJeff Cody             if (!realpath(filename_tmp, backing_file_full)) {
4084b1b1d783SJeff Cody                 continue;
4085b1b1d783SJeff Cody             }
4086b1b1d783SJeff Cody 
4087b1b1d783SJeff Cody             if (strcmp(backing_file_full, filename_full) == 0) {
4088760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
4089b1b1d783SJeff Cody                 break;
4090b1b1d783SJeff Cody             }
4091e8a6bb9cSMarcelo Tosatti         }
4092e8a6bb9cSMarcelo Tosatti     }
4093e8a6bb9cSMarcelo Tosatti 
4094b1b1d783SJeff Cody     g_free(filename_full);
4095b1b1d783SJeff Cody     g_free(backing_file_full);
4096b1b1d783SJeff Cody     g_free(filename_tmp);
4097b1b1d783SJeff Cody     return retval;
4098e8a6bb9cSMarcelo Tosatti }
4099e8a6bb9cSMarcelo Tosatti 
4100ea2384d3Sbellard void bdrv_init(void)
4101ea2384d3Sbellard {
41025efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
4103ea2384d3Sbellard }
4104ce1a14dcSpbrook 
4105eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
4106eb852011SMarkus Armbruster {
4107eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
4108eb852011SMarkus Armbruster     bdrv_init();
4109eb852011SMarkus Armbruster }
4110eb852011SMarkus Armbruster 
41115a8a30dbSKevin Wolf void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
41120f15423cSAnthony Liguori {
41134417ab7aSKevin Wolf     BdrvChild *child, *parent;
41149c5e6594SKevin Wolf     uint64_t perm, shared_perm;
41155a8a30dbSKevin Wolf     Error *local_err = NULL;
41165a8a30dbSKevin Wolf     int ret;
41175a8a30dbSKevin Wolf 
41183456a8d1SKevin Wolf     if (!bs->drv)  {
41193456a8d1SKevin Wolf         return;
41200f15423cSAnthony Liguori     }
41213456a8d1SKevin Wolf 
412204c01a5cSKevin Wolf     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
41237ea2d269SAlexey Kardashevskiy         return;
41247ea2d269SAlexey Kardashevskiy     }
41257ea2d269SAlexey Kardashevskiy 
412616e977d5SVladimir Sementsov-Ogievskiy     QLIST_FOREACH(child, &bs->children, next) {
412716e977d5SVladimir Sementsov-Ogievskiy         bdrv_invalidate_cache(child->bs, &local_err);
41285a8a30dbSKevin Wolf         if (local_err) {
41295a8a30dbSKevin Wolf             error_propagate(errp, local_err);
41305a8a30dbSKevin Wolf             return;
41313456a8d1SKevin Wolf         }
41320d1c5c91SFam Zheng     }
41330d1c5c91SFam Zheng 
413416e977d5SVladimir Sementsov-Ogievskiy     bs->open_flags &= ~BDRV_O_INACTIVE;
413516e977d5SVladimir Sementsov-Ogievskiy     if (bs->drv->bdrv_invalidate_cache) {
413616e977d5SVladimir Sementsov-Ogievskiy         bs->drv->bdrv_invalidate_cache(bs, &local_err);
41370d1c5c91SFam Zheng         if (local_err) {
41380d1c5c91SFam Zheng             bs->open_flags |= BDRV_O_INACTIVE;
41390d1c5c91SFam Zheng             error_propagate(errp, local_err);
41400d1c5c91SFam Zheng             return;
41410d1c5c91SFam Zheng         }
41420d1c5c91SFam Zheng     }
41433456a8d1SKevin Wolf 
41445a8a30dbSKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
41455a8a30dbSKevin Wolf     if (ret < 0) {
414604c01a5cSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
41475a8a30dbSKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
41485a8a30dbSKevin Wolf         return;
41495a8a30dbSKevin Wolf     }
41504417ab7aSKevin Wolf 
41519c5e6594SKevin Wolf     /* Update permissions, they may differ for inactive nodes */
41529c5e6594SKevin Wolf     bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
41533121fb45SKevin Wolf     ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
41549c5e6594SKevin Wolf     if (ret < 0) {
41559c5e6594SKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
41569c5e6594SKevin Wolf         error_propagate(errp, local_err);
41579c5e6594SKevin Wolf         return;
41589c5e6594SKevin Wolf     }
41599c5e6594SKevin Wolf     bdrv_set_perm(bs, perm, shared_perm);
41609c5e6594SKevin Wolf 
41614417ab7aSKevin Wolf     QLIST_FOREACH(parent, &bs->parents, next_parent) {
41624417ab7aSKevin Wolf         if (parent->role->activate) {
41634417ab7aSKevin Wolf             parent->role->activate(parent, &local_err);
41644417ab7aSKevin Wolf             if (local_err) {
41654417ab7aSKevin Wolf                 error_propagate(errp, local_err);
41664417ab7aSKevin Wolf                 return;
41674417ab7aSKevin Wolf             }
41684417ab7aSKevin Wolf         }
41694417ab7aSKevin Wolf     }
41700f15423cSAnthony Liguori }
41710f15423cSAnthony Liguori 
41725a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp)
41730f15423cSAnthony Liguori {
41747c8eece4SKevin Wolf     BlockDriverState *bs;
41755a8a30dbSKevin Wolf     Error *local_err = NULL;
417688be7b4bSKevin Wolf     BdrvNextIterator it;
41770f15423cSAnthony Liguori 
417888be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4179ed78cda3SStefan Hajnoczi         AioContext *aio_context = bdrv_get_aio_context(bs);
4180ed78cda3SStefan Hajnoczi 
4181ed78cda3SStefan Hajnoczi         aio_context_acquire(aio_context);
41825a8a30dbSKevin Wolf         bdrv_invalidate_cache(bs, &local_err);
4183ed78cda3SStefan Hajnoczi         aio_context_release(aio_context);
41845a8a30dbSKevin Wolf         if (local_err) {
41855a8a30dbSKevin Wolf             error_propagate(errp, local_err);
41865a8a30dbSKevin Wolf             return;
41875a8a30dbSKevin Wolf         }
41880f15423cSAnthony Liguori     }
41890f15423cSAnthony Liguori }
41900f15423cSAnthony Liguori 
4191aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs,
4192aad0b7a0SFam Zheng                                    bool setting_flag)
419376b1c7feSKevin Wolf {
4194cfa1a572SKevin Wolf     BdrvChild *child, *parent;
419576b1c7feSKevin Wolf     int ret;
419676b1c7feSKevin Wolf 
4197aad0b7a0SFam Zheng     if (!setting_flag && bs->drv->bdrv_inactivate) {
419876b1c7feSKevin Wolf         ret = bs->drv->bdrv_inactivate(bs);
419976b1c7feSKevin Wolf         if (ret < 0) {
420076b1c7feSKevin Wolf             return ret;
420176b1c7feSKevin Wolf         }
420276b1c7feSKevin Wolf     }
420376b1c7feSKevin Wolf 
42047d5b5261SStefan Hajnoczi     if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) {
42059c5e6594SKevin Wolf         uint64_t perm, shared_perm;
42069c5e6594SKevin Wolf 
4207cfa1a572SKevin Wolf         QLIST_FOREACH(parent, &bs->parents, next_parent) {
4208cfa1a572SKevin Wolf             if (parent->role->inactivate) {
4209cfa1a572SKevin Wolf                 ret = parent->role->inactivate(parent);
4210cfa1a572SKevin Wolf                 if (ret < 0) {
4211cfa1a572SKevin Wolf                     return ret;
4212cfa1a572SKevin Wolf                 }
4213cfa1a572SKevin Wolf             }
4214cfa1a572SKevin Wolf         }
42159c5e6594SKevin Wolf 
42167d5b5261SStefan Hajnoczi         bs->open_flags |= BDRV_O_INACTIVE;
42177d5b5261SStefan Hajnoczi 
42189c5e6594SKevin Wolf         /* Update permissions, they may differ for inactive nodes */
42199c5e6594SKevin Wolf         bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
42203121fb45SKevin Wolf         bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
42219c5e6594SKevin Wolf         bdrv_set_perm(bs, perm, shared_perm);
4222aad0b7a0SFam Zheng     }
422338701b6aSKevin Wolf 
422438701b6aSKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
422538701b6aSKevin Wolf         ret = bdrv_inactivate_recurse(child->bs, setting_flag);
422638701b6aSKevin Wolf         if (ret < 0) {
422738701b6aSKevin Wolf             return ret;
422838701b6aSKevin Wolf         }
422938701b6aSKevin Wolf     }
423038701b6aSKevin Wolf 
4231615b5dcfSVladimir Sementsov-Ogievskiy     /* At this point persistent bitmaps should be already stored by the format
4232615b5dcfSVladimir Sementsov-Ogievskiy      * driver */
4233615b5dcfSVladimir Sementsov-Ogievskiy     bdrv_release_persistent_dirty_bitmaps(bs);
4234615b5dcfSVladimir Sementsov-Ogievskiy 
423576b1c7feSKevin Wolf     return 0;
423676b1c7feSKevin Wolf }
423776b1c7feSKevin Wolf 
423876b1c7feSKevin Wolf int bdrv_inactivate_all(void)
423976b1c7feSKevin Wolf {
424079720af6SMax Reitz     BlockDriverState *bs = NULL;
424188be7b4bSKevin Wolf     BdrvNextIterator it;
4242aad0b7a0SFam Zheng     int ret = 0;
4243aad0b7a0SFam Zheng     int pass;
424476b1c7feSKevin Wolf 
424588be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4246aad0b7a0SFam Zheng         aio_context_acquire(bdrv_get_aio_context(bs));
4247aad0b7a0SFam Zheng     }
424876b1c7feSKevin Wolf 
4249aad0b7a0SFam Zheng     /* We do two passes of inactivation. The first pass calls to drivers'
4250aad0b7a0SFam Zheng      * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
4251aad0b7a0SFam Zheng      * the second pass sets the BDRV_O_INACTIVE flag so that no further write
4252aad0b7a0SFam Zheng      * is allowed. */
4253aad0b7a0SFam Zheng     for (pass = 0; pass < 2; pass++) {
425488be7b4bSKevin Wolf         for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4255aad0b7a0SFam Zheng             ret = bdrv_inactivate_recurse(bs, pass);
425676b1c7feSKevin Wolf             if (ret < 0) {
4257aad0b7a0SFam Zheng                 goto out;
4258aad0b7a0SFam Zheng             }
425976b1c7feSKevin Wolf         }
426076b1c7feSKevin Wolf     }
426176b1c7feSKevin Wolf 
4262aad0b7a0SFam Zheng out:
426388be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4264aad0b7a0SFam Zheng         aio_context_release(bdrv_get_aio_context(bs));
4265aad0b7a0SFam Zheng     }
4266aad0b7a0SFam Zheng 
4267aad0b7a0SFam Zheng     return ret;
426876b1c7feSKevin Wolf }
426976b1c7feSKevin Wolf 
4270f9f05dc5SKevin Wolf /**************************************************************/
427119cb3738Sbellard /* removable device support */
427219cb3738Sbellard 
427319cb3738Sbellard /**
427419cb3738Sbellard  * Return TRUE if the media is present
427519cb3738Sbellard  */
4276e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs)
427719cb3738Sbellard {
427819cb3738Sbellard     BlockDriver *drv = bs->drv;
427928d7a789SMax Reitz     BdrvChild *child;
4280a1aff5bfSMarkus Armbruster 
4281e031f750SMax Reitz     if (!drv) {
4282e031f750SMax Reitz         return false;
4283e031f750SMax Reitz     }
428428d7a789SMax Reitz     if (drv->bdrv_is_inserted) {
4285a1aff5bfSMarkus Armbruster         return drv->bdrv_is_inserted(bs);
428619cb3738Sbellard     }
428728d7a789SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
428828d7a789SMax Reitz         if (!bdrv_is_inserted(child->bs)) {
428928d7a789SMax Reitz             return false;
429028d7a789SMax Reitz         }
429128d7a789SMax Reitz     }
429228d7a789SMax Reitz     return true;
429328d7a789SMax Reitz }
429419cb3738Sbellard 
429519cb3738Sbellard /**
429619cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
429719cb3738Sbellard  */
4298f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
429919cb3738Sbellard {
430019cb3738Sbellard     BlockDriver *drv = bs->drv;
430119cb3738Sbellard 
4302822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
4303822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
430419cb3738Sbellard     }
430519cb3738Sbellard }
430619cb3738Sbellard 
430719cb3738Sbellard /**
430819cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
430919cb3738Sbellard  * to eject it manually).
431019cb3738Sbellard  */
4311025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
431219cb3738Sbellard {
431319cb3738Sbellard     BlockDriver *drv = bs->drv;
431419cb3738Sbellard 
4315025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
4316b8c6d095SStefan Hajnoczi 
4317025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
4318025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
431919cb3738Sbellard     }
432019cb3738Sbellard }
4321985a03b0Sths 
43229fcb0251SFam Zheng /* Get a reference to bs */
43239fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs)
43249fcb0251SFam Zheng {
43259fcb0251SFam Zheng     bs->refcnt++;
43269fcb0251SFam Zheng }
43279fcb0251SFam Zheng 
43289fcb0251SFam Zheng /* Release a previously grabbed reference to bs.
43299fcb0251SFam Zheng  * If after releasing, reference count is zero, the BlockDriverState is
43309fcb0251SFam Zheng  * deleted. */
43319fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs)
43329fcb0251SFam Zheng {
43339a4d5ca6SJeff Cody     if (!bs) {
43349a4d5ca6SJeff Cody         return;
43359a4d5ca6SJeff Cody     }
43369fcb0251SFam Zheng     assert(bs->refcnt > 0);
43379fcb0251SFam Zheng     if (--bs->refcnt == 0) {
43389fcb0251SFam Zheng         bdrv_delete(bs);
43399fcb0251SFam Zheng     }
43409fcb0251SFam Zheng }
43419fcb0251SFam Zheng 
4342fbe40ff7SFam Zheng struct BdrvOpBlocker {
4343fbe40ff7SFam Zheng     Error *reason;
4344fbe40ff7SFam Zheng     QLIST_ENTRY(BdrvOpBlocker) list;
4345fbe40ff7SFam Zheng };
4346fbe40ff7SFam Zheng 
4347fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
4348fbe40ff7SFam Zheng {
4349fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
4350fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4351fbe40ff7SFam Zheng     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
4352fbe40ff7SFam Zheng         blocker = QLIST_FIRST(&bs->op_blockers[op]);
435357ef3f12SEduardo Habkost         error_propagate(errp, error_copy(blocker->reason));
4354e43bfd9cSMarkus Armbruster         error_prepend(errp, "Node '%s' is busy: ",
4355e43bfd9cSMarkus Armbruster                       bdrv_get_device_or_node_name(bs));
4356fbe40ff7SFam Zheng         return true;
4357fbe40ff7SFam Zheng     }
4358fbe40ff7SFam Zheng     return false;
4359fbe40ff7SFam Zheng }
4360fbe40ff7SFam Zheng 
4361fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
4362fbe40ff7SFam Zheng {
4363fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
4364fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4365fbe40ff7SFam Zheng 
43665839e53bSMarkus Armbruster     blocker = g_new0(BdrvOpBlocker, 1);
4367fbe40ff7SFam Zheng     blocker->reason = reason;
4368fbe40ff7SFam Zheng     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
4369fbe40ff7SFam Zheng }
4370fbe40ff7SFam Zheng 
4371fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
4372fbe40ff7SFam Zheng {
4373fbe40ff7SFam Zheng     BdrvOpBlocker *blocker, *next;
4374fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4375fbe40ff7SFam Zheng     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
4376fbe40ff7SFam Zheng         if (blocker->reason == reason) {
4377fbe40ff7SFam Zheng             QLIST_REMOVE(blocker, list);
4378fbe40ff7SFam Zheng             g_free(blocker);
4379fbe40ff7SFam Zheng         }
4380fbe40ff7SFam Zheng     }
4381fbe40ff7SFam Zheng }
4382fbe40ff7SFam Zheng 
4383fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
4384fbe40ff7SFam Zheng {
4385fbe40ff7SFam Zheng     int i;
4386fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4387fbe40ff7SFam Zheng         bdrv_op_block(bs, i, reason);
4388fbe40ff7SFam Zheng     }
4389fbe40ff7SFam Zheng }
4390fbe40ff7SFam Zheng 
4391fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
4392fbe40ff7SFam Zheng {
4393fbe40ff7SFam Zheng     int i;
4394fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4395fbe40ff7SFam Zheng         bdrv_op_unblock(bs, i, reason);
4396fbe40ff7SFam Zheng     }
4397fbe40ff7SFam Zheng }
4398fbe40ff7SFam Zheng 
4399fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
4400fbe40ff7SFam Zheng {
4401fbe40ff7SFam Zheng     int i;
4402fbe40ff7SFam Zheng 
4403fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4404fbe40ff7SFam Zheng         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
4405fbe40ff7SFam Zheng             return false;
4406fbe40ff7SFam Zheng         }
4407fbe40ff7SFam Zheng     }
4408fbe40ff7SFam Zheng     return true;
4409fbe40ff7SFam Zheng }
4410fbe40ff7SFam Zheng 
4411d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt,
4412f88e1a42SJes Sorensen                      const char *base_filename, const char *base_fmt,
44139217283dSFam Zheng                      char *options, uint64_t img_size, int flags, bool quiet,
44149217283dSFam Zheng                      Error **errp)
4415f88e1a42SJes Sorensen {
441683d0521aSChunyan Liu     QemuOptsList *create_opts = NULL;
441783d0521aSChunyan Liu     QemuOpts *opts = NULL;
441883d0521aSChunyan Liu     const char *backing_fmt, *backing_file;
441983d0521aSChunyan Liu     int64_t size;
4420f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
4421cc84d90fSMax Reitz     Error *local_err = NULL;
4422f88e1a42SJes Sorensen     int ret = 0;
4423f88e1a42SJes Sorensen 
4424f88e1a42SJes Sorensen     /* Find driver and parse its options */
4425f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
4426f88e1a42SJes Sorensen     if (!drv) {
442771c79813SLuiz Capitulino         error_setg(errp, "Unknown file format '%s'", fmt);
4428d92ada22SLuiz Capitulino         return;
4429f88e1a42SJes Sorensen     }
4430f88e1a42SJes Sorensen 
4431b65a5e12SMax Reitz     proto_drv = bdrv_find_protocol(filename, true, errp);
4432f88e1a42SJes Sorensen     if (!proto_drv) {
4433d92ada22SLuiz Capitulino         return;
4434f88e1a42SJes Sorensen     }
4435f88e1a42SJes Sorensen 
4436c6149724SMax Reitz     if (!drv->create_opts) {
4437c6149724SMax Reitz         error_setg(errp, "Format driver '%s' does not support image creation",
4438c6149724SMax Reitz                    drv->format_name);
4439c6149724SMax Reitz         return;
4440c6149724SMax Reitz     }
4441c6149724SMax Reitz 
4442c6149724SMax Reitz     if (!proto_drv->create_opts) {
4443c6149724SMax Reitz         error_setg(errp, "Protocol driver '%s' does not support image creation",
4444c6149724SMax Reitz                    proto_drv->format_name);
4445c6149724SMax Reitz         return;
4446c6149724SMax Reitz     }
4447c6149724SMax Reitz 
4448c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, drv->create_opts);
4449c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4450f88e1a42SJes Sorensen 
4451f88e1a42SJes Sorensen     /* Create parameter list with default values */
445283d0521aSChunyan Liu     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
445339101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4454f88e1a42SJes Sorensen 
4455f88e1a42SJes Sorensen     /* Parse -o options */
4456f88e1a42SJes Sorensen     if (options) {
4457dc523cd3SMarkus Armbruster         qemu_opts_do_parse(opts, options, NULL, &local_err);
4458dc523cd3SMarkus Armbruster         if (local_err) {
4459dc523cd3SMarkus Armbruster             error_report_err(local_err);
4460dc523cd3SMarkus Armbruster             local_err = NULL;
446183d0521aSChunyan Liu             error_setg(errp, "Invalid options for file format '%s'", fmt);
4462f88e1a42SJes Sorensen             goto out;
4463f88e1a42SJes Sorensen         }
4464f88e1a42SJes Sorensen     }
4465f88e1a42SJes Sorensen 
4466f88e1a42SJes Sorensen     if (base_filename) {
4467f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
44686be4194bSMarkus Armbruster         if (local_err) {
446971c79813SLuiz Capitulino             error_setg(errp, "Backing file not supported for file format '%s'",
447071c79813SLuiz Capitulino                        fmt);
4471f88e1a42SJes Sorensen             goto out;
4472f88e1a42SJes Sorensen         }
4473f88e1a42SJes Sorensen     }
4474f88e1a42SJes Sorensen 
4475f88e1a42SJes Sorensen     if (base_fmt) {
4476f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
44776be4194bSMarkus Armbruster         if (local_err) {
447871c79813SLuiz Capitulino             error_setg(errp, "Backing file format not supported for file "
447971c79813SLuiz Capitulino                              "format '%s'", fmt);
4480f88e1a42SJes Sorensen             goto out;
4481f88e1a42SJes Sorensen         }
4482f88e1a42SJes Sorensen     }
4483f88e1a42SJes Sorensen 
448483d0521aSChunyan Liu     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
448583d0521aSChunyan Liu     if (backing_file) {
448683d0521aSChunyan Liu         if (!strcmp(filename, backing_file)) {
448771c79813SLuiz Capitulino             error_setg(errp, "Error: Trying to create an image with the "
448871c79813SLuiz Capitulino                              "same filename as the backing file");
4489792da93aSJes Sorensen             goto out;
4490792da93aSJes Sorensen         }
4491792da93aSJes Sorensen     }
4492792da93aSJes Sorensen 
449383d0521aSChunyan Liu     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
4494f88e1a42SJes Sorensen 
44956e6e55f5SJohn Snow     /* The size for the image must always be specified, unless we have a backing
44966e6e55f5SJohn Snow      * file and we have not been forbidden from opening it. */
4497a8b42a1cSEric Blake     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
44986e6e55f5SJohn Snow     if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
449966f6b814SMax Reitz         BlockDriverState *bs;
450029168018SMax Reitz         char *full_backing = g_new0(char, PATH_MAX);
450163090dacSPaolo Bonzini         int back_flags;
4502e6641719SMax Reitz         QDict *backing_options = NULL;
450363090dacSPaolo Bonzini 
450429168018SMax Reitz         bdrv_get_full_backing_filename_from_filename(filename, backing_file,
450529168018SMax Reitz                                                      full_backing, PATH_MAX,
450629168018SMax Reitz                                                      &local_err);
450729168018SMax Reitz         if (local_err) {
450829168018SMax Reitz             g_free(full_backing);
450929168018SMax Reitz             goto out;
451029168018SMax Reitz         }
451129168018SMax Reitz 
451263090dacSPaolo Bonzini         /* backing files always opened read-only */
451361de4c68SKevin Wolf         back_flags = flags;
4514bfd18d1eSKevin Wolf         back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4515f88e1a42SJes Sorensen 
4516e6641719SMax Reitz         if (backing_fmt) {
4517e6641719SMax Reitz             backing_options = qdict_new();
451846f5ac20SEric Blake             qdict_put_str(backing_options, "driver", backing_fmt);
4519e6641719SMax Reitz         }
4520e6641719SMax Reitz 
45215b363937SMax Reitz         bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
45225b363937SMax Reitz                        &local_err);
452329168018SMax Reitz         g_free(full_backing);
45246e6e55f5SJohn Snow         if (!bs && size != -1) {
45256e6e55f5SJohn Snow             /* Couldn't open BS, but we have a size, so it's nonfatal */
45266e6e55f5SJohn Snow             warn_reportf_err(local_err,
45276e6e55f5SJohn Snow                             "Could not verify backing image. "
45286e6e55f5SJohn Snow                             "This may become an error in future versions.\n");
45296e6e55f5SJohn Snow             local_err = NULL;
45306e6e55f5SJohn Snow         } else if (!bs) {
45316e6e55f5SJohn Snow             /* Couldn't open bs, do not have size */
45326e6e55f5SJohn Snow             error_append_hint(&local_err,
45336e6e55f5SJohn Snow                               "Could not open backing image to determine size.\n");
4534f88e1a42SJes Sorensen             goto out;
45356e6e55f5SJohn Snow         } else {
45366e6e55f5SJohn Snow             if (size == -1) {
45376e6e55f5SJohn Snow                 /* Opened BS, have no size */
453852bf1e72SMarkus Armbruster                 size = bdrv_getlength(bs);
453952bf1e72SMarkus Armbruster                 if (size < 0) {
454052bf1e72SMarkus Armbruster                     error_setg_errno(errp, -size, "Could not get size of '%s'",
454152bf1e72SMarkus Armbruster                                      backing_file);
454252bf1e72SMarkus Armbruster                     bdrv_unref(bs);
454352bf1e72SMarkus Armbruster                     goto out;
454452bf1e72SMarkus Armbruster                 }
454539101f25SMarkus Armbruster                 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
45466e6e55f5SJohn Snow             }
454766f6b814SMax Reitz             bdrv_unref(bs);
45486e6e55f5SJohn Snow         }
45496e6e55f5SJohn Snow     } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
45506e6e55f5SJohn Snow 
45516e6e55f5SJohn Snow     if (size == -1) {
455271c79813SLuiz Capitulino         error_setg(errp, "Image creation needs a size parameter");
4553f88e1a42SJes Sorensen         goto out;
4554f88e1a42SJes Sorensen     }
4555f88e1a42SJes Sorensen 
4556f382d43aSMiroslav Rezanina     if (!quiet) {
4557f88e1a42SJes Sorensen         printf("Formatting '%s', fmt=%s ", filename, fmt);
455843c5d8f8SFam Zheng         qemu_opts_print(opts, " ");
4559f88e1a42SJes Sorensen         puts("");
4560f382d43aSMiroslav Rezanina     }
456183d0521aSChunyan Liu 
4562c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
456383d0521aSChunyan Liu 
4564cc84d90fSMax Reitz     if (ret == -EFBIG) {
4565cc84d90fSMax Reitz         /* This is generally a better message than whatever the driver would
4566cc84d90fSMax Reitz          * deliver (especially because of the cluster_size_hint), since that
4567cc84d90fSMax Reitz          * is most probably not much different from "image too large". */
4568f3f4d2c0SKevin Wolf         const char *cluster_size_hint = "";
456983d0521aSChunyan Liu         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
4570f3f4d2c0SKevin Wolf             cluster_size_hint = " (try using a larger cluster size)";
4571f3f4d2c0SKevin Wolf         }
4572cc84d90fSMax Reitz         error_setg(errp, "The image size is too large for file format '%s'"
4573cc84d90fSMax Reitz                    "%s", fmt, cluster_size_hint);
4574cc84d90fSMax Reitz         error_free(local_err);
4575cc84d90fSMax Reitz         local_err = NULL;
4576f88e1a42SJes Sorensen     }
4577f88e1a42SJes Sorensen 
4578f88e1a42SJes Sorensen out:
457983d0521aSChunyan Liu     qemu_opts_del(opts);
458083d0521aSChunyan Liu     qemu_opts_free(create_opts);
4581cc84d90fSMax Reitz     error_propagate(errp, local_err);
4582cc84d90fSMax Reitz }
458385d126f3SStefan Hajnoczi 
458485d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs)
458585d126f3SStefan Hajnoczi {
4586dcd04228SStefan Hajnoczi     return bs->aio_context;
4587dcd04228SStefan Hajnoczi }
4588dcd04228SStefan Hajnoczi 
4589052a7572SFam Zheng void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
4590052a7572SFam Zheng {
4591052a7572SFam Zheng     aio_co_enter(bdrv_get_aio_context(bs), co);
4592052a7572SFam Zheng }
4593052a7572SFam Zheng 
4594e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
4595e8a095daSStefan Hajnoczi {
4596e8a095daSStefan Hajnoczi     QLIST_REMOVE(ban, list);
4597e8a095daSStefan Hajnoczi     g_free(ban);
4598e8a095daSStefan Hajnoczi }
4599e8a095daSStefan Hajnoczi 
4600dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs)
4601dcd04228SStefan Hajnoczi {
4602e8a095daSStefan Hajnoczi     BdrvAioNotifier *baf, *baf_tmp;
4603b97511c7SMax Reitz     BdrvChild *child;
460433384421SMax Reitz 
4605dcd04228SStefan Hajnoczi     if (!bs->drv) {
4606dcd04228SStefan Hajnoczi         return;
4607dcd04228SStefan Hajnoczi     }
4608dcd04228SStefan Hajnoczi 
4609e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
4610e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
4611e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
4612e8a095daSStefan Hajnoczi         if (baf->deleted) {
4613e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(baf);
4614e8a095daSStefan Hajnoczi         } else {
461533384421SMax Reitz             baf->detach_aio_context(baf->opaque);
461633384421SMax Reitz         }
4617e8a095daSStefan Hajnoczi     }
4618e8a095daSStefan Hajnoczi     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
4619e8a095daSStefan Hajnoczi      * remove remaining aio notifiers if we aren't called again.
4620e8a095daSStefan Hajnoczi      */
4621e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
462233384421SMax Reitz 
4623dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_detach_aio_context) {
4624dcd04228SStefan Hajnoczi         bs->drv->bdrv_detach_aio_context(bs);
4625dcd04228SStefan Hajnoczi     }
4626b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
4627b97511c7SMax Reitz         bdrv_detach_aio_context(child->bs);
4628dcd04228SStefan Hajnoczi     }
4629dcd04228SStefan Hajnoczi 
4630dcd04228SStefan Hajnoczi     bs->aio_context = NULL;
4631dcd04228SStefan Hajnoczi }
4632dcd04228SStefan Hajnoczi 
4633dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs,
4634dcd04228SStefan Hajnoczi                              AioContext *new_context)
4635dcd04228SStefan Hajnoczi {
4636e8a095daSStefan Hajnoczi     BdrvAioNotifier *ban, *ban_tmp;
4637b97511c7SMax Reitz     BdrvChild *child;
463833384421SMax Reitz 
4639dcd04228SStefan Hajnoczi     if (!bs->drv) {
4640dcd04228SStefan Hajnoczi         return;
4641dcd04228SStefan Hajnoczi     }
4642dcd04228SStefan Hajnoczi 
4643dcd04228SStefan Hajnoczi     bs->aio_context = new_context;
4644dcd04228SStefan Hajnoczi 
4645b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
4646b97511c7SMax Reitz         bdrv_attach_aio_context(child->bs, new_context);
4647dcd04228SStefan Hajnoczi     }
4648dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_attach_aio_context) {
4649dcd04228SStefan Hajnoczi         bs->drv->bdrv_attach_aio_context(bs, new_context);
4650dcd04228SStefan Hajnoczi     }
465133384421SMax Reitz 
4652e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
4653e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
4654e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
4655e8a095daSStefan Hajnoczi         if (ban->deleted) {
4656e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(ban);
4657e8a095daSStefan Hajnoczi         } else {
465833384421SMax Reitz             ban->attached_aio_context(new_context, ban->opaque);
465933384421SMax Reitz         }
4660dcd04228SStefan Hajnoczi     }
4661e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
4662e8a095daSStefan Hajnoczi }
4663dcd04228SStefan Hajnoczi 
4664dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
4665dcd04228SStefan Hajnoczi {
4666aabf5910SFam Zheng     AioContext *ctx = bdrv_get_aio_context(bs);
4667c2b6428dSPaolo Bonzini 
4668aabf5910SFam Zheng     aio_disable_external(ctx);
4669aabf5910SFam Zheng     bdrv_parent_drained_begin(bs);
467053ec73e2SFam Zheng     bdrv_drain(bs); /* ensure there are no in-flight requests */
4671dcd04228SStefan Hajnoczi 
4672c2b6428dSPaolo Bonzini     while (aio_poll(ctx, false)) {
4673c2b6428dSPaolo Bonzini         /* wait for all bottom halves to execute */
4674c2b6428dSPaolo Bonzini     }
4675c2b6428dSPaolo Bonzini 
4676dcd04228SStefan Hajnoczi     bdrv_detach_aio_context(bs);
4677dcd04228SStefan Hajnoczi 
4678dcd04228SStefan Hajnoczi     /* This function executes in the old AioContext so acquire the new one in
4679dcd04228SStefan Hajnoczi      * case it runs in a different thread.
4680dcd04228SStefan Hajnoczi      */
4681dcd04228SStefan Hajnoczi     aio_context_acquire(new_context);
4682dcd04228SStefan Hajnoczi     bdrv_attach_aio_context(bs, new_context);
4683aabf5910SFam Zheng     bdrv_parent_drained_end(bs);
4684aabf5910SFam Zheng     aio_enable_external(ctx);
4685dcd04228SStefan Hajnoczi     aio_context_release(new_context);
468685d126f3SStefan Hajnoczi }
4687d616b224SStefan Hajnoczi 
468833384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs,
468933384421SMax Reitz         void (*attached_aio_context)(AioContext *new_context, void *opaque),
469033384421SMax Reitz         void (*detach_aio_context)(void *opaque), void *opaque)
469133384421SMax Reitz {
469233384421SMax Reitz     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
469333384421SMax Reitz     *ban = (BdrvAioNotifier){
469433384421SMax Reitz         .attached_aio_context = attached_aio_context,
469533384421SMax Reitz         .detach_aio_context   = detach_aio_context,
469633384421SMax Reitz         .opaque               = opaque
469733384421SMax Reitz     };
469833384421SMax Reitz 
469933384421SMax Reitz     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
470033384421SMax Reitz }
470133384421SMax Reitz 
470233384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
470333384421SMax Reitz                                       void (*attached_aio_context)(AioContext *,
470433384421SMax Reitz                                                                    void *),
470533384421SMax Reitz                                       void (*detach_aio_context)(void *),
470633384421SMax Reitz                                       void *opaque)
470733384421SMax Reitz {
470833384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
470933384421SMax Reitz 
471033384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
471133384421SMax Reitz         if (ban->attached_aio_context == attached_aio_context &&
471233384421SMax Reitz             ban->detach_aio_context   == detach_aio_context   &&
4713e8a095daSStefan Hajnoczi             ban->opaque               == opaque               &&
4714e8a095daSStefan Hajnoczi             ban->deleted              == false)
471533384421SMax Reitz         {
4716e8a095daSStefan Hajnoczi             if (bs->walking_aio_notifiers) {
4717e8a095daSStefan Hajnoczi                 ban->deleted = true;
4718e8a095daSStefan Hajnoczi             } else {
4719e8a095daSStefan Hajnoczi                 bdrv_do_remove_aio_context_notifier(ban);
4720e8a095daSStefan Hajnoczi             }
472133384421SMax Reitz             return;
472233384421SMax Reitz         }
472333384421SMax Reitz     }
472433384421SMax Reitz 
472533384421SMax Reitz     abort();
472633384421SMax Reitz }
472733384421SMax Reitz 
472877485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
47298b13976dSMax Reitz                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque)
47306f176b48SMax Reitz {
4731c282e1fdSChunyan Liu     if (!bs->drv->bdrv_amend_options) {
47326f176b48SMax Reitz         return -ENOTSUP;
47336f176b48SMax Reitz     }
47348b13976dSMax Reitz     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque);
47356f176b48SMax Reitz }
4736f6186f49SBenoît Canet 
4737b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method
4738b5042a36SBenoît Canet  * of block filter and by bdrv_is_first_non_filter.
4739b5042a36SBenoît Canet  * It is used to test if the given bs is the candidate or recurse more in the
4740b5042a36SBenoît Canet  * node graph.
4741212a5a8fSBenoît Canet  */
4742212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
4743212a5a8fSBenoît Canet                                       BlockDriverState *candidate)
4744f6186f49SBenoît Canet {
4745b5042a36SBenoît Canet     /* return false if basic checks fails */
4746b5042a36SBenoît Canet     if (!bs || !bs->drv) {
4747b5042a36SBenoît Canet         return false;
4748b5042a36SBenoît Canet     }
4749b5042a36SBenoît Canet 
4750b5042a36SBenoît Canet     /* the code reached a non block filter driver -> check if the bs is
4751b5042a36SBenoît Canet      * the same as the candidate. It's the recursion termination condition.
4752b5042a36SBenoît Canet      */
4753b5042a36SBenoît Canet     if (!bs->drv->is_filter) {
4754b5042a36SBenoît Canet         return bs == candidate;
4755b5042a36SBenoît Canet     }
4756b5042a36SBenoît Canet     /* Down this path the driver is a block filter driver */
4757b5042a36SBenoît Canet 
4758b5042a36SBenoît Canet     /* If the block filter recursion method is defined use it to recurse down
4759b5042a36SBenoît Canet      * the node graph.
4760b5042a36SBenoît Canet      */
4761b5042a36SBenoît Canet     if (bs->drv->bdrv_recurse_is_first_non_filter) {
4762212a5a8fSBenoît Canet         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
4763212a5a8fSBenoît Canet     }
4764212a5a8fSBenoît Canet 
4765b5042a36SBenoît Canet     /* the driver is a block filter but don't allow to recurse -> return false
4766b5042a36SBenoît Canet      */
4767b5042a36SBenoît Canet     return false;
4768212a5a8fSBenoît Canet }
4769212a5a8fSBenoît Canet 
4770212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's
4771212a5a8fSBenoît Canet  * bs chain. Since we don't have pointers to parents it explore all bs chains
4772212a5a8fSBenoît Canet  * from the top. Some filters can choose not to pass down the recursion.
4773212a5a8fSBenoît Canet  */
4774212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate)
4775212a5a8fSBenoît Canet {
47767c8eece4SKevin Wolf     BlockDriverState *bs;
477788be7b4bSKevin Wolf     BdrvNextIterator it;
4778212a5a8fSBenoît Canet 
4779212a5a8fSBenoît Canet     /* walk down the bs forest recursively */
478088be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4781212a5a8fSBenoît Canet         bool perm;
4782212a5a8fSBenoît Canet 
4783b5042a36SBenoît Canet         /* try to recurse in this top level bs */
4784e6dc8a1fSKevin Wolf         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
4785212a5a8fSBenoît Canet 
4786212a5a8fSBenoît Canet         /* candidate is the first non filter */
4787212a5a8fSBenoît Canet         if (perm) {
4788212a5a8fSBenoît Canet             return true;
4789212a5a8fSBenoît Canet         }
4790212a5a8fSBenoît Canet     }
4791212a5a8fSBenoît Canet 
4792212a5a8fSBenoît Canet     return false;
4793f6186f49SBenoît Canet }
479409158f00SBenoît Canet 
4795e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
4796e12f3784SWen Congyang                                         const char *node_name, Error **errp)
479709158f00SBenoît Canet {
479809158f00SBenoît Canet     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
47995a7e7a0bSStefan Hajnoczi     AioContext *aio_context;
48005a7e7a0bSStefan Hajnoczi 
480109158f00SBenoît Canet     if (!to_replace_bs) {
480209158f00SBenoît Canet         error_setg(errp, "Node name '%s' not found", node_name);
480309158f00SBenoît Canet         return NULL;
480409158f00SBenoît Canet     }
480509158f00SBenoît Canet 
48065a7e7a0bSStefan Hajnoczi     aio_context = bdrv_get_aio_context(to_replace_bs);
48075a7e7a0bSStefan Hajnoczi     aio_context_acquire(aio_context);
48085a7e7a0bSStefan Hajnoczi 
480909158f00SBenoît Canet     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
48105a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
48115a7e7a0bSStefan Hajnoczi         goto out;
481209158f00SBenoît Canet     }
481309158f00SBenoît Canet 
481409158f00SBenoît Canet     /* We don't want arbitrary node of the BDS chain to be replaced only the top
481509158f00SBenoît Canet      * most non filter in order to prevent data corruption.
481609158f00SBenoît Canet      * Another benefit is that this tests exclude backing files which are
481709158f00SBenoît Canet      * blocked by the backing blockers.
481809158f00SBenoît Canet      */
4819e12f3784SWen Congyang     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
482009158f00SBenoît Canet         error_setg(errp, "Only top most non filter can be replaced");
48215a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
48225a7e7a0bSStefan Hajnoczi         goto out;
482309158f00SBenoît Canet     }
482409158f00SBenoît Canet 
48255a7e7a0bSStefan Hajnoczi out:
48265a7e7a0bSStefan Hajnoczi     aio_context_release(aio_context);
482709158f00SBenoît Canet     return to_replace_bs;
482809158f00SBenoît Canet }
4829448ad91dSMing Lei 
483091af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs)
483191af7014SMax Reitz {
483291af7014SMax Reitz     const QDictEntry *entry;
48339e700c1aSKevin Wolf     QemuOptDesc *desc;
4834260fecf1SKevin Wolf     BdrvChild *child;
483591af7014SMax Reitz     bool found_any = false;
4836260fecf1SKevin Wolf     const char *p;
483791af7014SMax Reitz 
483891af7014SMax Reitz     for (entry = qdict_first(bs->options); entry;
483991af7014SMax Reitz          entry = qdict_next(bs->options, entry))
484091af7014SMax Reitz     {
4841260fecf1SKevin Wolf         /* Exclude options for children */
4842260fecf1SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
4843260fecf1SKevin Wolf             if (strstart(qdict_entry_key(entry), child->name, &p)
4844260fecf1SKevin Wolf                 && (!*p || *p == '.'))
4845260fecf1SKevin Wolf             {
4846260fecf1SKevin Wolf                 break;
4847260fecf1SKevin Wolf             }
4848260fecf1SKevin Wolf         }
4849260fecf1SKevin Wolf         if (child) {
48509e700c1aSKevin Wolf             continue;
48519e700c1aSKevin Wolf         }
48529e700c1aSKevin Wolf 
48539e700c1aSKevin Wolf         /* And exclude all non-driver-specific options */
48549e700c1aSKevin Wolf         for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
48559e700c1aSKevin Wolf             if (!strcmp(qdict_entry_key(entry), desc->name)) {
48569e700c1aSKevin Wolf                 break;
48579e700c1aSKevin Wolf             }
48589e700c1aSKevin Wolf         }
48599e700c1aSKevin Wolf         if (desc->name) {
48609e700c1aSKevin Wolf             continue;
48619e700c1aSKevin Wolf         }
48629e700c1aSKevin Wolf 
486391af7014SMax Reitz         qobject_incref(qdict_entry_value(entry));
486491af7014SMax Reitz         qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry));
486591af7014SMax Reitz         found_any = true;
486691af7014SMax Reitz     }
486791af7014SMax Reitz 
486891af7014SMax Reitz     return found_any;
486991af7014SMax Reitz }
487091af7014SMax Reitz 
487191af7014SMax Reitz /* Updates the following BDS fields:
487291af7014SMax Reitz  *  - exact_filename: A filename which may be used for opening a block device
487391af7014SMax Reitz  *                    which (mostly) equals the given BDS (even without any
487491af7014SMax Reitz  *                    other options; so reading and writing must return the same
487591af7014SMax Reitz  *                    results, but caching etc. may be different)
487691af7014SMax Reitz  *  - full_open_options: Options which, when given when opening a block device
487791af7014SMax Reitz  *                       (without a filename), result in a BDS (mostly)
487891af7014SMax Reitz  *                       equalling the given one
487991af7014SMax Reitz  *  - filename: If exact_filename is set, it is copied here. Otherwise,
488091af7014SMax Reitz  *              full_open_options is converted to a JSON object, prefixed with
488191af7014SMax Reitz  *              "json:" (for use through the JSON pseudo protocol) and put here.
488291af7014SMax Reitz  */
488391af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs)
488491af7014SMax Reitz {
488591af7014SMax Reitz     BlockDriver *drv = bs->drv;
488691af7014SMax Reitz     QDict *opts;
488791af7014SMax Reitz 
488891af7014SMax Reitz     if (!drv) {
488991af7014SMax Reitz         return;
489091af7014SMax Reitz     }
489191af7014SMax Reitz 
489291af7014SMax Reitz     /* This BDS's file name will most probably depend on its file's name, so
489391af7014SMax Reitz      * refresh that first */
489491af7014SMax Reitz     if (bs->file) {
48959a4f4c31SKevin Wolf         bdrv_refresh_filename(bs->file->bs);
489691af7014SMax Reitz     }
489791af7014SMax Reitz 
489891af7014SMax Reitz     if (drv->bdrv_refresh_filename) {
489991af7014SMax Reitz         /* Obsolete information is of no use here, so drop the old file name
490091af7014SMax Reitz          * information before refreshing it */
490191af7014SMax Reitz         bs->exact_filename[0] = '\0';
490291af7014SMax Reitz         if (bs->full_open_options) {
490391af7014SMax Reitz             QDECREF(bs->full_open_options);
490491af7014SMax Reitz             bs->full_open_options = NULL;
490591af7014SMax Reitz         }
490691af7014SMax Reitz 
49074cdd01d3SKevin Wolf         opts = qdict_new();
49084cdd01d3SKevin Wolf         append_open_options(opts, bs);
49094cdd01d3SKevin Wolf         drv->bdrv_refresh_filename(bs, opts);
49104cdd01d3SKevin Wolf         QDECREF(opts);
491191af7014SMax Reitz     } else if (bs->file) {
491291af7014SMax Reitz         /* Try to reconstruct valid information from the underlying file */
491391af7014SMax Reitz         bool has_open_options;
491491af7014SMax Reitz 
491591af7014SMax Reitz         bs->exact_filename[0] = '\0';
491691af7014SMax Reitz         if (bs->full_open_options) {
491791af7014SMax Reitz             QDECREF(bs->full_open_options);
491891af7014SMax Reitz             bs->full_open_options = NULL;
491991af7014SMax Reitz         }
492091af7014SMax Reitz 
492191af7014SMax Reitz         opts = qdict_new();
492291af7014SMax Reitz         has_open_options = append_open_options(opts, bs);
492391af7014SMax Reitz 
492491af7014SMax Reitz         /* If no specific options have been given for this BDS, the filename of
492591af7014SMax Reitz          * the underlying file should suffice for this one as well */
49269a4f4c31SKevin Wolf         if (bs->file->bs->exact_filename[0] && !has_open_options) {
49279a4f4c31SKevin Wolf             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
492891af7014SMax Reitz         }
492991af7014SMax Reitz         /* Reconstructing the full options QDict is simple for most format block
493091af7014SMax Reitz          * drivers, as long as the full options are known for the underlying
493191af7014SMax Reitz          * file BDS. The full options QDict of that file BDS should somehow
493291af7014SMax Reitz          * contain a representation of the filename, therefore the following
493391af7014SMax Reitz          * suffices without querying the (exact_)filename of this BDS. */
49349a4f4c31SKevin Wolf         if (bs->file->bs->full_open_options) {
493546f5ac20SEric Blake             qdict_put_str(opts, "driver", drv->format_name);
49369a4f4c31SKevin Wolf             QINCREF(bs->file->bs->full_open_options);
4937de6e7951SEric Blake             qdict_put(opts, "file", bs->file->bs->full_open_options);
493891af7014SMax Reitz 
493991af7014SMax Reitz             bs->full_open_options = opts;
494091af7014SMax Reitz         } else {
494191af7014SMax Reitz             QDECREF(opts);
494291af7014SMax Reitz         }
494391af7014SMax Reitz     } else if (!bs->full_open_options && qdict_size(bs->options)) {
494491af7014SMax Reitz         /* There is no underlying file BDS (at least referenced by BDS.file),
494591af7014SMax Reitz          * so the full options QDict should be equal to the options given
494691af7014SMax Reitz          * specifically for this block device when it was opened (plus the
494791af7014SMax Reitz          * driver specification).
494891af7014SMax Reitz          * Because those options don't change, there is no need to update
494991af7014SMax Reitz          * full_open_options when it's already set. */
495091af7014SMax Reitz 
495191af7014SMax Reitz         opts = qdict_new();
495291af7014SMax Reitz         append_open_options(opts, bs);
495346f5ac20SEric Blake         qdict_put_str(opts, "driver", drv->format_name);
495491af7014SMax Reitz 
495591af7014SMax Reitz         if (bs->exact_filename[0]) {
495691af7014SMax Reitz             /* This may not work for all block protocol drivers (some may
495791af7014SMax Reitz              * require this filename to be parsed), but we have to find some
495891af7014SMax Reitz              * default solution here, so just include it. If some block driver
495991af7014SMax Reitz              * does not support pure options without any filename at all or
496091af7014SMax Reitz              * needs some special format of the options QDict, it needs to
496191af7014SMax Reitz              * implement the driver-specific bdrv_refresh_filename() function.
496291af7014SMax Reitz              */
496346f5ac20SEric Blake             qdict_put_str(opts, "filename", bs->exact_filename);
496491af7014SMax Reitz         }
496591af7014SMax Reitz 
496691af7014SMax Reitz         bs->full_open_options = opts;
496791af7014SMax Reitz     }
496891af7014SMax Reitz 
496991af7014SMax Reitz     if (bs->exact_filename[0]) {
497091af7014SMax Reitz         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
497191af7014SMax Reitz     } else if (bs->full_open_options) {
497291af7014SMax Reitz         QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
497391af7014SMax Reitz         snprintf(bs->filename, sizeof(bs->filename), "json:%s",
497491af7014SMax Reitz                  qstring_get_str(json));
497591af7014SMax Reitz         QDECREF(json);
497691af7014SMax Reitz     }
497791af7014SMax Reitz }
4978e06018adSWen Congyang 
4979e06018adSWen Congyang /*
4980e06018adSWen Congyang  * Hot add/remove a BDS's child. So the user can take a child offline when
4981e06018adSWen Congyang  * it is broken and take a new child online
4982e06018adSWen Congyang  */
4983e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
4984e06018adSWen Congyang                     Error **errp)
4985e06018adSWen Congyang {
4986e06018adSWen Congyang 
4987e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
4988e06018adSWen Congyang         error_setg(errp, "The node %s does not support adding a child",
4989e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
4990e06018adSWen Congyang         return;
4991e06018adSWen Congyang     }
4992e06018adSWen Congyang 
4993e06018adSWen Congyang     if (!QLIST_EMPTY(&child_bs->parents)) {
4994e06018adSWen Congyang         error_setg(errp, "The node %s already has a parent",
4995e06018adSWen Congyang                    child_bs->node_name);
4996e06018adSWen Congyang         return;
4997e06018adSWen Congyang     }
4998e06018adSWen Congyang 
4999e06018adSWen Congyang     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5000e06018adSWen Congyang }
5001e06018adSWen Congyang 
5002e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5003e06018adSWen Congyang {
5004e06018adSWen Congyang     BdrvChild *tmp;
5005e06018adSWen Congyang 
5006e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5007e06018adSWen Congyang         error_setg(errp, "The node %s does not support removing a child",
5008e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
5009e06018adSWen Congyang         return;
5010e06018adSWen Congyang     }
5011e06018adSWen Congyang 
5012e06018adSWen Congyang     QLIST_FOREACH(tmp, &parent_bs->children, next) {
5013e06018adSWen Congyang         if (tmp == child) {
5014e06018adSWen Congyang             break;
5015e06018adSWen Congyang         }
5016e06018adSWen Congyang     }
5017e06018adSWen Congyang 
5018e06018adSWen Congyang     if (!tmp) {
5019e06018adSWen Congyang         error_setg(errp, "The node %s does not have a child named %s",
5020e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs),
5021e06018adSWen Congyang                    bdrv_get_device_or_node_name(child->bs));
5022e06018adSWen Congyang         return;
5023e06018adSWen Congyang     }
5024e06018adSWen Congyang 
5025e06018adSWen Congyang     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5026e06018adSWen Congyang }
502767b792f5SVladimir Sementsov-Ogievskiy 
502867b792f5SVladimir Sementsov-Ogievskiy bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
502967b792f5SVladimir Sementsov-Ogievskiy                                      uint32_t granularity, Error **errp)
503067b792f5SVladimir Sementsov-Ogievskiy {
503167b792f5SVladimir Sementsov-Ogievskiy     BlockDriver *drv = bs->drv;
503267b792f5SVladimir Sementsov-Ogievskiy 
503367b792f5SVladimir Sementsov-Ogievskiy     if (!drv) {
503467b792f5SVladimir Sementsov-Ogievskiy         error_setg_errno(errp, ENOMEDIUM,
503567b792f5SVladimir Sementsov-Ogievskiy                          "Can't store persistent bitmaps to %s",
503667b792f5SVladimir Sementsov-Ogievskiy                          bdrv_get_device_or_node_name(bs));
503767b792f5SVladimir Sementsov-Ogievskiy         return false;
503867b792f5SVladimir Sementsov-Ogievskiy     }
503967b792f5SVladimir Sementsov-Ogievskiy 
504067b792f5SVladimir Sementsov-Ogievskiy     if (!drv->bdrv_can_store_new_dirty_bitmap) {
504167b792f5SVladimir Sementsov-Ogievskiy         error_setg_errno(errp, ENOTSUP,
504267b792f5SVladimir Sementsov-Ogievskiy                          "Can't store persistent bitmaps to %s",
504367b792f5SVladimir Sementsov-Ogievskiy                          bdrv_get_device_or_node_name(bs));
504467b792f5SVladimir Sementsov-Ogievskiy         return false;
504567b792f5SVladimir Sementsov-Ogievskiy     }
504667b792f5SVladimir Sementsov-Ogievskiy 
504767b792f5SVladimir Sementsov-Ogievskiy     return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);
504867b792f5SVladimir Sementsov-Ogievskiy }
5049