xref: /openbmc/qemu/block.c (revision 1a5297366fe0d11e28fce694fc4377b85afca1da)
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  */
24e688df6bSMarkus Armbruster 
25d38ea87aSPeter Maydell #include "qemu/osdep.h"
260ab8ed18SDaniel P. Berrange #include "block/trace.h"
27737e150eSPaolo Bonzini #include "block/block_int.h"
28737e150eSPaolo Bonzini #include "block/blockjob.h"
29cd7fca95SKevin Wolf #include "block/nbd.h"
30d49b6836SMarkus Armbruster #include "qemu/error-report.h"
3188d88798SMarc Mari #include "module_block.h"
321de7afc9SPaolo Bonzini #include "qemu/module.h"
33e688df6bSMarkus Armbruster #include "qapi/error.h"
34452fcdbcSMarkus Armbruster #include "qapi/qmp/qdict.h"
357b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h"
36fc81fa1eSMarkus Armbruster #include "qapi/qmp/qstring.h"
37e1d74bc6SKevin Wolf #include "qapi/qobject-output-visitor.h"
38e1d74bc6SKevin Wolf #include "qapi/qapi-visit-block-core.h"
39bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h"
409c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
411de7afc9SPaolo Bonzini #include "qemu/notify.h"
42922a01a0SMarkus Armbruster #include "qemu/option.h"
4310817bf0SDaniel P. Berrange #include "qemu/coroutine.h"
44c13163fbSBenoît Canet #include "block/qapi.h"
451de7afc9SPaolo Bonzini #include "qemu/timer.h"
46f348b6d1SVeronia Bahaa #include "qemu/cutils.h"
47f348b6d1SVeronia Bahaa #include "qemu/id.h"
48fc01f7e7Sbellard 
4971e72a19SJuan Quintela #ifdef CONFIG_BSD
507674e7bfSbellard #include <sys/ioctl.h>
5172cf2d4fSBlue Swirl #include <sys/queue.h>
52c5e97233Sblueswir1 #ifndef __DragonFly__
537674e7bfSbellard #include <sys/disk.h>
547674e7bfSbellard #endif
55c5e97233Sblueswir1 #endif
567674e7bfSbellard 
5749dc768dSaliguori #ifdef _WIN32
5849dc768dSaliguori #include <windows.h>
5949dc768dSaliguori #endif
6049dc768dSaliguori 
611c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
621c9805a3SStefan Hajnoczi 
63dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
64dc364f4cSBenoît Canet     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
65dc364f4cSBenoît Canet 
662c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
672c1d04e0SMax Reitz     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
682c1d04e0SMax Reitz 
698a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers =
708a22f02aSStefan Hajnoczi     QLIST_HEAD_INITIALIZER(bdrv_drivers);
71ea2384d3Sbellard 
725b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
735b363937SMax Reitz                                            const char *reference,
745b363937SMax Reitz                                            QDict *options, int flags,
75f3930ed0SKevin Wolf                                            BlockDriverState *parent,
765b363937SMax Reitz                                            const BdrvChildRole *child_role,
775b363937SMax Reitz                                            Error **errp);
78f3930ed0SKevin Wolf 
79eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */
80eb852011SMarkus Armbruster static int use_bdrv_whitelist;
81eb852011SMarkus Armbruster 
829e0b22f4SStefan Hajnoczi #ifdef _WIN32
839e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename)
849e0b22f4SStefan Hajnoczi {
859e0b22f4SStefan Hajnoczi     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
869e0b22f4SStefan Hajnoczi              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
879e0b22f4SStefan Hajnoczi             filename[1] == ':');
889e0b22f4SStefan Hajnoczi }
899e0b22f4SStefan Hajnoczi 
909e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename)
919e0b22f4SStefan Hajnoczi {
929e0b22f4SStefan Hajnoczi     if (is_windows_drive_prefix(filename) &&
939e0b22f4SStefan Hajnoczi         filename[2] == '\0')
949e0b22f4SStefan Hajnoczi         return 1;
959e0b22f4SStefan Hajnoczi     if (strstart(filename, "\\\\.\\", NULL) ||
969e0b22f4SStefan Hajnoczi         strstart(filename, "//./", NULL))
979e0b22f4SStefan Hajnoczi         return 1;
989e0b22f4SStefan Hajnoczi     return 0;
999e0b22f4SStefan Hajnoczi }
1009e0b22f4SStefan Hajnoczi #endif
1019e0b22f4SStefan Hajnoczi 
102339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs)
103339064d5SKevin Wolf {
104339064d5SKevin Wolf     if (!bs || !bs->drv) {
105459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
106459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
107339064d5SKevin Wolf     }
108339064d5SKevin Wolf 
109339064d5SKevin Wolf     return bs->bl.opt_mem_alignment;
110339064d5SKevin Wolf }
111339064d5SKevin Wolf 
1124196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs)
1134196d2f0SDenis V. Lunev {
1144196d2f0SDenis V. Lunev     if (!bs || !bs->drv) {
115459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
116459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
1174196d2f0SDenis V. Lunev     }
1184196d2f0SDenis V. Lunev 
1194196d2f0SDenis V. Lunev     return bs->bl.min_mem_alignment;
1204196d2f0SDenis V. Lunev }
1214196d2f0SDenis V. Lunev 
1229e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */
1235c98415bSMax Reitz int path_has_protocol(const char *path)
1249e0b22f4SStefan Hajnoczi {
125947995c0SPaolo Bonzini     const char *p;
126947995c0SPaolo Bonzini 
1279e0b22f4SStefan Hajnoczi #ifdef _WIN32
1289e0b22f4SStefan Hajnoczi     if (is_windows_drive(path) ||
1299e0b22f4SStefan Hajnoczi         is_windows_drive_prefix(path)) {
1309e0b22f4SStefan Hajnoczi         return 0;
1319e0b22f4SStefan Hajnoczi     }
132947995c0SPaolo Bonzini     p = path + strcspn(path, ":/\\");
133947995c0SPaolo Bonzini #else
134947995c0SPaolo Bonzini     p = path + strcspn(path, ":/");
1359e0b22f4SStefan Hajnoczi #endif
1369e0b22f4SStefan Hajnoczi 
137947995c0SPaolo Bonzini     return *p == ':';
1389e0b22f4SStefan Hajnoczi }
1399e0b22f4SStefan Hajnoczi 
14083f64091Sbellard int path_is_absolute(const char *path)
14183f64091Sbellard {
14221664424Sbellard #ifdef _WIN32
14321664424Sbellard     /* specific case for names like: "\\.\d:" */
144f53f4da9SPaolo Bonzini     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
14521664424Sbellard         return 1;
146f53f4da9SPaolo Bonzini     }
147f53f4da9SPaolo Bonzini     return (*path == '/' || *path == '\\');
1483b9f94e1Sbellard #else
149f53f4da9SPaolo Bonzini     return (*path == '/');
1503b9f94e1Sbellard #endif
15183f64091Sbellard }
15283f64091Sbellard 
15383f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a
15483f64091Sbellard    path to it by considering it is relative to base_path. URL are
15583f64091Sbellard    supported. */
15683f64091Sbellard void path_combine(char *dest, int dest_size,
15783f64091Sbellard                   const char *base_path,
15883f64091Sbellard                   const char *filename)
15983f64091Sbellard {
16083f64091Sbellard     const char *p, *p1;
16183f64091Sbellard     int len;
16283f64091Sbellard 
16383f64091Sbellard     if (dest_size <= 0)
16483f64091Sbellard         return;
16583f64091Sbellard     if (path_is_absolute(filename)) {
16683f64091Sbellard         pstrcpy(dest, dest_size, filename);
16783f64091Sbellard     } else {
1680d54a6feSMax Reitz         const char *protocol_stripped = NULL;
1690d54a6feSMax Reitz 
1700d54a6feSMax Reitz         if (path_has_protocol(base_path)) {
1710d54a6feSMax Reitz             protocol_stripped = strchr(base_path, ':');
1720d54a6feSMax Reitz             if (protocol_stripped) {
1730d54a6feSMax Reitz                 protocol_stripped++;
1740d54a6feSMax Reitz             }
1750d54a6feSMax Reitz         }
1760d54a6feSMax Reitz         p = protocol_stripped ?: base_path;
1770d54a6feSMax Reitz 
1783b9f94e1Sbellard         p1 = strrchr(base_path, '/');
1793b9f94e1Sbellard #ifdef _WIN32
1803b9f94e1Sbellard         {
1813b9f94e1Sbellard             const char *p2;
1823b9f94e1Sbellard             p2 = strrchr(base_path, '\\');
1833b9f94e1Sbellard             if (!p1 || p2 > p1)
1843b9f94e1Sbellard                 p1 = p2;
1853b9f94e1Sbellard         }
1863b9f94e1Sbellard #endif
18783f64091Sbellard         if (p1)
18883f64091Sbellard             p1++;
18983f64091Sbellard         else
19083f64091Sbellard             p1 = base_path;
19183f64091Sbellard         if (p1 > p)
19283f64091Sbellard             p = p1;
19383f64091Sbellard         len = p - base_path;
19483f64091Sbellard         if (len > dest_size - 1)
19583f64091Sbellard             len = dest_size - 1;
19683f64091Sbellard         memcpy(dest, base_path, len);
19783f64091Sbellard         dest[len] = '\0';
19883f64091Sbellard         pstrcat(dest, dest_size, filename);
19983f64091Sbellard     }
20083f64091Sbellard }
20183f64091Sbellard 
20203c320d8SMax Reitz /*
20303c320d8SMax Reitz  * Helper function for bdrv_parse_filename() implementations to remove optional
20403c320d8SMax Reitz  * protocol prefixes (especially "file:") from a filename and for putting the
20503c320d8SMax Reitz  * stripped filename into the options QDict if there is such a prefix.
20603c320d8SMax Reitz  */
20703c320d8SMax Reitz void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
20803c320d8SMax Reitz                                       QDict *options)
20903c320d8SMax Reitz {
21003c320d8SMax Reitz     if (strstart(filename, prefix, &filename)) {
21103c320d8SMax Reitz         /* Stripping the explicit protocol prefix may result in a protocol
21203c320d8SMax Reitz          * prefix being (wrongly) detected (if the filename contains a colon) */
21303c320d8SMax Reitz         if (path_has_protocol(filename)) {
21403c320d8SMax Reitz             QString *fat_filename;
21503c320d8SMax Reitz 
21603c320d8SMax Reitz             /* This means there is some colon before the first slash; therefore,
21703c320d8SMax Reitz              * this cannot be an absolute path */
21803c320d8SMax Reitz             assert(!path_is_absolute(filename));
21903c320d8SMax Reitz 
22003c320d8SMax Reitz             /* And we can thus fix the protocol detection issue by prefixing it
22103c320d8SMax Reitz              * by "./" */
22203c320d8SMax Reitz             fat_filename = qstring_from_str("./");
22303c320d8SMax Reitz             qstring_append(fat_filename, filename);
22403c320d8SMax Reitz 
22503c320d8SMax Reitz             assert(!path_has_protocol(qstring_get_str(fat_filename)));
22603c320d8SMax Reitz 
22703c320d8SMax Reitz             qdict_put(options, "filename", fat_filename);
22803c320d8SMax Reitz         } else {
22903c320d8SMax Reitz             /* If no protocol prefix was detected, we can use the shortened
23003c320d8SMax Reitz              * filename as-is */
23103c320d8SMax Reitz             qdict_put_str(options, "filename", filename);
23203c320d8SMax Reitz         }
23303c320d8SMax Reitz     }
23403c320d8SMax Reitz }
23503c320d8SMax Reitz 
23603c320d8SMax Reitz 
2379c5e6594SKevin Wolf /* Returns whether the image file is opened as read-only. Note that this can
2389c5e6594SKevin Wolf  * return false and writing to the image file is still not possible because the
2399c5e6594SKevin Wolf  * image is inactivated. */
24093ed524eSJeff Cody bool bdrv_is_read_only(BlockDriverState *bs)
24193ed524eSJeff Cody {
24293ed524eSJeff Cody     return bs->read_only;
24393ed524eSJeff Cody }
24493ed524eSJeff Cody 
24554a32bfeSKevin Wolf int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
24654a32bfeSKevin Wolf                            bool ignore_allow_rdw, Error **errp)
247fe5241bfSJeff Cody {
248e2b8247aSJeff Cody     /* Do not set read_only if copy_on_read is enabled */
249e2b8247aSJeff Cody     if (bs->copy_on_read && read_only) {
250e2b8247aSJeff Cody         error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
251e2b8247aSJeff Cody                    bdrv_get_device_or_node_name(bs));
252e2b8247aSJeff Cody         return -EINVAL;
253e2b8247aSJeff Cody     }
254e2b8247aSJeff Cody 
255d6fcdf06SJeff Cody     /* Do not clear read_only if it is prohibited */
25654a32bfeSKevin Wolf     if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
25754a32bfeSKevin Wolf         !ignore_allow_rdw)
25854a32bfeSKevin Wolf     {
259d6fcdf06SJeff Cody         error_setg(errp, "Node '%s' is read only",
260d6fcdf06SJeff Cody                    bdrv_get_device_or_node_name(bs));
261d6fcdf06SJeff Cody         return -EPERM;
262d6fcdf06SJeff Cody     }
263d6fcdf06SJeff Cody 
26445803a03SJeff Cody     return 0;
26545803a03SJeff Cody }
26645803a03SJeff Cody 
267398e6ad0SKevin Wolf /* TODO Remove (deprecated since 2.11)
268398e6ad0SKevin Wolf  * Block drivers are not supposed to automatically change bs->read_only.
269398e6ad0SKevin Wolf  * Instead, they should just check whether they can provide what the user
270398e6ad0SKevin Wolf  * explicitly requested and error out if read-write is requested, but they can
271398e6ad0SKevin Wolf  * only provide read-only access. */
27245803a03SJeff Cody int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp)
27345803a03SJeff Cody {
27445803a03SJeff Cody     int ret = 0;
27545803a03SJeff Cody 
27654a32bfeSKevin Wolf     ret = bdrv_can_set_read_only(bs, read_only, false, errp);
27745803a03SJeff Cody     if (ret < 0) {
27845803a03SJeff Cody         return ret;
27945803a03SJeff Cody     }
28045803a03SJeff Cody 
281fe5241bfSJeff Cody     bs->read_only = read_only;
282e2b8247aSJeff Cody     return 0;
283fe5241bfSJeff Cody }
284fe5241bfSJeff Cody 
2850a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed,
2860a82855aSMax Reitz                                                   const char *backing,
2879f07429eSMax Reitz                                                   char *dest, size_t sz,
2889f07429eSMax Reitz                                                   Error **errp)
2890a82855aSMax Reitz {
2909f07429eSMax Reitz     if (backing[0] == '\0' || path_has_protocol(backing) ||
2919f07429eSMax Reitz         path_is_absolute(backing))
2929f07429eSMax Reitz     {
2930a82855aSMax Reitz         pstrcpy(dest, sz, backing);
2949f07429eSMax Reitz     } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
2959f07429eSMax Reitz         error_setg(errp, "Cannot use relative backing file names for '%s'",
2969f07429eSMax Reitz                    backed);
2970a82855aSMax Reitz     } else {
2980a82855aSMax Reitz         path_combine(dest, sz, backed, backing);
2990a82855aSMax Reitz     }
3000a82855aSMax Reitz }
3010a82855aSMax Reitz 
3029f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
3039f07429eSMax Reitz                                     Error **errp)
304dc5a1371SPaolo Bonzini {
3059f07429eSMax Reitz     char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
3069f07429eSMax Reitz 
3079f07429eSMax Reitz     bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
3089f07429eSMax Reitz                                                  dest, sz, errp);
309dc5a1371SPaolo Bonzini }
310dc5a1371SPaolo Bonzini 
3110eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv)
3120eb7217eSStefan Hajnoczi {
3138a22f02aSStefan Hajnoczi     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
314ea2384d3Sbellard }
315b338082bSbellard 
316e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void)
317e4e9986bSMarkus Armbruster {
318e4e9986bSMarkus Armbruster     BlockDriverState *bs;
319e4e9986bSMarkus Armbruster     int i;
320e4e9986bSMarkus Armbruster 
3215839e53bSMarkus Armbruster     bs = g_new0(BlockDriverState, 1);
322e4654d2dSFam Zheng     QLIST_INIT(&bs->dirty_bitmaps);
323fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
324fbe40ff7SFam Zheng         QLIST_INIT(&bs->op_blockers[i]);
325fbe40ff7SFam Zheng     }
326d616b224SStefan Hajnoczi     notifier_with_return_list_init(&bs->before_write_notifiers);
3273783fa3dSPaolo Bonzini     qemu_co_mutex_init(&bs->reqs_lock);
3282119882cSPaolo Bonzini     qemu_mutex_init(&bs->dirty_bitmap_mutex);
3299fcb0251SFam Zheng     bs->refcnt = 1;
330dcd04228SStefan Hajnoczi     bs->aio_context = qemu_get_aio_context();
331d7d512f6SPaolo Bonzini 
3323ff2f67aSEvgeny Yakovlev     qemu_co_queue_init(&bs->flush_queue);
3333ff2f67aSEvgeny Yakovlev 
3342c1d04e0SMax Reitz     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
3352c1d04e0SMax Reitz 
336b338082bSbellard     return bs;
337b338082bSbellard }
338b338082bSbellard 
33988d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name)
340ea2384d3Sbellard {
341ea2384d3Sbellard     BlockDriver *drv1;
34288d88798SMarc Mari 
3438a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
3448a22f02aSStefan Hajnoczi         if (!strcmp(drv1->format_name, format_name)) {
345ea2384d3Sbellard             return drv1;
346ea2384d3Sbellard         }
3478a22f02aSStefan Hajnoczi     }
34888d88798SMarc Mari 
349ea2384d3Sbellard     return NULL;
350ea2384d3Sbellard }
351ea2384d3Sbellard 
35288d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name)
35388d88798SMarc Mari {
35488d88798SMarc Mari     BlockDriver *drv1;
35588d88798SMarc Mari     int i;
35688d88798SMarc Mari 
35788d88798SMarc Mari     drv1 = bdrv_do_find_format(format_name);
35888d88798SMarc Mari     if (drv1) {
35988d88798SMarc Mari         return drv1;
36088d88798SMarc Mari     }
36188d88798SMarc Mari 
36288d88798SMarc Mari     /* The driver isn't registered, maybe we need to load a module */
36388d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
36488d88798SMarc Mari         if (!strcmp(block_driver_modules[i].format_name, format_name)) {
36588d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
36688d88798SMarc Mari             break;
36788d88798SMarc Mari         }
36888d88798SMarc Mari     }
36988d88798SMarc Mari 
37088d88798SMarc Mari     return bdrv_do_find_format(format_name);
37188d88798SMarc Mari }
37288d88798SMarc Mari 
373e8eb8637SKevin Wolf int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
374eb852011SMarkus Armbruster {
375b64ec4e4SFam Zheng     static const char *whitelist_rw[] = {
376b64ec4e4SFam Zheng         CONFIG_BDRV_RW_WHITELIST
377b64ec4e4SFam Zheng     };
378b64ec4e4SFam Zheng     static const char *whitelist_ro[] = {
379b64ec4e4SFam Zheng         CONFIG_BDRV_RO_WHITELIST
380eb852011SMarkus Armbruster     };
381eb852011SMarkus Armbruster     const char **p;
382eb852011SMarkus Armbruster 
383b64ec4e4SFam Zheng     if (!whitelist_rw[0] && !whitelist_ro[0]) {
384eb852011SMarkus Armbruster         return 1;               /* no whitelist, anything goes */
385b64ec4e4SFam Zheng     }
386eb852011SMarkus Armbruster 
387b64ec4e4SFam Zheng     for (p = whitelist_rw; *p; p++) {
388eb852011SMarkus Armbruster         if (!strcmp(drv->format_name, *p)) {
389eb852011SMarkus Armbruster             return 1;
390eb852011SMarkus Armbruster         }
391eb852011SMarkus Armbruster     }
392b64ec4e4SFam Zheng     if (read_only) {
393b64ec4e4SFam Zheng         for (p = whitelist_ro; *p; p++) {
394b64ec4e4SFam Zheng             if (!strcmp(drv->format_name, *p)) {
395b64ec4e4SFam Zheng                 return 1;
396b64ec4e4SFam Zheng             }
397b64ec4e4SFam Zheng         }
398b64ec4e4SFam Zheng     }
399eb852011SMarkus Armbruster     return 0;
400eb852011SMarkus Armbruster }
401eb852011SMarkus Armbruster 
402e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void)
403e6ff69bfSDaniel P. Berrange {
404e6ff69bfSDaniel P. Berrange     return use_bdrv_whitelist;
405e6ff69bfSDaniel P. Berrange }
406e6ff69bfSDaniel P. Berrange 
4075b7e1542SZhi Yong Wu typedef struct CreateCo {
4085b7e1542SZhi Yong Wu     BlockDriver *drv;
4095b7e1542SZhi Yong Wu     char *filename;
41083d0521aSChunyan Liu     QemuOpts *opts;
4115b7e1542SZhi Yong Wu     int ret;
412cc84d90fSMax Reitz     Error *err;
4135b7e1542SZhi Yong Wu } CreateCo;
4145b7e1542SZhi Yong Wu 
4155b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque)
4165b7e1542SZhi Yong Wu {
417cc84d90fSMax Reitz     Error *local_err = NULL;
418cc84d90fSMax Reitz     int ret;
419cc84d90fSMax Reitz 
4205b7e1542SZhi Yong Wu     CreateCo *cco = opaque;
4215b7e1542SZhi Yong Wu     assert(cco->drv);
4225b7e1542SZhi Yong Wu 
423efc75e2aSStefan Hajnoczi     ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err);
424cc84d90fSMax Reitz     error_propagate(&cco->err, local_err);
425cc84d90fSMax Reitz     cco->ret = ret;
4265b7e1542SZhi Yong Wu }
4275b7e1542SZhi Yong Wu 
4280e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename,
42983d0521aSChunyan Liu                 QemuOpts *opts, Error **errp)
430ea2384d3Sbellard {
4315b7e1542SZhi Yong Wu     int ret;
4320e7e1989SKevin Wolf 
4335b7e1542SZhi Yong Wu     Coroutine *co;
4345b7e1542SZhi Yong Wu     CreateCo cco = {
4355b7e1542SZhi Yong Wu         .drv = drv,
4365b7e1542SZhi Yong Wu         .filename = g_strdup(filename),
43783d0521aSChunyan Liu         .opts = opts,
4385b7e1542SZhi Yong Wu         .ret = NOT_DONE,
439cc84d90fSMax Reitz         .err = NULL,
4405b7e1542SZhi Yong Wu     };
4415b7e1542SZhi Yong Wu 
442efc75e2aSStefan Hajnoczi     if (!drv->bdrv_co_create_opts) {
443cc84d90fSMax Reitz         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
44480168bffSLuiz Capitulino         ret = -ENOTSUP;
44580168bffSLuiz Capitulino         goto out;
4465b7e1542SZhi Yong Wu     }
4475b7e1542SZhi Yong Wu 
4485b7e1542SZhi Yong Wu     if (qemu_in_coroutine()) {
4495b7e1542SZhi Yong Wu         /* Fast-path if already in coroutine context */
4505b7e1542SZhi Yong Wu         bdrv_create_co_entry(&cco);
4515b7e1542SZhi Yong Wu     } else {
4520b8b8753SPaolo Bonzini         co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
4530b8b8753SPaolo Bonzini         qemu_coroutine_enter(co);
4545b7e1542SZhi Yong Wu         while (cco.ret == NOT_DONE) {
455b47ec2c4SPaolo Bonzini             aio_poll(qemu_get_aio_context(), true);
4565b7e1542SZhi Yong Wu         }
4575b7e1542SZhi Yong Wu     }
4585b7e1542SZhi Yong Wu 
4595b7e1542SZhi Yong Wu     ret = cco.ret;
460cc84d90fSMax Reitz     if (ret < 0) {
46184d18f06SMarkus Armbruster         if (cco.err) {
462cc84d90fSMax Reitz             error_propagate(errp, cco.err);
463cc84d90fSMax Reitz         } else {
464cc84d90fSMax Reitz             error_setg_errno(errp, -ret, "Could not create image");
465cc84d90fSMax Reitz         }
466cc84d90fSMax Reitz     }
4675b7e1542SZhi Yong Wu 
46880168bffSLuiz Capitulino out:
46980168bffSLuiz Capitulino     g_free(cco.filename);
4705b7e1542SZhi Yong Wu     return ret;
471ea2384d3Sbellard }
472ea2384d3Sbellard 
473c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
47484a12e66SChristoph Hellwig {
47584a12e66SChristoph Hellwig     BlockDriver *drv;
476cc84d90fSMax Reitz     Error *local_err = NULL;
477cc84d90fSMax Reitz     int ret;
47884a12e66SChristoph Hellwig 
479b65a5e12SMax Reitz     drv = bdrv_find_protocol(filename, true, errp);
48084a12e66SChristoph Hellwig     if (drv == NULL) {
48116905d71SStefan Hajnoczi         return -ENOENT;
48284a12e66SChristoph Hellwig     }
48384a12e66SChristoph Hellwig 
484c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
485cc84d90fSMax Reitz     error_propagate(errp, local_err);
486cc84d90fSMax Reitz     return ret;
48784a12e66SChristoph Hellwig }
48884a12e66SChristoph Hellwig 
489892b7de8SEkaterina Tumanova /**
490892b7de8SEkaterina Tumanova  * Try to get @bs's logical and physical block size.
491892b7de8SEkaterina Tumanova  * On success, store them in @bsz struct and return 0.
492892b7de8SEkaterina Tumanova  * On failure return -errno.
493892b7de8SEkaterina Tumanova  * @bs must not be empty.
494892b7de8SEkaterina Tumanova  */
495892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
496892b7de8SEkaterina Tumanova {
497892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
498892b7de8SEkaterina Tumanova 
499892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_blocksizes) {
500892b7de8SEkaterina Tumanova         return drv->bdrv_probe_blocksizes(bs, bsz);
5015a612c00SManos Pitsidianakis     } else if (drv && drv->is_filter && bs->file) {
5025a612c00SManos Pitsidianakis         return bdrv_probe_blocksizes(bs->file->bs, bsz);
503892b7de8SEkaterina Tumanova     }
504892b7de8SEkaterina Tumanova 
505892b7de8SEkaterina Tumanova     return -ENOTSUP;
506892b7de8SEkaterina Tumanova }
507892b7de8SEkaterina Tumanova 
508892b7de8SEkaterina Tumanova /**
509892b7de8SEkaterina Tumanova  * Try to get @bs's geometry (cyls, heads, sectors).
510892b7de8SEkaterina Tumanova  * On success, store them in @geo struct and return 0.
511892b7de8SEkaterina Tumanova  * On failure return -errno.
512892b7de8SEkaterina Tumanova  * @bs must not be empty.
513892b7de8SEkaterina Tumanova  */
514892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
515892b7de8SEkaterina Tumanova {
516892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
517892b7de8SEkaterina Tumanova 
518892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_geometry) {
519892b7de8SEkaterina Tumanova         return drv->bdrv_probe_geometry(bs, geo);
5205a612c00SManos Pitsidianakis     } else if (drv && drv->is_filter && bs->file) {
5215a612c00SManos Pitsidianakis         return bdrv_probe_geometry(bs->file->bs, geo);
522892b7de8SEkaterina Tumanova     }
523892b7de8SEkaterina Tumanova 
524892b7de8SEkaterina Tumanova     return -ENOTSUP;
525892b7de8SEkaterina Tumanova }
526892b7de8SEkaterina Tumanova 
527eba25057SJim Meyering /*
528eba25057SJim Meyering  * Create a uniquely-named empty temporary file.
529eba25057SJim Meyering  * Return 0 upon success, otherwise a negative errno value.
530eba25057SJim Meyering  */
531eba25057SJim Meyering int get_tmp_filename(char *filename, int size)
532eba25057SJim Meyering {
533d5249393Sbellard #ifdef _WIN32
5343b9f94e1Sbellard     char temp_dir[MAX_PATH];
535eba25057SJim Meyering     /* GetTempFileName requires that its output buffer (4th param)
536eba25057SJim Meyering        have length MAX_PATH or greater.  */
537eba25057SJim Meyering     assert(size >= MAX_PATH);
538eba25057SJim Meyering     return (GetTempPath(MAX_PATH, temp_dir)
539eba25057SJim Meyering             && GetTempFileName(temp_dir, "qem", 0, filename)
540eba25057SJim Meyering             ? 0 : -GetLastError());
541d5249393Sbellard #else
542ea2384d3Sbellard     int fd;
5437ccfb2ebSblueswir1     const char *tmpdir;
5440badc1eeSaurel32     tmpdir = getenv("TMPDIR");
54569bef793SAmit Shah     if (!tmpdir) {
54669bef793SAmit Shah         tmpdir = "/var/tmp";
54769bef793SAmit Shah     }
548eba25057SJim Meyering     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
549eba25057SJim Meyering         return -EOVERFLOW;
550ea2384d3Sbellard     }
551eba25057SJim Meyering     fd = mkstemp(filename);
552fe235a06SDunrong Huang     if (fd < 0) {
553fe235a06SDunrong Huang         return -errno;
554fe235a06SDunrong Huang     }
555fe235a06SDunrong Huang     if (close(fd) != 0) {
556fe235a06SDunrong Huang         unlink(filename);
557eba25057SJim Meyering         return -errno;
558eba25057SJim Meyering     }
559eba25057SJim Meyering     return 0;
560d5249393Sbellard #endif
561eba25057SJim Meyering }
562ea2384d3Sbellard 
563f3a5d3f8SChristoph Hellwig /*
564f3a5d3f8SChristoph Hellwig  * Detect host devices. By convention, /dev/cdrom[N] is always
565f3a5d3f8SChristoph Hellwig  * recognized as a host CDROM.
566f3a5d3f8SChristoph Hellwig  */
567f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename)
568f3a5d3f8SChristoph Hellwig {
569508c7cb3SChristoph Hellwig     int score_max = 0, score;
570508c7cb3SChristoph Hellwig     BlockDriver *drv = NULL, *d;
571f3a5d3f8SChristoph Hellwig 
5728a22f02aSStefan Hajnoczi     QLIST_FOREACH(d, &bdrv_drivers, list) {
573508c7cb3SChristoph Hellwig         if (d->bdrv_probe_device) {
574508c7cb3SChristoph Hellwig             score = d->bdrv_probe_device(filename);
575508c7cb3SChristoph Hellwig             if (score > score_max) {
576508c7cb3SChristoph Hellwig                 score_max = score;
577508c7cb3SChristoph Hellwig                 drv = d;
578f3a5d3f8SChristoph Hellwig             }
579508c7cb3SChristoph Hellwig         }
580f3a5d3f8SChristoph Hellwig     }
581f3a5d3f8SChristoph Hellwig 
582508c7cb3SChristoph Hellwig     return drv;
583f3a5d3f8SChristoph Hellwig }
584f3a5d3f8SChristoph Hellwig 
58588d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol)
58688d88798SMarc Mari {
58788d88798SMarc Mari     BlockDriver *drv1;
58888d88798SMarc Mari 
58988d88798SMarc Mari     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
59088d88798SMarc Mari         if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
59188d88798SMarc Mari             return drv1;
59288d88798SMarc Mari         }
59388d88798SMarc Mari     }
59488d88798SMarc Mari 
59588d88798SMarc Mari     return NULL;
59688d88798SMarc Mari }
59788d88798SMarc Mari 
59898289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename,
599b65a5e12SMax Reitz                                 bool allow_protocol_prefix,
600b65a5e12SMax Reitz                                 Error **errp)
60184a12e66SChristoph Hellwig {
60284a12e66SChristoph Hellwig     BlockDriver *drv1;
60384a12e66SChristoph Hellwig     char protocol[128];
60484a12e66SChristoph Hellwig     int len;
60584a12e66SChristoph Hellwig     const char *p;
60688d88798SMarc Mari     int i;
60784a12e66SChristoph Hellwig 
60866f82ceeSKevin Wolf     /* TODO Drivers without bdrv_file_open must be specified explicitly */
60966f82ceeSKevin Wolf 
61039508e7aSChristoph Hellwig     /*
61139508e7aSChristoph Hellwig      * XXX(hch): we really should not let host device detection
61239508e7aSChristoph Hellwig      * override an explicit protocol specification, but moving this
61339508e7aSChristoph Hellwig      * later breaks access to device names with colons in them.
61439508e7aSChristoph Hellwig      * Thanks to the brain-dead persistent naming schemes on udev-
61539508e7aSChristoph Hellwig      * based Linux systems those actually are quite common.
61639508e7aSChristoph Hellwig      */
61784a12e66SChristoph Hellwig     drv1 = find_hdev_driver(filename);
61839508e7aSChristoph Hellwig     if (drv1) {
61984a12e66SChristoph Hellwig         return drv1;
62084a12e66SChristoph Hellwig     }
62139508e7aSChristoph Hellwig 
62298289620SKevin Wolf     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
623ef810437SMax Reitz         return &bdrv_file;
62439508e7aSChristoph Hellwig     }
62598289620SKevin Wolf 
6269e0b22f4SStefan Hajnoczi     p = strchr(filename, ':');
6279e0b22f4SStefan Hajnoczi     assert(p != NULL);
62884a12e66SChristoph Hellwig     len = p - filename;
62984a12e66SChristoph Hellwig     if (len > sizeof(protocol) - 1)
63084a12e66SChristoph Hellwig         len = sizeof(protocol) - 1;
63184a12e66SChristoph Hellwig     memcpy(protocol, filename, len);
63284a12e66SChristoph Hellwig     protocol[len] = '\0';
63388d88798SMarc Mari 
63488d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
63588d88798SMarc Mari     if (drv1) {
63684a12e66SChristoph Hellwig         return drv1;
63784a12e66SChristoph Hellwig     }
63888d88798SMarc Mari 
63988d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
64088d88798SMarc Mari         if (block_driver_modules[i].protocol_name &&
64188d88798SMarc Mari             !strcmp(block_driver_modules[i].protocol_name, protocol)) {
64288d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
64388d88798SMarc Mari             break;
64488d88798SMarc Mari         }
64584a12e66SChristoph Hellwig     }
646b65a5e12SMax Reitz 
64788d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
64888d88798SMarc Mari     if (!drv1) {
649b65a5e12SMax Reitz         error_setg(errp, "Unknown protocol '%s'", protocol);
65088d88798SMarc Mari     }
65188d88798SMarc Mari     return drv1;
65284a12e66SChristoph Hellwig }
65384a12e66SChristoph Hellwig 
654c6684249SMarkus Armbruster /*
655c6684249SMarkus Armbruster  * Guess image format by probing its contents.
656c6684249SMarkus Armbruster  * This is not a good idea when your image is raw (CVE-2008-2004), but
657c6684249SMarkus Armbruster  * we do it anyway for backward compatibility.
658c6684249SMarkus Armbruster  *
659c6684249SMarkus Armbruster  * @buf         contains the image's first @buf_size bytes.
6607cddd372SKevin Wolf  * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
6617cddd372SKevin Wolf  *              but can be smaller if the image file is smaller)
662c6684249SMarkus Armbruster  * @filename    is its filename.
663c6684249SMarkus Armbruster  *
664c6684249SMarkus Armbruster  * For all block drivers, call the bdrv_probe() method to get its
665c6684249SMarkus Armbruster  * probing score.
666c6684249SMarkus Armbruster  * Return the first block driver with the highest probing score.
667c6684249SMarkus Armbruster  */
66838f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
669c6684249SMarkus Armbruster                             const char *filename)
670c6684249SMarkus Armbruster {
671c6684249SMarkus Armbruster     int score_max = 0, score;
672c6684249SMarkus Armbruster     BlockDriver *drv = NULL, *d;
673c6684249SMarkus Armbruster 
674c6684249SMarkus Armbruster     QLIST_FOREACH(d, &bdrv_drivers, list) {
675c6684249SMarkus Armbruster         if (d->bdrv_probe) {
676c6684249SMarkus Armbruster             score = d->bdrv_probe(buf, buf_size, filename);
677c6684249SMarkus Armbruster             if (score > score_max) {
678c6684249SMarkus Armbruster                 score_max = score;
679c6684249SMarkus Armbruster                 drv = d;
680c6684249SMarkus Armbruster             }
681c6684249SMarkus Armbruster         }
682c6684249SMarkus Armbruster     }
683c6684249SMarkus Armbruster 
684c6684249SMarkus Armbruster     return drv;
685c6684249SMarkus Armbruster }
686c6684249SMarkus Armbruster 
6875696c6e3SKevin Wolf static int find_image_format(BlockBackend *file, const char *filename,
68834b5d2c6SMax Reitz                              BlockDriver **pdrv, Error **errp)
689ea2384d3Sbellard {
690c6684249SMarkus Armbruster     BlockDriver *drv;
6917cddd372SKevin Wolf     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
692f500a6d3SKevin Wolf     int ret = 0;
693f8ea0b00SNicholas Bellinger 
69408a00559SKevin Wolf     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
6955696c6e3SKevin Wolf     if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
696ef810437SMax Reitz         *pdrv = &bdrv_raw;
697c98ac35dSStefan Weil         return ret;
6981a396859SNicholas A. Bellinger     }
699f8ea0b00SNicholas Bellinger 
7005696c6e3SKevin Wolf     ret = blk_pread(file, 0, buf, sizeof(buf));
701ea2384d3Sbellard     if (ret < 0) {
70234b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not read image for determining its "
70334b5d2c6SMax Reitz                          "format");
704c98ac35dSStefan Weil         *pdrv = NULL;
705c98ac35dSStefan Weil         return ret;
706ea2384d3Sbellard     }
707ea2384d3Sbellard 
708c6684249SMarkus Armbruster     drv = bdrv_probe_all(buf, ret, filename);
709c98ac35dSStefan Weil     if (!drv) {
71034b5d2c6SMax Reitz         error_setg(errp, "Could not determine image format: No compatible "
71134b5d2c6SMax Reitz                    "driver found");
712c98ac35dSStefan Weil         ret = -ENOENT;
713c98ac35dSStefan Weil     }
714c98ac35dSStefan Weil     *pdrv = drv;
715c98ac35dSStefan Weil     return ret;
716ea2384d3Sbellard }
717ea2384d3Sbellard 
71851762288SStefan Hajnoczi /**
71951762288SStefan Hajnoczi  * Set the current 'total_sectors' value
72065a9bb25SMarkus Armbruster  * Return 0 on success, -errno on error.
72151762288SStefan Hajnoczi  */
72251762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
72351762288SStefan Hajnoczi {
72451762288SStefan Hajnoczi     BlockDriver *drv = bs->drv;
72551762288SStefan Hajnoczi 
726d470ad42SMax Reitz     if (!drv) {
727d470ad42SMax Reitz         return -ENOMEDIUM;
728d470ad42SMax Reitz     }
729d470ad42SMax Reitz 
730396759adSNicholas Bellinger     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
731b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs))
732396759adSNicholas Bellinger         return 0;
733396759adSNicholas Bellinger 
73451762288SStefan Hajnoczi     /* query actual device if possible, otherwise just trust the hint */
73551762288SStefan Hajnoczi     if (drv->bdrv_getlength) {
73651762288SStefan Hajnoczi         int64_t length = drv->bdrv_getlength(bs);
73751762288SStefan Hajnoczi         if (length < 0) {
73851762288SStefan Hajnoczi             return length;
73951762288SStefan Hajnoczi         }
7407e382003SFam Zheng         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
74151762288SStefan Hajnoczi     }
74251762288SStefan Hajnoczi 
74351762288SStefan Hajnoczi     bs->total_sectors = hint;
74451762288SStefan Hajnoczi     return 0;
74551762288SStefan Hajnoczi }
74651762288SStefan Hajnoczi 
747c3993cdcSStefan Hajnoczi /**
748cddff5baSKevin Wolf  * Combines a QDict of new block driver @options with any missing options taken
749cddff5baSKevin Wolf  * from @old_options, so that leaving out an option defaults to its old value.
750cddff5baSKevin Wolf  */
751cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options,
752cddff5baSKevin Wolf                               QDict *old_options)
753cddff5baSKevin Wolf {
754cddff5baSKevin Wolf     if (bs->drv && bs->drv->bdrv_join_options) {
755cddff5baSKevin Wolf         bs->drv->bdrv_join_options(options, old_options);
756cddff5baSKevin Wolf     } else {
757cddff5baSKevin Wolf         qdict_join(options, old_options, false);
758cddff5baSKevin Wolf     }
759cddff5baSKevin Wolf }
760cddff5baSKevin Wolf 
761cddff5baSKevin Wolf /**
7629e8f1835SPaolo Bonzini  * Set open flags for a given discard mode
7639e8f1835SPaolo Bonzini  *
7649e8f1835SPaolo Bonzini  * Return 0 on success, -1 if the discard mode was invalid.
7659e8f1835SPaolo Bonzini  */
7669e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags)
7679e8f1835SPaolo Bonzini {
7689e8f1835SPaolo Bonzini     *flags &= ~BDRV_O_UNMAP;
7699e8f1835SPaolo Bonzini 
7709e8f1835SPaolo Bonzini     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
7719e8f1835SPaolo Bonzini         /* do nothing */
7729e8f1835SPaolo Bonzini     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
7739e8f1835SPaolo Bonzini         *flags |= BDRV_O_UNMAP;
7749e8f1835SPaolo Bonzini     } else {
7759e8f1835SPaolo Bonzini         return -1;
7769e8f1835SPaolo Bonzini     }
7779e8f1835SPaolo Bonzini 
7789e8f1835SPaolo Bonzini     return 0;
7799e8f1835SPaolo Bonzini }
7809e8f1835SPaolo Bonzini 
7819e8f1835SPaolo Bonzini /**
782c3993cdcSStefan Hajnoczi  * Set open flags for a given cache mode
783c3993cdcSStefan Hajnoczi  *
784c3993cdcSStefan Hajnoczi  * Return 0 on success, -1 if the cache mode was invalid.
785c3993cdcSStefan Hajnoczi  */
78653e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
787c3993cdcSStefan Hajnoczi {
788c3993cdcSStefan Hajnoczi     *flags &= ~BDRV_O_CACHE_MASK;
789c3993cdcSStefan Hajnoczi 
790c3993cdcSStefan Hajnoczi     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
79153e8ae01SKevin Wolf         *writethrough = false;
79253e8ae01SKevin Wolf         *flags |= BDRV_O_NOCACHE;
79392196b2fSStefan Hajnoczi     } else if (!strcmp(mode, "directsync")) {
79453e8ae01SKevin Wolf         *writethrough = true;
79592196b2fSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE;
796c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writeback")) {
79753e8ae01SKevin Wolf         *writethrough = false;
798c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "unsafe")) {
79953e8ae01SKevin Wolf         *writethrough = false;
800c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NO_FLUSH;
801c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writethrough")) {
80253e8ae01SKevin Wolf         *writethrough = true;
803c3993cdcSStefan Hajnoczi     } else {
804c3993cdcSStefan Hajnoczi         return -1;
805c3993cdcSStefan Hajnoczi     }
806c3993cdcSStefan Hajnoczi 
807c3993cdcSStefan Hajnoczi     return 0;
808c3993cdcSStefan Hajnoczi }
809c3993cdcSStefan Hajnoczi 
810b5411555SKevin Wolf static char *bdrv_child_get_parent_desc(BdrvChild *c)
811b5411555SKevin Wolf {
812b5411555SKevin Wolf     BlockDriverState *parent = c->opaque;
813b5411555SKevin Wolf     return g_strdup(bdrv_get_device_or_node_name(parent));
814b5411555SKevin Wolf }
815b5411555SKevin Wolf 
81620018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child)
81720018e12SKevin Wolf {
81820018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
81920018e12SKevin Wolf     bdrv_drained_begin(bs);
82020018e12SKevin Wolf }
82120018e12SKevin Wolf 
82220018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child)
82320018e12SKevin Wolf {
82420018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
82520018e12SKevin Wolf     bdrv_drained_end(bs);
82620018e12SKevin Wolf }
82720018e12SKevin Wolf 
828d736f119SKevin Wolf static void bdrv_child_cb_attach(BdrvChild *child)
829d736f119SKevin Wolf {
830d736f119SKevin Wolf     BlockDriverState *bs = child->opaque;
831d736f119SKevin Wolf     bdrv_apply_subtree_drain(child, bs);
832d736f119SKevin Wolf }
833d736f119SKevin Wolf 
834d736f119SKevin Wolf static void bdrv_child_cb_detach(BdrvChild *child)
835d736f119SKevin Wolf {
836d736f119SKevin Wolf     BlockDriverState *bs = child->opaque;
837d736f119SKevin Wolf     bdrv_unapply_subtree_drain(child, bs);
838d736f119SKevin Wolf }
839d736f119SKevin Wolf 
84038701b6aSKevin Wolf static int bdrv_child_cb_inactivate(BdrvChild *child)
84138701b6aSKevin Wolf {
84238701b6aSKevin Wolf     BlockDriverState *bs = child->opaque;
84338701b6aSKevin Wolf     assert(bs->open_flags & BDRV_O_INACTIVE);
84438701b6aSKevin Wolf     return 0;
84538701b6aSKevin Wolf }
84638701b6aSKevin Wolf 
8470b50cc88SKevin Wolf /*
84873176beeSKevin Wolf  * Returns the options and flags that a temporary snapshot should get, based on
84973176beeSKevin Wolf  * the originally requested flags (the originally requested image will have
85073176beeSKevin Wolf  * flags like a backing file)
851b1e6fc08SKevin Wolf  */
85273176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
85373176beeSKevin Wolf                                        int parent_flags, QDict *parent_options)
854b1e6fc08SKevin Wolf {
85573176beeSKevin Wolf     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
85673176beeSKevin Wolf 
85773176beeSKevin Wolf     /* For temporary files, unconditional cache=unsafe is fine */
85873176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
85973176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
86041869044SKevin Wolf 
861f87a0e29SAlberto Garcia     /* Copy the read-only option from the parent */
862f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
863f87a0e29SAlberto Garcia 
86441869044SKevin Wolf     /* aio=native doesn't work for cache.direct=off, so disable it for the
86541869044SKevin Wolf      * temporary snapshot */
86641869044SKevin Wolf     *child_flags &= ~BDRV_O_NATIVE_AIO;
867b1e6fc08SKevin Wolf }
868b1e6fc08SKevin Wolf 
869b1e6fc08SKevin Wolf /*
8708e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if a protocol driver
8718e2160e2SKevin Wolf  * is expected, based on the given options and flags for the parent BDS
8720b50cc88SKevin Wolf  */
8738e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options,
8748e2160e2SKevin Wolf                                    int parent_flags, QDict *parent_options)
8750b50cc88SKevin Wolf {
8768e2160e2SKevin Wolf     int flags = parent_flags;
8778e2160e2SKevin Wolf 
8780b50cc88SKevin Wolf     /* Enable protocol handling, disable format probing for bs->file */
8790b50cc88SKevin Wolf     flags |= BDRV_O_PROTOCOL;
8800b50cc88SKevin Wolf 
88191a097e7SKevin Wolf     /* If the cache mode isn't explicitly set, inherit direct and no-flush from
88291a097e7SKevin Wolf      * the parent. */
88391a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
88491a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
8855a9347c6SFam Zheng     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
88691a097e7SKevin Wolf 
887f87a0e29SAlberto Garcia     /* Inherit the read-only option from the parent if it's not set */
888f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
889f87a0e29SAlberto Garcia 
8900b50cc88SKevin Wolf     /* Our block drivers take care to send flushes and respect unmap policy,
89191a097e7SKevin Wolf      * so we can default to enable both on lower layers regardless of the
89291a097e7SKevin Wolf      * corresponding parent options. */
893818584a4SKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
8940b50cc88SKevin Wolf 
8950b50cc88SKevin Wolf     /* Clear flags that only apply to the top layer */
896abb06c5aSDaniel P. Berrange     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
897abb06c5aSDaniel P. Berrange                BDRV_O_NO_IO);
8980b50cc88SKevin Wolf 
8998e2160e2SKevin Wolf     *child_flags = flags;
9000b50cc88SKevin Wolf }
9010b50cc88SKevin Wolf 
902f3930ed0SKevin Wolf const BdrvChildRole child_file = {
903b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
9048e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_options,
90520018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
90620018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
907d736f119SKevin Wolf     .attach          = bdrv_child_cb_attach,
908d736f119SKevin Wolf     .detach          = bdrv_child_cb_detach,
90938701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
910f3930ed0SKevin Wolf };
911f3930ed0SKevin Wolf 
912f3930ed0SKevin Wolf /*
9138e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if the use of formats
9148e2160e2SKevin Wolf  * (and not only protocols) is permitted for it, based on the given options and
9158e2160e2SKevin Wolf  * flags for the parent BDS
916f3930ed0SKevin Wolf  */
9178e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
9188e2160e2SKevin Wolf                                        int parent_flags, QDict *parent_options)
919f3930ed0SKevin Wolf {
9208e2160e2SKevin Wolf     child_file.inherit_options(child_flags, child_options,
9218e2160e2SKevin Wolf                                parent_flags, parent_options);
9228e2160e2SKevin Wolf 
923abb06c5aSDaniel P. Berrange     *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
924f3930ed0SKevin Wolf }
925f3930ed0SKevin Wolf 
926f3930ed0SKevin Wolf const BdrvChildRole child_format = {
927b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
9288e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_fmt_options,
92920018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
93020018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
931d736f119SKevin Wolf     .attach          = bdrv_child_cb_attach,
932d736f119SKevin Wolf     .detach          = bdrv_child_cb_detach,
93338701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
934f3930ed0SKevin Wolf };
935f3930ed0SKevin Wolf 
936db95dbbaSKevin Wolf static void bdrv_backing_attach(BdrvChild *c)
937db95dbbaSKevin Wolf {
938db95dbbaSKevin Wolf     BlockDriverState *parent = c->opaque;
939db95dbbaSKevin Wolf     BlockDriverState *backing_hd = c->bs;
940db95dbbaSKevin Wolf 
941db95dbbaSKevin Wolf     assert(!parent->backing_blocker);
942db95dbbaSKevin Wolf     error_setg(&parent->backing_blocker,
943db95dbbaSKevin Wolf                "node is used as backing hd of '%s'",
944db95dbbaSKevin Wolf                bdrv_get_device_or_node_name(parent));
945db95dbbaSKevin Wolf 
946db95dbbaSKevin Wolf     parent->open_flags &= ~BDRV_O_NO_BACKING;
947db95dbbaSKevin Wolf     pstrcpy(parent->backing_file, sizeof(parent->backing_file),
948db95dbbaSKevin Wolf             backing_hd->filename);
949db95dbbaSKevin Wolf     pstrcpy(parent->backing_format, sizeof(parent->backing_format),
950db95dbbaSKevin Wolf             backing_hd->drv ? backing_hd->drv->format_name : "");
951db95dbbaSKevin Wolf 
952db95dbbaSKevin Wolf     bdrv_op_block_all(backing_hd, parent->backing_blocker);
953db95dbbaSKevin Wolf     /* Otherwise we won't be able to commit or stream */
954db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
955db95dbbaSKevin Wolf                     parent->backing_blocker);
956db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
957db95dbbaSKevin Wolf                     parent->backing_blocker);
958db95dbbaSKevin Wolf     /*
959db95dbbaSKevin Wolf      * We do backup in 3 ways:
960db95dbbaSKevin Wolf      * 1. drive backup
961db95dbbaSKevin Wolf      *    The target bs is new opened, and the source is top BDS
962db95dbbaSKevin Wolf      * 2. blockdev backup
963db95dbbaSKevin Wolf      *    Both the source and the target are top BDSes.
964db95dbbaSKevin Wolf      * 3. internal backup(used for block replication)
965db95dbbaSKevin Wolf      *    Both the source and the target are backing file
966db95dbbaSKevin Wolf      *
967db95dbbaSKevin Wolf      * In case 1 and 2, neither the source nor the target is the backing file.
968db95dbbaSKevin Wolf      * In case 3, we will block the top BDS, so there is only one block job
969db95dbbaSKevin Wolf      * for the top BDS and its backing chain.
970db95dbbaSKevin Wolf      */
971db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
972db95dbbaSKevin Wolf                     parent->backing_blocker);
973db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
974db95dbbaSKevin Wolf                     parent->backing_blocker);
975d736f119SKevin Wolf 
976d736f119SKevin Wolf     bdrv_child_cb_attach(c);
977db95dbbaSKevin Wolf }
978db95dbbaSKevin Wolf 
979db95dbbaSKevin Wolf static void bdrv_backing_detach(BdrvChild *c)
980db95dbbaSKevin Wolf {
981db95dbbaSKevin Wolf     BlockDriverState *parent = c->opaque;
982db95dbbaSKevin Wolf 
983db95dbbaSKevin Wolf     assert(parent->backing_blocker);
984db95dbbaSKevin Wolf     bdrv_op_unblock_all(c->bs, parent->backing_blocker);
985db95dbbaSKevin Wolf     error_free(parent->backing_blocker);
986db95dbbaSKevin Wolf     parent->backing_blocker = NULL;
987d736f119SKevin Wolf 
988d736f119SKevin Wolf     bdrv_child_cb_detach(c);
989db95dbbaSKevin Wolf }
990db95dbbaSKevin Wolf 
991317fc44eSKevin Wolf /*
9928e2160e2SKevin Wolf  * Returns the options and flags that bs->backing should get, based on the
9938e2160e2SKevin Wolf  * given options and flags for the parent BDS
994317fc44eSKevin Wolf  */
9958e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options,
9968e2160e2SKevin Wolf                                  int parent_flags, QDict *parent_options)
997317fc44eSKevin Wolf {
9988e2160e2SKevin Wolf     int flags = parent_flags;
9998e2160e2SKevin Wolf 
1000b8816a43SKevin Wolf     /* The cache mode is inherited unmodified for backing files; except WCE,
1001b8816a43SKevin Wolf      * which is only applied on the top level (BlockBackend) */
100291a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
100391a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
10045a9347c6SFam Zheng     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
100591a097e7SKevin Wolf 
1006317fc44eSKevin Wolf     /* backing files always opened read-only */
1007f87a0e29SAlberto Garcia     qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1008f87a0e29SAlberto Garcia     flags &= ~BDRV_O_COPY_ON_READ;
1009317fc44eSKevin Wolf 
1010317fc44eSKevin Wolf     /* snapshot=on is handled on the top layer */
10118bfea15dSKevin Wolf     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
1012317fc44eSKevin Wolf 
10138e2160e2SKevin Wolf     *child_flags = flags;
1014317fc44eSKevin Wolf }
1015317fc44eSKevin Wolf 
10166858eba0SKevin Wolf static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
10176858eba0SKevin Wolf                                         const char *filename, Error **errp)
10186858eba0SKevin Wolf {
10196858eba0SKevin Wolf     BlockDriverState *parent = c->opaque;
102061f09ceaSKevin Wolf     int orig_flags = bdrv_get_flags(parent);
10216858eba0SKevin Wolf     int ret;
10226858eba0SKevin Wolf 
102361f09ceaSKevin Wolf     if (!(orig_flags & BDRV_O_RDWR)) {
102461f09ceaSKevin Wolf         ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp);
102561f09ceaSKevin Wolf         if (ret < 0) {
102661f09ceaSKevin Wolf             return ret;
102761f09ceaSKevin Wolf         }
102861f09ceaSKevin Wolf     }
102961f09ceaSKevin Wolf 
10306858eba0SKevin Wolf     ret = bdrv_change_backing_file(parent, filename,
10316858eba0SKevin Wolf                                    base->drv ? base->drv->format_name : "");
10326858eba0SKevin Wolf     if (ret < 0) {
103364730694SKevin Wolf         error_setg_errno(errp, -ret, "Could not update backing file link");
10346858eba0SKevin Wolf     }
10356858eba0SKevin Wolf 
103661f09ceaSKevin Wolf     if (!(orig_flags & BDRV_O_RDWR)) {
103761f09ceaSKevin Wolf         bdrv_reopen(parent, orig_flags, NULL);
103861f09ceaSKevin Wolf     }
103961f09ceaSKevin Wolf 
10406858eba0SKevin Wolf     return ret;
10416858eba0SKevin Wolf }
10426858eba0SKevin Wolf 
104391ef3825SKevin Wolf const BdrvChildRole child_backing = {
1044b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
1045db95dbbaSKevin Wolf     .attach          = bdrv_backing_attach,
1046db95dbbaSKevin Wolf     .detach          = bdrv_backing_detach,
10478e2160e2SKevin Wolf     .inherit_options = bdrv_backing_options,
104820018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
104920018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
105038701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
10516858eba0SKevin Wolf     .update_filename = bdrv_backing_update_filename,
1052f3930ed0SKevin Wolf };
1053f3930ed0SKevin Wolf 
10547b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags)
10557b272452SKevin Wolf {
105661de4c68SKevin Wolf     int open_flags = flags;
10577b272452SKevin Wolf 
10587b272452SKevin Wolf     /*
10597b272452SKevin Wolf      * Clear flags that are internal to the block layer before opening the
10607b272452SKevin Wolf      * image.
10617b272452SKevin Wolf      */
106220cca275SKevin Wolf     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
10637b272452SKevin Wolf 
10647b272452SKevin Wolf     /*
10657b272452SKevin Wolf      * Snapshots should be writable.
10667b272452SKevin Wolf      */
10678bfea15dSKevin Wolf     if (flags & BDRV_O_TEMPORARY) {
10687b272452SKevin Wolf         open_flags |= BDRV_O_RDWR;
10697b272452SKevin Wolf     }
10707b272452SKevin Wolf 
10717b272452SKevin Wolf     return open_flags;
10727b272452SKevin Wolf }
10737b272452SKevin Wolf 
107491a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts)
107591a097e7SKevin Wolf {
107691a097e7SKevin Wolf     *flags &= ~BDRV_O_CACHE_MASK;
107791a097e7SKevin Wolf 
107891a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
107991a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
108091a097e7SKevin Wolf         *flags |= BDRV_O_NO_FLUSH;
108191a097e7SKevin Wolf     }
108291a097e7SKevin Wolf 
108391a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
108491a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
108591a097e7SKevin Wolf         *flags |= BDRV_O_NOCACHE;
108691a097e7SKevin Wolf     }
1087f87a0e29SAlberto Garcia 
1088f87a0e29SAlberto Garcia     *flags &= ~BDRV_O_RDWR;
1089f87a0e29SAlberto Garcia 
1090f87a0e29SAlberto Garcia     assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
1091f87a0e29SAlberto Garcia     if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) {
1092f87a0e29SAlberto Garcia         *flags |= BDRV_O_RDWR;
1093f87a0e29SAlberto Garcia     }
1094f87a0e29SAlberto Garcia 
109591a097e7SKevin Wolf }
109691a097e7SKevin Wolf 
109791a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags)
109891a097e7SKevin Wolf {
109991a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
110046f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
110191a097e7SKevin Wolf     }
110291a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
110346f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
110446f5ac20SEric Blake                        flags & BDRV_O_NO_FLUSH);
110591a097e7SKevin Wolf     }
1106f87a0e29SAlberto Garcia     if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
110746f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1108f87a0e29SAlberto Garcia     }
110991a097e7SKevin Wolf }
111091a097e7SKevin Wolf 
1111636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs,
11126913c0c2SBenoît Canet                                   const char *node_name,
11136913c0c2SBenoît Canet                                   Error **errp)
11146913c0c2SBenoît Canet {
111515489c76SJeff Cody     char *gen_node_name = NULL;
11166913c0c2SBenoît Canet 
111715489c76SJeff Cody     if (!node_name) {
111815489c76SJeff Cody         node_name = gen_node_name = id_generate(ID_BLOCK);
111915489c76SJeff Cody     } else if (!id_wellformed(node_name)) {
112015489c76SJeff Cody         /*
112115489c76SJeff Cody          * Check for empty string or invalid characters, but not if it is
112215489c76SJeff Cody          * generated (generated names use characters not available to the user)
112315489c76SJeff Cody          */
11249aebf3b8SKevin Wolf         error_setg(errp, "Invalid node name");
1125636ea370SKevin Wolf         return;
11266913c0c2SBenoît Canet     }
11276913c0c2SBenoît Canet 
11280c5e94eeSBenoît Canet     /* takes care of avoiding namespaces collisions */
11297f06d47eSMarkus Armbruster     if (blk_by_name(node_name)) {
11300c5e94eeSBenoît Canet         error_setg(errp, "node-name=%s is conflicting with a device id",
11310c5e94eeSBenoît Canet                    node_name);
113215489c76SJeff Cody         goto out;
11330c5e94eeSBenoît Canet     }
11340c5e94eeSBenoît Canet 
11356913c0c2SBenoît Canet     /* takes care of avoiding duplicates node names */
11366913c0c2SBenoît Canet     if (bdrv_find_node(node_name)) {
11376913c0c2SBenoît Canet         error_setg(errp, "Duplicate node name");
113815489c76SJeff Cody         goto out;
11396913c0c2SBenoît Canet     }
11406913c0c2SBenoît Canet 
11416913c0c2SBenoît Canet     /* copy node name into the bs and insert it into the graph list */
11426913c0c2SBenoît Canet     pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
11436913c0c2SBenoît Canet     QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
114415489c76SJeff Cody out:
114515489c76SJeff Cody     g_free(gen_node_name);
11466913c0c2SBenoît Canet }
11476913c0c2SBenoît Canet 
114801a56501SKevin Wolf static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
114901a56501SKevin Wolf                             const char *node_name, QDict *options,
115001a56501SKevin Wolf                             int open_flags, Error **errp)
115101a56501SKevin Wolf {
115201a56501SKevin Wolf     Error *local_err = NULL;
115301a56501SKevin Wolf     int ret;
115401a56501SKevin Wolf 
115501a56501SKevin Wolf     bdrv_assign_node_name(bs, node_name, &local_err);
115601a56501SKevin Wolf     if (local_err) {
115701a56501SKevin Wolf         error_propagate(errp, local_err);
115801a56501SKevin Wolf         return -EINVAL;
115901a56501SKevin Wolf     }
116001a56501SKevin Wolf 
116101a56501SKevin Wolf     bs->drv = drv;
1162680c7f96SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
116301a56501SKevin Wolf     bs->opaque = g_malloc0(drv->instance_size);
116401a56501SKevin Wolf 
116501a56501SKevin Wolf     if (drv->bdrv_file_open) {
116601a56501SKevin Wolf         assert(!drv->bdrv_needs_filename || bs->filename[0]);
116701a56501SKevin Wolf         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1168680c7f96SKevin Wolf     } else if (drv->bdrv_open) {
116901a56501SKevin Wolf         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1170680c7f96SKevin Wolf     } else {
1171680c7f96SKevin Wolf         ret = 0;
117201a56501SKevin Wolf     }
117301a56501SKevin Wolf 
117401a56501SKevin Wolf     if (ret < 0) {
117501a56501SKevin Wolf         if (local_err) {
117601a56501SKevin Wolf             error_propagate(errp, local_err);
117701a56501SKevin Wolf         } else if (bs->filename[0]) {
117801a56501SKevin Wolf             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
117901a56501SKevin Wolf         } else {
118001a56501SKevin Wolf             error_setg_errno(errp, -ret, "Could not open image");
118101a56501SKevin Wolf         }
1182180ca19aSManos Pitsidianakis         goto open_failed;
118301a56501SKevin Wolf     }
118401a56501SKevin Wolf 
118501a56501SKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
118601a56501SKevin Wolf     if (ret < 0) {
118701a56501SKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
1188180ca19aSManos Pitsidianakis         return ret;
118901a56501SKevin Wolf     }
119001a56501SKevin Wolf 
119101a56501SKevin Wolf     bdrv_refresh_limits(bs, &local_err);
119201a56501SKevin Wolf     if (local_err) {
119301a56501SKevin Wolf         error_propagate(errp, local_err);
1194180ca19aSManos Pitsidianakis         return -EINVAL;
119501a56501SKevin Wolf     }
119601a56501SKevin Wolf 
119701a56501SKevin Wolf     assert(bdrv_opt_mem_align(bs) != 0);
119801a56501SKevin Wolf     assert(bdrv_min_mem_align(bs) != 0);
119901a56501SKevin Wolf     assert(is_power_of_2(bs->bl.request_alignment));
120001a56501SKevin Wolf 
120101a56501SKevin Wolf     return 0;
1202180ca19aSManos Pitsidianakis open_failed:
1203180ca19aSManos Pitsidianakis     bs->drv = NULL;
1204180ca19aSManos Pitsidianakis     if (bs->file != NULL) {
1205180ca19aSManos Pitsidianakis         bdrv_unref_child(bs, bs->file);
1206180ca19aSManos Pitsidianakis         bs->file = NULL;
1207180ca19aSManos Pitsidianakis     }
120801a56501SKevin Wolf     g_free(bs->opaque);
120901a56501SKevin Wolf     bs->opaque = NULL;
121001a56501SKevin Wolf     return ret;
121101a56501SKevin Wolf }
121201a56501SKevin Wolf 
1213680c7f96SKevin Wolf BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1214680c7f96SKevin Wolf                                        int flags, Error **errp)
1215680c7f96SKevin Wolf {
1216680c7f96SKevin Wolf     BlockDriverState *bs;
1217680c7f96SKevin Wolf     int ret;
1218680c7f96SKevin Wolf 
1219680c7f96SKevin Wolf     bs = bdrv_new();
1220680c7f96SKevin Wolf     bs->open_flags = flags;
1221680c7f96SKevin Wolf     bs->explicit_options = qdict_new();
1222680c7f96SKevin Wolf     bs->options = qdict_new();
1223680c7f96SKevin Wolf     bs->opaque = NULL;
1224680c7f96SKevin Wolf 
1225680c7f96SKevin Wolf     update_options_from_flags(bs->options, flags);
1226680c7f96SKevin Wolf 
1227680c7f96SKevin Wolf     ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1228680c7f96SKevin Wolf     if (ret < 0) {
1229680c7f96SKevin Wolf         QDECREF(bs->explicit_options);
1230180ca19aSManos Pitsidianakis         bs->explicit_options = NULL;
1231680c7f96SKevin Wolf         QDECREF(bs->options);
1232180ca19aSManos Pitsidianakis         bs->options = NULL;
1233680c7f96SKevin Wolf         bdrv_unref(bs);
1234680c7f96SKevin Wolf         return NULL;
1235680c7f96SKevin Wolf     }
1236680c7f96SKevin Wolf 
1237680c7f96SKevin Wolf     return bs;
1238680c7f96SKevin Wolf }
1239680c7f96SKevin Wolf 
1240c5f3014bSKevin Wolf QemuOptsList bdrv_runtime_opts = {
124118edf289SKevin Wolf     .name = "bdrv_common",
124218edf289SKevin Wolf     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
124318edf289SKevin Wolf     .desc = {
124418edf289SKevin Wolf         {
124518edf289SKevin Wolf             .name = "node-name",
124618edf289SKevin Wolf             .type = QEMU_OPT_STRING,
124718edf289SKevin Wolf             .help = "Node name of the block device node",
124818edf289SKevin Wolf         },
124962392ebbSKevin Wolf         {
125062392ebbSKevin Wolf             .name = "driver",
125162392ebbSKevin Wolf             .type = QEMU_OPT_STRING,
125262392ebbSKevin Wolf             .help = "Block driver to use for the node",
125362392ebbSKevin Wolf         },
125491a097e7SKevin Wolf         {
125591a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_DIRECT,
125691a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
125791a097e7SKevin Wolf             .help = "Bypass software writeback cache on the host",
125891a097e7SKevin Wolf         },
125991a097e7SKevin Wolf         {
126091a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_NO_FLUSH,
126191a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
126291a097e7SKevin Wolf             .help = "Ignore flush requests",
126391a097e7SKevin Wolf         },
1264f87a0e29SAlberto Garcia         {
1265f87a0e29SAlberto Garcia             .name = BDRV_OPT_READ_ONLY,
1266f87a0e29SAlberto Garcia             .type = QEMU_OPT_BOOL,
1267f87a0e29SAlberto Garcia             .help = "Node is opened in read-only mode",
1268f87a0e29SAlberto Garcia         },
1269692e01a2SKevin Wolf         {
1270692e01a2SKevin Wolf             .name = "detect-zeroes",
1271692e01a2SKevin Wolf             .type = QEMU_OPT_STRING,
1272692e01a2SKevin Wolf             .help = "try to optimize zero writes (off, on, unmap)",
1273692e01a2SKevin Wolf         },
1274818584a4SKevin Wolf         {
1275818584a4SKevin Wolf             .name = "discard",
1276818584a4SKevin Wolf             .type = QEMU_OPT_STRING,
1277818584a4SKevin Wolf             .help = "discard operation (ignore/off, unmap/on)",
1278818584a4SKevin Wolf         },
12795a9347c6SFam Zheng         {
12805a9347c6SFam Zheng             .name = BDRV_OPT_FORCE_SHARE,
12815a9347c6SFam Zheng             .type = QEMU_OPT_BOOL,
12825a9347c6SFam Zheng             .help = "always accept other writers (default: off)",
12835a9347c6SFam Zheng         },
128418edf289SKevin Wolf         { /* end of list */ }
128518edf289SKevin Wolf     },
128618edf289SKevin Wolf };
128718edf289SKevin Wolf 
1288b6ce07aaSKevin Wolf /*
128957915332SKevin Wolf  * Common part for opening disk images and files
1290b6ad491aSKevin Wolf  *
1291b6ad491aSKevin Wolf  * Removes all processed options from *options.
129257915332SKevin Wolf  */
12935696c6e3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
129482dc8b41SKevin Wolf                             QDict *options, Error **errp)
129557915332SKevin Wolf {
129657915332SKevin Wolf     int ret, open_flags;
1297035fccdfSKevin Wolf     const char *filename;
129862392ebbSKevin Wolf     const char *driver_name = NULL;
12996913c0c2SBenoît Canet     const char *node_name = NULL;
1300818584a4SKevin Wolf     const char *discard;
1301692e01a2SKevin Wolf     const char *detect_zeroes;
130218edf289SKevin Wolf     QemuOpts *opts;
130362392ebbSKevin Wolf     BlockDriver *drv;
130434b5d2c6SMax Reitz     Error *local_err = NULL;
130557915332SKevin Wolf 
13066405875cSPaolo Bonzini     assert(bs->file == NULL);
1307707ff828SKevin Wolf     assert(options != NULL && bs->options != options);
130857915332SKevin Wolf 
130962392ebbSKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
131062392ebbSKevin Wolf     qemu_opts_absorb_qdict(opts, options, &local_err);
131162392ebbSKevin Wolf     if (local_err) {
131262392ebbSKevin Wolf         error_propagate(errp, local_err);
131362392ebbSKevin Wolf         ret = -EINVAL;
131462392ebbSKevin Wolf         goto fail_opts;
131562392ebbSKevin Wolf     }
131662392ebbSKevin Wolf 
13179b7e8691SAlberto Garcia     update_flags_from_options(&bs->open_flags, opts);
13189b7e8691SAlberto Garcia 
131962392ebbSKevin Wolf     driver_name = qemu_opt_get(opts, "driver");
132062392ebbSKevin Wolf     drv = bdrv_find_format(driver_name);
132162392ebbSKevin Wolf     assert(drv != NULL);
132262392ebbSKevin Wolf 
13235a9347c6SFam Zheng     bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
13245a9347c6SFam Zheng 
13255a9347c6SFam Zheng     if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
13265a9347c6SFam Zheng         error_setg(errp,
13275a9347c6SFam Zheng                    BDRV_OPT_FORCE_SHARE
13285a9347c6SFam Zheng                    "=on can only be used with read-only images");
13295a9347c6SFam Zheng         ret = -EINVAL;
13305a9347c6SFam Zheng         goto fail_opts;
13315a9347c6SFam Zheng     }
13325a9347c6SFam Zheng 
133345673671SKevin Wolf     if (file != NULL) {
13345696c6e3SKevin Wolf         filename = blk_bs(file)->filename;
133545673671SKevin Wolf     } else {
1336129c7d1cSMarkus Armbruster         /*
1337129c7d1cSMarkus Armbruster          * Caution: while qdict_get_try_str() is fine, getting
1338129c7d1cSMarkus Armbruster          * non-string types would require more care.  When @options
1339129c7d1cSMarkus Armbruster          * come from -blockdev or blockdev_add, its members are typed
1340129c7d1cSMarkus Armbruster          * according to the QAPI schema, but when they come from
1341129c7d1cSMarkus Armbruster          * -drive, they're all QString.
1342129c7d1cSMarkus Armbruster          */
134345673671SKevin Wolf         filename = qdict_get_try_str(options, "filename");
134445673671SKevin Wolf     }
134545673671SKevin Wolf 
13464a008240SMax Reitz     if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1347765003dbSKevin Wolf         error_setg(errp, "The '%s' block driver requires a file name",
1348765003dbSKevin Wolf                    drv->format_name);
134918edf289SKevin Wolf         ret = -EINVAL;
135018edf289SKevin Wolf         goto fail_opts;
135118edf289SKevin Wolf     }
135218edf289SKevin Wolf 
135382dc8b41SKevin Wolf     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
135482dc8b41SKevin Wolf                            drv->format_name);
135562392ebbSKevin Wolf 
135682dc8b41SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1357b64ec4e4SFam Zheng 
1358b64ec4e4SFam Zheng     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
13598f94a6e4SKevin Wolf         error_setg(errp,
13608f94a6e4SKevin Wolf                    !bs->read_only && bdrv_is_whitelisted(drv, true)
13618f94a6e4SKevin Wolf                         ? "Driver '%s' can only be used for read-only devices"
13628f94a6e4SKevin Wolf                         : "Driver '%s' is not whitelisted",
13638f94a6e4SKevin Wolf                    drv->format_name);
136418edf289SKevin Wolf         ret = -ENOTSUP;
136518edf289SKevin Wolf         goto fail_opts;
1366b64ec4e4SFam Zheng     }
136757915332SKevin Wolf 
1368d3faa13eSPaolo Bonzini     /* bdrv_new() and bdrv_close() make it so */
1369d3faa13eSPaolo Bonzini     assert(atomic_read(&bs->copy_on_read) == 0);
1370d3faa13eSPaolo Bonzini 
137182dc8b41SKevin Wolf     if (bs->open_flags & BDRV_O_COPY_ON_READ) {
13720ebd24e0SKevin Wolf         if (!bs->read_only) {
137353fec9d3SStefan Hajnoczi             bdrv_enable_copy_on_read(bs);
13740ebd24e0SKevin Wolf         } else {
13750ebd24e0SKevin Wolf             error_setg(errp, "Can't use copy-on-read on read-only device");
137618edf289SKevin Wolf             ret = -EINVAL;
137718edf289SKevin Wolf             goto fail_opts;
13780ebd24e0SKevin Wolf         }
137953fec9d3SStefan Hajnoczi     }
138053fec9d3SStefan Hajnoczi 
1381818584a4SKevin Wolf     discard = qemu_opt_get(opts, "discard");
1382818584a4SKevin Wolf     if (discard != NULL) {
1383818584a4SKevin Wolf         if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1384818584a4SKevin Wolf             error_setg(errp, "Invalid discard option");
1385818584a4SKevin Wolf             ret = -EINVAL;
1386818584a4SKevin Wolf             goto fail_opts;
1387818584a4SKevin Wolf         }
1388818584a4SKevin Wolf     }
1389818584a4SKevin Wolf 
1390692e01a2SKevin Wolf     detect_zeroes = qemu_opt_get(opts, "detect-zeroes");
1391692e01a2SKevin Wolf     if (detect_zeroes) {
1392692e01a2SKevin Wolf         BlockdevDetectZeroesOptions value =
1393f7abe0ecSMarc-André Lureau             qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
1394692e01a2SKevin Wolf                             detect_zeroes,
1395692e01a2SKevin Wolf                             BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
1396692e01a2SKevin Wolf                             &local_err);
1397692e01a2SKevin Wolf         if (local_err) {
1398692e01a2SKevin Wolf             error_propagate(errp, local_err);
1399692e01a2SKevin Wolf             ret = -EINVAL;
1400692e01a2SKevin Wolf             goto fail_opts;
1401692e01a2SKevin Wolf         }
1402692e01a2SKevin Wolf 
1403692e01a2SKevin Wolf         if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1404692e01a2SKevin Wolf             !(bs->open_flags & BDRV_O_UNMAP))
1405692e01a2SKevin Wolf         {
1406692e01a2SKevin Wolf             error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1407692e01a2SKevin Wolf                              "without setting discard operation to unmap");
1408692e01a2SKevin Wolf             ret = -EINVAL;
1409692e01a2SKevin Wolf             goto fail_opts;
1410692e01a2SKevin Wolf         }
1411692e01a2SKevin Wolf 
1412692e01a2SKevin Wolf         bs->detect_zeroes = value;
1413692e01a2SKevin Wolf     }
1414692e01a2SKevin Wolf 
1415c2ad1b0cSKevin Wolf     if (filename != NULL) {
141657915332SKevin Wolf         pstrcpy(bs->filename, sizeof(bs->filename), filename);
1417c2ad1b0cSKevin Wolf     } else {
1418c2ad1b0cSKevin Wolf         bs->filename[0] = '\0';
1419c2ad1b0cSKevin Wolf     }
142091af7014SMax Reitz     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
142157915332SKevin Wolf 
142266f82ceeSKevin Wolf     /* Open the image, either directly or using a protocol */
142382dc8b41SKevin Wolf     open_flags = bdrv_open_flags(bs, bs->open_flags);
142401a56501SKevin Wolf     node_name = qemu_opt_get(opts, "node-name");
142566f82ceeSKevin Wolf 
142601a56501SKevin Wolf     assert(!drv->bdrv_file_open || file == NULL);
142701a56501SKevin Wolf     ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
142857915332SKevin Wolf     if (ret < 0) {
142901a56501SKevin Wolf         goto fail_opts;
143034b5d2c6SMax Reitz     }
143118edf289SKevin Wolf 
143218edf289SKevin Wolf     qemu_opts_del(opts);
143357915332SKevin Wolf     return 0;
143457915332SKevin Wolf 
143518edf289SKevin Wolf fail_opts:
143618edf289SKevin Wolf     qemu_opts_del(opts);
143757915332SKevin Wolf     return ret;
143857915332SKevin Wolf }
143957915332SKevin Wolf 
14405e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp)
14415e5c4f63SKevin Wolf {
14425e5c4f63SKevin Wolf     QObject *options_obj;
14435e5c4f63SKevin Wolf     QDict *options;
14445e5c4f63SKevin Wolf     int ret;
14455e5c4f63SKevin Wolf 
14465e5c4f63SKevin Wolf     ret = strstart(filename, "json:", &filename);
14475e5c4f63SKevin Wolf     assert(ret);
14485e5c4f63SKevin Wolf 
14495577fff7SMarkus Armbruster     options_obj = qobject_from_json(filename, errp);
14505e5c4f63SKevin Wolf     if (!options_obj) {
14515577fff7SMarkus Armbruster         /* Work around qobject_from_json() lossage TODO fix that */
14525577fff7SMarkus Armbruster         if (errp && !*errp) {
14535e5c4f63SKevin Wolf             error_setg(errp, "Could not parse the JSON options");
14545e5c4f63SKevin Wolf             return NULL;
14555e5c4f63SKevin Wolf         }
14565577fff7SMarkus Armbruster         error_prepend(errp, "Could not parse the JSON options: ");
14575577fff7SMarkus Armbruster         return NULL;
14585577fff7SMarkus Armbruster     }
14595e5c4f63SKevin Wolf 
1460ca6b6e1eSMarkus Armbruster     options = qobject_to_qdict(options_obj);
1461ca6b6e1eSMarkus Armbruster     if (!options) {
14625e5c4f63SKevin Wolf         qobject_decref(options_obj);
14635e5c4f63SKevin Wolf         error_setg(errp, "Invalid JSON object given");
14645e5c4f63SKevin Wolf         return NULL;
14655e5c4f63SKevin Wolf     }
14665e5c4f63SKevin Wolf 
14675e5c4f63SKevin Wolf     qdict_flatten(options);
14685e5c4f63SKevin Wolf 
14695e5c4f63SKevin Wolf     return options;
14705e5c4f63SKevin Wolf }
14715e5c4f63SKevin Wolf 
1472de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename,
1473de3b53f0SKevin Wolf                                 Error **errp)
1474de3b53f0SKevin Wolf {
1475de3b53f0SKevin Wolf     QDict *json_options;
1476de3b53f0SKevin Wolf     Error *local_err = NULL;
1477de3b53f0SKevin Wolf 
1478de3b53f0SKevin Wolf     /* Parse json: pseudo-protocol */
1479de3b53f0SKevin Wolf     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1480de3b53f0SKevin Wolf         return;
1481de3b53f0SKevin Wolf     }
1482de3b53f0SKevin Wolf 
1483de3b53f0SKevin Wolf     json_options = parse_json_filename(*pfilename, &local_err);
1484de3b53f0SKevin Wolf     if (local_err) {
1485de3b53f0SKevin Wolf         error_propagate(errp, local_err);
1486de3b53f0SKevin Wolf         return;
1487de3b53f0SKevin Wolf     }
1488de3b53f0SKevin Wolf 
1489de3b53f0SKevin Wolf     /* Options given in the filename have lower priority than options
1490de3b53f0SKevin Wolf      * specified directly */
1491de3b53f0SKevin Wolf     qdict_join(options, json_options, false);
1492de3b53f0SKevin Wolf     QDECREF(json_options);
1493de3b53f0SKevin Wolf     *pfilename = NULL;
1494de3b53f0SKevin Wolf }
1495de3b53f0SKevin Wolf 
149657915332SKevin Wolf /*
1497f54120ffSKevin Wolf  * Fills in default options for opening images and converts the legacy
1498f54120ffSKevin Wolf  * filename/flags pair to option QDict entries.
149953a29513SMax Reitz  * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
150053a29513SMax Reitz  * block driver has been specified explicitly.
1501f54120ffSKevin Wolf  */
1502de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename,
1503053e1578SMax Reitz                              int *flags, Error **errp)
1504f54120ffSKevin Wolf {
1505f54120ffSKevin Wolf     const char *drvname;
150653a29513SMax Reitz     bool protocol = *flags & BDRV_O_PROTOCOL;
1507f54120ffSKevin Wolf     bool parse_filename = false;
1508053e1578SMax Reitz     BlockDriver *drv = NULL;
1509f54120ffSKevin Wolf     Error *local_err = NULL;
1510f54120ffSKevin Wolf 
1511129c7d1cSMarkus Armbruster     /*
1512129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
1513129c7d1cSMarkus Armbruster      * types would require more care.  When @options come from
1514129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
1515129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
1516129c7d1cSMarkus Armbruster      * QString.
1517129c7d1cSMarkus Armbruster      */
151853a29513SMax Reitz     drvname = qdict_get_try_str(*options, "driver");
1519053e1578SMax Reitz     if (drvname) {
1520053e1578SMax Reitz         drv = bdrv_find_format(drvname);
1521053e1578SMax Reitz         if (!drv) {
1522053e1578SMax Reitz             error_setg(errp, "Unknown driver '%s'", drvname);
1523053e1578SMax Reitz             return -ENOENT;
1524053e1578SMax Reitz         }
152553a29513SMax Reitz         /* If the user has explicitly specified the driver, this choice should
152653a29513SMax Reitz          * override the BDRV_O_PROTOCOL flag */
1527053e1578SMax Reitz         protocol = drv->bdrv_file_open;
152853a29513SMax Reitz     }
152953a29513SMax Reitz 
153053a29513SMax Reitz     if (protocol) {
153153a29513SMax Reitz         *flags |= BDRV_O_PROTOCOL;
153253a29513SMax Reitz     } else {
153353a29513SMax Reitz         *flags &= ~BDRV_O_PROTOCOL;
153453a29513SMax Reitz     }
153553a29513SMax Reitz 
153691a097e7SKevin Wolf     /* Translate cache options from flags into options */
153791a097e7SKevin Wolf     update_options_from_flags(*options, *flags);
153891a097e7SKevin Wolf 
1539f54120ffSKevin Wolf     /* Fetch the file name from the options QDict if necessary */
154017b005f1SKevin Wolf     if (protocol && filename) {
1541f54120ffSKevin Wolf         if (!qdict_haskey(*options, "filename")) {
154246f5ac20SEric Blake             qdict_put_str(*options, "filename", filename);
1543f54120ffSKevin Wolf             parse_filename = true;
1544f54120ffSKevin Wolf         } else {
1545f54120ffSKevin Wolf             error_setg(errp, "Can't specify 'file' and 'filename' options at "
1546f54120ffSKevin Wolf                              "the same time");
1547f54120ffSKevin Wolf             return -EINVAL;
1548f54120ffSKevin Wolf         }
1549f54120ffSKevin Wolf     }
1550f54120ffSKevin Wolf 
1551f54120ffSKevin Wolf     /* Find the right block driver */
1552129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
1553f54120ffSKevin Wolf     filename = qdict_get_try_str(*options, "filename");
1554f54120ffSKevin Wolf 
155517b005f1SKevin Wolf     if (!drvname && protocol) {
1556f54120ffSKevin Wolf         if (filename) {
1557b65a5e12SMax Reitz             drv = bdrv_find_protocol(filename, parse_filename, errp);
1558f54120ffSKevin Wolf             if (!drv) {
1559f54120ffSKevin Wolf                 return -EINVAL;
1560f54120ffSKevin Wolf             }
1561f54120ffSKevin Wolf 
1562f54120ffSKevin Wolf             drvname = drv->format_name;
156346f5ac20SEric Blake             qdict_put_str(*options, "driver", drvname);
1564f54120ffSKevin Wolf         } else {
1565f54120ffSKevin Wolf             error_setg(errp, "Must specify either driver or file");
1566f54120ffSKevin Wolf             return -EINVAL;
1567f54120ffSKevin Wolf         }
156817b005f1SKevin Wolf     }
156917b005f1SKevin Wolf 
157017b005f1SKevin Wolf     assert(drv || !protocol);
1571f54120ffSKevin Wolf 
1572f54120ffSKevin Wolf     /* Driver-specific filename parsing */
157317b005f1SKevin Wolf     if (drv && drv->bdrv_parse_filename && parse_filename) {
1574f54120ffSKevin Wolf         drv->bdrv_parse_filename(filename, *options, &local_err);
1575f54120ffSKevin Wolf         if (local_err) {
1576f54120ffSKevin Wolf             error_propagate(errp, local_err);
1577f54120ffSKevin Wolf             return -EINVAL;
1578f54120ffSKevin Wolf         }
1579f54120ffSKevin Wolf 
1580f54120ffSKevin Wolf         if (!drv->bdrv_needs_filename) {
1581f54120ffSKevin Wolf             qdict_del(*options, "filename");
1582f54120ffSKevin Wolf         }
1583f54120ffSKevin Wolf     }
1584f54120ffSKevin Wolf 
1585f54120ffSKevin Wolf     return 0;
1586f54120ffSKevin Wolf }
1587f54120ffSKevin Wolf 
15883121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
15893121fb45SKevin Wolf                                  uint64_t perm, uint64_t shared,
1590c1cef672SFam Zheng                                  GSList *ignore_children, Error **errp);
1591c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c);
1592c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1593c1cef672SFam Zheng 
1594148eb13cSKevin Wolf typedef struct BlockReopenQueueEntry {
1595148eb13cSKevin Wolf      bool prepared;
1596148eb13cSKevin Wolf      BDRVReopenState state;
1597148eb13cSKevin Wolf      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1598148eb13cSKevin Wolf } BlockReopenQueueEntry;
1599148eb13cSKevin Wolf 
1600148eb13cSKevin Wolf /*
1601148eb13cSKevin Wolf  * Return the flags that @bs will have after the reopens in @q have
1602148eb13cSKevin Wolf  * successfully completed. If @q is NULL (or @bs is not contained in @q),
1603148eb13cSKevin Wolf  * return the current flags.
1604148eb13cSKevin Wolf  */
1605148eb13cSKevin Wolf static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1606148eb13cSKevin Wolf {
1607148eb13cSKevin Wolf     BlockReopenQueueEntry *entry;
1608148eb13cSKevin Wolf 
1609148eb13cSKevin Wolf     if (q != NULL) {
1610148eb13cSKevin Wolf         QSIMPLEQ_FOREACH(entry, q, entry) {
1611148eb13cSKevin Wolf             if (entry->state.bs == bs) {
1612148eb13cSKevin Wolf                 return entry->state.flags;
1613148eb13cSKevin Wolf             }
1614148eb13cSKevin Wolf         }
1615148eb13cSKevin Wolf     }
1616148eb13cSKevin Wolf 
1617148eb13cSKevin Wolf     return bs->open_flags;
1618148eb13cSKevin Wolf }
1619148eb13cSKevin Wolf 
1620148eb13cSKevin Wolf /* Returns whether the image file can be written to after the reopen queue @q
1621148eb13cSKevin Wolf  * has been successfully applied, or right now if @q is NULL. */
1622148eb13cSKevin Wolf static bool bdrv_is_writable(BlockDriverState *bs, BlockReopenQueue *q)
1623148eb13cSKevin Wolf {
1624148eb13cSKevin Wolf     int flags = bdrv_reopen_get_flags(q, bs);
1625148eb13cSKevin Wolf 
1626148eb13cSKevin Wolf     return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1627148eb13cSKevin Wolf }
1628148eb13cSKevin Wolf 
1629ffd1a5a2SFam Zheng static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
1630e0995dc3SKevin Wolf                             BdrvChild *c, const BdrvChildRole *role,
1631e0995dc3SKevin Wolf                             BlockReopenQueue *reopen_queue,
1632ffd1a5a2SFam Zheng                             uint64_t parent_perm, uint64_t parent_shared,
1633ffd1a5a2SFam Zheng                             uint64_t *nperm, uint64_t *nshared)
1634ffd1a5a2SFam Zheng {
1635ffd1a5a2SFam Zheng     if (bs->drv && bs->drv->bdrv_child_perm) {
1636e0995dc3SKevin Wolf         bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
1637ffd1a5a2SFam Zheng                                  parent_perm, parent_shared,
1638ffd1a5a2SFam Zheng                                  nperm, nshared);
1639ffd1a5a2SFam Zheng     }
1640e0995dc3SKevin Wolf     /* TODO Take force_share from reopen_queue */
1641ffd1a5a2SFam Zheng     if (child_bs && child_bs->force_share) {
1642ffd1a5a2SFam Zheng         *nshared = BLK_PERM_ALL;
1643ffd1a5a2SFam Zheng     }
1644ffd1a5a2SFam Zheng }
1645ffd1a5a2SFam Zheng 
164633a610c3SKevin Wolf /*
164733a610c3SKevin Wolf  * Check whether permissions on this node can be changed in a way that
164833a610c3SKevin Wolf  * @cumulative_perms and @cumulative_shared_perms are the new cumulative
164933a610c3SKevin Wolf  * permissions of all its parents. This involves checking whether all necessary
165033a610c3SKevin Wolf  * permission changes to child nodes can be performed.
165133a610c3SKevin Wolf  *
165233a610c3SKevin Wolf  * A call to this function must always be followed by a call to bdrv_set_perm()
165333a610c3SKevin Wolf  * or bdrv_abort_perm_update().
165433a610c3SKevin Wolf  */
16553121fb45SKevin Wolf static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
16563121fb45SKevin Wolf                            uint64_t cumulative_perms,
165746181129SKevin Wolf                            uint64_t cumulative_shared_perms,
165846181129SKevin Wolf                            GSList *ignore_children, Error **errp)
165933a610c3SKevin Wolf {
166033a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
166133a610c3SKevin Wolf     BdrvChild *c;
166233a610c3SKevin Wolf     int ret;
166333a610c3SKevin Wolf 
166433a610c3SKevin Wolf     /* Write permissions never work with read-only images */
166533a610c3SKevin Wolf     if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
1666148eb13cSKevin Wolf         !bdrv_is_writable(bs, q))
166733a610c3SKevin Wolf     {
166833a610c3SKevin Wolf         error_setg(errp, "Block node is read-only");
166933a610c3SKevin Wolf         return -EPERM;
167033a610c3SKevin Wolf     }
167133a610c3SKevin Wolf 
167233a610c3SKevin Wolf     /* Check this node */
167333a610c3SKevin Wolf     if (!drv) {
167433a610c3SKevin Wolf         return 0;
167533a610c3SKevin Wolf     }
167633a610c3SKevin Wolf 
167733a610c3SKevin Wolf     if (drv->bdrv_check_perm) {
167833a610c3SKevin Wolf         return drv->bdrv_check_perm(bs, cumulative_perms,
167933a610c3SKevin Wolf                                     cumulative_shared_perms, errp);
168033a610c3SKevin Wolf     }
168133a610c3SKevin Wolf 
168278e421c9SKevin Wolf     /* Drivers that never have children can omit .bdrv_child_perm() */
168333a610c3SKevin Wolf     if (!drv->bdrv_child_perm) {
168478e421c9SKevin Wolf         assert(QLIST_EMPTY(&bs->children));
168533a610c3SKevin Wolf         return 0;
168633a610c3SKevin Wolf     }
168733a610c3SKevin Wolf 
168833a610c3SKevin Wolf     /* Check all children */
168933a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
169033a610c3SKevin Wolf         uint64_t cur_perm, cur_shared;
16913121fb45SKevin Wolf         bdrv_child_perm(bs, c->bs, c, c->role, q,
169233a610c3SKevin Wolf                         cumulative_perms, cumulative_shared_perms,
169333a610c3SKevin Wolf                         &cur_perm, &cur_shared);
16943121fb45SKevin Wolf         ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
16953121fb45SKevin Wolf                                     ignore_children, errp);
169633a610c3SKevin Wolf         if (ret < 0) {
169733a610c3SKevin Wolf             return ret;
169833a610c3SKevin Wolf         }
169933a610c3SKevin Wolf     }
170033a610c3SKevin Wolf 
170133a610c3SKevin Wolf     return 0;
170233a610c3SKevin Wolf }
170333a610c3SKevin Wolf 
170433a610c3SKevin Wolf /*
170533a610c3SKevin Wolf  * Notifies drivers that after a previous bdrv_check_perm() call, the
170633a610c3SKevin Wolf  * permission update is not performed and any preparations made for it (e.g.
170733a610c3SKevin Wolf  * taken file locks) need to be undone.
170833a610c3SKevin Wolf  *
170933a610c3SKevin Wolf  * This function recursively notifies all child nodes.
171033a610c3SKevin Wolf  */
171133a610c3SKevin Wolf static void bdrv_abort_perm_update(BlockDriverState *bs)
171233a610c3SKevin Wolf {
171333a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
171433a610c3SKevin Wolf     BdrvChild *c;
171533a610c3SKevin Wolf 
171633a610c3SKevin Wolf     if (!drv) {
171733a610c3SKevin Wolf         return;
171833a610c3SKevin Wolf     }
171933a610c3SKevin Wolf 
172033a610c3SKevin Wolf     if (drv->bdrv_abort_perm_update) {
172133a610c3SKevin Wolf         drv->bdrv_abort_perm_update(bs);
172233a610c3SKevin Wolf     }
172333a610c3SKevin Wolf 
172433a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
172533a610c3SKevin Wolf         bdrv_child_abort_perm_update(c);
172633a610c3SKevin Wolf     }
172733a610c3SKevin Wolf }
172833a610c3SKevin Wolf 
172933a610c3SKevin Wolf static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
173033a610c3SKevin Wolf                           uint64_t cumulative_shared_perms)
173133a610c3SKevin Wolf {
173233a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
173333a610c3SKevin Wolf     BdrvChild *c;
173433a610c3SKevin Wolf 
173533a610c3SKevin Wolf     if (!drv) {
173633a610c3SKevin Wolf         return;
173733a610c3SKevin Wolf     }
173833a610c3SKevin Wolf 
173933a610c3SKevin Wolf     /* Update this node */
174033a610c3SKevin Wolf     if (drv->bdrv_set_perm) {
174133a610c3SKevin Wolf         drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
174233a610c3SKevin Wolf     }
174333a610c3SKevin Wolf 
174478e421c9SKevin Wolf     /* Drivers that never have children can omit .bdrv_child_perm() */
174533a610c3SKevin Wolf     if (!drv->bdrv_child_perm) {
174678e421c9SKevin Wolf         assert(QLIST_EMPTY(&bs->children));
174733a610c3SKevin Wolf         return;
174833a610c3SKevin Wolf     }
174933a610c3SKevin Wolf 
175033a610c3SKevin Wolf     /* Update all children */
175133a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
175233a610c3SKevin Wolf         uint64_t cur_perm, cur_shared;
1753e0995dc3SKevin Wolf         bdrv_child_perm(bs, c->bs, c, c->role, NULL,
175433a610c3SKevin Wolf                         cumulative_perms, cumulative_shared_perms,
175533a610c3SKevin Wolf                         &cur_perm, &cur_shared);
175633a610c3SKevin Wolf         bdrv_child_set_perm(c, cur_perm, cur_shared);
175733a610c3SKevin Wolf     }
175833a610c3SKevin Wolf }
175933a610c3SKevin Wolf 
176033a610c3SKevin Wolf static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
176133a610c3SKevin Wolf                                      uint64_t *shared_perm)
176233a610c3SKevin Wolf {
176333a610c3SKevin Wolf     BdrvChild *c;
176433a610c3SKevin Wolf     uint64_t cumulative_perms = 0;
176533a610c3SKevin Wolf     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
176633a610c3SKevin Wolf 
176733a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
176833a610c3SKevin Wolf         cumulative_perms |= c->perm;
176933a610c3SKevin Wolf         cumulative_shared_perms &= c->shared_perm;
177033a610c3SKevin Wolf     }
177133a610c3SKevin Wolf 
177233a610c3SKevin Wolf     *perm = cumulative_perms;
177333a610c3SKevin Wolf     *shared_perm = cumulative_shared_perms;
177433a610c3SKevin Wolf }
177533a610c3SKevin Wolf 
1776d083319fSKevin Wolf static char *bdrv_child_user_desc(BdrvChild *c)
1777d083319fSKevin Wolf {
1778d083319fSKevin Wolf     if (c->role->get_parent_desc) {
1779d083319fSKevin Wolf         return c->role->get_parent_desc(c);
1780d083319fSKevin Wolf     }
1781d083319fSKevin Wolf 
1782d083319fSKevin Wolf     return g_strdup("another user");
1783d083319fSKevin Wolf }
1784d083319fSKevin Wolf 
17855176196cSFam Zheng char *bdrv_perm_names(uint64_t perm)
1786d083319fSKevin Wolf {
1787d083319fSKevin Wolf     struct perm_name {
1788d083319fSKevin Wolf         uint64_t perm;
1789d083319fSKevin Wolf         const char *name;
1790d083319fSKevin Wolf     } permissions[] = {
1791d083319fSKevin Wolf         { BLK_PERM_CONSISTENT_READ, "consistent read" },
1792d083319fSKevin Wolf         { BLK_PERM_WRITE,           "write" },
1793d083319fSKevin Wolf         { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1794d083319fSKevin Wolf         { BLK_PERM_RESIZE,          "resize" },
1795d083319fSKevin Wolf         { BLK_PERM_GRAPH_MOD,       "change children" },
1796d083319fSKevin Wolf         { 0, NULL }
1797d083319fSKevin Wolf     };
1798d083319fSKevin Wolf 
1799d083319fSKevin Wolf     char *result = g_strdup("");
1800d083319fSKevin Wolf     struct perm_name *p;
1801d083319fSKevin Wolf 
1802d083319fSKevin Wolf     for (p = permissions; p->name; p++) {
1803d083319fSKevin Wolf         if (perm & p->perm) {
1804d083319fSKevin Wolf             char *old = result;
1805d083319fSKevin Wolf             result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1806d083319fSKevin Wolf             g_free(old);
1807d083319fSKevin Wolf         }
1808d083319fSKevin Wolf     }
1809d083319fSKevin Wolf 
1810d083319fSKevin Wolf     return result;
1811d083319fSKevin Wolf }
1812d083319fSKevin Wolf 
181333a610c3SKevin Wolf /*
181433a610c3SKevin Wolf  * Checks whether a new reference to @bs can be added if the new user requires
181546181129SKevin Wolf  * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
181646181129SKevin Wolf  * set, the BdrvChild objects in this list are ignored in the calculations;
181746181129SKevin Wolf  * this allows checking permission updates for an existing reference.
181833a610c3SKevin Wolf  *
181933a610c3SKevin Wolf  * Needs to be followed by a call to either bdrv_set_perm() or
182033a610c3SKevin Wolf  * bdrv_abort_perm_update(). */
18213121fb45SKevin Wolf static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
18223121fb45SKevin Wolf                                   uint64_t new_used_perm,
1823d5e6f437SKevin Wolf                                   uint64_t new_shared_perm,
182446181129SKevin Wolf                                   GSList *ignore_children, Error **errp)
1825d5e6f437SKevin Wolf {
1826d5e6f437SKevin Wolf     BdrvChild *c;
182733a610c3SKevin Wolf     uint64_t cumulative_perms = new_used_perm;
182833a610c3SKevin Wolf     uint64_t cumulative_shared_perms = new_shared_perm;
1829d5e6f437SKevin Wolf 
1830d5e6f437SKevin Wolf     /* There is no reason why anyone couldn't tolerate write_unchanged */
1831d5e6f437SKevin Wolf     assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1832d5e6f437SKevin Wolf 
1833d5e6f437SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
183446181129SKevin Wolf         if (g_slist_find(ignore_children, c)) {
1835d5e6f437SKevin Wolf             continue;
1836d5e6f437SKevin Wolf         }
1837d5e6f437SKevin Wolf 
1838d083319fSKevin Wolf         if ((new_used_perm & c->shared_perm) != new_used_perm) {
1839d083319fSKevin Wolf             char *user = bdrv_child_user_desc(c);
1840d083319fSKevin Wolf             char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1841d083319fSKevin Wolf             error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1842d083319fSKevin Wolf                              "allow '%s' on %s",
1843d083319fSKevin Wolf                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1844d083319fSKevin Wolf             g_free(user);
1845d083319fSKevin Wolf             g_free(perm_names);
1846d083319fSKevin Wolf             return -EPERM;
1847d5e6f437SKevin Wolf         }
1848d083319fSKevin Wolf 
1849d083319fSKevin Wolf         if ((c->perm & new_shared_perm) != c->perm) {
1850d083319fSKevin Wolf             char *user = bdrv_child_user_desc(c);
1851d083319fSKevin Wolf             char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1852d083319fSKevin Wolf             error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1853d083319fSKevin Wolf                              "'%s' on %s",
1854d083319fSKevin Wolf                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1855d083319fSKevin Wolf             g_free(user);
1856d083319fSKevin Wolf             g_free(perm_names);
1857d5e6f437SKevin Wolf             return -EPERM;
1858d5e6f437SKevin Wolf         }
185933a610c3SKevin Wolf 
186033a610c3SKevin Wolf         cumulative_perms |= c->perm;
186133a610c3SKevin Wolf         cumulative_shared_perms &= c->shared_perm;
1862d5e6f437SKevin Wolf     }
1863d5e6f437SKevin Wolf 
18643121fb45SKevin Wolf     return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
186546181129SKevin Wolf                            ignore_children, errp);
186633a610c3SKevin Wolf }
186733a610c3SKevin Wolf 
186833a610c3SKevin Wolf /* Needs to be followed by a call to either bdrv_child_set_perm() or
186933a610c3SKevin Wolf  * bdrv_child_abort_perm_update(). */
18703121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
18713121fb45SKevin Wolf                                  uint64_t perm, uint64_t shared,
187246181129SKevin Wolf                                  GSList *ignore_children, Error **errp)
187333a610c3SKevin Wolf {
187446181129SKevin Wolf     int ret;
187546181129SKevin Wolf 
187646181129SKevin Wolf     ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
18773121fb45SKevin Wolf     ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
187846181129SKevin Wolf     g_slist_free(ignore_children);
187946181129SKevin Wolf 
188046181129SKevin Wolf     return ret;
188133a610c3SKevin Wolf }
188233a610c3SKevin Wolf 
1883c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
188433a610c3SKevin Wolf {
188533a610c3SKevin Wolf     uint64_t cumulative_perms, cumulative_shared_perms;
188633a610c3SKevin Wolf 
188733a610c3SKevin Wolf     c->perm = perm;
188833a610c3SKevin Wolf     c->shared_perm = shared;
188933a610c3SKevin Wolf 
189033a610c3SKevin Wolf     bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
189133a610c3SKevin Wolf                              &cumulative_shared_perms);
189233a610c3SKevin Wolf     bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
189333a610c3SKevin Wolf }
189433a610c3SKevin Wolf 
1895c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c)
189633a610c3SKevin Wolf {
189733a610c3SKevin Wolf     bdrv_abort_perm_update(c->bs);
189833a610c3SKevin Wolf }
189933a610c3SKevin Wolf 
190033a610c3SKevin Wolf int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
190133a610c3SKevin Wolf                             Error **errp)
190233a610c3SKevin Wolf {
190333a610c3SKevin Wolf     int ret;
190433a610c3SKevin Wolf 
19053121fb45SKevin Wolf     ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
190633a610c3SKevin Wolf     if (ret < 0) {
190733a610c3SKevin Wolf         bdrv_child_abort_perm_update(c);
190833a610c3SKevin Wolf         return ret;
190933a610c3SKevin Wolf     }
191033a610c3SKevin Wolf 
191133a610c3SKevin Wolf     bdrv_child_set_perm(c, perm, shared);
191233a610c3SKevin Wolf 
1913d5e6f437SKevin Wolf     return 0;
1914d5e6f437SKevin Wolf }
1915d5e6f437SKevin Wolf 
19166a1b9ee1SKevin Wolf #define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \
19176a1b9ee1SKevin Wolf                                  | BLK_PERM_WRITE \
19186a1b9ee1SKevin Wolf                                  | BLK_PERM_WRITE_UNCHANGED \
19196a1b9ee1SKevin Wolf                                  | BLK_PERM_RESIZE)
19206a1b9ee1SKevin Wolf #define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH)
19216a1b9ee1SKevin Wolf 
19226a1b9ee1SKevin Wolf void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
19236a1b9ee1SKevin Wolf                                const BdrvChildRole *role,
1924e0995dc3SKevin Wolf                                BlockReopenQueue *reopen_queue,
19256a1b9ee1SKevin Wolf                                uint64_t perm, uint64_t shared,
19266a1b9ee1SKevin Wolf                                uint64_t *nperm, uint64_t *nshared)
19276a1b9ee1SKevin Wolf {
19286a1b9ee1SKevin Wolf     if (c == NULL) {
19296a1b9ee1SKevin Wolf         *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
19306a1b9ee1SKevin Wolf         *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
19316a1b9ee1SKevin Wolf         return;
19326a1b9ee1SKevin Wolf     }
19336a1b9ee1SKevin Wolf 
19346a1b9ee1SKevin Wolf     *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
19356a1b9ee1SKevin Wolf              (c->perm & DEFAULT_PERM_UNCHANGED);
19366a1b9ee1SKevin Wolf     *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
19376a1b9ee1SKevin Wolf                (c->shared_perm & DEFAULT_PERM_UNCHANGED);
19386a1b9ee1SKevin Wolf }
19396a1b9ee1SKevin Wolf 
19406b1a044aSKevin Wolf void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
19416b1a044aSKevin Wolf                                const BdrvChildRole *role,
1942e0995dc3SKevin Wolf                                BlockReopenQueue *reopen_queue,
19436b1a044aSKevin Wolf                                uint64_t perm, uint64_t shared,
19446b1a044aSKevin Wolf                                uint64_t *nperm, uint64_t *nshared)
19456b1a044aSKevin Wolf {
19466b1a044aSKevin Wolf     bool backing = (role == &child_backing);
19476b1a044aSKevin Wolf     assert(role == &child_backing || role == &child_file);
19486b1a044aSKevin Wolf 
19496b1a044aSKevin Wolf     if (!backing) {
19505fbfabd3SKevin Wolf         int flags = bdrv_reopen_get_flags(reopen_queue, bs);
19515fbfabd3SKevin Wolf 
19526b1a044aSKevin Wolf         /* Apart from the modifications below, the same permissions are
19536b1a044aSKevin Wolf          * forwarded and left alone as for filters */
1954e0995dc3SKevin Wolf         bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
1955e0995dc3SKevin Wolf                                   &perm, &shared);
19566b1a044aSKevin Wolf 
19576b1a044aSKevin Wolf         /* Format drivers may touch metadata even if the guest doesn't write */
1958148eb13cSKevin Wolf         if (bdrv_is_writable(bs, reopen_queue)) {
19596b1a044aSKevin Wolf             perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
19606b1a044aSKevin Wolf         }
19616b1a044aSKevin Wolf 
19626b1a044aSKevin Wolf         /* bs->file always needs to be consistent because of the metadata. We
19636b1a044aSKevin Wolf          * can never allow other users to resize or write to it. */
19645fbfabd3SKevin Wolf         if (!(flags & BDRV_O_NO_IO)) {
19656b1a044aSKevin Wolf             perm |= BLK_PERM_CONSISTENT_READ;
19665fbfabd3SKevin Wolf         }
19676b1a044aSKevin Wolf         shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
19686b1a044aSKevin Wolf     } else {
19696b1a044aSKevin Wolf         /* We want consistent read from backing files if the parent needs it.
19706b1a044aSKevin Wolf          * No other operations are performed on backing files. */
19716b1a044aSKevin Wolf         perm &= BLK_PERM_CONSISTENT_READ;
19726b1a044aSKevin Wolf 
19736b1a044aSKevin Wolf         /* If the parent can deal with changing data, we're okay with a
19746b1a044aSKevin Wolf          * writable and resizable backing file. */
19756b1a044aSKevin Wolf         /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
19766b1a044aSKevin Wolf         if (shared & BLK_PERM_WRITE) {
19776b1a044aSKevin Wolf             shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
19786b1a044aSKevin Wolf         } else {
19796b1a044aSKevin Wolf             shared = 0;
19806b1a044aSKevin Wolf         }
19816b1a044aSKevin Wolf 
19826b1a044aSKevin Wolf         shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
19836b1a044aSKevin Wolf                   BLK_PERM_WRITE_UNCHANGED;
19846b1a044aSKevin Wolf     }
19856b1a044aSKevin Wolf 
19869c5e6594SKevin Wolf     if (bs->open_flags & BDRV_O_INACTIVE) {
19879c5e6594SKevin Wolf         shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
19889c5e6594SKevin Wolf     }
19899c5e6594SKevin Wolf 
19906b1a044aSKevin Wolf     *nperm = perm;
19916b1a044aSKevin Wolf     *nshared = shared;
19926b1a044aSKevin Wolf }
19936b1a044aSKevin Wolf 
19948ee03995SKevin Wolf static void bdrv_replace_child_noperm(BdrvChild *child,
19958ee03995SKevin Wolf                                       BlockDriverState *new_bs)
1996e9740bc6SKevin Wolf {
1997e9740bc6SKevin Wolf     BlockDriverState *old_bs = child->bs;
19980152bf40SKevin Wolf     int i;
1999e9740bc6SKevin Wolf 
2000bb2614e9SFam Zheng     if (old_bs && new_bs) {
2001bb2614e9SFam Zheng         assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2002bb2614e9SFam Zheng     }
2003e9740bc6SKevin Wolf     if (old_bs) {
2004d736f119SKevin Wolf         /* Detach first so that the recursive drain sections coming from @child
2005d736f119SKevin Wolf          * are already gone and we only end the drain sections that came from
2006d736f119SKevin Wolf          * elsewhere. */
2007d736f119SKevin Wolf         if (child->role->detach) {
2008d736f119SKevin Wolf             child->role->detach(child);
2009d736f119SKevin Wolf         }
201036fe1331SKevin Wolf         if (old_bs->quiesce_counter && child->role->drained_end) {
20110152bf40SKevin Wolf             for (i = 0; i < old_bs->quiesce_counter; i++) {
201236fe1331SKevin Wolf                 child->role->drained_end(child);
2013e9740bc6SKevin Wolf             }
20140152bf40SKevin Wolf         }
201536fe1331SKevin Wolf         QLIST_REMOVE(child, next_parent);
2016e9740bc6SKevin Wolf     }
2017e9740bc6SKevin Wolf 
2018e9740bc6SKevin Wolf     child->bs = new_bs;
201936fe1331SKevin Wolf 
202036fe1331SKevin Wolf     if (new_bs) {
202136fe1331SKevin Wolf         QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
202236fe1331SKevin Wolf         if (new_bs->quiesce_counter && child->role->drained_begin) {
20230152bf40SKevin Wolf             for (i = 0; i < new_bs->quiesce_counter; i++) {
202436fe1331SKevin Wolf                 child->role->drained_begin(child);
202536fe1331SKevin Wolf             }
20260152bf40SKevin Wolf         }
202733a610c3SKevin Wolf 
2028d736f119SKevin Wolf         /* Attach only after starting new drained sections, so that recursive
2029d736f119SKevin Wolf          * drain sections coming from @child don't get an extra .drained_begin
2030d736f119SKevin Wolf          * callback. */
2031db95dbbaSKevin Wolf         if (child->role->attach) {
2032db95dbbaSKevin Wolf             child->role->attach(child);
2033db95dbbaSKevin Wolf         }
203436fe1331SKevin Wolf     }
2035e9740bc6SKevin Wolf }
2036e9740bc6SKevin Wolf 
2037466787fbSKevin Wolf /*
2038466787fbSKevin Wolf  * Updates @child to change its reference to point to @new_bs, including
2039466787fbSKevin Wolf  * checking and applying the necessary permisson updates both to the old node
2040466787fbSKevin Wolf  * and to @new_bs.
2041466787fbSKevin Wolf  *
2042466787fbSKevin Wolf  * NULL is passed as @new_bs for removing the reference before freeing @child.
2043466787fbSKevin Wolf  *
2044466787fbSKevin Wolf  * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2045466787fbSKevin Wolf  * function uses bdrv_set_perm() to update the permissions according to the new
2046466787fbSKevin Wolf  * reference that @new_bs gets.
2047466787fbSKevin Wolf  */
2048466787fbSKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
20498ee03995SKevin Wolf {
20508ee03995SKevin Wolf     BlockDriverState *old_bs = child->bs;
20518ee03995SKevin Wolf     uint64_t perm, shared_perm;
20528ee03995SKevin Wolf 
20538aecf1d1SKevin Wolf     bdrv_replace_child_noperm(child, new_bs);
20548aecf1d1SKevin Wolf 
20558ee03995SKevin Wolf     if (old_bs) {
20568ee03995SKevin Wolf         /* Update permissions for old node. This is guaranteed to succeed
20578ee03995SKevin Wolf          * because we're just taking a parent away, so we're loosening
20588ee03995SKevin Wolf          * restrictions. */
20598ee03995SKevin Wolf         bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
20603121fb45SKevin Wolf         bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
20618ee03995SKevin Wolf         bdrv_set_perm(old_bs, perm, shared_perm);
20628ee03995SKevin Wolf     }
20638ee03995SKevin Wolf 
20648ee03995SKevin Wolf     if (new_bs) {
2065f54120ffSKevin Wolf         bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2066f54120ffSKevin Wolf         bdrv_set_perm(new_bs, perm, shared_perm);
2067f54120ffSKevin Wolf     }
2068f54120ffSKevin Wolf }
2069f54120ffSKevin Wolf 
2070f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2071260fecf1SKevin Wolf                                   const char *child_name,
207236fe1331SKevin Wolf                                   const BdrvChildRole *child_role,
2073d5e6f437SKevin Wolf                                   uint64_t perm, uint64_t shared_perm,
2074d5e6f437SKevin Wolf                                   void *opaque, Error **errp)
2075df581792SKevin Wolf {
2076d5e6f437SKevin Wolf     BdrvChild *child;
2077d5e6f437SKevin Wolf     int ret;
2078d5e6f437SKevin Wolf 
20793121fb45SKevin Wolf     ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
2080d5e6f437SKevin Wolf     if (ret < 0) {
208133a610c3SKevin Wolf         bdrv_abort_perm_update(child_bs);
2082d5e6f437SKevin Wolf         return NULL;
2083d5e6f437SKevin Wolf     }
2084d5e6f437SKevin Wolf 
2085d5e6f437SKevin Wolf     child = g_new(BdrvChild, 1);
2086df581792SKevin Wolf     *child = (BdrvChild) {
2087e9740bc6SKevin Wolf         .bs             = NULL,
2088260fecf1SKevin Wolf         .name           = g_strdup(child_name),
2089df581792SKevin Wolf         .role           = child_role,
2090d5e6f437SKevin Wolf         .perm           = perm,
2091d5e6f437SKevin Wolf         .shared_perm    = shared_perm,
209236fe1331SKevin Wolf         .opaque         = opaque,
2093df581792SKevin Wolf     };
2094df581792SKevin Wolf 
209533a610c3SKevin Wolf     /* This performs the matching bdrv_set_perm() for the above check. */
2096466787fbSKevin Wolf     bdrv_replace_child(child, child_bs);
2097b4b059f6SKevin Wolf 
2098b4b059f6SKevin Wolf     return child;
2099df581792SKevin Wolf }
2100df581792SKevin Wolf 
210198292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2102f21d96d0SKevin Wolf                              BlockDriverState *child_bs,
2103f21d96d0SKevin Wolf                              const char *child_name,
21048b2ff529SKevin Wolf                              const BdrvChildRole *child_role,
21058b2ff529SKevin Wolf                              Error **errp)
2106f21d96d0SKevin Wolf {
2107d5e6f437SKevin Wolf     BdrvChild *child;
2108f68c598bSKevin Wolf     uint64_t perm, shared_perm;
2109d5e6f437SKevin Wolf 
2110f68c598bSKevin Wolf     bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2111f68c598bSKevin Wolf 
2112f68c598bSKevin Wolf     assert(parent_bs->drv);
2113bb2614e9SFam Zheng     assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
2114e0995dc3SKevin Wolf     bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2115f68c598bSKevin Wolf                     perm, shared_perm, &perm, &shared_perm);
2116f68c598bSKevin Wolf 
2117d5e6f437SKevin Wolf     child = bdrv_root_attach_child(child_bs, child_name, child_role,
2118f68c598bSKevin Wolf                                    perm, shared_perm, parent_bs, errp);
2119d5e6f437SKevin Wolf     if (child == NULL) {
2120d5e6f437SKevin Wolf         return NULL;
2121d5e6f437SKevin Wolf     }
2122d5e6f437SKevin Wolf 
2123f21d96d0SKevin Wolf     QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2124f21d96d0SKevin Wolf     return child;
2125f21d96d0SKevin Wolf }
2126f21d96d0SKevin Wolf 
21273f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child)
212833a60407SKevin Wolf {
2129f21d96d0SKevin Wolf     if (child->next.le_prev) {
213033a60407SKevin Wolf         QLIST_REMOVE(child, next);
2131f21d96d0SKevin Wolf         child->next.le_prev = NULL;
2132f21d96d0SKevin Wolf     }
2133e9740bc6SKevin Wolf 
2134466787fbSKevin Wolf     bdrv_replace_child(child, NULL);
2135e9740bc6SKevin Wolf 
2136260fecf1SKevin Wolf     g_free(child->name);
213733a60407SKevin Wolf     g_free(child);
213833a60407SKevin Wolf }
213933a60407SKevin Wolf 
2140f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child)
214133a60407SKevin Wolf {
2142779020cbSKevin Wolf     BlockDriverState *child_bs;
2143779020cbSKevin Wolf 
2144f21d96d0SKevin Wolf     child_bs = child->bs;
2145f21d96d0SKevin Wolf     bdrv_detach_child(child);
2146f21d96d0SKevin Wolf     bdrv_unref(child_bs);
2147f21d96d0SKevin Wolf }
2148f21d96d0SKevin Wolf 
2149f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2150f21d96d0SKevin Wolf {
2151779020cbSKevin Wolf     if (child == NULL) {
2152779020cbSKevin Wolf         return;
2153779020cbSKevin Wolf     }
215433a60407SKevin Wolf 
215533a60407SKevin Wolf     if (child->bs->inherits_from == parent) {
21564e4bf5c4SKevin Wolf         BdrvChild *c;
21574e4bf5c4SKevin Wolf 
21584e4bf5c4SKevin Wolf         /* Remove inherits_from only when the last reference between parent and
21594e4bf5c4SKevin Wolf          * child->bs goes away. */
21604e4bf5c4SKevin Wolf         QLIST_FOREACH(c, &parent->children, next) {
21614e4bf5c4SKevin Wolf             if (c != child && c->bs == child->bs) {
21624e4bf5c4SKevin Wolf                 break;
21634e4bf5c4SKevin Wolf             }
21644e4bf5c4SKevin Wolf         }
21654e4bf5c4SKevin Wolf         if (c == NULL) {
216633a60407SKevin Wolf             child->bs->inherits_from = NULL;
216733a60407SKevin Wolf         }
21684e4bf5c4SKevin Wolf     }
216933a60407SKevin Wolf 
2170f21d96d0SKevin Wolf     bdrv_root_unref_child(child);
217133a60407SKevin Wolf }
217233a60407SKevin Wolf 
21735c8cab48SKevin Wolf 
21745c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
21755c8cab48SKevin Wolf {
21765c8cab48SKevin Wolf     BdrvChild *c;
21775c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
21785c8cab48SKevin Wolf         if (c->role->change_media) {
21795c8cab48SKevin Wolf             c->role->change_media(c, load);
21805c8cab48SKevin Wolf         }
21815c8cab48SKevin Wolf     }
21825c8cab48SKevin Wolf }
21835c8cab48SKevin Wolf 
21845c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs)
21855c8cab48SKevin Wolf {
21865c8cab48SKevin Wolf     BdrvChild *c;
21875c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
21885c8cab48SKevin Wolf         if (c->role->resize) {
21895c8cab48SKevin Wolf             c->role->resize(c);
21905c8cab48SKevin Wolf         }
21915c8cab48SKevin Wolf     }
21925c8cab48SKevin Wolf }
21935c8cab48SKevin Wolf 
21945db15a57SKevin Wolf /*
21955db15a57SKevin Wolf  * Sets the backing file link of a BDS. A new reference is created; callers
21965db15a57SKevin Wolf  * which don't need their own reference any more must call bdrv_unref().
21975db15a57SKevin Wolf  */
219812fa4af6SKevin Wolf void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
219912fa4af6SKevin Wolf                          Error **errp)
22008d24cce1SFam Zheng {
22015db15a57SKevin Wolf     if (backing_hd) {
22025db15a57SKevin Wolf         bdrv_ref(backing_hd);
22035db15a57SKevin Wolf     }
22048d24cce1SFam Zheng 
2205760e0063SKevin Wolf     if (bs->backing) {
22065db15a57SKevin Wolf         bdrv_unref_child(bs, bs->backing);
2207826b6ca0SFam Zheng     }
2208826b6ca0SFam Zheng 
22098d24cce1SFam Zheng     if (!backing_hd) {
2210760e0063SKevin Wolf         bs->backing = NULL;
22118d24cce1SFam Zheng         goto out;
22128d24cce1SFam Zheng     }
221312fa4af6SKevin Wolf 
22148b2ff529SKevin Wolf     bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
221512fa4af6SKevin Wolf                                     errp);
221612fa4af6SKevin Wolf     if (!bs->backing) {
221712fa4af6SKevin Wolf         bdrv_unref(backing_hd);
221812fa4af6SKevin Wolf     }
2219826b6ca0SFam Zheng 
22209e7e940cSKevin Wolf     bdrv_refresh_filename(bs);
22219e7e940cSKevin Wolf 
22228d24cce1SFam Zheng out:
22233baca891SKevin Wolf     bdrv_refresh_limits(bs, NULL);
22248d24cce1SFam Zheng }
22258d24cce1SFam Zheng 
222631ca6d07SKevin Wolf /*
222731ca6d07SKevin Wolf  * Opens the backing file for a BlockDriverState if not yet open
222831ca6d07SKevin Wolf  *
2229d9b7b057SKevin Wolf  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2230d9b7b057SKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2231d9b7b057SKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
2232d9b7b057SKevin Wolf  * BlockdevRef.
2233d9b7b057SKevin Wolf  *
2234d9b7b057SKevin Wolf  * TODO Can this be unified with bdrv_open_image()?
223531ca6d07SKevin Wolf  */
2236d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2237d9b7b057SKevin Wolf                            const char *bdref_key, Error **errp)
22389156df12SPaolo Bonzini {
22391ba4b6a5SBenoît Canet     char *backing_filename = g_malloc0(PATH_MAX);
2240d9b7b057SKevin Wolf     char *bdref_key_dot;
2241d9b7b057SKevin Wolf     const char *reference = NULL;
2242317fc44eSKevin Wolf     int ret = 0;
22438d24cce1SFam Zheng     BlockDriverState *backing_hd;
2244d9b7b057SKevin Wolf     QDict *options;
2245d9b7b057SKevin Wolf     QDict *tmp_parent_options = NULL;
224634b5d2c6SMax Reitz     Error *local_err = NULL;
22479156df12SPaolo Bonzini 
2248760e0063SKevin Wolf     if (bs->backing != NULL) {
22491ba4b6a5SBenoît Canet         goto free_exit;
22509156df12SPaolo Bonzini     }
22519156df12SPaolo Bonzini 
225231ca6d07SKevin Wolf     /* NULL means an empty set of options */
2253d9b7b057SKevin Wolf     if (parent_options == NULL) {
2254d9b7b057SKevin Wolf         tmp_parent_options = qdict_new();
2255d9b7b057SKevin Wolf         parent_options = tmp_parent_options;
225631ca6d07SKevin Wolf     }
225731ca6d07SKevin Wolf 
22589156df12SPaolo Bonzini     bs->open_flags &= ~BDRV_O_NO_BACKING;
2259d9b7b057SKevin Wolf 
2260d9b7b057SKevin Wolf     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2261d9b7b057SKevin Wolf     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2262d9b7b057SKevin Wolf     g_free(bdref_key_dot);
2263d9b7b057SKevin Wolf 
2264129c7d1cSMarkus Armbruster     /*
2265129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
2266129c7d1cSMarkus Armbruster      * types would require more care.  When @parent_options come from
2267129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
2268129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
2269129c7d1cSMarkus Armbruster      * QString.
2270129c7d1cSMarkus Armbruster      */
2271d9b7b057SKevin Wolf     reference = qdict_get_try_str(parent_options, bdref_key);
2272d9b7b057SKevin Wolf     if (reference || qdict_haskey(options, "file.filename")) {
22731cb6f506SKevin Wolf         backing_filename[0] = '\0';
22741cb6f506SKevin Wolf     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
227531ca6d07SKevin Wolf         QDECREF(options);
22761ba4b6a5SBenoît Canet         goto free_exit;
2277dbecebddSFam Zheng     } else {
22789f07429eSMax Reitz         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
22799f07429eSMax Reitz                                        &local_err);
22809f07429eSMax Reitz         if (local_err) {
22819f07429eSMax Reitz             ret = -EINVAL;
22829f07429eSMax Reitz             error_propagate(errp, local_err);
22839f07429eSMax Reitz             QDECREF(options);
22849f07429eSMax Reitz             goto free_exit;
22859f07429eSMax Reitz         }
22869156df12SPaolo Bonzini     }
22879156df12SPaolo Bonzini 
22888ee79e70SKevin Wolf     if (!bs->drv || !bs->drv->supports_backing) {
22898ee79e70SKevin Wolf         ret = -EINVAL;
22908ee79e70SKevin Wolf         error_setg(errp, "Driver doesn't support backing files");
22918ee79e70SKevin Wolf         QDECREF(options);
22928ee79e70SKevin Wolf         goto free_exit;
22938ee79e70SKevin Wolf     }
22948ee79e70SKevin Wolf 
22956bff597bSPeter Krempa     if (!reference &&
22966bff597bSPeter Krempa         bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
229746f5ac20SEric Blake         qdict_put_str(options, "driver", bs->backing_format);
22989156df12SPaolo Bonzini     }
22999156df12SPaolo Bonzini 
23005b363937SMax Reitz     backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2301d9b7b057SKevin Wolf                                    reference, options, 0, bs, &child_backing,
2302e43bfd9cSMarkus Armbruster                                    errp);
23035b363937SMax Reitz     if (!backing_hd) {
23049156df12SPaolo Bonzini         bs->open_flags |= BDRV_O_NO_BACKING;
2305e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not open backing file: ");
23065b363937SMax Reitz         ret = -EINVAL;
23071ba4b6a5SBenoît Canet         goto free_exit;
23089156df12SPaolo Bonzini     }
23095ce6bfe2Ssochin.jiang     bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
2310df581792SKevin Wolf 
23115db15a57SKevin Wolf     /* Hook up the backing file link; drop our reference, bs owns the
23125db15a57SKevin Wolf      * backing_hd reference now */
231312fa4af6SKevin Wolf     bdrv_set_backing_hd(bs, backing_hd, &local_err);
23145db15a57SKevin Wolf     bdrv_unref(backing_hd);
231512fa4af6SKevin Wolf     if (local_err) {
23168cd1a3e4SFam Zheng         error_propagate(errp, local_err);
231712fa4af6SKevin Wolf         ret = -EINVAL;
231812fa4af6SKevin Wolf         goto free_exit;
231912fa4af6SKevin Wolf     }
2320d80ac658SPeter Feiner 
2321d9b7b057SKevin Wolf     qdict_del(parent_options, bdref_key);
2322d9b7b057SKevin Wolf 
23231ba4b6a5SBenoît Canet free_exit:
23241ba4b6a5SBenoît Canet     g_free(backing_filename);
2325d9b7b057SKevin Wolf     QDECREF(tmp_parent_options);
23261ba4b6a5SBenoît Canet     return ret;
23279156df12SPaolo Bonzini }
23289156df12SPaolo Bonzini 
23292d6b86afSKevin Wolf static BlockDriverState *
23302d6b86afSKevin Wolf bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
23312d6b86afSKevin Wolf                    BlockDriverState *parent, const BdrvChildRole *child_role,
2332f7d9fd8cSMax Reitz                    bool allow_none, Error **errp)
2333da557aacSMax Reitz {
23342d6b86afSKevin Wolf     BlockDriverState *bs = NULL;
2335da557aacSMax Reitz     QDict *image_options;
2336da557aacSMax Reitz     char *bdref_key_dot;
2337da557aacSMax Reitz     const char *reference;
2338da557aacSMax Reitz 
2339df581792SKevin Wolf     assert(child_role != NULL);
2340f67503e5SMax Reitz 
2341da557aacSMax Reitz     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2342da557aacSMax Reitz     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2343da557aacSMax Reitz     g_free(bdref_key_dot);
2344da557aacSMax Reitz 
2345129c7d1cSMarkus Armbruster     /*
2346129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
2347129c7d1cSMarkus Armbruster      * types would require more care.  When @options come from
2348129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
2349129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
2350129c7d1cSMarkus Armbruster      * QString.
2351129c7d1cSMarkus Armbruster      */
2352da557aacSMax Reitz     reference = qdict_get_try_str(options, bdref_key);
2353da557aacSMax Reitz     if (!filename && !reference && !qdict_size(image_options)) {
2354b4b059f6SKevin Wolf         if (!allow_none) {
2355da557aacSMax Reitz             error_setg(errp, "A block device must be specified for \"%s\"",
2356da557aacSMax Reitz                        bdref_key);
2357da557aacSMax Reitz         }
2358b20e61e0SMarkus Armbruster         QDECREF(image_options);
2359da557aacSMax Reitz         goto done;
2360da557aacSMax Reitz     }
2361da557aacSMax Reitz 
23625b363937SMax Reitz     bs = bdrv_open_inherit(filename, reference, image_options, 0,
2363ce343771SMax Reitz                            parent, child_role, errp);
23645b363937SMax Reitz     if (!bs) {
2365df581792SKevin Wolf         goto done;
2366df581792SKevin Wolf     }
2367df581792SKevin Wolf 
2368da557aacSMax Reitz done:
2369da557aacSMax Reitz     qdict_del(options, bdref_key);
23702d6b86afSKevin Wolf     return bs;
23712d6b86afSKevin Wolf }
23722d6b86afSKevin Wolf 
23732d6b86afSKevin Wolf /*
23742d6b86afSKevin Wolf  * Opens a disk image whose options are given as BlockdevRef in another block
23752d6b86afSKevin Wolf  * device's options.
23762d6b86afSKevin Wolf  *
23772d6b86afSKevin Wolf  * If allow_none is true, no image will be opened if filename is false and no
23782d6b86afSKevin Wolf  * BlockdevRef is given. NULL will be returned, but errp remains unset.
23792d6b86afSKevin Wolf  *
23802d6b86afSKevin Wolf  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
23812d6b86afSKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
23822d6b86afSKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
23832d6b86afSKevin Wolf  * BlockdevRef.
23842d6b86afSKevin Wolf  *
23852d6b86afSKevin Wolf  * The BlockdevRef will be removed from the options QDict.
23862d6b86afSKevin Wolf  */
23872d6b86afSKevin Wolf BdrvChild *bdrv_open_child(const char *filename,
23882d6b86afSKevin Wolf                            QDict *options, const char *bdref_key,
23892d6b86afSKevin Wolf                            BlockDriverState *parent,
23902d6b86afSKevin Wolf                            const BdrvChildRole *child_role,
23912d6b86afSKevin Wolf                            bool allow_none, Error **errp)
23922d6b86afSKevin Wolf {
23938b2ff529SKevin Wolf     BdrvChild *c;
23942d6b86afSKevin Wolf     BlockDriverState *bs;
23952d6b86afSKevin Wolf 
23962d6b86afSKevin Wolf     bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
23972d6b86afSKevin Wolf                             allow_none, errp);
23982d6b86afSKevin Wolf     if (bs == NULL) {
23992d6b86afSKevin Wolf         return NULL;
24002d6b86afSKevin Wolf     }
24012d6b86afSKevin Wolf 
24028b2ff529SKevin Wolf     c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
24038b2ff529SKevin Wolf     if (!c) {
24048b2ff529SKevin Wolf         bdrv_unref(bs);
24058b2ff529SKevin Wolf         return NULL;
24068b2ff529SKevin Wolf     }
24078b2ff529SKevin Wolf 
24088b2ff529SKevin Wolf     return c;
2409b4b059f6SKevin Wolf }
2410b4b059f6SKevin Wolf 
2411e1d74bc6SKevin Wolf /* TODO Future callers may need to specify parent/child_role in order for
2412e1d74bc6SKevin Wolf  * option inheritance to work. Existing callers use it for the root node. */
2413e1d74bc6SKevin Wolf BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2414e1d74bc6SKevin Wolf {
2415e1d74bc6SKevin Wolf     BlockDriverState *bs = NULL;
2416e1d74bc6SKevin Wolf     Error *local_err = NULL;
2417e1d74bc6SKevin Wolf     QObject *obj = NULL;
2418e1d74bc6SKevin Wolf     QDict *qdict = NULL;
2419e1d74bc6SKevin Wolf     const char *reference = NULL;
2420e1d74bc6SKevin Wolf     Visitor *v = NULL;
2421e1d74bc6SKevin Wolf 
2422e1d74bc6SKevin Wolf     if (ref->type == QTYPE_QSTRING) {
2423e1d74bc6SKevin Wolf         reference = ref->u.reference;
2424e1d74bc6SKevin Wolf     } else {
2425e1d74bc6SKevin Wolf         BlockdevOptions *options = &ref->u.definition;
2426e1d74bc6SKevin Wolf         assert(ref->type == QTYPE_QDICT);
2427e1d74bc6SKevin Wolf 
2428e1d74bc6SKevin Wolf         v = qobject_output_visitor_new(&obj);
2429e1d74bc6SKevin Wolf         visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2430e1d74bc6SKevin Wolf         if (local_err) {
2431e1d74bc6SKevin Wolf             error_propagate(errp, local_err);
2432e1d74bc6SKevin Wolf             goto fail;
2433e1d74bc6SKevin Wolf         }
2434e1d74bc6SKevin Wolf         visit_complete(v, &obj);
2435e1d74bc6SKevin Wolf 
2436e1d74bc6SKevin Wolf         qdict = qobject_to_qdict(obj);
2437e1d74bc6SKevin Wolf         qdict_flatten(qdict);
2438e1d74bc6SKevin Wolf 
2439e1d74bc6SKevin Wolf         /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
2440e1d74bc6SKevin Wolf          * compatibility with other callers) rather than what we want as the
2441e1d74bc6SKevin Wolf          * real defaults. Apply the defaults here instead. */
2442e1d74bc6SKevin Wolf         qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
2443e1d74bc6SKevin Wolf         qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
2444e1d74bc6SKevin Wolf         qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
2445e1d74bc6SKevin Wolf     }
2446e1d74bc6SKevin Wolf 
2447e1d74bc6SKevin Wolf     bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
2448e1d74bc6SKevin Wolf     obj = NULL;
2449e1d74bc6SKevin Wolf 
2450e1d74bc6SKevin Wolf fail:
2451e1d74bc6SKevin Wolf     qobject_decref(obj);
2452e1d74bc6SKevin Wolf     visit_free(v);
2453e1d74bc6SKevin Wolf     return bs;
2454e1d74bc6SKevin Wolf }
2455e1d74bc6SKevin Wolf 
245666836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
245766836189SMax Reitz                                                    int flags,
245866836189SMax Reitz                                                    QDict *snapshot_options,
245966836189SMax Reitz                                                    Error **errp)
2460b998875dSKevin Wolf {
2461b998875dSKevin Wolf     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
24621ba4b6a5SBenoît Canet     char *tmp_filename = g_malloc0(PATH_MAX + 1);
2463b998875dSKevin Wolf     int64_t total_size;
246483d0521aSChunyan Liu     QemuOpts *opts = NULL;
2465ff6ed714SEric Blake     BlockDriverState *bs_snapshot = NULL;
2466b2c2832cSKevin Wolf     Error *local_err = NULL;
2467b998875dSKevin Wolf     int ret;
2468b998875dSKevin Wolf 
2469b998875dSKevin Wolf     /* if snapshot, we create a temporary backing file and open it
2470b998875dSKevin Wolf        instead of opening 'filename' directly */
2471b998875dSKevin Wolf 
2472b998875dSKevin Wolf     /* Get the required size from the image */
2473f187743aSKevin Wolf     total_size = bdrv_getlength(bs);
2474f187743aSKevin Wolf     if (total_size < 0) {
2475f187743aSKevin Wolf         error_setg_errno(errp, -total_size, "Could not get image size");
24761ba4b6a5SBenoît Canet         goto out;
2477f187743aSKevin Wolf     }
2478b998875dSKevin Wolf 
2479b998875dSKevin Wolf     /* Create the temporary image */
24801ba4b6a5SBenoît Canet     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
2481b998875dSKevin Wolf     if (ret < 0) {
2482b998875dSKevin Wolf         error_setg_errno(errp, -ret, "Could not get temporary filename");
24831ba4b6a5SBenoît Canet         goto out;
2484b998875dSKevin Wolf     }
2485b998875dSKevin Wolf 
2486ef810437SMax Reitz     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
2487c282e1fdSChunyan Liu                             &error_abort);
248839101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
2489e43bfd9cSMarkus Armbruster     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
249083d0521aSChunyan Liu     qemu_opts_del(opts);
2491b998875dSKevin Wolf     if (ret < 0) {
2492e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not create temporary overlay '%s': ",
2493e43bfd9cSMarkus Armbruster                       tmp_filename);
24941ba4b6a5SBenoît Canet         goto out;
2495b998875dSKevin Wolf     }
2496b998875dSKevin Wolf 
249773176beeSKevin Wolf     /* Prepare options QDict for the temporary file */
249846f5ac20SEric Blake     qdict_put_str(snapshot_options, "file.driver", "file");
249946f5ac20SEric Blake     qdict_put_str(snapshot_options, "file.filename", tmp_filename);
250046f5ac20SEric Blake     qdict_put_str(snapshot_options, "driver", "qcow2");
2501b998875dSKevin Wolf 
25025b363937SMax Reitz     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
250373176beeSKevin Wolf     snapshot_options = NULL;
25045b363937SMax Reitz     if (!bs_snapshot) {
25051ba4b6a5SBenoît Canet         goto out;
2506b998875dSKevin Wolf     }
2507b998875dSKevin Wolf 
2508ff6ed714SEric Blake     /* bdrv_append() consumes a strong reference to bs_snapshot
2509ff6ed714SEric Blake      * (i.e. it will call bdrv_unref() on it) even on error, so in
2510ff6ed714SEric Blake      * order to be able to return one, we have to increase
2511ff6ed714SEric Blake      * bs_snapshot's refcount here */
251266836189SMax Reitz     bdrv_ref(bs_snapshot);
2513b2c2832cSKevin Wolf     bdrv_append(bs_snapshot, bs, &local_err);
2514b2c2832cSKevin Wolf     if (local_err) {
2515b2c2832cSKevin Wolf         error_propagate(errp, local_err);
2516ff6ed714SEric Blake         bs_snapshot = NULL;
2517b2c2832cSKevin Wolf         goto out;
2518b2c2832cSKevin Wolf     }
25191ba4b6a5SBenoît Canet 
25201ba4b6a5SBenoît Canet out:
252173176beeSKevin Wolf     QDECREF(snapshot_options);
25221ba4b6a5SBenoît Canet     g_free(tmp_filename);
2523ff6ed714SEric Blake     return bs_snapshot;
2524b998875dSKevin Wolf }
2525b998875dSKevin Wolf 
2526da557aacSMax Reitz /*
2527b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
2528de9c0cecSKevin Wolf  *
2529de9c0cecSKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
2530de9c0cecSKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
2531de9c0cecSKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
2532de9c0cecSKevin Wolf  * dictionary, it needs to use QINCREF() before calling bdrv_open.
2533f67503e5SMax Reitz  *
2534f67503e5SMax Reitz  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2535f67503e5SMax Reitz  * If it is not NULL, the referenced BDS will be reused.
2536ddf5636dSMax Reitz  *
2537ddf5636dSMax Reitz  * The reference parameter may be used to specify an existing block device which
2538ddf5636dSMax Reitz  * should be opened. If specified, neither options nor a filename may be given,
2539ddf5636dSMax Reitz  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
2540b6ce07aaSKevin Wolf  */
25415b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
25425b363937SMax Reitz                                            const char *reference,
25435b363937SMax Reitz                                            QDict *options, int flags,
2544f3930ed0SKevin Wolf                                            BlockDriverState *parent,
25455b363937SMax Reitz                                            const BdrvChildRole *child_role,
25465b363937SMax Reitz                                            Error **errp)
2547ea2384d3Sbellard {
2548b6ce07aaSKevin Wolf     int ret;
25495696c6e3SKevin Wolf     BlockBackend *file = NULL;
25509a4f4c31SKevin Wolf     BlockDriverState *bs;
2551ce343771SMax Reitz     BlockDriver *drv = NULL;
255274fe54f2SKevin Wolf     const char *drvname;
25533e8c2e57SAlberto Garcia     const char *backing;
255434b5d2c6SMax Reitz     Error *local_err = NULL;
255573176beeSKevin Wolf     QDict *snapshot_options = NULL;
2556b1e6fc08SKevin Wolf     int snapshot_flags = 0;
255733e3963eSbellard 
2558f3930ed0SKevin Wolf     assert(!child_role || !flags);
2559f3930ed0SKevin Wolf     assert(!child_role == !parent);
2560f67503e5SMax Reitz 
2561ddf5636dSMax Reitz     if (reference) {
2562ddf5636dSMax Reitz         bool options_non_empty = options ? qdict_size(options) : false;
2563ddf5636dSMax Reitz         QDECREF(options);
2564ddf5636dSMax Reitz 
2565ddf5636dSMax Reitz         if (filename || options_non_empty) {
2566ddf5636dSMax Reitz             error_setg(errp, "Cannot reference an existing block device with "
2567ddf5636dSMax Reitz                        "additional options or a new filename");
25685b363937SMax Reitz             return NULL;
2569ddf5636dSMax Reitz         }
2570ddf5636dSMax Reitz 
2571ddf5636dSMax Reitz         bs = bdrv_lookup_bs(reference, reference, errp);
2572ddf5636dSMax Reitz         if (!bs) {
25735b363937SMax Reitz             return NULL;
2574ddf5636dSMax Reitz         }
257576b22320SKevin Wolf 
2576ddf5636dSMax Reitz         bdrv_ref(bs);
25775b363937SMax Reitz         return bs;
2578ddf5636dSMax Reitz     }
2579ddf5636dSMax Reitz 
2580e4e9986bSMarkus Armbruster     bs = bdrv_new();
2581f67503e5SMax Reitz 
2582de9c0cecSKevin Wolf     /* NULL means an empty set of options */
2583de9c0cecSKevin Wolf     if (options == NULL) {
2584de9c0cecSKevin Wolf         options = qdict_new();
2585de9c0cecSKevin Wolf     }
2586de9c0cecSKevin Wolf 
2587145f598eSKevin Wolf     /* json: syntax counts as explicit options, as if in the QDict */
2588de3b53f0SKevin Wolf     parse_json_protocol(options, &filename, &local_err);
2589de3b53f0SKevin Wolf     if (local_err) {
2590de3b53f0SKevin Wolf         goto fail;
2591de3b53f0SKevin Wolf     }
2592de3b53f0SKevin Wolf 
2593145f598eSKevin Wolf     bs->explicit_options = qdict_clone_shallow(options);
2594145f598eSKevin Wolf 
2595f3930ed0SKevin Wolf     if (child_role) {
2596bddcec37SKevin Wolf         bs->inherits_from = parent;
25978e2160e2SKevin Wolf         child_role->inherit_options(&flags, options,
25988e2160e2SKevin Wolf                                     parent->open_flags, parent->options);
2599f3930ed0SKevin Wolf     }
2600f3930ed0SKevin Wolf 
2601de3b53f0SKevin Wolf     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
2602462f5bcfSKevin Wolf     if (local_err) {
2603462f5bcfSKevin Wolf         goto fail;
2604462f5bcfSKevin Wolf     }
2605462f5bcfSKevin Wolf 
2606129c7d1cSMarkus Armbruster     /*
2607129c7d1cSMarkus Armbruster      * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2608129c7d1cSMarkus Armbruster      * Caution: getting a boolean member of @options requires care.
2609129c7d1cSMarkus Armbruster      * When @options come from -blockdev or blockdev_add, members are
2610129c7d1cSMarkus Armbruster      * typed according to the QAPI schema, but when they come from
2611129c7d1cSMarkus Armbruster      * -drive, they're all QString.
2612129c7d1cSMarkus Armbruster      */
2613f87a0e29SAlberto Garcia     if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2614f87a0e29SAlberto Garcia         !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2615f87a0e29SAlberto Garcia         flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2616f87a0e29SAlberto Garcia     } else {
2617f87a0e29SAlberto Garcia         flags &= ~BDRV_O_RDWR;
261814499ea5SAlberto Garcia     }
261914499ea5SAlberto Garcia 
262014499ea5SAlberto Garcia     if (flags & BDRV_O_SNAPSHOT) {
262114499ea5SAlberto Garcia         snapshot_options = qdict_new();
262214499ea5SAlberto Garcia         bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
262314499ea5SAlberto Garcia                                    flags, options);
2624f87a0e29SAlberto Garcia         /* Let bdrv_backing_options() override "read-only" */
2625f87a0e29SAlberto Garcia         qdict_del(options, BDRV_OPT_READ_ONLY);
262614499ea5SAlberto Garcia         bdrv_backing_options(&flags, options, flags, options);
262714499ea5SAlberto Garcia     }
262814499ea5SAlberto Garcia 
262962392ebbSKevin Wolf     bs->open_flags = flags;
263062392ebbSKevin Wolf     bs->options = options;
263162392ebbSKevin Wolf     options = qdict_clone_shallow(options);
263262392ebbSKevin Wolf 
263376c591b0SKevin Wolf     /* Find the right image format driver */
2634129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
263576c591b0SKevin Wolf     drvname = qdict_get_try_str(options, "driver");
263676c591b0SKevin Wolf     if (drvname) {
263776c591b0SKevin Wolf         drv = bdrv_find_format(drvname);
263876c591b0SKevin Wolf         if (!drv) {
263976c591b0SKevin Wolf             error_setg(errp, "Unknown driver: '%s'", drvname);
264076c591b0SKevin Wolf             goto fail;
264176c591b0SKevin Wolf         }
264276c591b0SKevin Wolf     }
264376c591b0SKevin Wolf 
264476c591b0SKevin Wolf     assert(drvname || !(flags & BDRV_O_PROTOCOL));
264576c591b0SKevin Wolf 
2646129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
26473e8c2e57SAlberto Garcia     backing = qdict_get_try_str(options, "backing");
26483e8c2e57SAlberto Garcia     if (backing && *backing == '\0') {
26493e8c2e57SAlberto Garcia         flags |= BDRV_O_NO_BACKING;
26503e8c2e57SAlberto Garcia         qdict_del(options, "backing");
26513e8c2e57SAlberto Garcia     }
26523e8c2e57SAlberto Garcia 
26535696c6e3SKevin Wolf     /* Open image file without format layer. This BlockBackend is only used for
26544e4bf5c4SKevin Wolf      * probing, the block drivers will do their own bdrv_open_child() for the
26554e4bf5c4SKevin Wolf      * same BDS, which is why we put the node name back into options. */
2656f4788adcSKevin Wolf     if ((flags & BDRV_O_PROTOCOL) == 0) {
26575696c6e3SKevin Wolf         BlockDriverState *file_bs;
26585696c6e3SKevin Wolf 
26595696c6e3SKevin Wolf         file_bs = bdrv_open_child_bs(filename, options, "file", bs,
26601fdd6933SKevin Wolf                                      &child_file, true, &local_err);
26611fdd6933SKevin Wolf         if (local_err) {
26628bfea15dSKevin Wolf             goto fail;
2663f500a6d3SKevin Wolf         }
26645696c6e3SKevin Wolf         if (file_bs != NULL) {
2665dacaa162SKevin Wolf             /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
2666dacaa162SKevin Wolf              * looking at the header to guess the image format. This works even
2667dacaa162SKevin Wolf              * in cases where a guest would not see a consistent state. */
2668dacaa162SKevin Wolf             file = blk_new(0, BLK_PERM_ALL);
2669d7086422SKevin Wolf             blk_insert_bs(file, file_bs, &local_err);
26705696c6e3SKevin Wolf             bdrv_unref(file_bs);
2671d7086422SKevin Wolf             if (local_err) {
2672d7086422SKevin Wolf                 goto fail;
2673d7086422SKevin Wolf             }
26745696c6e3SKevin Wolf 
267546f5ac20SEric Blake             qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
26764e4bf5c4SKevin Wolf         }
2677f4788adcSKevin Wolf     }
2678f500a6d3SKevin Wolf 
267976c591b0SKevin Wolf     /* Image format probing */
268038f3ef57SKevin Wolf     bs->probed = !drv;
268176c591b0SKevin Wolf     if (!drv && file) {
2682cf2ab8fcSKevin Wolf         ret = find_image_format(file, filename, &drv, &local_err);
268317b005f1SKevin Wolf         if (ret < 0) {
268417b005f1SKevin Wolf             goto fail;
268517b005f1SKevin Wolf         }
268662392ebbSKevin Wolf         /*
268762392ebbSKevin Wolf          * This option update would logically belong in bdrv_fill_options(),
268862392ebbSKevin Wolf          * but we first need to open bs->file for the probing to work, while
268962392ebbSKevin Wolf          * opening bs->file already requires the (mostly) final set of options
269062392ebbSKevin Wolf          * so that cache mode etc. can be inherited.
269162392ebbSKevin Wolf          *
269262392ebbSKevin Wolf          * Adding the driver later is somewhat ugly, but it's not an option
269362392ebbSKevin Wolf          * that would ever be inherited, so it's correct. We just need to make
269462392ebbSKevin Wolf          * sure to update both bs->options (which has the full effective
269562392ebbSKevin Wolf          * options for bs) and options (which has file.* already removed).
269662392ebbSKevin Wolf          */
269746f5ac20SEric Blake         qdict_put_str(bs->options, "driver", drv->format_name);
269846f5ac20SEric Blake         qdict_put_str(options, "driver", drv->format_name);
269976c591b0SKevin Wolf     } else if (!drv) {
27002a05cbe4SMax Reitz         error_setg(errp, "Must specify either driver or file");
27018bfea15dSKevin Wolf         goto fail;
27022a05cbe4SMax Reitz     }
2703f500a6d3SKevin Wolf 
270453a29513SMax Reitz     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
270553a29513SMax Reitz     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
270653a29513SMax Reitz     /* file must be NULL if a protocol BDS is about to be created
270753a29513SMax Reitz      * (the inverse results in an error message from bdrv_open_common()) */
270853a29513SMax Reitz     assert(!(flags & BDRV_O_PROTOCOL) || !file);
270953a29513SMax Reitz 
2710b6ce07aaSKevin Wolf     /* Open the image */
271182dc8b41SKevin Wolf     ret = bdrv_open_common(bs, file, options, &local_err);
2712b6ce07aaSKevin Wolf     if (ret < 0) {
27138bfea15dSKevin Wolf         goto fail;
27146987307cSChristoph Hellwig     }
27156987307cSChristoph Hellwig 
27164e4bf5c4SKevin Wolf     if (file) {
27175696c6e3SKevin Wolf         blk_unref(file);
2718f500a6d3SKevin Wolf         file = NULL;
2719f500a6d3SKevin Wolf     }
2720f500a6d3SKevin Wolf 
2721b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
27229156df12SPaolo Bonzini     if ((flags & BDRV_O_NO_BACKING) == 0) {
2723d9b7b057SKevin Wolf         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
2724b6ce07aaSKevin Wolf         if (ret < 0) {
2725b6ad491aSKevin Wolf             goto close_and_fail;
2726b6ce07aaSKevin Wolf         }
2727b6ce07aaSKevin Wolf     }
2728b6ce07aaSKevin Wolf 
272991af7014SMax Reitz     bdrv_refresh_filename(bs);
273091af7014SMax Reitz 
2731b6ad491aSKevin Wolf     /* Check if any unknown options were used */
27327ad2757fSPaolo Bonzini     if (qdict_size(options) != 0) {
2733b6ad491aSKevin Wolf         const QDictEntry *entry = qdict_first(options);
27345acd9d81SMax Reitz         if (flags & BDRV_O_PROTOCOL) {
27355acd9d81SMax Reitz             error_setg(errp, "Block protocol '%s' doesn't support the option "
27365acd9d81SMax Reitz                        "'%s'", drv->format_name, entry->key);
27375acd9d81SMax Reitz         } else {
2738d0e46a55SMax Reitz             error_setg(errp,
2739d0e46a55SMax Reitz                        "Block format '%s' does not support the option '%s'",
2740d0e46a55SMax Reitz                        drv->format_name, entry->key);
27415acd9d81SMax Reitz         }
2742b6ad491aSKevin Wolf 
2743b6ad491aSKevin Wolf         goto close_and_fail;
2744b6ad491aSKevin Wolf     }
2745b6ad491aSKevin Wolf 
27465c8cab48SKevin Wolf     bdrv_parent_cb_change_media(bs, true);
2747b6ce07aaSKevin Wolf 
2748c3adb58fSMarkus Armbruster     QDECREF(options);
2749dd62f1caSKevin Wolf 
2750dd62f1caSKevin Wolf     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2751dd62f1caSKevin Wolf      * temporary snapshot afterwards. */
2752dd62f1caSKevin Wolf     if (snapshot_flags) {
275366836189SMax Reitz         BlockDriverState *snapshot_bs;
275466836189SMax Reitz         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
275566836189SMax Reitz                                                 snapshot_options, &local_err);
275673176beeSKevin Wolf         snapshot_options = NULL;
2757dd62f1caSKevin Wolf         if (local_err) {
2758dd62f1caSKevin Wolf             goto close_and_fail;
2759dd62f1caSKevin Wolf         }
276066836189SMax Reitz         /* We are not going to return bs but the overlay on top of it
276166836189SMax Reitz          * (snapshot_bs); thus, we have to drop the strong reference to bs
27625b363937SMax Reitz          * (which we obtained by calling bdrv_new()). bs will not be deleted,
27635b363937SMax Reitz          * though, because the overlay still has a reference to it. */
276466836189SMax Reitz         bdrv_unref(bs);
276566836189SMax Reitz         bs = snapshot_bs;
276666836189SMax Reitz     }
276766836189SMax Reitz 
27685b363937SMax Reitz     return bs;
2769b6ce07aaSKevin Wolf 
27708bfea15dSKevin Wolf fail:
27715696c6e3SKevin Wolf     blk_unref(file);
277273176beeSKevin Wolf     QDECREF(snapshot_options);
2773145f598eSKevin Wolf     QDECREF(bs->explicit_options);
2774de9c0cecSKevin Wolf     QDECREF(bs->options);
2775b6ad491aSKevin Wolf     QDECREF(options);
2776de9c0cecSKevin Wolf     bs->options = NULL;
2777998cbd6aSManos Pitsidianakis     bs->explicit_options = NULL;
2778f67503e5SMax Reitz     bdrv_unref(bs);
277934b5d2c6SMax Reitz     error_propagate(errp, local_err);
27805b363937SMax Reitz     return NULL;
2781de9c0cecSKevin Wolf 
2782b6ad491aSKevin Wolf close_and_fail:
2783f67503e5SMax Reitz     bdrv_unref(bs);
278473176beeSKevin Wolf     QDECREF(snapshot_options);
2785b6ad491aSKevin Wolf     QDECREF(options);
278634b5d2c6SMax Reitz     error_propagate(errp, local_err);
27875b363937SMax Reitz     return NULL;
2788b6ce07aaSKevin Wolf }
2789b6ce07aaSKevin Wolf 
27905b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference,
27915b363937SMax Reitz                             QDict *options, int flags, Error **errp)
2792f3930ed0SKevin Wolf {
27935b363937SMax Reitz     return bdrv_open_inherit(filename, reference, options, flags, NULL,
2794ce343771SMax Reitz                              NULL, errp);
2795f3930ed0SKevin Wolf }
2796f3930ed0SKevin Wolf 
2797e971aa12SJeff Cody /*
2798e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
2799e971aa12SJeff Cody  * reopen of multiple devices.
2800e971aa12SJeff Cody  *
2801e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2802e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
2803e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
2804e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
2805e971aa12SJeff Cody  * atomic 'set'.
2806e971aa12SJeff Cody  *
2807e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
2808e971aa12SJeff Cody  *
28094d2cb092SKevin Wolf  * options contains the changed options for the associated bs
28104d2cb092SKevin Wolf  * (the BlockReopenQueue takes ownership)
28114d2cb092SKevin Wolf  *
2812e971aa12SJeff Cody  * flags contains the open flags for the associated bs
2813e971aa12SJeff Cody  *
2814e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
2815e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
2816e971aa12SJeff Cody  *
28171a63a907SKevin Wolf  * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
2818e971aa12SJeff Cody  */
281928518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
28204d2cb092SKevin Wolf                                                  BlockDriverState *bs,
282128518102SKevin Wolf                                                  QDict *options,
282228518102SKevin Wolf                                                  int flags,
282328518102SKevin Wolf                                                  const BdrvChildRole *role,
282428518102SKevin Wolf                                                  QDict *parent_options,
282528518102SKevin Wolf                                                  int parent_flags)
2826e971aa12SJeff Cody {
2827e971aa12SJeff Cody     assert(bs != NULL);
2828e971aa12SJeff Cody 
2829e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
283067251a31SKevin Wolf     BdrvChild *child;
2831145f598eSKevin Wolf     QDict *old_options, *explicit_options;
283267251a31SKevin Wolf 
28331a63a907SKevin Wolf     /* Make sure that the caller remembered to use a drained section. This is
28341a63a907SKevin Wolf      * important to avoid graph changes between the recursive queuing here and
28351a63a907SKevin Wolf      * bdrv_reopen_multiple(). */
28361a63a907SKevin Wolf     assert(bs->quiesce_counter > 0);
28371a63a907SKevin Wolf 
2838e971aa12SJeff Cody     if (bs_queue == NULL) {
2839e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
2840e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
2841e971aa12SJeff Cody     }
2842e971aa12SJeff Cody 
28434d2cb092SKevin Wolf     if (!options) {
28444d2cb092SKevin Wolf         options = qdict_new();
28454d2cb092SKevin Wolf     }
28464d2cb092SKevin Wolf 
28475b7ba05fSAlberto Garcia     /* Check if this BlockDriverState is already in the queue */
28485b7ba05fSAlberto Garcia     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
28495b7ba05fSAlberto Garcia         if (bs == bs_entry->state.bs) {
28505b7ba05fSAlberto Garcia             break;
28515b7ba05fSAlberto Garcia         }
28525b7ba05fSAlberto Garcia     }
28535b7ba05fSAlberto Garcia 
285428518102SKevin Wolf     /*
285528518102SKevin Wolf      * Precedence of options:
285628518102SKevin Wolf      * 1. Explicitly passed in options (highest)
285791a097e7SKevin Wolf      * 2. Set in flags (only for top level)
2858145f598eSKevin Wolf      * 3. Retained from explicitly set options of bs
28598e2160e2SKevin Wolf      * 4. Inherited from parent node
286028518102SKevin Wolf      * 5. Retained from effective options of bs
286128518102SKevin Wolf      */
286228518102SKevin Wolf 
286391a097e7SKevin Wolf     if (!parent_options) {
286491a097e7SKevin Wolf         /*
286591a097e7SKevin Wolf          * Any setting represented by flags is always updated. If the
286691a097e7SKevin Wolf          * corresponding QDict option is set, it takes precedence. Otherwise
286791a097e7SKevin Wolf          * the flag is translated into a QDict option. The old setting of bs is
286891a097e7SKevin Wolf          * not considered.
286991a097e7SKevin Wolf          */
287091a097e7SKevin Wolf         update_options_from_flags(options, flags);
287191a097e7SKevin Wolf     }
287291a097e7SKevin Wolf 
2873145f598eSKevin Wolf     /* Old explicitly set values (don't overwrite by inherited value) */
28745b7ba05fSAlberto Garcia     if (bs_entry) {
28755b7ba05fSAlberto Garcia         old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
28765b7ba05fSAlberto Garcia     } else {
2877145f598eSKevin Wolf         old_options = qdict_clone_shallow(bs->explicit_options);
28785b7ba05fSAlberto Garcia     }
2879145f598eSKevin Wolf     bdrv_join_options(bs, options, old_options);
2880145f598eSKevin Wolf     QDECREF(old_options);
2881145f598eSKevin Wolf 
2882145f598eSKevin Wolf     explicit_options = qdict_clone_shallow(options);
2883145f598eSKevin Wolf 
288428518102SKevin Wolf     /* Inherit from parent node */
288528518102SKevin Wolf     if (parent_options) {
2886*1a529736SFam Zheng         QemuOpts *opts;
2887*1a529736SFam Zheng         QDict *options_copy;
288828518102SKevin Wolf         assert(!flags);
28898e2160e2SKevin Wolf         role->inherit_options(&flags, options, parent_flags, parent_options);
2890*1a529736SFam Zheng         options_copy = qdict_clone_shallow(options);
2891*1a529736SFam Zheng         opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2892*1a529736SFam Zheng         qemu_opts_absorb_qdict(opts, options_copy, NULL);
2893*1a529736SFam Zheng         update_flags_from_options(&flags, opts);
2894*1a529736SFam Zheng         qemu_opts_del(opts);
2895*1a529736SFam Zheng         QDECREF(options_copy);
289628518102SKevin Wolf     }
289728518102SKevin Wolf 
289828518102SKevin Wolf     /* Old values are used for options that aren't set yet */
28994d2cb092SKevin Wolf     old_options = qdict_clone_shallow(bs->options);
2900cddff5baSKevin Wolf     bdrv_join_options(bs, options, old_options);
29014d2cb092SKevin Wolf     QDECREF(old_options);
29024d2cb092SKevin Wolf 
2903fd452021SKevin Wolf     /* bdrv_open_inherit() sets and clears some additional flags internally */
2904f1f25a2eSKevin Wolf     flags &= ~BDRV_O_PROTOCOL;
2905fd452021SKevin Wolf     if (flags & BDRV_O_RDWR) {
2906fd452021SKevin Wolf         flags |= BDRV_O_ALLOW_RDWR;
2907fd452021SKevin Wolf     }
2908f1f25a2eSKevin Wolf 
29091857c97bSKevin Wolf     if (!bs_entry) {
29101857c97bSKevin Wolf         bs_entry = g_new0(BlockReopenQueueEntry, 1);
29111857c97bSKevin Wolf         QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
29121857c97bSKevin Wolf     } else {
29131857c97bSKevin Wolf         QDECREF(bs_entry->state.options);
29141857c97bSKevin Wolf         QDECREF(bs_entry->state.explicit_options);
29151857c97bSKevin Wolf     }
29161857c97bSKevin Wolf 
29171857c97bSKevin Wolf     bs_entry->state.bs = bs;
29181857c97bSKevin Wolf     bs_entry->state.options = options;
29191857c97bSKevin Wolf     bs_entry->state.explicit_options = explicit_options;
29201857c97bSKevin Wolf     bs_entry->state.flags = flags;
29211857c97bSKevin Wolf 
292230450259SKevin Wolf     /* This needs to be overwritten in bdrv_reopen_prepare() */
292330450259SKevin Wolf     bs_entry->state.perm = UINT64_MAX;
292430450259SKevin Wolf     bs_entry->state.shared_perm = 0;
292530450259SKevin Wolf 
292667251a31SKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
29274c9dfe5dSKevin Wolf         QDict *new_child_options;
29284c9dfe5dSKevin Wolf         char *child_key_dot;
292967251a31SKevin Wolf 
29304c9dfe5dSKevin Wolf         /* reopen can only change the options of block devices that were
29314c9dfe5dSKevin Wolf          * implicitly created and inherited options. For other (referenced)
29324c9dfe5dSKevin Wolf          * block devices, a syntax like "backing.foo" results in an error. */
293367251a31SKevin Wolf         if (child->bs->inherits_from != bs) {
293467251a31SKevin Wolf             continue;
293567251a31SKevin Wolf         }
293667251a31SKevin Wolf 
29374c9dfe5dSKevin Wolf         child_key_dot = g_strdup_printf("%s.", child->name);
29384c9dfe5dSKevin Wolf         qdict_extract_subqdict(options, &new_child_options, child_key_dot);
29394c9dfe5dSKevin Wolf         g_free(child_key_dot);
29404c9dfe5dSKevin Wolf 
294128518102SKevin Wolf         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
294228518102SKevin Wolf                                 child->role, options, flags);
2943e971aa12SJeff Cody     }
2944e971aa12SJeff Cody 
2945e971aa12SJeff Cody     return bs_queue;
2946e971aa12SJeff Cody }
2947e971aa12SJeff Cody 
294828518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
294928518102SKevin Wolf                                     BlockDriverState *bs,
295028518102SKevin Wolf                                     QDict *options, int flags)
295128518102SKevin Wolf {
295228518102SKevin Wolf     return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
295328518102SKevin Wolf                                    NULL, NULL, 0);
295428518102SKevin Wolf }
295528518102SKevin Wolf 
2956e971aa12SJeff Cody /*
2957e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
2958e971aa12SJeff Cody  *
2959e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
2960e971aa12SJeff Cody  * via bdrv_reopen_queue().
2961e971aa12SJeff Cody  *
2962e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
2963e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
2964e971aa12SJeff Cody  * device will cause all device changes to be abandonded, and intermediate
2965e971aa12SJeff Cody  * data cleaned up.
2966e971aa12SJeff Cody  *
2967e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
2968e971aa12SJeff Cody  * to all devices.
2969e971aa12SJeff Cody  *
29701a63a907SKevin Wolf  * All affected nodes must be drained between bdrv_reopen_queue() and
29711a63a907SKevin Wolf  * bdrv_reopen_multiple().
2972e971aa12SJeff Cody  */
2973720150f3SPaolo Bonzini int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
2974e971aa12SJeff Cody {
2975e971aa12SJeff Cody     int ret = -1;
2976e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
2977e971aa12SJeff Cody     Error *local_err = NULL;
2978e971aa12SJeff Cody 
2979e971aa12SJeff Cody     assert(bs_queue != NULL);
2980e971aa12SJeff Cody 
2981e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
29821a63a907SKevin Wolf         assert(bs_entry->state.bs->quiesce_counter > 0);
2983e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
2984e971aa12SJeff Cody             error_propagate(errp, local_err);
2985e971aa12SJeff Cody             goto cleanup;
2986e971aa12SJeff Cody         }
2987e971aa12SJeff Cody         bs_entry->prepared = true;
2988e971aa12SJeff Cody     }
2989e971aa12SJeff Cody 
2990e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
2991e971aa12SJeff Cody      * changes
2992e971aa12SJeff Cody      */
2993e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2994e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
2995e971aa12SJeff Cody     }
2996e971aa12SJeff Cody 
2997e971aa12SJeff Cody     ret = 0;
2998e971aa12SJeff Cody 
2999e971aa12SJeff Cody cleanup:
3000e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3001e971aa12SJeff Cody         if (ret && bs_entry->prepared) {
3002e971aa12SJeff Cody             bdrv_reopen_abort(&bs_entry->state);
3003145f598eSKevin Wolf         } else if (ret) {
3004145f598eSKevin Wolf             QDECREF(bs_entry->state.explicit_options);
3005e971aa12SJeff Cody         }
30064d2cb092SKevin Wolf         QDECREF(bs_entry->state.options);
3007e971aa12SJeff Cody         g_free(bs_entry);
3008e971aa12SJeff Cody     }
3009e971aa12SJeff Cody     g_free(bs_queue);
301040840e41SAlberto Garcia 
3011e971aa12SJeff Cody     return ret;
3012e971aa12SJeff Cody }
3013e971aa12SJeff Cody 
3014e971aa12SJeff Cody 
3015e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */
3016e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
3017e971aa12SJeff Cody {
3018e971aa12SJeff Cody     int ret = -1;
3019e971aa12SJeff Cody     Error *local_err = NULL;
30201a63a907SKevin Wolf     BlockReopenQueue *queue;
3021e971aa12SJeff Cody 
30221a63a907SKevin Wolf     bdrv_subtree_drained_begin(bs);
30231a63a907SKevin Wolf 
30241a63a907SKevin Wolf     queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
3025720150f3SPaolo Bonzini     ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err);
3026e971aa12SJeff Cody     if (local_err != NULL) {
3027e971aa12SJeff Cody         error_propagate(errp, local_err);
3028e971aa12SJeff Cody     }
30291a63a907SKevin Wolf 
30301a63a907SKevin Wolf     bdrv_subtree_drained_end(bs);
30311a63a907SKevin Wolf 
3032e971aa12SJeff Cody     return ret;
3033e971aa12SJeff Cody }
3034e971aa12SJeff Cody 
303530450259SKevin Wolf static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
303630450259SKevin Wolf                                                           BdrvChild *c)
303730450259SKevin Wolf {
303830450259SKevin Wolf     BlockReopenQueueEntry *entry;
303930450259SKevin Wolf 
304030450259SKevin Wolf     QSIMPLEQ_FOREACH(entry, q, entry) {
304130450259SKevin Wolf         BlockDriverState *bs = entry->state.bs;
304230450259SKevin Wolf         BdrvChild *child;
304330450259SKevin Wolf 
304430450259SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
304530450259SKevin Wolf             if (child == c) {
304630450259SKevin Wolf                 return entry;
304730450259SKevin Wolf             }
304830450259SKevin Wolf         }
304930450259SKevin Wolf     }
305030450259SKevin Wolf 
305130450259SKevin Wolf     return NULL;
305230450259SKevin Wolf }
305330450259SKevin Wolf 
305430450259SKevin Wolf static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
305530450259SKevin Wolf                              uint64_t *perm, uint64_t *shared)
305630450259SKevin Wolf {
305730450259SKevin Wolf     BdrvChild *c;
305830450259SKevin Wolf     BlockReopenQueueEntry *parent;
305930450259SKevin Wolf     uint64_t cumulative_perms = 0;
306030450259SKevin Wolf     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
306130450259SKevin Wolf 
306230450259SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
306330450259SKevin Wolf         parent = find_parent_in_reopen_queue(q, c);
306430450259SKevin Wolf         if (!parent) {
306530450259SKevin Wolf             cumulative_perms |= c->perm;
306630450259SKevin Wolf             cumulative_shared_perms &= c->shared_perm;
306730450259SKevin Wolf         } else {
306830450259SKevin Wolf             uint64_t nperm, nshared;
306930450259SKevin Wolf 
307030450259SKevin Wolf             bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
307130450259SKevin Wolf                             parent->state.perm, parent->state.shared_perm,
307230450259SKevin Wolf                             &nperm, &nshared);
307330450259SKevin Wolf 
307430450259SKevin Wolf             cumulative_perms |= nperm;
307530450259SKevin Wolf             cumulative_shared_perms &= nshared;
307630450259SKevin Wolf         }
307730450259SKevin Wolf     }
307830450259SKevin Wolf     *perm = cumulative_perms;
307930450259SKevin Wolf     *shared = cumulative_shared_perms;
308030450259SKevin Wolf }
3081e971aa12SJeff Cody 
3082e971aa12SJeff Cody /*
3083e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
3084e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
3085e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
3086e971aa12SJeff Cody  *
3087e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
3088e971aa12SJeff Cody  * flags are the new open flags
3089e971aa12SJeff Cody  * queue is the reopen queue
3090e971aa12SJeff Cody  *
3091e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
3092e971aa12SJeff Cody  * as well.
3093e971aa12SJeff Cody  *
3094e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
3095e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
3096e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
3097e971aa12SJeff Cody  *
3098e971aa12SJeff Cody  */
3099e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3100e971aa12SJeff Cody                         Error **errp)
3101e971aa12SJeff Cody {
3102e971aa12SJeff Cody     int ret = -1;
3103e971aa12SJeff Cody     Error *local_err = NULL;
3104e971aa12SJeff Cody     BlockDriver *drv;
3105ccf9dc07SKevin Wolf     QemuOpts *opts;
3106ccf9dc07SKevin Wolf     const char *value;
31073d8ce171SJeff Cody     bool read_only;
3108e971aa12SJeff Cody 
3109e971aa12SJeff Cody     assert(reopen_state != NULL);
3110e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
3111e971aa12SJeff Cody     drv = reopen_state->bs->drv;
3112e971aa12SJeff Cody 
3113ccf9dc07SKevin Wolf     /* Process generic block layer options */
3114ccf9dc07SKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3115ccf9dc07SKevin Wolf     qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3116ccf9dc07SKevin Wolf     if (local_err) {
3117ccf9dc07SKevin Wolf         error_propagate(errp, local_err);
3118ccf9dc07SKevin Wolf         ret = -EINVAL;
3119ccf9dc07SKevin Wolf         goto error;
3120ccf9dc07SKevin Wolf     }
3121ccf9dc07SKevin Wolf 
312291a097e7SKevin Wolf     update_flags_from_options(&reopen_state->flags, opts);
312391a097e7SKevin Wolf 
3124ccf9dc07SKevin Wolf     /* node-name and driver must be unchanged. Put them back into the QDict, so
3125ccf9dc07SKevin Wolf      * that they are checked at the end of this function. */
3126ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "node-name");
3127ccf9dc07SKevin Wolf     if (value) {
312846f5ac20SEric Blake         qdict_put_str(reopen_state->options, "node-name", value);
3129ccf9dc07SKevin Wolf     }
3130ccf9dc07SKevin Wolf 
3131ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "driver");
3132ccf9dc07SKevin Wolf     if (value) {
313346f5ac20SEric Blake         qdict_put_str(reopen_state->options, "driver", value);
3134ccf9dc07SKevin Wolf     }
3135ccf9dc07SKevin Wolf 
31363d8ce171SJeff Cody     /* If we are to stay read-only, do not allow permission change
31373d8ce171SJeff Cody      * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
31383d8ce171SJeff Cody      * not set, or if the BDS still has copy_on_read enabled */
31393d8ce171SJeff Cody     read_only = !(reopen_state->flags & BDRV_O_RDWR);
314054a32bfeSKevin Wolf     ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
31413d8ce171SJeff Cody     if (local_err) {
31423d8ce171SJeff Cody         error_propagate(errp, local_err);
3143e971aa12SJeff Cody         goto error;
3144e971aa12SJeff Cody     }
3145e971aa12SJeff Cody 
314630450259SKevin Wolf     /* Calculate required permissions after reopening */
314730450259SKevin Wolf     bdrv_reopen_perm(queue, reopen_state->bs,
314830450259SKevin Wolf                      &reopen_state->perm, &reopen_state->shared_perm);
3149e971aa12SJeff Cody 
3150e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
3151e971aa12SJeff Cody     if (ret) {
3152455b0fdeSEric Blake         error_setg_errno(errp, -ret, "Error flushing drive");
3153e971aa12SJeff Cody         goto error;
3154e971aa12SJeff Cody     }
3155e971aa12SJeff Cody 
3156e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
3157e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3158e971aa12SJeff Cody         if (ret) {
3159e971aa12SJeff Cody             if (local_err != NULL) {
3160e971aa12SJeff Cody                 error_propagate(errp, local_err);
3161e971aa12SJeff Cody             } else {
3162d8b6895fSLuiz Capitulino                 error_setg(errp, "failed while preparing to reopen image '%s'",
3163e971aa12SJeff Cody                            reopen_state->bs->filename);
3164e971aa12SJeff Cody             }
3165e971aa12SJeff Cody             goto error;
3166e971aa12SJeff Cody         }
3167e971aa12SJeff Cody     } else {
3168e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
3169e971aa12SJeff Cody          * handler for each supported drv. */
317081e5f78aSAlberto Garcia         error_setg(errp, "Block format '%s' used by node '%s' "
317181e5f78aSAlberto Garcia                    "does not support reopening files", drv->format_name,
317281e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
3173e971aa12SJeff Cody         ret = -1;
3174e971aa12SJeff Cody         goto error;
3175e971aa12SJeff Cody     }
3176e971aa12SJeff Cody 
31774d2cb092SKevin Wolf     /* Options that are not handled are only okay if they are unchanged
31784d2cb092SKevin Wolf      * compared to the old state. It is expected that some options are only
31794d2cb092SKevin Wolf      * used for the initial open, but not reopen (e.g. filename) */
31804d2cb092SKevin Wolf     if (qdict_size(reopen_state->options)) {
31814d2cb092SKevin Wolf         const QDictEntry *entry = qdict_first(reopen_state->options);
31824d2cb092SKevin Wolf 
31834d2cb092SKevin Wolf         do {
318454fd1b0dSMax Reitz             QObject *new = entry->value;
318554fd1b0dSMax Reitz             QObject *old = qdict_get(reopen_state->bs->options, entry->key);
31864d2cb092SKevin Wolf 
318754fd1b0dSMax Reitz             /*
318854fd1b0dSMax Reitz              * TODO: When using -drive to specify blockdev options, all values
318954fd1b0dSMax Reitz              * will be strings; however, when using -blockdev, blockdev-add or
319054fd1b0dSMax Reitz              * filenames using the json:{} pseudo-protocol, they will be
319154fd1b0dSMax Reitz              * correctly typed.
319254fd1b0dSMax Reitz              * In contrast, reopening options are (currently) always strings
319354fd1b0dSMax Reitz              * (because you can only specify them through qemu-io; all other
319454fd1b0dSMax Reitz              * callers do not specify any options).
319554fd1b0dSMax Reitz              * Therefore, when using anything other than -drive to create a BDS,
319654fd1b0dSMax Reitz              * this cannot detect non-string options as unchanged, because
319754fd1b0dSMax Reitz              * qobject_is_equal() always returns false for objects of different
319854fd1b0dSMax Reitz              * type.  In the future, this should be remedied by correctly typing
319954fd1b0dSMax Reitz              * all options.  For now, this is not too big of an issue because
320054fd1b0dSMax Reitz              * the user can simply omit options which cannot be changed anyway,
320154fd1b0dSMax Reitz              * so they will stay unchanged.
320254fd1b0dSMax Reitz              */
320354fd1b0dSMax Reitz             if (!qobject_is_equal(new, old)) {
32044d2cb092SKevin Wolf                 error_setg(errp, "Cannot change the option '%s'", entry->key);
32054d2cb092SKevin Wolf                 ret = -EINVAL;
32064d2cb092SKevin Wolf                 goto error;
32074d2cb092SKevin Wolf             }
32084d2cb092SKevin Wolf         } while ((entry = qdict_next(reopen_state->options, entry)));
32094d2cb092SKevin Wolf     }
32104d2cb092SKevin Wolf 
321130450259SKevin Wolf     ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
321230450259SKevin Wolf                           reopen_state->shared_perm, NULL, errp);
321330450259SKevin Wolf     if (ret < 0) {
321430450259SKevin Wolf         goto error;
321530450259SKevin Wolf     }
321630450259SKevin Wolf 
3217e971aa12SJeff Cody     ret = 0;
3218e971aa12SJeff Cody 
3219e971aa12SJeff Cody error:
3220ccf9dc07SKevin Wolf     qemu_opts_del(opts);
3221e971aa12SJeff Cody     return ret;
3222e971aa12SJeff Cody }
3223e971aa12SJeff Cody 
3224e971aa12SJeff Cody /*
3225e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3226e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
3227e971aa12SJeff Cody  * the active BlockDriverState contents.
3228e971aa12SJeff Cody  */
3229e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3230e971aa12SJeff Cody {
3231e971aa12SJeff Cody     BlockDriver *drv;
323250bf65baSVladimir Sementsov-Ogievskiy     BlockDriverState *bs;
3233cb9ff6c2SVladimir Sementsov-Ogievskiy     bool old_can_write, new_can_write;
3234e971aa12SJeff Cody 
3235e971aa12SJeff Cody     assert(reopen_state != NULL);
323650bf65baSVladimir Sementsov-Ogievskiy     bs = reopen_state->bs;
323750bf65baSVladimir Sementsov-Ogievskiy     drv = bs->drv;
3238e971aa12SJeff Cody     assert(drv != NULL);
3239e971aa12SJeff Cody 
3240cb9ff6c2SVladimir Sementsov-Ogievskiy     old_can_write =
3241cb9ff6c2SVladimir Sementsov-Ogievskiy         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3242cb9ff6c2SVladimir Sementsov-Ogievskiy 
3243e971aa12SJeff Cody     /* If there are any driver level actions to take */
3244e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
3245e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
3246e971aa12SJeff Cody     }
3247e971aa12SJeff Cody 
3248e971aa12SJeff Cody     /* set BDS specific flags now */
324950bf65baSVladimir Sementsov-Ogievskiy     QDECREF(bs->explicit_options);
3250145f598eSKevin Wolf 
325150bf65baSVladimir Sementsov-Ogievskiy     bs->explicit_options   = reopen_state->explicit_options;
325250bf65baSVladimir Sementsov-Ogievskiy     bs->open_flags         = reopen_state->flags;
325350bf65baSVladimir Sementsov-Ogievskiy     bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
3254355ef4acSKevin Wolf 
325550bf65baSVladimir Sementsov-Ogievskiy     bdrv_refresh_limits(bs, NULL);
3256cb9ff6c2SVladimir Sementsov-Ogievskiy 
325730450259SKevin Wolf     bdrv_set_perm(reopen_state->bs, reopen_state->perm,
325830450259SKevin Wolf                   reopen_state->shared_perm);
325930450259SKevin Wolf 
3260cb9ff6c2SVladimir Sementsov-Ogievskiy     new_can_write =
3261cb9ff6c2SVladimir Sementsov-Ogievskiy         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3262cb9ff6c2SVladimir Sementsov-Ogievskiy     if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3263cb9ff6c2SVladimir Sementsov-Ogievskiy         Error *local_err = NULL;
3264cb9ff6c2SVladimir Sementsov-Ogievskiy         if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3265cb9ff6c2SVladimir Sementsov-Ogievskiy             /* This is not fatal, bitmaps just left read-only, so all following
3266cb9ff6c2SVladimir Sementsov-Ogievskiy              * writes will fail. User can remove read-only bitmaps to unblock
3267cb9ff6c2SVladimir Sementsov-Ogievskiy              * writes.
3268cb9ff6c2SVladimir Sementsov-Ogievskiy              */
3269cb9ff6c2SVladimir Sementsov-Ogievskiy             error_reportf_err(local_err,
3270cb9ff6c2SVladimir Sementsov-Ogievskiy                               "%s: Failed to make dirty bitmaps writable: ",
3271cb9ff6c2SVladimir Sementsov-Ogievskiy                               bdrv_get_node_name(bs));
3272cb9ff6c2SVladimir Sementsov-Ogievskiy         }
3273cb9ff6c2SVladimir Sementsov-Ogievskiy     }
3274e971aa12SJeff Cody }
3275e971aa12SJeff Cody 
3276e971aa12SJeff Cody /*
3277e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
3278e971aa12SJeff Cody  * reopen_state
3279e971aa12SJeff Cody  */
3280e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3281e971aa12SJeff Cody {
3282e971aa12SJeff Cody     BlockDriver *drv;
3283e971aa12SJeff Cody 
3284e971aa12SJeff Cody     assert(reopen_state != NULL);
3285e971aa12SJeff Cody     drv = reopen_state->bs->drv;
3286e971aa12SJeff Cody     assert(drv != NULL);
3287e971aa12SJeff Cody 
3288e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
3289e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
3290e971aa12SJeff Cody     }
3291145f598eSKevin Wolf 
3292145f598eSKevin Wolf     QDECREF(reopen_state->explicit_options);
329330450259SKevin Wolf 
329430450259SKevin Wolf     bdrv_abort_perm_update(reopen_state->bs);
3295e971aa12SJeff Cody }
3296e971aa12SJeff Cody 
3297e971aa12SJeff Cody 
329864dff520SMax Reitz static void bdrv_close(BlockDriverState *bs)
3299fc01f7e7Sbellard {
330033384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
330150a3efb0SAlberto Garcia     BdrvChild *child, *next;
330233384421SMax Reitz 
3303ca9bd24cSMax Reitz     assert(!bs->job);
330430f55fb8SMax Reitz     assert(!bs->refcnt);
330599b7e775SAlberto Garcia 
3306fc27291dSPaolo Bonzini     bdrv_drained_begin(bs); /* complete I/O */
330758fda173SStefan Hajnoczi     bdrv_flush(bs);
330853ec73e2SFam Zheng     bdrv_drain(bs); /* in case flush left pending I/O */
3309fc27291dSPaolo Bonzini 
33103cbc002cSPaolo Bonzini     if (bs->drv) {
33119a7dedbcSKevin Wolf         bs->drv->bdrv_close(bs);
33129a4f4c31SKevin Wolf         bs->drv = NULL;
331350a3efb0SAlberto Garcia     }
33149a7dedbcSKevin Wolf 
331512fa4af6SKevin Wolf     bdrv_set_backing_hd(bs, NULL, &error_abort);
33169a7dedbcSKevin Wolf 
33179a4f4c31SKevin Wolf     if (bs->file != NULL) {
33189a4f4c31SKevin Wolf         bdrv_unref_child(bs, bs->file);
33199a4f4c31SKevin Wolf         bs->file = NULL;
33209a4f4c31SKevin Wolf     }
33219a4f4c31SKevin Wolf 
33226e93e7c4SKevin Wolf     QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
332333a60407SKevin Wolf         /* TODO Remove bdrv_unref() from drivers' close function and use
332433a60407SKevin Wolf          * bdrv_unref_child() here */
3325bddcec37SKevin Wolf         if (child->bs->inherits_from == bs) {
3326bddcec37SKevin Wolf             child->bs->inherits_from = NULL;
3327bddcec37SKevin Wolf         }
332833a60407SKevin Wolf         bdrv_detach_child(child);
33296e93e7c4SKevin Wolf     }
33306e93e7c4SKevin Wolf 
33317267c094SAnthony Liguori     g_free(bs->opaque);
3332ea2384d3Sbellard     bs->opaque = NULL;
3333d3faa13eSPaolo Bonzini     atomic_set(&bs->copy_on_read, 0);
3334a275fa42SPaolo Bonzini     bs->backing_file[0] = '\0';
3335a275fa42SPaolo Bonzini     bs->backing_format[0] = '\0';
33366405875cSPaolo Bonzini     bs->total_sectors = 0;
333754115412SEric Blake     bs->encrypted = false;
333854115412SEric Blake     bs->sg = false;
3339de9c0cecSKevin Wolf     QDECREF(bs->options);
3340145f598eSKevin Wolf     QDECREF(bs->explicit_options);
3341de9c0cecSKevin Wolf     bs->options = NULL;
3342998cbd6aSManos Pitsidianakis     bs->explicit_options = NULL;
334391af7014SMax Reitz     QDECREF(bs->full_open_options);
334491af7014SMax Reitz     bs->full_open_options = NULL;
334566f82ceeSKevin Wolf 
3346cca43ae1SVladimir Sementsov-Ogievskiy     bdrv_release_named_dirty_bitmaps(bs);
3347cca43ae1SVladimir Sementsov-Ogievskiy     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3348cca43ae1SVladimir Sementsov-Ogievskiy 
334933384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
335033384421SMax Reitz         g_free(ban);
335133384421SMax Reitz     }
335233384421SMax Reitz     QLIST_INIT(&bs->aio_notifiers);
3353fc27291dSPaolo Bonzini     bdrv_drained_end(bs);
3354b338082bSbellard }
3355b338082bSbellard 
33562bc93fedSMORITA Kazutaka void bdrv_close_all(void)
33572bc93fedSMORITA Kazutaka {
3358a1a2af07SKevin Wolf     block_job_cancel_sync_all();
3359cd7fca95SKevin Wolf     nbd_export_close_all();
33602bc93fedSMORITA Kazutaka 
3361ca9bd24cSMax Reitz     /* Drop references from requests still in flight, such as canceled block
3362ca9bd24cSMax Reitz      * jobs whose AIO context has not been polled yet */
3363ca9bd24cSMax Reitz     bdrv_drain_all();
3364ca9bd24cSMax Reitz 
3365ca9bd24cSMax Reitz     blk_remove_all_bs();
3366ca9bd24cSMax Reitz     blockdev_close_all_bdrv_states();
3367ca9bd24cSMax Reitz 
3368a1a2af07SKevin Wolf     assert(QTAILQ_EMPTY(&all_bdrv_states));
33692bc93fedSMORITA Kazutaka }
33702bc93fedSMORITA Kazutaka 
3371d0ac0380SKevin Wolf static bool should_update_child(BdrvChild *c, BlockDriverState *to)
3372dd62f1caSKevin Wolf {
3373d0ac0380SKevin Wolf     BdrvChild *to_c;
3374dd62f1caSKevin Wolf 
337526de9438SKevin Wolf     if (c->role->stay_at_node) {
3376d0ac0380SKevin Wolf         return false;
337726de9438SKevin Wolf     }
3378d0ac0380SKevin Wolf 
33799bd910e2SMax Reitz     if (c->role == &child_backing) {
33803e44c8e0SKevin Wolf         /* If @from is a backing file of @to, ignore the child to avoid
33813e44c8e0SKevin Wolf          * creating a loop. We only want to change the pointer of other
33823e44c8e0SKevin Wolf          * parents. */
33839bd910e2SMax Reitz         QLIST_FOREACH(to_c, &to->children, next) {
33849bd910e2SMax Reitz             if (to_c == c) {
33859bd910e2SMax Reitz                 break;
33869bd910e2SMax Reitz             }
33879bd910e2SMax Reitz         }
33889bd910e2SMax Reitz         if (to_c) {
3389d0ac0380SKevin Wolf             return false;
33909bd910e2SMax Reitz         }
33919bd910e2SMax Reitz     }
33929bd910e2SMax Reitz 
3393d0ac0380SKevin Wolf     return true;
3394d0ac0380SKevin Wolf }
3395d0ac0380SKevin Wolf 
33965fe31c25SKevin Wolf void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
33975fe31c25SKevin Wolf                        Error **errp)
3398d0ac0380SKevin Wolf {
3399d0ac0380SKevin Wolf     BdrvChild *c, *next;
3400234ac1a9SKevin Wolf     GSList *list = NULL, *p;
3401234ac1a9SKevin Wolf     uint64_t old_perm, old_shared;
3402234ac1a9SKevin Wolf     uint64_t perm = 0, shared = BLK_PERM_ALL;
3403234ac1a9SKevin Wolf     int ret;
3404d0ac0380SKevin Wolf 
34055fe31c25SKevin Wolf     assert(!atomic_read(&from->in_flight));
34065fe31c25SKevin Wolf     assert(!atomic_read(&to->in_flight));
34075fe31c25SKevin Wolf 
3408234ac1a9SKevin Wolf     /* Make sure that @from doesn't go away until we have successfully attached
3409234ac1a9SKevin Wolf      * all of its parents to @to. */
3410234ac1a9SKevin Wolf     bdrv_ref(from);
3411234ac1a9SKevin Wolf 
3412234ac1a9SKevin Wolf     /* Put all parents into @list and calculate their cumulative permissions */
3413d0ac0380SKevin Wolf     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
3414d0ac0380SKevin Wolf         if (!should_update_child(c, to)) {
3415d0ac0380SKevin Wolf             continue;
3416d0ac0380SKevin Wolf         }
3417234ac1a9SKevin Wolf         list = g_slist_prepend(list, c);
3418234ac1a9SKevin Wolf         perm |= c->perm;
3419234ac1a9SKevin Wolf         shared &= c->shared_perm;
3420234ac1a9SKevin Wolf     }
3421234ac1a9SKevin Wolf 
3422234ac1a9SKevin Wolf     /* Check whether the required permissions can be granted on @to, ignoring
3423234ac1a9SKevin Wolf      * all BdrvChild in @list so that they can't block themselves. */
34243121fb45SKevin Wolf     ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
3425234ac1a9SKevin Wolf     if (ret < 0) {
3426234ac1a9SKevin Wolf         bdrv_abort_perm_update(to);
3427234ac1a9SKevin Wolf         goto out;
3428234ac1a9SKevin Wolf     }
3429234ac1a9SKevin Wolf 
3430234ac1a9SKevin Wolf     /* Now actually perform the change. We performed the permission check for
3431234ac1a9SKevin Wolf      * all elements of @list at once, so set the permissions all at once at the
3432234ac1a9SKevin Wolf      * very end. */
3433234ac1a9SKevin Wolf     for (p = list; p != NULL; p = p->next) {
3434234ac1a9SKevin Wolf         c = p->data;
3435d0ac0380SKevin Wolf 
3436dd62f1caSKevin Wolf         bdrv_ref(to);
3437234ac1a9SKevin Wolf         bdrv_replace_child_noperm(c, to);
3438dd62f1caSKevin Wolf         bdrv_unref(from);
3439dd62f1caSKevin Wolf     }
3440234ac1a9SKevin Wolf 
3441234ac1a9SKevin Wolf     bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3442234ac1a9SKevin Wolf     bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3443234ac1a9SKevin Wolf 
3444234ac1a9SKevin Wolf out:
3445234ac1a9SKevin Wolf     g_slist_free(list);
3446234ac1a9SKevin Wolf     bdrv_unref(from);
3447dd62f1caSKevin Wolf }
3448dd62f1caSKevin Wolf 
34498802d1fdSJeff Cody /*
34508802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
34518802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
34528802d1fdSJeff Cody  *
34538802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
34548802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
34558802d1fdSJeff Cody  *
3456bfb197e0SMarkus Armbruster  * bs_new must not be attached to a BlockBackend.
3457f6801b83SJeff Cody  *
34588802d1fdSJeff Cody  * This function does not create any image files.
3459dd62f1caSKevin Wolf  *
3460dd62f1caSKevin Wolf  * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3461dd62f1caSKevin Wolf  * that's what the callers commonly need. bs_new will be referenced by the old
3462dd62f1caSKevin Wolf  * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3463dd62f1caSKevin Wolf  * reference of its own, it must call bdrv_ref().
34648802d1fdSJeff Cody  */
3465b2c2832cSKevin Wolf void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3466b2c2832cSKevin Wolf                  Error **errp)
34678802d1fdSJeff Cody {
3468b2c2832cSKevin Wolf     Error *local_err = NULL;
3469b2c2832cSKevin Wolf 
3470b2c2832cSKevin Wolf     bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3471b2c2832cSKevin Wolf     if (local_err) {
3472b2c2832cSKevin Wolf         error_propagate(errp, local_err);
3473b2c2832cSKevin Wolf         goto out;
3474b2c2832cSKevin Wolf     }
3475dd62f1caSKevin Wolf 
34765fe31c25SKevin Wolf     bdrv_replace_node(bs_top, bs_new, &local_err);
3477234ac1a9SKevin Wolf     if (local_err) {
3478234ac1a9SKevin Wolf         error_propagate(errp, local_err);
3479234ac1a9SKevin Wolf         bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3480234ac1a9SKevin Wolf         goto out;
3481234ac1a9SKevin Wolf     }
3482dd62f1caSKevin Wolf 
3483dd62f1caSKevin Wolf     /* bs_new is now referenced by its new parents, we don't need the
3484dd62f1caSKevin Wolf      * additional reference any more. */
3485b2c2832cSKevin Wolf out:
3486dd62f1caSKevin Wolf     bdrv_unref(bs_new);
34878802d1fdSJeff Cody }
34888802d1fdSJeff Cody 
34894f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs)
3490b338082bSbellard {
34913e914655SPaolo Bonzini     assert(!bs->job);
34923718d8abSFam Zheng     assert(bdrv_op_blocker_is_empty(bs));
34934f6fd349SFam Zheng     assert(!bs->refcnt);
349418846deeSMarkus Armbruster 
3495e1b5c52eSStefan Hajnoczi     bdrv_close(bs);
3496e1b5c52eSStefan Hajnoczi 
34971b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
349863eaaae0SKevin Wolf     if (bs->node_name[0] != '\0') {
349963eaaae0SKevin Wolf         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
350063eaaae0SKevin Wolf     }
35012c1d04e0SMax Reitz     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
35022c1d04e0SMax Reitz 
35037267c094SAnthony Liguori     g_free(bs);
3504fc01f7e7Sbellard }
3505fc01f7e7Sbellard 
3506e97fc193Saliguori /*
3507e97fc193Saliguori  * Run consistency checks on an image
3508e97fc193Saliguori  *
3509e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
3510a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
3511e076f338SKevin Wolf  * check are stored in res.
3512e97fc193Saliguori  */
35132fd61638SPaolo Bonzini static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
35142fd61638SPaolo Bonzini                                       BdrvCheckResult *res, BdrvCheckMode fix)
3515e97fc193Saliguori {
3516908bcd54SMax Reitz     if (bs->drv == NULL) {
3517908bcd54SMax Reitz         return -ENOMEDIUM;
3518908bcd54SMax Reitz     }
35192fd61638SPaolo Bonzini     if (bs->drv->bdrv_co_check == NULL) {
3520e97fc193Saliguori         return -ENOTSUP;
3521e97fc193Saliguori     }
3522e97fc193Saliguori 
3523e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
35242fd61638SPaolo Bonzini     return bs->drv->bdrv_co_check(bs, res, fix);
35252fd61638SPaolo Bonzini }
35262fd61638SPaolo Bonzini 
35272fd61638SPaolo Bonzini typedef struct CheckCo {
35282fd61638SPaolo Bonzini     BlockDriverState *bs;
35292fd61638SPaolo Bonzini     BdrvCheckResult *res;
35302fd61638SPaolo Bonzini     BdrvCheckMode fix;
35312fd61638SPaolo Bonzini     int ret;
35322fd61638SPaolo Bonzini } CheckCo;
35332fd61638SPaolo Bonzini 
35342fd61638SPaolo Bonzini static void bdrv_check_co_entry(void *opaque)
35352fd61638SPaolo Bonzini {
35362fd61638SPaolo Bonzini     CheckCo *cco = opaque;
35372fd61638SPaolo Bonzini     cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
35382fd61638SPaolo Bonzini }
35392fd61638SPaolo Bonzini 
35402fd61638SPaolo Bonzini int bdrv_check(BlockDriverState *bs,
35412fd61638SPaolo Bonzini                BdrvCheckResult *res, BdrvCheckMode fix)
35422fd61638SPaolo Bonzini {
35432fd61638SPaolo Bonzini     Coroutine *co;
35442fd61638SPaolo Bonzini     CheckCo cco = {
35452fd61638SPaolo Bonzini         .bs = bs,
35462fd61638SPaolo Bonzini         .res = res,
35472fd61638SPaolo Bonzini         .ret = -EINPROGRESS,
35482fd61638SPaolo Bonzini         .fix = fix,
35492fd61638SPaolo Bonzini     };
35502fd61638SPaolo Bonzini 
35512fd61638SPaolo Bonzini     if (qemu_in_coroutine()) {
35522fd61638SPaolo Bonzini         /* Fast-path if already in coroutine context */
35532fd61638SPaolo Bonzini         bdrv_check_co_entry(&cco);
35542fd61638SPaolo Bonzini     } else {
35552fd61638SPaolo Bonzini         co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
35562fd61638SPaolo Bonzini         qemu_coroutine_enter(co);
35572fd61638SPaolo Bonzini         BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
35582fd61638SPaolo Bonzini     }
35592fd61638SPaolo Bonzini 
35602fd61638SPaolo Bonzini     return cco.ret;
3561e97fc193Saliguori }
3562e97fc193Saliguori 
3563756e6736SKevin Wolf /*
3564756e6736SKevin Wolf  * Return values:
3565756e6736SKevin Wolf  * 0        - success
3566756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
3567756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
3568756e6736SKevin Wolf  *            image file header
3569756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
3570756e6736SKevin Wolf  */
3571756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
3572756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
3573756e6736SKevin Wolf {
3574756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
3575469ef350SPaolo Bonzini     int ret;
3576756e6736SKevin Wolf 
3577d470ad42SMax Reitz     if (!drv) {
3578d470ad42SMax Reitz         return -ENOMEDIUM;
3579d470ad42SMax Reitz     }
3580d470ad42SMax Reitz 
35815f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
35825f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
35835f377794SPaolo Bonzini         return -EINVAL;
35845f377794SPaolo Bonzini     }
35855f377794SPaolo Bonzini 
3586756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
3587469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
3588756e6736SKevin Wolf     } else {
3589469ef350SPaolo Bonzini         ret = -ENOTSUP;
3590756e6736SKevin Wolf     }
3591469ef350SPaolo Bonzini 
3592469ef350SPaolo Bonzini     if (ret == 0) {
3593469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3594469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3595469ef350SPaolo Bonzini     }
3596469ef350SPaolo Bonzini     return ret;
3597756e6736SKevin Wolf }
3598756e6736SKevin Wolf 
35996ebdcee2SJeff Cody /*
36006ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
36016ebdcee2SJeff Cody  *
36026ebdcee2SJeff Cody  * active is the current topmost image.
36036ebdcee2SJeff Cody  *
36046ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
36056ebdcee2SJeff Cody  * or if active == bs.
36064caf0fcdSJeff Cody  *
36074caf0fcdSJeff Cody  * Returns the bottommost base image if bs == NULL.
36086ebdcee2SJeff Cody  */
36096ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
36106ebdcee2SJeff Cody                                     BlockDriverState *bs)
36116ebdcee2SJeff Cody {
3612760e0063SKevin Wolf     while (active && bs != backing_bs(active)) {
3613760e0063SKevin Wolf         active = backing_bs(active);
36146ebdcee2SJeff Cody     }
36156ebdcee2SJeff Cody 
36164caf0fcdSJeff Cody     return active;
36176ebdcee2SJeff Cody }
36186ebdcee2SJeff Cody 
36194caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */
36204caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs)
36214caf0fcdSJeff Cody {
36224caf0fcdSJeff Cody     return bdrv_find_overlay(bs, NULL);
36236ebdcee2SJeff Cody }
36246ebdcee2SJeff Cody 
36256ebdcee2SJeff Cody /*
36266ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
36276ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
36286ebdcee2SJeff Cody  *
36296ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
36306ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
36316ebdcee2SJeff Cody  *
36326ebdcee2SJeff Cody  * E.g., this will convert the following chain:
36336ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
36346ebdcee2SJeff Cody  *
36356ebdcee2SJeff Cody  * to
36366ebdcee2SJeff Cody  *
36376ebdcee2SJeff Cody  * bottom <- base <- active
36386ebdcee2SJeff Cody  *
36396ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
36406ebdcee2SJeff Cody  *
36416ebdcee2SJeff Cody  * base <- intermediate <- top <- active
36426ebdcee2SJeff Cody  *
36436ebdcee2SJeff Cody  * to
36446ebdcee2SJeff Cody  *
36456ebdcee2SJeff Cody  * base <- active
36466ebdcee2SJeff Cody  *
364754e26900SJeff Cody  * If backing_file_str is non-NULL, it will be used when modifying top's
364854e26900SJeff Cody  * overlay image metadata.
364954e26900SJeff Cody  *
36506ebdcee2SJeff Cody  * Error conditions:
36516ebdcee2SJeff Cody  *  if active == top, that is considered an error
36526ebdcee2SJeff Cody  *
36536ebdcee2SJeff Cody  */
3654bde70715SKevin Wolf int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3655bde70715SKevin Wolf                            const char *backing_file_str)
36566ebdcee2SJeff Cody {
365761f09ceaSKevin Wolf     BdrvChild *c, *next;
365812fa4af6SKevin Wolf     Error *local_err = NULL;
36596ebdcee2SJeff Cody     int ret = -EIO;
36606ebdcee2SJeff Cody 
36616858eba0SKevin Wolf     bdrv_ref(top);
36626858eba0SKevin Wolf 
36636ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
36646ebdcee2SJeff Cody         goto exit;
36656ebdcee2SJeff Cody     }
36666ebdcee2SJeff Cody 
36675db15a57SKevin Wolf     /* Make sure that base is in the backing chain of top */
36685db15a57SKevin Wolf     if (!bdrv_chain_contains(top, base)) {
36696ebdcee2SJeff Cody         goto exit;
36706ebdcee2SJeff Cody     }
36716ebdcee2SJeff Cody 
36726ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
3673bde70715SKevin Wolf     /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
3674bde70715SKevin Wolf      * we've figured out how they should work. */
36755db15a57SKevin Wolf     backing_file_str = backing_file_str ? backing_file_str : base->filename;
367612fa4af6SKevin Wolf 
367761f09ceaSKevin Wolf     QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
367861f09ceaSKevin Wolf         /* Check whether we are allowed to switch c from top to base */
367961f09ceaSKevin Wolf         GSList *ignore_children = g_slist_prepend(NULL, c);
368061f09ceaSKevin Wolf         bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
368161f09ceaSKevin Wolf                                ignore_children, &local_err);
368212fa4af6SKevin Wolf         if (local_err) {
368312fa4af6SKevin Wolf             ret = -EPERM;
368412fa4af6SKevin Wolf             error_report_err(local_err);
368512fa4af6SKevin Wolf             goto exit;
368612fa4af6SKevin Wolf         }
368761f09ceaSKevin Wolf         g_slist_free(ignore_children);
368861f09ceaSKevin Wolf 
368961f09ceaSKevin Wolf         /* If so, update the backing file path in the image file */
369061f09ceaSKevin Wolf         if (c->role->update_filename) {
369161f09ceaSKevin Wolf             ret = c->role->update_filename(c, base, backing_file_str,
369261f09ceaSKevin Wolf                                            &local_err);
369361f09ceaSKevin Wolf             if (ret < 0) {
369461f09ceaSKevin Wolf                 bdrv_abort_perm_update(base);
369561f09ceaSKevin Wolf                 error_report_err(local_err);
369661f09ceaSKevin Wolf                 goto exit;
369761f09ceaSKevin Wolf             }
369861f09ceaSKevin Wolf         }
369961f09ceaSKevin Wolf 
370061f09ceaSKevin Wolf         /* Do the actual switch in the in-memory graph.
370161f09ceaSKevin Wolf          * Completes bdrv_check_update_perm() transaction internally. */
370261f09ceaSKevin Wolf         bdrv_ref(base);
370361f09ceaSKevin Wolf         bdrv_replace_child(c, base);
370461f09ceaSKevin Wolf         bdrv_unref(top);
370561f09ceaSKevin Wolf     }
37066ebdcee2SJeff Cody 
37076ebdcee2SJeff Cody     ret = 0;
37086ebdcee2SJeff Cody exit:
37096858eba0SKevin Wolf     bdrv_unref(top);
37106ebdcee2SJeff Cody     return ret;
37116ebdcee2SJeff Cody }
37126ebdcee2SJeff Cody 
371383f64091Sbellard /**
371483f64091Sbellard  * Truncate file to 'offset' bytes (needed only for file protocols)
371583f64091Sbellard  */
37167ea37c30SMax Reitz int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc,
37177ea37c30SMax Reitz                   Error **errp)
371883f64091Sbellard {
371952cdbc58SKevin Wolf     BlockDriverState *bs = child->bs;
372083f64091Sbellard     BlockDriver *drv = bs->drv;
372151762288SStefan Hajnoczi     int ret;
3722c8f6d58eSKevin Wolf 
3723362b3786SMax Reitz     assert(child->perm & BLK_PERM_RESIZE);
3724c8f6d58eSKevin Wolf 
37255a612c00SManos Pitsidianakis     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
3726ed3d2ec9SMax Reitz     if (!drv) {
3727ed3d2ec9SMax Reitz         error_setg(errp, "No medium inserted");
372819cb3738Sbellard         return -ENOMEDIUM;
3729ed3d2ec9SMax Reitz     }
3730cd8b7aaaSKevin Wolf     if (offset < 0) {
3731cd8b7aaaSKevin Wolf         error_setg(errp, "Image size cannot be negative");
3732cd8b7aaaSKevin Wolf         return -EINVAL;
3733cd8b7aaaSKevin Wolf     }
3734cd8b7aaaSKevin Wolf 
3735ed3d2ec9SMax Reitz     if (!drv->bdrv_truncate) {
37365a612c00SManos Pitsidianakis         if (bs->file && drv->is_filter) {
37375a612c00SManos Pitsidianakis             return bdrv_truncate(bs->file, offset, prealloc, errp);
37385a612c00SManos Pitsidianakis         }
3739ed3d2ec9SMax Reitz         error_setg(errp, "Image format driver does not support resize");
374083f64091Sbellard         return -ENOTSUP;
3741ed3d2ec9SMax Reitz     }
3742ed3d2ec9SMax Reitz     if (bs->read_only) {
3743ed3d2ec9SMax Reitz         error_setg(errp, "Image is read-only");
374459f2689dSNaphtali Sprei         return -EACCES;
3745ed3d2ec9SMax Reitz     }
37469c75e168SJeff Cody 
3747504c205aSDenis V. Lunev     assert(!(bs->open_flags & BDRV_O_INACTIVE));
3748504c205aSDenis V. Lunev 
37497ea37c30SMax Reitz     ret = drv->bdrv_truncate(bs, offset, prealloc, errp);
37501b6cc579SEric Blake     if (ret < 0) {
37511b6cc579SEric Blake         return ret;
37521b6cc579SEric Blake     }
375351762288SStefan Hajnoczi     ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
37541b6cc579SEric Blake     if (ret < 0) {
37551b6cc579SEric Blake         error_setg_errno(errp, -ret, "Could not refresh total sector count");
37561b6cc579SEric Blake     } else {
37571b6cc579SEric Blake         offset = bs->total_sectors * BDRV_SECTOR_SIZE;
37581b6cc579SEric Blake     }
37591b6cc579SEric Blake     bdrv_dirty_bitmap_truncate(bs, offset);
37605c8cab48SKevin Wolf     bdrv_parent_cb_resize(bs);
376147fec599SPaolo Bonzini     atomic_inc(&bs->write_gen);
376251762288SStefan Hajnoczi     return ret;
376383f64091Sbellard }
376483f64091Sbellard 
376583f64091Sbellard /**
37664a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
37674a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
37684a1d5e1fSFam Zheng  */
37694a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
37704a1d5e1fSFam Zheng {
37714a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
37724a1d5e1fSFam Zheng     if (!drv) {
37734a1d5e1fSFam Zheng         return -ENOMEDIUM;
37744a1d5e1fSFam Zheng     }
37754a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
37764a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
37774a1d5e1fSFam Zheng     }
37784a1d5e1fSFam Zheng     if (bs->file) {
37799a4f4c31SKevin Wolf         return bdrv_get_allocated_file_size(bs->file->bs);
37804a1d5e1fSFam Zheng     }
37814a1d5e1fSFam Zheng     return -ENOTSUP;
37824a1d5e1fSFam Zheng }
37834a1d5e1fSFam Zheng 
378490880ff1SStefan Hajnoczi /*
378590880ff1SStefan Hajnoczi  * bdrv_measure:
378690880ff1SStefan Hajnoczi  * @drv: Format driver
378790880ff1SStefan Hajnoczi  * @opts: Creation options for new image
378890880ff1SStefan Hajnoczi  * @in_bs: Existing image containing data for new image (may be NULL)
378990880ff1SStefan Hajnoczi  * @errp: Error object
379090880ff1SStefan Hajnoczi  * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
379190880ff1SStefan Hajnoczi  *          or NULL on error
379290880ff1SStefan Hajnoczi  *
379390880ff1SStefan Hajnoczi  * Calculate file size required to create a new image.
379490880ff1SStefan Hajnoczi  *
379590880ff1SStefan Hajnoczi  * If @in_bs is given then space for allocated clusters and zero clusters
379690880ff1SStefan Hajnoczi  * from that image are included in the calculation.  If @opts contains a
379790880ff1SStefan Hajnoczi  * backing file that is shared by @in_bs then backing clusters may be omitted
379890880ff1SStefan Hajnoczi  * from the calculation.
379990880ff1SStefan Hajnoczi  *
380090880ff1SStefan Hajnoczi  * If @in_bs is NULL then the calculation includes no allocated clusters
380190880ff1SStefan Hajnoczi  * unless a preallocation option is given in @opts.
380290880ff1SStefan Hajnoczi  *
380390880ff1SStefan Hajnoczi  * Note that @in_bs may use a different BlockDriver from @drv.
380490880ff1SStefan Hajnoczi  *
380590880ff1SStefan Hajnoczi  * If an error occurs the @errp pointer is set.
380690880ff1SStefan Hajnoczi  */
380790880ff1SStefan Hajnoczi BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
380890880ff1SStefan Hajnoczi                                BlockDriverState *in_bs, Error **errp)
380990880ff1SStefan Hajnoczi {
381090880ff1SStefan Hajnoczi     if (!drv->bdrv_measure) {
381190880ff1SStefan Hajnoczi         error_setg(errp, "Block driver '%s' does not support size measurement",
381290880ff1SStefan Hajnoczi                    drv->format_name);
381390880ff1SStefan Hajnoczi         return NULL;
381490880ff1SStefan Hajnoczi     }
381590880ff1SStefan Hajnoczi 
381690880ff1SStefan Hajnoczi     return drv->bdrv_measure(opts, in_bs, errp);
381790880ff1SStefan Hajnoczi }
381890880ff1SStefan Hajnoczi 
38194a1d5e1fSFam Zheng /**
382065a9bb25SMarkus Armbruster  * Return number of sectors on success, -errno on error.
382183f64091Sbellard  */
382265a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs)
382383f64091Sbellard {
382483f64091Sbellard     BlockDriver *drv = bs->drv;
382565a9bb25SMarkus Armbruster 
382683f64091Sbellard     if (!drv)
382719cb3738Sbellard         return -ENOMEDIUM;
382851762288SStefan Hajnoczi 
3829b94a2610SKevin Wolf     if (drv->has_variable_length) {
3830b94a2610SKevin Wolf         int ret = refresh_total_sectors(bs, bs->total_sectors);
3831b94a2610SKevin Wolf         if (ret < 0) {
3832b94a2610SKevin Wolf             return ret;
3833fc01f7e7Sbellard         }
383446a4e4e6SStefan Hajnoczi     }
383565a9bb25SMarkus Armbruster     return bs->total_sectors;
383665a9bb25SMarkus Armbruster }
383765a9bb25SMarkus Armbruster 
383865a9bb25SMarkus Armbruster /**
383965a9bb25SMarkus Armbruster  * Return length in bytes on success, -errno on error.
384065a9bb25SMarkus Armbruster  * The length is always a multiple of BDRV_SECTOR_SIZE.
384165a9bb25SMarkus Armbruster  */
384265a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs)
384365a9bb25SMarkus Armbruster {
384465a9bb25SMarkus Armbruster     int64_t ret = bdrv_nb_sectors(bs);
384565a9bb25SMarkus Armbruster 
38464a9c9ea0SFam Zheng     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
384765a9bb25SMarkus Armbruster     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
384846a4e4e6SStefan Hajnoczi }
3849fc01f7e7Sbellard 
385019cb3738Sbellard /* return 0 as number of sectors if no device present or error */
385196b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
3852fc01f7e7Sbellard {
385365a9bb25SMarkus Armbruster     int64_t nb_sectors = bdrv_nb_sectors(bs);
385465a9bb25SMarkus Armbruster 
385565a9bb25SMarkus Armbruster     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
3856fc01f7e7Sbellard }
3857cf98951bSbellard 
385854115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs)
3859985a03b0Sths {
3860985a03b0Sths     return bs->sg;
3861985a03b0Sths }
3862985a03b0Sths 
386354115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs)
3864ea2384d3Sbellard {
3865760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
386654115412SEric Blake         return true;
3867760e0063SKevin Wolf     }
3868ea2384d3Sbellard     return bs->encrypted;
3869ea2384d3Sbellard }
3870ea2384d3Sbellard 
3871f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
3872ea2384d3Sbellard {
3873f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
3874ea2384d3Sbellard }
3875ea2384d3Sbellard 
3876ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b)
3877ada42401SStefan Hajnoczi {
3878ceff5bd7SMax Reitz     return strcmp(*(char *const *)a, *(char *const *)b);
3879ada42401SStefan Hajnoczi }
3880ada42401SStefan Hajnoczi 
3881ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
3882ea2384d3Sbellard                          void *opaque)
3883ea2384d3Sbellard {
3884ea2384d3Sbellard     BlockDriver *drv;
3885e855e4fbSJeff Cody     int count = 0;
3886ada42401SStefan Hajnoczi     int i;
3887e855e4fbSJeff Cody     const char **formats = NULL;
3888ea2384d3Sbellard 
38898a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
3890e855e4fbSJeff Cody         if (drv->format_name) {
3891e855e4fbSJeff Cody             bool found = false;
3892e855e4fbSJeff Cody             int i = count;
3893e855e4fbSJeff Cody             while (formats && i && !found) {
3894e855e4fbSJeff Cody                 found = !strcmp(formats[--i], drv->format_name);
3895e855e4fbSJeff Cody             }
3896e855e4fbSJeff Cody 
3897e855e4fbSJeff Cody             if (!found) {
38985839e53bSMarkus Armbruster                 formats = g_renew(const char *, formats, count + 1);
3899e855e4fbSJeff Cody                 formats[count++] = drv->format_name;
3900ea2384d3Sbellard             }
3901ea2384d3Sbellard         }
3902e855e4fbSJeff Cody     }
3903ada42401SStefan Hajnoczi 
3904eb0df69fSMax Reitz     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
3905eb0df69fSMax Reitz         const char *format_name = block_driver_modules[i].format_name;
3906eb0df69fSMax Reitz 
3907eb0df69fSMax Reitz         if (format_name) {
3908eb0df69fSMax Reitz             bool found = false;
3909eb0df69fSMax Reitz             int j = count;
3910eb0df69fSMax Reitz 
3911eb0df69fSMax Reitz             while (formats && j && !found) {
3912eb0df69fSMax Reitz                 found = !strcmp(formats[--j], format_name);
3913eb0df69fSMax Reitz             }
3914eb0df69fSMax Reitz 
3915eb0df69fSMax Reitz             if (!found) {
3916eb0df69fSMax Reitz                 formats = g_renew(const char *, formats, count + 1);
3917eb0df69fSMax Reitz                 formats[count++] = format_name;
3918eb0df69fSMax Reitz             }
3919eb0df69fSMax Reitz         }
3920eb0df69fSMax Reitz     }
3921eb0df69fSMax Reitz 
3922ada42401SStefan Hajnoczi     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
3923ada42401SStefan Hajnoczi 
3924ada42401SStefan Hajnoczi     for (i = 0; i < count; i++) {
3925ada42401SStefan Hajnoczi         it(opaque, formats[i]);
3926ada42401SStefan Hajnoczi     }
3927ada42401SStefan Hajnoczi 
3928e855e4fbSJeff Cody     g_free(formats);
3929e855e4fbSJeff Cody }
3930ea2384d3Sbellard 
3931dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */
3932dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name)
3933dc364f4cSBenoît Canet {
3934dc364f4cSBenoît Canet     BlockDriverState *bs;
3935dc364f4cSBenoît Canet 
3936dc364f4cSBenoît Canet     assert(node_name);
3937dc364f4cSBenoît Canet 
3938dc364f4cSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3939dc364f4cSBenoît Canet         if (!strcmp(node_name, bs->node_name)) {
3940dc364f4cSBenoît Canet             return bs;
3941dc364f4cSBenoît Canet         }
3942dc364f4cSBenoît Canet     }
3943dc364f4cSBenoît Canet     return NULL;
3944dc364f4cSBenoît Canet }
3945dc364f4cSBenoît Canet 
3946c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */
3947d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
3948c13163fbSBenoît Canet {
3949c13163fbSBenoît Canet     BlockDeviceInfoList *list, *entry;
3950c13163fbSBenoît Canet     BlockDriverState *bs;
3951c13163fbSBenoît Canet 
3952c13163fbSBenoît Canet     list = NULL;
3953c13163fbSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3954c83f9fbaSKevin Wolf         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
3955d5a8ee60SAlberto Garcia         if (!info) {
3956d5a8ee60SAlberto Garcia             qapi_free_BlockDeviceInfoList(list);
3957d5a8ee60SAlberto Garcia             return NULL;
3958d5a8ee60SAlberto Garcia         }
3959c13163fbSBenoît Canet         entry = g_malloc0(sizeof(*entry));
3960d5a8ee60SAlberto Garcia         entry->value = info;
3961c13163fbSBenoît Canet         entry->next = list;
3962c13163fbSBenoît Canet         list = entry;
3963c13163fbSBenoît Canet     }
3964c13163fbSBenoît Canet 
3965c13163fbSBenoît Canet     return list;
3966c13163fbSBenoît Canet }
3967c13163fbSBenoît Canet 
396812d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device,
396912d3ba82SBenoît Canet                                  const char *node_name,
397012d3ba82SBenoît Canet                                  Error **errp)
397112d3ba82SBenoît Canet {
39727f06d47eSMarkus Armbruster     BlockBackend *blk;
39737f06d47eSMarkus Armbruster     BlockDriverState *bs;
397412d3ba82SBenoît Canet 
397512d3ba82SBenoît Canet     if (device) {
39767f06d47eSMarkus Armbruster         blk = blk_by_name(device);
397712d3ba82SBenoît Canet 
39787f06d47eSMarkus Armbruster         if (blk) {
39799f4ed6fbSAlberto Garcia             bs = blk_bs(blk);
39809f4ed6fbSAlberto Garcia             if (!bs) {
39815433c24fSMax Reitz                 error_setg(errp, "Device '%s' has no medium", device);
39825433c24fSMax Reitz             }
39835433c24fSMax Reitz 
39849f4ed6fbSAlberto Garcia             return bs;
398512d3ba82SBenoît Canet         }
3986dd67fa50SBenoît Canet     }
398712d3ba82SBenoît Canet 
3988dd67fa50SBenoît Canet     if (node_name) {
398912d3ba82SBenoît Canet         bs = bdrv_find_node(node_name);
399012d3ba82SBenoît Canet 
3991dd67fa50SBenoît Canet         if (bs) {
3992dd67fa50SBenoît Canet             return bs;
3993dd67fa50SBenoît Canet         }
399412d3ba82SBenoît Canet     }
399512d3ba82SBenoît Canet 
3996dd67fa50SBenoît Canet     error_setg(errp, "Cannot find device=%s nor node_name=%s",
3997dd67fa50SBenoît Canet                      device ? device : "",
3998dd67fa50SBenoît Canet                      node_name ? node_name : "");
3999dd67fa50SBenoît Canet     return NULL;
400012d3ba82SBenoît Canet }
400112d3ba82SBenoît Canet 
40025a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise,
40035a6684d2SJeff Cody  * return false.  If either argument is NULL, return false. */
40045a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
40055a6684d2SJeff Cody {
40065a6684d2SJeff Cody     while (top && top != base) {
4007760e0063SKevin Wolf         top = backing_bs(top);
40085a6684d2SJeff Cody     }
40095a6684d2SJeff Cody 
40105a6684d2SJeff Cody     return top != NULL;
40115a6684d2SJeff Cody }
40125a6684d2SJeff Cody 
401304df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs)
401404df765aSFam Zheng {
401504df765aSFam Zheng     if (!bs) {
401604df765aSFam Zheng         return QTAILQ_FIRST(&graph_bdrv_states);
401704df765aSFam Zheng     }
401804df765aSFam Zheng     return QTAILQ_NEXT(bs, node_list);
401904df765aSFam Zheng }
402004df765aSFam Zheng 
402120a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs)
402220a9e77dSFam Zheng {
402320a9e77dSFam Zheng     return bs->node_name;
402420a9e77dSFam Zheng }
402520a9e77dSFam Zheng 
40261f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs)
40274c265bf9SKevin Wolf {
40284c265bf9SKevin Wolf     BdrvChild *c;
40294c265bf9SKevin Wolf     const char *name;
40304c265bf9SKevin Wolf 
40314c265bf9SKevin Wolf     /* If multiple parents have a name, just pick the first one. */
40324c265bf9SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
40334c265bf9SKevin Wolf         if (c->role->get_name) {
40344c265bf9SKevin Wolf             name = c->role->get_name(c);
40354c265bf9SKevin Wolf             if (name && *name) {
40364c265bf9SKevin Wolf                 return name;
40374c265bf9SKevin Wolf             }
40384c265bf9SKevin Wolf         }
40394c265bf9SKevin Wolf     }
40404c265bf9SKevin Wolf 
40414c265bf9SKevin Wolf     return NULL;
40424c265bf9SKevin Wolf }
40434c265bf9SKevin Wolf 
40447f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */
4045bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs)
4046ea2384d3Sbellard {
40474c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: "";
4048ea2384d3Sbellard }
4049ea2384d3Sbellard 
40509b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device
40519b2aa84fSAlberto Garcia  * name associated. Since node and device names live in the same
40529b2aa84fSAlberto Garcia  * namespace, the result is unambiguous. The exception is if both are
40539b2aa84fSAlberto Garcia  * absent, then this returns an empty (non-null) string. */
40549b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
40559b2aa84fSAlberto Garcia {
40564c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: bs->node_name;
40579b2aa84fSAlberto Garcia }
40589b2aa84fSAlberto Garcia 
4059c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
4060c8433287SMarkus Armbruster {
4061c8433287SMarkus Armbruster     return bs->open_flags;
4062c8433287SMarkus Armbruster }
4063c8433287SMarkus Armbruster 
40643ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs)
40653ac21627SPeter Lieven {
40663ac21627SPeter Lieven     return 1;
40673ac21627SPeter Lieven }
40683ac21627SPeter Lieven 
4069f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
4070f2feebbdSKevin Wolf {
4071d470ad42SMax Reitz     if (!bs->drv) {
4072d470ad42SMax Reitz         return 0;
4073d470ad42SMax Reitz     }
4074f2feebbdSKevin Wolf 
407511212d8fSPaolo Bonzini     /* If BS is a copy on write image, it is initialized to
407611212d8fSPaolo Bonzini        the contents of the base image, which may not be zeroes.  */
4077760e0063SKevin Wolf     if (bs->backing) {
407811212d8fSPaolo Bonzini         return 0;
407911212d8fSPaolo Bonzini     }
4080336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
4081336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
4082f2feebbdSKevin Wolf     }
40835a612c00SManos Pitsidianakis     if (bs->file && bs->drv->is_filter) {
40845a612c00SManos Pitsidianakis         return bdrv_has_zero_init(bs->file->bs);
40855a612c00SManos Pitsidianakis     }
4086f2feebbdSKevin Wolf 
40873ac21627SPeter Lieven     /* safe default */
40883ac21627SPeter Lieven     return 0;
4089f2feebbdSKevin Wolf }
4090f2feebbdSKevin Wolf 
40914ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
40924ce78691SPeter Lieven {
40934ce78691SPeter Lieven     BlockDriverInfo bdi;
40944ce78691SPeter Lieven 
4095760e0063SKevin Wolf     if (bs->backing) {
40964ce78691SPeter Lieven         return false;
40974ce78691SPeter Lieven     }
40984ce78691SPeter Lieven 
40994ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
41004ce78691SPeter Lieven         return bdi.unallocated_blocks_are_zero;
41014ce78691SPeter Lieven     }
41024ce78691SPeter Lieven 
41034ce78691SPeter Lieven     return false;
41044ce78691SPeter Lieven }
41054ce78691SPeter Lieven 
41064ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
41074ce78691SPeter Lieven {
41082f0342efSDenis V. Lunev     if (!(bs->open_flags & BDRV_O_UNMAP)) {
41094ce78691SPeter Lieven         return false;
41104ce78691SPeter Lieven     }
41114ce78691SPeter Lieven 
4112e24d813bSEric Blake     return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
41134ce78691SPeter Lieven }
41144ce78691SPeter Lieven 
4115045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
4116045df330Saliguori {
4117760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted)
4118045df330Saliguori         return bs->backing_file;
4119045df330Saliguori     else if (bs->encrypted)
4120045df330Saliguori         return bs->filename;
4121045df330Saliguori     else
4122045df330Saliguori         return NULL;
4123045df330Saliguori }
4124045df330Saliguori 
412583f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
412683f64091Sbellard                                char *filename, int filename_size)
412783f64091Sbellard {
412883f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
412983f64091Sbellard }
413083f64091Sbellard 
4131faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4132faea38e7Sbellard {
4133faea38e7Sbellard     BlockDriver *drv = bs->drv;
41345a612c00SManos Pitsidianakis     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
41355a612c00SManos Pitsidianakis     if (!drv) {
413619cb3738Sbellard         return -ENOMEDIUM;
41375a612c00SManos Pitsidianakis     }
41385a612c00SManos Pitsidianakis     if (!drv->bdrv_get_info) {
41395a612c00SManos Pitsidianakis         if (bs->file && drv->is_filter) {
41405a612c00SManos Pitsidianakis             return bdrv_get_info(bs->file->bs, bdi);
41415a612c00SManos Pitsidianakis         }
4142faea38e7Sbellard         return -ENOTSUP;
41435a612c00SManos Pitsidianakis     }
4144faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
4145faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
4146faea38e7Sbellard }
4147faea38e7Sbellard 
4148eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
4149eae041feSMax Reitz {
4150eae041feSMax Reitz     BlockDriver *drv = bs->drv;
4151eae041feSMax Reitz     if (drv && drv->bdrv_get_specific_info) {
4152eae041feSMax Reitz         return drv->bdrv_get_specific_info(bs);
4153eae041feSMax Reitz     }
4154eae041feSMax Reitz     return NULL;
4155eae041feSMax Reitz }
4156eae041feSMax Reitz 
4157a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
41588b9b0cc2SKevin Wolf {
4159bf736fe3SKevin Wolf     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
41608b9b0cc2SKevin Wolf         return;
41618b9b0cc2SKevin Wolf     }
41628b9b0cc2SKevin Wolf 
4163bf736fe3SKevin Wolf     bs->drv->bdrv_debug_event(bs, event);
416441c695c7SKevin Wolf }
41658b9b0cc2SKevin Wolf 
416641c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
416741c695c7SKevin Wolf                           const char *tag)
416841c695c7SKevin Wolf {
416941c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
41709a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
417141c695c7SKevin Wolf     }
417241c695c7SKevin Wolf 
417341c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
417441c695c7SKevin Wolf         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
417541c695c7SKevin Wolf     }
417641c695c7SKevin Wolf 
417741c695c7SKevin Wolf     return -ENOTSUP;
417841c695c7SKevin Wolf }
417941c695c7SKevin Wolf 
41804cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
41814cc70e93SFam Zheng {
41824cc70e93SFam Zheng     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
41839a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
41844cc70e93SFam Zheng     }
41854cc70e93SFam Zheng 
41864cc70e93SFam Zheng     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
41874cc70e93SFam Zheng         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
41884cc70e93SFam Zheng     }
41894cc70e93SFam Zheng 
41904cc70e93SFam Zheng     return -ENOTSUP;
41914cc70e93SFam Zheng }
41924cc70e93SFam Zheng 
419341c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
419441c695c7SKevin Wolf {
4195938789eaSMax Reitz     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
41969a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
419741c695c7SKevin Wolf     }
419841c695c7SKevin Wolf 
419941c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
420041c695c7SKevin Wolf         return bs->drv->bdrv_debug_resume(bs, tag);
420141c695c7SKevin Wolf     }
420241c695c7SKevin Wolf 
420341c695c7SKevin Wolf     return -ENOTSUP;
420441c695c7SKevin Wolf }
420541c695c7SKevin Wolf 
420641c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
420741c695c7SKevin Wolf {
420841c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
42099a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
421041c695c7SKevin Wolf     }
421141c695c7SKevin Wolf 
421241c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
421341c695c7SKevin Wolf         return bs->drv->bdrv_debug_is_suspended(bs, tag);
421441c695c7SKevin Wolf     }
421541c695c7SKevin Wolf 
421641c695c7SKevin Wolf     return false;
42178b9b0cc2SKevin Wolf }
42188b9b0cc2SKevin Wolf 
4219b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol.  If it is
4220b1b1d783SJeff Cody  * relative, it must be relative to the chain.  So, passing in bs->filename
4221b1b1d783SJeff Cody  * from a BDS as backing_file should not be done, as that may be relative to
4222b1b1d783SJeff Cody  * the CWD rather than the chain. */
4223e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4224e8a6bb9cSMarcelo Tosatti         const char *backing_file)
4225e8a6bb9cSMarcelo Tosatti {
4226b1b1d783SJeff Cody     char *filename_full = NULL;
4227b1b1d783SJeff Cody     char *backing_file_full = NULL;
4228b1b1d783SJeff Cody     char *filename_tmp = NULL;
4229b1b1d783SJeff Cody     int is_protocol = 0;
4230b1b1d783SJeff Cody     BlockDriverState *curr_bs = NULL;
4231b1b1d783SJeff Cody     BlockDriverState *retval = NULL;
4232418661e0SJeff Cody     Error *local_error = NULL;
4233b1b1d783SJeff Cody 
4234b1b1d783SJeff Cody     if (!bs || !bs->drv || !backing_file) {
4235e8a6bb9cSMarcelo Tosatti         return NULL;
4236e8a6bb9cSMarcelo Tosatti     }
4237e8a6bb9cSMarcelo Tosatti 
4238b1b1d783SJeff Cody     filename_full     = g_malloc(PATH_MAX);
4239b1b1d783SJeff Cody     backing_file_full = g_malloc(PATH_MAX);
4240b1b1d783SJeff Cody     filename_tmp      = g_malloc(PATH_MAX);
4241b1b1d783SJeff Cody 
4242b1b1d783SJeff Cody     is_protocol = path_has_protocol(backing_file);
4243b1b1d783SJeff Cody 
4244760e0063SKevin Wolf     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
4245b1b1d783SJeff Cody 
4246b1b1d783SJeff Cody         /* If either of the filename paths is actually a protocol, then
4247b1b1d783SJeff Cody          * compare unmodified paths; otherwise make paths relative */
4248b1b1d783SJeff Cody         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4249b1b1d783SJeff Cody             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4250760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
4251b1b1d783SJeff Cody                 break;
4252b1b1d783SJeff Cody             }
4253418661e0SJeff Cody             /* Also check against the full backing filename for the image */
4254418661e0SJeff Cody             bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
4255418661e0SJeff Cody                                            &local_error);
4256418661e0SJeff Cody             if (local_error == NULL) {
4257418661e0SJeff Cody                 if (strcmp(backing_file, backing_file_full) == 0) {
4258418661e0SJeff Cody                     retval = curr_bs->backing->bs;
4259418661e0SJeff Cody                     break;
4260418661e0SJeff Cody                 }
4261418661e0SJeff Cody             } else {
4262418661e0SJeff Cody                 error_free(local_error);
4263418661e0SJeff Cody                 local_error = NULL;
4264418661e0SJeff Cody             }
4265e8a6bb9cSMarcelo Tosatti         } else {
4266b1b1d783SJeff Cody             /* If not an absolute filename path, make it relative to the current
4267b1b1d783SJeff Cody              * image's filename path */
4268b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4269b1b1d783SJeff Cody                          backing_file);
4270b1b1d783SJeff Cody 
4271b1b1d783SJeff Cody             /* We are going to compare absolute pathnames */
4272b1b1d783SJeff Cody             if (!realpath(filename_tmp, filename_full)) {
4273b1b1d783SJeff Cody                 continue;
4274b1b1d783SJeff Cody             }
4275b1b1d783SJeff Cody 
4276b1b1d783SJeff Cody             /* We need to make sure the backing filename we are comparing against
4277b1b1d783SJeff Cody              * is relative to the current image filename (or absolute) */
4278b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4279b1b1d783SJeff Cody                          curr_bs->backing_file);
4280b1b1d783SJeff Cody 
4281b1b1d783SJeff Cody             if (!realpath(filename_tmp, backing_file_full)) {
4282b1b1d783SJeff Cody                 continue;
4283b1b1d783SJeff Cody             }
4284b1b1d783SJeff Cody 
4285b1b1d783SJeff Cody             if (strcmp(backing_file_full, filename_full) == 0) {
4286760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
4287b1b1d783SJeff Cody                 break;
4288b1b1d783SJeff Cody             }
4289e8a6bb9cSMarcelo Tosatti         }
4290e8a6bb9cSMarcelo Tosatti     }
4291e8a6bb9cSMarcelo Tosatti 
4292b1b1d783SJeff Cody     g_free(filename_full);
4293b1b1d783SJeff Cody     g_free(backing_file_full);
4294b1b1d783SJeff Cody     g_free(filename_tmp);
4295b1b1d783SJeff Cody     return retval;
4296e8a6bb9cSMarcelo Tosatti }
4297e8a6bb9cSMarcelo Tosatti 
4298ea2384d3Sbellard void bdrv_init(void)
4299ea2384d3Sbellard {
43005efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
4301ea2384d3Sbellard }
4302ce1a14dcSpbrook 
4303eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
4304eb852011SMarkus Armbruster {
4305eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
4306eb852011SMarkus Armbruster     bdrv_init();
4307eb852011SMarkus Armbruster }
4308eb852011SMarkus Armbruster 
43092b148f39SPaolo Bonzini static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
43102b148f39SPaolo Bonzini                                                   Error **errp)
43110f15423cSAnthony Liguori {
43124417ab7aSKevin Wolf     BdrvChild *child, *parent;
43139c5e6594SKevin Wolf     uint64_t perm, shared_perm;
43145a8a30dbSKevin Wolf     Error *local_err = NULL;
43155a8a30dbSKevin Wolf     int ret;
43165a8a30dbSKevin Wolf 
43173456a8d1SKevin Wolf     if (!bs->drv)  {
43183456a8d1SKevin Wolf         return;
43190f15423cSAnthony Liguori     }
43203456a8d1SKevin Wolf 
432104c01a5cSKevin Wolf     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
43227ea2d269SAlexey Kardashevskiy         return;
43237ea2d269SAlexey Kardashevskiy     }
43247ea2d269SAlexey Kardashevskiy 
432516e977d5SVladimir Sementsov-Ogievskiy     QLIST_FOREACH(child, &bs->children, next) {
43262b148f39SPaolo Bonzini         bdrv_co_invalidate_cache(child->bs, &local_err);
43275a8a30dbSKevin Wolf         if (local_err) {
43285a8a30dbSKevin Wolf             error_propagate(errp, local_err);
43295a8a30dbSKevin Wolf             return;
43303456a8d1SKevin Wolf         }
43310d1c5c91SFam Zheng     }
43320d1c5c91SFam Zheng 
4333dafe0960SKevin Wolf     /*
4334dafe0960SKevin Wolf      * Update permissions, they may differ for inactive nodes.
4335dafe0960SKevin Wolf      *
4336dafe0960SKevin Wolf      * Note that the required permissions of inactive images are always a
4337dafe0960SKevin Wolf      * subset of the permissions required after activating the image. This
4338dafe0960SKevin Wolf      * allows us to just get the permissions upfront without restricting
4339dafe0960SKevin Wolf      * drv->bdrv_invalidate_cache().
4340dafe0960SKevin Wolf      *
4341dafe0960SKevin Wolf      * It also means that in error cases, we don't have to try and revert to
4342dafe0960SKevin Wolf      * the old permissions (which is an operation that could fail, too). We can
4343dafe0960SKevin Wolf      * just keep the extended permissions for the next time that an activation
4344dafe0960SKevin Wolf      * of the image is tried.
4345dafe0960SKevin Wolf      */
434616e977d5SVladimir Sementsov-Ogievskiy     bs->open_flags &= ~BDRV_O_INACTIVE;
4347dafe0960SKevin Wolf     bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4348dafe0960SKevin Wolf     ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
4349dafe0960SKevin Wolf     if (ret < 0) {
4350dafe0960SKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
4351dafe0960SKevin Wolf         error_propagate(errp, local_err);
4352dafe0960SKevin Wolf         return;
4353dafe0960SKevin Wolf     }
4354dafe0960SKevin Wolf     bdrv_set_perm(bs, perm, shared_perm);
4355dafe0960SKevin Wolf 
43562b148f39SPaolo Bonzini     if (bs->drv->bdrv_co_invalidate_cache) {
43572b148f39SPaolo Bonzini         bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
43580d1c5c91SFam Zheng         if (local_err) {
43590d1c5c91SFam Zheng             bs->open_flags |= BDRV_O_INACTIVE;
43600d1c5c91SFam Zheng             error_propagate(errp, local_err);
43610d1c5c91SFam Zheng             return;
43620d1c5c91SFam Zheng         }
43630d1c5c91SFam Zheng     }
43643456a8d1SKevin Wolf 
43655a8a30dbSKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
43665a8a30dbSKevin Wolf     if (ret < 0) {
436704c01a5cSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
43685a8a30dbSKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
43695a8a30dbSKevin Wolf         return;
43705a8a30dbSKevin Wolf     }
43714417ab7aSKevin Wolf 
43724417ab7aSKevin Wolf     QLIST_FOREACH(parent, &bs->parents, next_parent) {
43734417ab7aSKevin Wolf         if (parent->role->activate) {
43744417ab7aSKevin Wolf             parent->role->activate(parent, &local_err);
43754417ab7aSKevin Wolf             if (local_err) {
43764417ab7aSKevin Wolf                 error_propagate(errp, local_err);
43774417ab7aSKevin Wolf                 return;
43784417ab7aSKevin Wolf             }
43794417ab7aSKevin Wolf         }
43804417ab7aSKevin Wolf     }
43810f15423cSAnthony Liguori }
43820f15423cSAnthony Liguori 
43832b148f39SPaolo Bonzini typedef struct InvalidateCacheCo {
43842b148f39SPaolo Bonzini     BlockDriverState *bs;
43852b148f39SPaolo Bonzini     Error **errp;
43862b148f39SPaolo Bonzini     bool done;
43872b148f39SPaolo Bonzini } InvalidateCacheCo;
43882b148f39SPaolo Bonzini 
43892b148f39SPaolo Bonzini static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
43902b148f39SPaolo Bonzini {
43912b148f39SPaolo Bonzini     InvalidateCacheCo *ico = opaque;
43922b148f39SPaolo Bonzini     bdrv_co_invalidate_cache(ico->bs, ico->errp);
43932b148f39SPaolo Bonzini     ico->done = true;
43942b148f39SPaolo Bonzini }
43952b148f39SPaolo Bonzini 
43962b148f39SPaolo Bonzini void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
43972b148f39SPaolo Bonzini {
43982b148f39SPaolo Bonzini     Coroutine *co;
43992b148f39SPaolo Bonzini     InvalidateCacheCo ico = {
44002b148f39SPaolo Bonzini         .bs = bs,
44012b148f39SPaolo Bonzini         .done = false,
44022b148f39SPaolo Bonzini         .errp = errp
44032b148f39SPaolo Bonzini     };
44042b148f39SPaolo Bonzini 
44052b148f39SPaolo Bonzini     if (qemu_in_coroutine()) {
44062b148f39SPaolo Bonzini         /* Fast-path if already in coroutine context */
44072b148f39SPaolo Bonzini         bdrv_invalidate_cache_co_entry(&ico);
44082b148f39SPaolo Bonzini     } else {
44092b148f39SPaolo Bonzini         co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
44102b148f39SPaolo Bonzini         qemu_coroutine_enter(co);
44112b148f39SPaolo Bonzini         BDRV_POLL_WHILE(bs, !ico.done);
44122b148f39SPaolo Bonzini     }
44132b148f39SPaolo Bonzini }
44142b148f39SPaolo Bonzini 
44155a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp)
44160f15423cSAnthony Liguori {
44177c8eece4SKevin Wolf     BlockDriverState *bs;
44185a8a30dbSKevin Wolf     Error *local_err = NULL;
441988be7b4bSKevin Wolf     BdrvNextIterator it;
44200f15423cSAnthony Liguori 
442188be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4422ed78cda3SStefan Hajnoczi         AioContext *aio_context = bdrv_get_aio_context(bs);
4423ed78cda3SStefan Hajnoczi 
4424ed78cda3SStefan Hajnoczi         aio_context_acquire(aio_context);
44255a8a30dbSKevin Wolf         bdrv_invalidate_cache(bs, &local_err);
4426ed78cda3SStefan Hajnoczi         aio_context_release(aio_context);
44275a8a30dbSKevin Wolf         if (local_err) {
44285a8a30dbSKevin Wolf             error_propagate(errp, local_err);
44295e003f17SMax Reitz             bdrv_next_cleanup(&it);
44305a8a30dbSKevin Wolf             return;
44315a8a30dbSKevin Wolf         }
44320f15423cSAnthony Liguori     }
44330f15423cSAnthony Liguori }
44340f15423cSAnthony Liguori 
4435aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs,
4436aad0b7a0SFam Zheng                                    bool setting_flag)
443776b1c7feSKevin Wolf {
4438cfa1a572SKevin Wolf     BdrvChild *child, *parent;
443976b1c7feSKevin Wolf     int ret;
444076b1c7feSKevin Wolf 
4441d470ad42SMax Reitz     if (!bs->drv) {
4442d470ad42SMax Reitz         return -ENOMEDIUM;
4443d470ad42SMax Reitz     }
4444d470ad42SMax Reitz 
4445aad0b7a0SFam Zheng     if (!setting_flag && bs->drv->bdrv_inactivate) {
444676b1c7feSKevin Wolf         ret = bs->drv->bdrv_inactivate(bs);
444776b1c7feSKevin Wolf         if (ret < 0) {
444876b1c7feSKevin Wolf             return ret;
444976b1c7feSKevin Wolf         }
445076b1c7feSKevin Wolf     }
445176b1c7feSKevin Wolf 
44527d5b5261SStefan Hajnoczi     if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) {
44539c5e6594SKevin Wolf         uint64_t perm, shared_perm;
44549c5e6594SKevin Wolf 
4455cfa1a572SKevin Wolf         QLIST_FOREACH(parent, &bs->parents, next_parent) {
4456cfa1a572SKevin Wolf             if (parent->role->inactivate) {
4457cfa1a572SKevin Wolf                 ret = parent->role->inactivate(parent);
4458cfa1a572SKevin Wolf                 if (ret < 0) {
4459cfa1a572SKevin Wolf                     return ret;
4460cfa1a572SKevin Wolf                 }
4461cfa1a572SKevin Wolf             }
4462cfa1a572SKevin Wolf         }
44639c5e6594SKevin Wolf 
44647d5b5261SStefan Hajnoczi         bs->open_flags |= BDRV_O_INACTIVE;
44657d5b5261SStefan Hajnoczi 
44669c5e6594SKevin Wolf         /* Update permissions, they may differ for inactive nodes */
44679c5e6594SKevin Wolf         bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
44683121fb45SKevin Wolf         bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
44699c5e6594SKevin Wolf         bdrv_set_perm(bs, perm, shared_perm);
4470aad0b7a0SFam Zheng     }
447138701b6aSKevin Wolf 
447238701b6aSKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
447338701b6aSKevin Wolf         ret = bdrv_inactivate_recurse(child->bs, setting_flag);
447438701b6aSKevin Wolf         if (ret < 0) {
447538701b6aSKevin Wolf             return ret;
447638701b6aSKevin Wolf         }
447738701b6aSKevin Wolf     }
447838701b6aSKevin Wolf 
4479615b5dcfSVladimir Sementsov-Ogievskiy     /* At this point persistent bitmaps should be already stored by the format
4480615b5dcfSVladimir Sementsov-Ogievskiy      * driver */
4481615b5dcfSVladimir Sementsov-Ogievskiy     bdrv_release_persistent_dirty_bitmaps(bs);
4482615b5dcfSVladimir Sementsov-Ogievskiy 
448376b1c7feSKevin Wolf     return 0;
448476b1c7feSKevin Wolf }
448576b1c7feSKevin Wolf 
448676b1c7feSKevin Wolf int bdrv_inactivate_all(void)
448776b1c7feSKevin Wolf {
448879720af6SMax Reitz     BlockDriverState *bs = NULL;
448988be7b4bSKevin Wolf     BdrvNextIterator it;
4490aad0b7a0SFam Zheng     int ret = 0;
4491aad0b7a0SFam Zheng     int pass;
4492bd6458e4SPaolo Bonzini     GSList *aio_ctxs = NULL, *ctx;
449376b1c7feSKevin Wolf 
449488be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4495bd6458e4SPaolo Bonzini         AioContext *aio_context = bdrv_get_aio_context(bs);
4496bd6458e4SPaolo Bonzini 
4497bd6458e4SPaolo Bonzini         if (!g_slist_find(aio_ctxs, aio_context)) {
4498bd6458e4SPaolo Bonzini             aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
4499bd6458e4SPaolo Bonzini             aio_context_acquire(aio_context);
4500bd6458e4SPaolo Bonzini         }
4501aad0b7a0SFam Zheng     }
450276b1c7feSKevin Wolf 
4503aad0b7a0SFam Zheng     /* We do two passes of inactivation. The first pass calls to drivers'
4504aad0b7a0SFam Zheng      * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
4505aad0b7a0SFam Zheng      * the second pass sets the BDRV_O_INACTIVE flag so that no further write
4506aad0b7a0SFam Zheng      * is allowed. */
4507aad0b7a0SFam Zheng     for (pass = 0; pass < 2; pass++) {
450888be7b4bSKevin Wolf         for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4509aad0b7a0SFam Zheng             ret = bdrv_inactivate_recurse(bs, pass);
451076b1c7feSKevin Wolf             if (ret < 0) {
45115e003f17SMax Reitz                 bdrv_next_cleanup(&it);
4512aad0b7a0SFam Zheng                 goto out;
4513aad0b7a0SFam Zheng             }
451476b1c7feSKevin Wolf         }
451576b1c7feSKevin Wolf     }
451676b1c7feSKevin Wolf 
4517aad0b7a0SFam Zheng out:
4518bd6458e4SPaolo Bonzini     for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4519bd6458e4SPaolo Bonzini         AioContext *aio_context = ctx->data;
4520bd6458e4SPaolo Bonzini         aio_context_release(aio_context);
4521aad0b7a0SFam Zheng     }
4522bd6458e4SPaolo Bonzini     g_slist_free(aio_ctxs);
4523aad0b7a0SFam Zheng 
4524aad0b7a0SFam Zheng     return ret;
452576b1c7feSKevin Wolf }
452676b1c7feSKevin Wolf 
4527f9f05dc5SKevin Wolf /**************************************************************/
452819cb3738Sbellard /* removable device support */
452919cb3738Sbellard 
453019cb3738Sbellard /**
453119cb3738Sbellard  * Return TRUE if the media is present
453219cb3738Sbellard  */
4533e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs)
453419cb3738Sbellard {
453519cb3738Sbellard     BlockDriver *drv = bs->drv;
453628d7a789SMax Reitz     BdrvChild *child;
4537a1aff5bfSMarkus Armbruster 
4538e031f750SMax Reitz     if (!drv) {
4539e031f750SMax Reitz         return false;
4540e031f750SMax Reitz     }
454128d7a789SMax Reitz     if (drv->bdrv_is_inserted) {
4542a1aff5bfSMarkus Armbruster         return drv->bdrv_is_inserted(bs);
454319cb3738Sbellard     }
454428d7a789SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
454528d7a789SMax Reitz         if (!bdrv_is_inserted(child->bs)) {
454628d7a789SMax Reitz             return false;
454728d7a789SMax Reitz         }
454828d7a789SMax Reitz     }
454928d7a789SMax Reitz     return true;
455028d7a789SMax Reitz }
455119cb3738Sbellard 
455219cb3738Sbellard /**
455319cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
455419cb3738Sbellard  */
4555f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
455619cb3738Sbellard {
455719cb3738Sbellard     BlockDriver *drv = bs->drv;
455819cb3738Sbellard 
4559822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
4560822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
456119cb3738Sbellard     }
456219cb3738Sbellard }
456319cb3738Sbellard 
456419cb3738Sbellard /**
456519cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
456619cb3738Sbellard  * to eject it manually).
456719cb3738Sbellard  */
4568025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
456919cb3738Sbellard {
457019cb3738Sbellard     BlockDriver *drv = bs->drv;
457119cb3738Sbellard 
4572025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
4573b8c6d095SStefan Hajnoczi 
4574025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
4575025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
457619cb3738Sbellard     }
457719cb3738Sbellard }
4578985a03b0Sths 
45799fcb0251SFam Zheng /* Get a reference to bs */
45809fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs)
45819fcb0251SFam Zheng {
45829fcb0251SFam Zheng     bs->refcnt++;
45839fcb0251SFam Zheng }
45849fcb0251SFam Zheng 
45859fcb0251SFam Zheng /* Release a previously grabbed reference to bs.
45869fcb0251SFam Zheng  * If after releasing, reference count is zero, the BlockDriverState is
45879fcb0251SFam Zheng  * deleted. */
45889fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs)
45899fcb0251SFam Zheng {
45909a4d5ca6SJeff Cody     if (!bs) {
45919a4d5ca6SJeff Cody         return;
45929a4d5ca6SJeff Cody     }
45939fcb0251SFam Zheng     assert(bs->refcnt > 0);
45949fcb0251SFam Zheng     if (--bs->refcnt == 0) {
45959fcb0251SFam Zheng         bdrv_delete(bs);
45969fcb0251SFam Zheng     }
45979fcb0251SFam Zheng }
45989fcb0251SFam Zheng 
4599fbe40ff7SFam Zheng struct BdrvOpBlocker {
4600fbe40ff7SFam Zheng     Error *reason;
4601fbe40ff7SFam Zheng     QLIST_ENTRY(BdrvOpBlocker) list;
4602fbe40ff7SFam Zheng };
4603fbe40ff7SFam Zheng 
4604fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
4605fbe40ff7SFam Zheng {
4606fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
4607fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4608fbe40ff7SFam Zheng     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
4609fbe40ff7SFam Zheng         blocker = QLIST_FIRST(&bs->op_blockers[op]);
461057ef3f12SEduardo Habkost         error_propagate(errp, error_copy(blocker->reason));
4611e43bfd9cSMarkus Armbruster         error_prepend(errp, "Node '%s' is busy: ",
4612e43bfd9cSMarkus Armbruster                       bdrv_get_device_or_node_name(bs));
4613fbe40ff7SFam Zheng         return true;
4614fbe40ff7SFam Zheng     }
4615fbe40ff7SFam Zheng     return false;
4616fbe40ff7SFam Zheng }
4617fbe40ff7SFam Zheng 
4618fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
4619fbe40ff7SFam Zheng {
4620fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
4621fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4622fbe40ff7SFam Zheng 
46235839e53bSMarkus Armbruster     blocker = g_new0(BdrvOpBlocker, 1);
4624fbe40ff7SFam Zheng     blocker->reason = reason;
4625fbe40ff7SFam Zheng     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
4626fbe40ff7SFam Zheng }
4627fbe40ff7SFam Zheng 
4628fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
4629fbe40ff7SFam Zheng {
4630fbe40ff7SFam Zheng     BdrvOpBlocker *blocker, *next;
4631fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4632fbe40ff7SFam Zheng     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
4633fbe40ff7SFam Zheng         if (blocker->reason == reason) {
4634fbe40ff7SFam Zheng             QLIST_REMOVE(blocker, list);
4635fbe40ff7SFam Zheng             g_free(blocker);
4636fbe40ff7SFam Zheng         }
4637fbe40ff7SFam Zheng     }
4638fbe40ff7SFam Zheng }
4639fbe40ff7SFam Zheng 
4640fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
4641fbe40ff7SFam Zheng {
4642fbe40ff7SFam Zheng     int i;
4643fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4644fbe40ff7SFam Zheng         bdrv_op_block(bs, i, reason);
4645fbe40ff7SFam Zheng     }
4646fbe40ff7SFam Zheng }
4647fbe40ff7SFam Zheng 
4648fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
4649fbe40ff7SFam Zheng {
4650fbe40ff7SFam Zheng     int i;
4651fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4652fbe40ff7SFam Zheng         bdrv_op_unblock(bs, i, reason);
4653fbe40ff7SFam Zheng     }
4654fbe40ff7SFam Zheng }
4655fbe40ff7SFam Zheng 
4656fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
4657fbe40ff7SFam Zheng {
4658fbe40ff7SFam Zheng     int i;
4659fbe40ff7SFam Zheng 
4660fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4661fbe40ff7SFam Zheng         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
4662fbe40ff7SFam Zheng             return false;
4663fbe40ff7SFam Zheng         }
4664fbe40ff7SFam Zheng     }
4665fbe40ff7SFam Zheng     return true;
4666fbe40ff7SFam Zheng }
4667fbe40ff7SFam Zheng 
4668d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt,
4669f88e1a42SJes Sorensen                      const char *base_filename, const char *base_fmt,
46709217283dSFam Zheng                      char *options, uint64_t img_size, int flags, bool quiet,
46719217283dSFam Zheng                      Error **errp)
4672f88e1a42SJes Sorensen {
467383d0521aSChunyan Liu     QemuOptsList *create_opts = NULL;
467483d0521aSChunyan Liu     QemuOpts *opts = NULL;
467583d0521aSChunyan Liu     const char *backing_fmt, *backing_file;
467683d0521aSChunyan Liu     int64_t size;
4677f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
4678cc84d90fSMax Reitz     Error *local_err = NULL;
4679f88e1a42SJes Sorensen     int ret = 0;
4680f88e1a42SJes Sorensen 
4681f88e1a42SJes Sorensen     /* Find driver and parse its options */
4682f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
4683f88e1a42SJes Sorensen     if (!drv) {
468471c79813SLuiz Capitulino         error_setg(errp, "Unknown file format '%s'", fmt);
4685d92ada22SLuiz Capitulino         return;
4686f88e1a42SJes Sorensen     }
4687f88e1a42SJes Sorensen 
4688b65a5e12SMax Reitz     proto_drv = bdrv_find_protocol(filename, true, errp);
4689f88e1a42SJes Sorensen     if (!proto_drv) {
4690d92ada22SLuiz Capitulino         return;
4691f88e1a42SJes Sorensen     }
4692f88e1a42SJes Sorensen 
4693c6149724SMax Reitz     if (!drv->create_opts) {
4694c6149724SMax Reitz         error_setg(errp, "Format driver '%s' does not support image creation",
4695c6149724SMax Reitz                    drv->format_name);
4696c6149724SMax Reitz         return;
4697c6149724SMax Reitz     }
4698c6149724SMax Reitz 
4699c6149724SMax Reitz     if (!proto_drv->create_opts) {
4700c6149724SMax Reitz         error_setg(errp, "Protocol driver '%s' does not support image creation",
4701c6149724SMax Reitz                    proto_drv->format_name);
4702c6149724SMax Reitz         return;
4703c6149724SMax Reitz     }
4704c6149724SMax Reitz 
4705c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, drv->create_opts);
4706c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4707f88e1a42SJes Sorensen 
4708f88e1a42SJes Sorensen     /* Create parameter list with default values */
470983d0521aSChunyan Liu     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
471039101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4711f88e1a42SJes Sorensen 
4712f88e1a42SJes Sorensen     /* Parse -o options */
4713f88e1a42SJes Sorensen     if (options) {
4714dc523cd3SMarkus Armbruster         qemu_opts_do_parse(opts, options, NULL, &local_err);
4715dc523cd3SMarkus Armbruster         if (local_err) {
4716dc523cd3SMarkus Armbruster             error_report_err(local_err);
4717dc523cd3SMarkus Armbruster             local_err = NULL;
471883d0521aSChunyan Liu             error_setg(errp, "Invalid options for file format '%s'", fmt);
4719f88e1a42SJes Sorensen             goto out;
4720f88e1a42SJes Sorensen         }
4721f88e1a42SJes Sorensen     }
4722f88e1a42SJes Sorensen 
4723f88e1a42SJes Sorensen     if (base_filename) {
4724f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
47256be4194bSMarkus Armbruster         if (local_err) {
472671c79813SLuiz Capitulino             error_setg(errp, "Backing file not supported for file format '%s'",
472771c79813SLuiz Capitulino                        fmt);
4728f88e1a42SJes Sorensen             goto out;
4729f88e1a42SJes Sorensen         }
4730f88e1a42SJes Sorensen     }
4731f88e1a42SJes Sorensen 
4732f88e1a42SJes Sorensen     if (base_fmt) {
4733f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
47346be4194bSMarkus Armbruster         if (local_err) {
473571c79813SLuiz Capitulino             error_setg(errp, "Backing file format not supported for file "
473671c79813SLuiz Capitulino                              "format '%s'", fmt);
4737f88e1a42SJes Sorensen             goto out;
4738f88e1a42SJes Sorensen         }
4739f88e1a42SJes Sorensen     }
4740f88e1a42SJes Sorensen 
474183d0521aSChunyan Liu     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
474283d0521aSChunyan Liu     if (backing_file) {
474383d0521aSChunyan Liu         if (!strcmp(filename, backing_file)) {
474471c79813SLuiz Capitulino             error_setg(errp, "Error: Trying to create an image with the "
474571c79813SLuiz Capitulino                              "same filename as the backing file");
4746792da93aSJes Sorensen             goto out;
4747792da93aSJes Sorensen         }
4748792da93aSJes Sorensen     }
4749792da93aSJes Sorensen 
475083d0521aSChunyan Liu     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
4751f88e1a42SJes Sorensen 
47526e6e55f5SJohn Snow     /* The size for the image must always be specified, unless we have a backing
47536e6e55f5SJohn Snow      * file and we have not been forbidden from opening it. */
4754a8b42a1cSEric Blake     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
47556e6e55f5SJohn Snow     if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
475666f6b814SMax Reitz         BlockDriverState *bs;
475729168018SMax Reitz         char *full_backing = g_new0(char, PATH_MAX);
475863090dacSPaolo Bonzini         int back_flags;
4759e6641719SMax Reitz         QDict *backing_options = NULL;
476063090dacSPaolo Bonzini 
476129168018SMax Reitz         bdrv_get_full_backing_filename_from_filename(filename, backing_file,
476229168018SMax Reitz                                                      full_backing, PATH_MAX,
476329168018SMax Reitz                                                      &local_err);
476429168018SMax Reitz         if (local_err) {
476529168018SMax Reitz             g_free(full_backing);
476629168018SMax Reitz             goto out;
476729168018SMax Reitz         }
476829168018SMax Reitz 
476963090dacSPaolo Bonzini         /* backing files always opened read-only */
477061de4c68SKevin Wolf         back_flags = flags;
4771bfd18d1eSKevin Wolf         back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4772f88e1a42SJes Sorensen 
4773e6641719SMax Reitz         backing_options = qdict_new();
4774cc954f01SFam Zheng         if (backing_fmt) {
477546f5ac20SEric Blake             qdict_put_str(backing_options, "driver", backing_fmt);
4776e6641719SMax Reitz         }
4777cc954f01SFam Zheng         qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
4778e6641719SMax Reitz 
47795b363937SMax Reitz         bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
47805b363937SMax Reitz                        &local_err);
478129168018SMax Reitz         g_free(full_backing);
47826e6e55f5SJohn Snow         if (!bs && size != -1) {
47836e6e55f5SJohn Snow             /* Couldn't open BS, but we have a size, so it's nonfatal */
47846e6e55f5SJohn Snow             warn_reportf_err(local_err,
47856e6e55f5SJohn Snow                             "Could not verify backing image. "
47866e6e55f5SJohn Snow                             "This may become an error in future versions.\n");
47876e6e55f5SJohn Snow             local_err = NULL;
47886e6e55f5SJohn Snow         } else if (!bs) {
47896e6e55f5SJohn Snow             /* Couldn't open bs, do not have size */
47906e6e55f5SJohn Snow             error_append_hint(&local_err,
47916e6e55f5SJohn Snow                               "Could not open backing image to determine size.\n");
4792f88e1a42SJes Sorensen             goto out;
47936e6e55f5SJohn Snow         } else {
47946e6e55f5SJohn Snow             if (size == -1) {
47956e6e55f5SJohn Snow                 /* Opened BS, have no size */
479652bf1e72SMarkus Armbruster                 size = bdrv_getlength(bs);
479752bf1e72SMarkus Armbruster                 if (size < 0) {
479852bf1e72SMarkus Armbruster                     error_setg_errno(errp, -size, "Could not get size of '%s'",
479952bf1e72SMarkus Armbruster                                      backing_file);
480052bf1e72SMarkus Armbruster                     bdrv_unref(bs);
480152bf1e72SMarkus Armbruster                     goto out;
480252bf1e72SMarkus Armbruster                 }
480339101f25SMarkus Armbruster                 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
48046e6e55f5SJohn Snow             }
480566f6b814SMax Reitz             bdrv_unref(bs);
48066e6e55f5SJohn Snow         }
48076e6e55f5SJohn Snow     } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
48086e6e55f5SJohn Snow 
48096e6e55f5SJohn Snow     if (size == -1) {
481071c79813SLuiz Capitulino         error_setg(errp, "Image creation needs a size parameter");
4811f88e1a42SJes Sorensen         goto out;
4812f88e1a42SJes Sorensen     }
4813f88e1a42SJes Sorensen 
4814f382d43aSMiroslav Rezanina     if (!quiet) {
4815f88e1a42SJes Sorensen         printf("Formatting '%s', fmt=%s ", filename, fmt);
481643c5d8f8SFam Zheng         qemu_opts_print(opts, " ");
4817f88e1a42SJes Sorensen         puts("");
4818f382d43aSMiroslav Rezanina     }
481983d0521aSChunyan Liu 
4820c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
482183d0521aSChunyan Liu 
4822cc84d90fSMax Reitz     if (ret == -EFBIG) {
4823cc84d90fSMax Reitz         /* This is generally a better message than whatever the driver would
4824cc84d90fSMax Reitz          * deliver (especially because of the cluster_size_hint), since that
4825cc84d90fSMax Reitz          * is most probably not much different from "image too large". */
4826f3f4d2c0SKevin Wolf         const char *cluster_size_hint = "";
482783d0521aSChunyan Liu         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
4828f3f4d2c0SKevin Wolf             cluster_size_hint = " (try using a larger cluster size)";
4829f3f4d2c0SKevin Wolf         }
4830cc84d90fSMax Reitz         error_setg(errp, "The image size is too large for file format '%s'"
4831cc84d90fSMax Reitz                    "%s", fmt, cluster_size_hint);
4832cc84d90fSMax Reitz         error_free(local_err);
4833cc84d90fSMax Reitz         local_err = NULL;
4834f88e1a42SJes Sorensen     }
4835f88e1a42SJes Sorensen 
4836f88e1a42SJes Sorensen out:
483783d0521aSChunyan Liu     qemu_opts_del(opts);
483883d0521aSChunyan Liu     qemu_opts_free(create_opts);
4839cc84d90fSMax Reitz     error_propagate(errp, local_err);
4840cc84d90fSMax Reitz }
484185d126f3SStefan Hajnoczi 
484285d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs)
484385d126f3SStefan Hajnoczi {
484433f2a757SStefan Hajnoczi     return bs ? bs->aio_context : qemu_get_aio_context();
4845dcd04228SStefan Hajnoczi }
4846dcd04228SStefan Hajnoczi 
48477719f3c9SStefan Hajnoczi AioWait *bdrv_get_aio_wait(BlockDriverState *bs)
48487719f3c9SStefan Hajnoczi {
48497719f3c9SStefan Hajnoczi     return bs ? &bs->wait : NULL;
4850dcd04228SStefan Hajnoczi }
4851dcd04228SStefan Hajnoczi 
4852052a7572SFam Zheng void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
4853052a7572SFam Zheng {
4854052a7572SFam Zheng     aio_co_enter(bdrv_get_aio_context(bs), co);
4855052a7572SFam Zheng }
4856052a7572SFam Zheng 
4857e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
4858e8a095daSStefan Hajnoczi {
4859e8a095daSStefan Hajnoczi     QLIST_REMOVE(ban, list);
4860e8a095daSStefan Hajnoczi     g_free(ban);
4861e8a095daSStefan Hajnoczi }
4862e8a095daSStefan Hajnoczi 
4863dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs)
4864dcd04228SStefan Hajnoczi {
4865e8a095daSStefan Hajnoczi     BdrvAioNotifier *baf, *baf_tmp;
4866b97511c7SMax Reitz     BdrvChild *child;
486733384421SMax Reitz 
4868dcd04228SStefan Hajnoczi     if (!bs->drv) {
4869dcd04228SStefan Hajnoczi         return;
4870dcd04228SStefan Hajnoczi     }
4871dcd04228SStefan Hajnoczi 
4872e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
4873e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
4874e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
4875e8a095daSStefan Hajnoczi         if (baf->deleted) {
4876e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(baf);
4877e8a095daSStefan Hajnoczi         } else {
487833384421SMax Reitz             baf->detach_aio_context(baf->opaque);
487933384421SMax Reitz         }
4880e8a095daSStefan Hajnoczi     }
4881e8a095daSStefan Hajnoczi     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
4882e8a095daSStefan Hajnoczi      * remove remaining aio notifiers if we aren't called again.
4883e8a095daSStefan Hajnoczi      */
4884e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
488533384421SMax Reitz 
4886dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_detach_aio_context) {
4887dcd04228SStefan Hajnoczi         bs->drv->bdrv_detach_aio_context(bs);
4888dcd04228SStefan Hajnoczi     }
4889b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
4890b97511c7SMax Reitz         bdrv_detach_aio_context(child->bs);
4891dcd04228SStefan Hajnoczi     }
4892dcd04228SStefan Hajnoczi 
4893dcd04228SStefan Hajnoczi     bs->aio_context = NULL;
4894dcd04228SStefan Hajnoczi }
4895dcd04228SStefan Hajnoczi 
4896dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs,
4897dcd04228SStefan Hajnoczi                              AioContext *new_context)
4898dcd04228SStefan Hajnoczi {
4899e8a095daSStefan Hajnoczi     BdrvAioNotifier *ban, *ban_tmp;
4900b97511c7SMax Reitz     BdrvChild *child;
490133384421SMax Reitz 
4902dcd04228SStefan Hajnoczi     if (!bs->drv) {
4903dcd04228SStefan Hajnoczi         return;
4904dcd04228SStefan Hajnoczi     }
4905dcd04228SStefan Hajnoczi 
4906dcd04228SStefan Hajnoczi     bs->aio_context = new_context;
4907dcd04228SStefan Hajnoczi 
4908b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
4909b97511c7SMax Reitz         bdrv_attach_aio_context(child->bs, new_context);
4910dcd04228SStefan Hajnoczi     }
4911dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_attach_aio_context) {
4912dcd04228SStefan Hajnoczi         bs->drv->bdrv_attach_aio_context(bs, new_context);
4913dcd04228SStefan Hajnoczi     }
491433384421SMax Reitz 
4915e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
4916e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
4917e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
4918e8a095daSStefan Hajnoczi         if (ban->deleted) {
4919e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(ban);
4920e8a095daSStefan Hajnoczi         } else {
492133384421SMax Reitz             ban->attached_aio_context(new_context, ban->opaque);
492233384421SMax Reitz         }
4923dcd04228SStefan Hajnoczi     }
4924e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
4925e8a095daSStefan Hajnoczi }
4926dcd04228SStefan Hajnoczi 
4927dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
4928dcd04228SStefan Hajnoczi {
4929aabf5910SFam Zheng     AioContext *ctx = bdrv_get_aio_context(bs);
4930c2b6428dSPaolo Bonzini 
4931aabf5910SFam Zheng     aio_disable_external(ctx);
49320152bf40SKevin Wolf     bdrv_parent_drained_begin(bs, NULL);
493353ec73e2SFam Zheng     bdrv_drain(bs); /* ensure there are no in-flight requests */
4934dcd04228SStefan Hajnoczi 
4935c2b6428dSPaolo Bonzini     while (aio_poll(ctx, false)) {
4936c2b6428dSPaolo Bonzini         /* wait for all bottom halves to execute */
4937c2b6428dSPaolo Bonzini     }
4938c2b6428dSPaolo Bonzini 
4939dcd04228SStefan Hajnoczi     bdrv_detach_aio_context(bs);
4940dcd04228SStefan Hajnoczi 
4941dcd04228SStefan Hajnoczi     /* This function executes in the old AioContext so acquire the new one in
4942dcd04228SStefan Hajnoczi      * case it runs in a different thread.
4943dcd04228SStefan Hajnoczi      */
4944dcd04228SStefan Hajnoczi     aio_context_acquire(new_context);
4945dcd04228SStefan Hajnoczi     bdrv_attach_aio_context(bs, new_context);
49460152bf40SKevin Wolf     bdrv_parent_drained_end(bs, NULL);
4947aabf5910SFam Zheng     aio_enable_external(ctx);
4948dcd04228SStefan Hajnoczi     aio_context_release(new_context);
494985d126f3SStefan Hajnoczi }
4950d616b224SStefan Hajnoczi 
495133384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs,
495233384421SMax Reitz         void (*attached_aio_context)(AioContext *new_context, void *opaque),
495333384421SMax Reitz         void (*detach_aio_context)(void *opaque), void *opaque)
495433384421SMax Reitz {
495533384421SMax Reitz     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
495633384421SMax Reitz     *ban = (BdrvAioNotifier){
495733384421SMax Reitz         .attached_aio_context = attached_aio_context,
495833384421SMax Reitz         .detach_aio_context   = detach_aio_context,
495933384421SMax Reitz         .opaque               = opaque
496033384421SMax Reitz     };
496133384421SMax Reitz 
496233384421SMax Reitz     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
496333384421SMax Reitz }
496433384421SMax Reitz 
496533384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
496633384421SMax Reitz                                       void (*attached_aio_context)(AioContext *,
496733384421SMax Reitz                                                                    void *),
496833384421SMax Reitz                                       void (*detach_aio_context)(void *),
496933384421SMax Reitz                                       void *opaque)
497033384421SMax Reitz {
497133384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
497233384421SMax Reitz 
497333384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
497433384421SMax Reitz         if (ban->attached_aio_context == attached_aio_context &&
497533384421SMax Reitz             ban->detach_aio_context   == detach_aio_context   &&
4976e8a095daSStefan Hajnoczi             ban->opaque               == opaque               &&
4977e8a095daSStefan Hajnoczi             ban->deleted              == false)
497833384421SMax Reitz         {
4979e8a095daSStefan Hajnoczi             if (bs->walking_aio_notifiers) {
4980e8a095daSStefan Hajnoczi                 ban->deleted = true;
4981e8a095daSStefan Hajnoczi             } else {
4982e8a095daSStefan Hajnoczi                 bdrv_do_remove_aio_context_notifier(ban);
4983e8a095daSStefan Hajnoczi             }
498433384421SMax Reitz             return;
498533384421SMax Reitz         }
498633384421SMax Reitz     }
498733384421SMax Reitz 
498833384421SMax Reitz     abort();
498933384421SMax Reitz }
499033384421SMax Reitz 
499177485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
49928b13976dSMax Reitz                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque)
49936f176b48SMax Reitz {
4994d470ad42SMax Reitz     if (!bs->drv) {
4995d470ad42SMax Reitz         return -ENOMEDIUM;
4996d470ad42SMax Reitz     }
4997c282e1fdSChunyan Liu     if (!bs->drv->bdrv_amend_options) {
49986f176b48SMax Reitz         return -ENOTSUP;
49996f176b48SMax Reitz     }
50008b13976dSMax Reitz     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque);
50016f176b48SMax Reitz }
5002f6186f49SBenoît Canet 
5003b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method
5004b5042a36SBenoît Canet  * of block filter and by bdrv_is_first_non_filter.
5005b5042a36SBenoît Canet  * It is used to test if the given bs is the candidate or recurse more in the
5006b5042a36SBenoît Canet  * node graph.
5007212a5a8fSBenoît Canet  */
5008212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5009212a5a8fSBenoît Canet                                       BlockDriverState *candidate)
5010f6186f49SBenoît Canet {
5011b5042a36SBenoît Canet     /* return false if basic checks fails */
5012b5042a36SBenoît Canet     if (!bs || !bs->drv) {
5013b5042a36SBenoît Canet         return false;
5014b5042a36SBenoît Canet     }
5015b5042a36SBenoît Canet 
5016b5042a36SBenoît Canet     /* the code reached a non block filter driver -> check if the bs is
5017b5042a36SBenoît Canet      * the same as the candidate. It's the recursion termination condition.
5018b5042a36SBenoît Canet      */
5019b5042a36SBenoît Canet     if (!bs->drv->is_filter) {
5020b5042a36SBenoît Canet         return bs == candidate;
5021b5042a36SBenoît Canet     }
5022b5042a36SBenoît Canet     /* Down this path the driver is a block filter driver */
5023b5042a36SBenoît Canet 
5024b5042a36SBenoît Canet     /* If the block filter recursion method is defined use it to recurse down
5025b5042a36SBenoît Canet      * the node graph.
5026b5042a36SBenoît Canet      */
5027b5042a36SBenoît Canet     if (bs->drv->bdrv_recurse_is_first_non_filter) {
5028212a5a8fSBenoît Canet         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5029212a5a8fSBenoît Canet     }
5030212a5a8fSBenoît Canet 
5031b5042a36SBenoît Canet     /* the driver is a block filter but don't allow to recurse -> return false
5032b5042a36SBenoît Canet      */
5033b5042a36SBenoît Canet     return false;
5034212a5a8fSBenoît Canet }
5035212a5a8fSBenoît Canet 
5036212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's
5037212a5a8fSBenoît Canet  * bs chain. Since we don't have pointers to parents it explore all bs chains
5038212a5a8fSBenoît Canet  * from the top. Some filters can choose not to pass down the recursion.
5039212a5a8fSBenoît Canet  */
5040212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5041212a5a8fSBenoît Canet {
50427c8eece4SKevin Wolf     BlockDriverState *bs;
504388be7b4bSKevin Wolf     BdrvNextIterator it;
5044212a5a8fSBenoît Canet 
5045212a5a8fSBenoît Canet     /* walk down the bs forest recursively */
504688be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5047212a5a8fSBenoît Canet         bool perm;
5048212a5a8fSBenoît Canet 
5049b5042a36SBenoît Canet         /* try to recurse in this top level bs */
5050e6dc8a1fSKevin Wolf         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
5051212a5a8fSBenoît Canet 
5052212a5a8fSBenoît Canet         /* candidate is the first non filter */
5053212a5a8fSBenoît Canet         if (perm) {
50545e003f17SMax Reitz             bdrv_next_cleanup(&it);
5055212a5a8fSBenoît Canet             return true;
5056212a5a8fSBenoît Canet         }
5057212a5a8fSBenoît Canet     }
5058212a5a8fSBenoît Canet 
5059212a5a8fSBenoît Canet     return false;
5060f6186f49SBenoît Canet }
506109158f00SBenoît Canet 
5062e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
5063e12f3784SWen Congyang                                         const char *node_name, Error **errp)
506409158f00SBenoît Canet {
506509158f00SBenoît Canet     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
50665a7e7a0bSStefan Hajnoczi     AioContext *aio_context;
50675a7e7a0bSStefan Hajnoczi 
506809158f00SBenoît Canet     if (!to_replace_bs) {
506909158f00SBenoît Canet         error_setg(errp, "Node name '%s' not found", node_name);
507009158f00SBenoît Canet         return NULL;
507109158f00SBenoît Canet     }
507209158f00SBenoît Canet 
50735a7e7a0bSStefan Hajnoczi     aio_context = bdrv_get_aio_context(to_replace_bs);
50745a7e7a0bSStefan Hajnoczi     aio_context_acquire(aio_context);
50755a7e7a0bSStefan Hajnoczi 
507609158f00SBenoît Canet     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
50775a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
50785a7e7a0bSStefan Hajnoczi         goto out;
507909158f00SBenoît Canet     }
508009158f00SBenoît Canet 
508109158f00SBenoît Canet     /* We don't want arbitrary node of the BDS chain to be replaced only the top
508209158f00SBenoît Canet      * most non filter in order to prevent data corruption.
508309158f00SBenoît Canet      * Another benefit is that this tests exclude backing files which are
508409158f00SBenoît Canet      * blocked by the backing blockers.
508509158f00SBenoît Canet      */
5086e12f3784SWen Congyang     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
508709158f00SBenoît Canet         error_setg(errp, "Only top most non filter can be replaced");
50885a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
50895a7e7a0bSStefan Hajnoczi         goto out;
509009158f00SBenoît Canet     }
509109158f00SBenoît Canet 
50925a7e7a0bSStefan Hajnoczi out:
50935a7e7a0bSStefan Hajnoczi     aio_context_release(aio_context);
509409158f00SBenoît Canet     return to_replace_bs;
509509158f00SBenoît Canet }
5096448ad91dSMing Lei 
509791af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs)
509891af7014SMax Reitz {
509991af7014SMax Reitz     const QDictEntry *entry;
51009e700c1aSKevin Wolf     QemuOptDesc *desc;
5101260fecf1SKevin Wolf     BdrvChild *child;
510291af7014SMax Reitz     bool found_any = false;
5103260fecf1SKevin Wolf     const char *p;
510491af7014SMax Reitz 
510591af7014SMax Reitz     for (entry = qdict_first(bs->options); entry;
510691af7014SMax Reitz          entry = qdict_next(bs->options, entry))
510791af7014SMax Reitz     {
5108260fecf1SKevin Wolf         /* Exclude options for children */
5109260fecf1SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
5110260fecf1SKevin Wolf             if (strstart(qdict_entry_key(entry), child->name, &p)
5111260fecf1SKevin Wolf                 && (!*p || *p == '.'))
5112260fecf1SKevin Wolf             {
5113260fecf1SKevin Wolf                 break;
5114260fecf1SKevin Wolf             }
5115260fecf1SKevin Wolf         }
5116260fecf1SKevin Wolf         if (child) {
51179e700c1aSKevin Wolf             continue;
51189e700c1aSKevin Wolf         }
51199e700c1aSKevin Wolf 
51209e700c1aSKevin Wolf         /* And exclude all non-driver-specific options */
51219e700c1aSKevin Wolf         for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
51229e700c1aSKevin Wolf             if (!strcmp(qdict_entry_key(entry), desc->name)) {
51239e700c1aSKevin Wolf                 break;
51249e700c1aSKevin Wolf             }
51259e700c1aSKevin Wolf         }
51269e700c1aSKevin Wolf         if (desc->name) {
51279e700c1aSKevin Wolf             continue;
51289e700c1aSKevin Wolf         }
51299e700c1aSKevin Wolf 
513091af7014SMax Reitz         qobject_incref(qdict_entry_value(entry));
513191af7014SMax Reitz         qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry));
513291af7014SMax Reitz         found_any = true;
513391af7014SMax Reitz     }
513491af7014SMax Reitz 
513591af7014SMax Reitz     return found_any;
513691af7014SMax Reitz }
513791af7014SMax Reitz 
513891af7014SMax Reitz /* Updates the following BDS fields:
513991af7014SMax Reitz  *  - exact_filename: A filename which may be used for opening a block device
514091af7014SMax Reitz  *                    which (mostly) equals the given BDS (even without any
514191af7014SMax Reitz  *                    other options; so reading and writing must return the same
514291af7014SMax Reitz  *                    results, but caching etc. may be different)
514391af7014SMax Reitz  *  - full_open_options: Options which, when given when opening a block device
514491af7014SMax Reitz  *                       (without a filename), result in a BDS (mostly)
514591af7014SMax Reitz  *                       equalling the given one
514691af7014SMax Reitz  *  - filename: If exact_filename is set, it is copied here. Otherwise,
514791af7014SMax Reitz  *              full_open_options is converted to a JSON object, prefixed with
514891af7014SMax Reitz  *              "json:" (for use through the JSON pseudo protocol) and put here.
514991af7014SMax Reitz  */
515091af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs)
515191af7014SMax Reitz {
515291af7014SMax Reitz     BlockDriver *drv = bs->drv;
515391af7014SMax Reitz     QDict *opts;
515491af7014SMax Reitz 
515591af7014SMax Reitz     if (!drv) {
515691af7014SMax Reitz         return;
515791af7014SMax Reitz     }
515891af7014SMax Reitz 
515991af7014SMax Reitz     /* This BDS's file name will most probably depend on its file's name, so
516091af7014SMax Reitz      * refresh that first */
516191af7014SMax Reitz     if (bs->file) {
51629a4f4c31SKevin Wolf         bdrv_refresh_filename(bs->file->bs);
516391af7014SMax Reitz     }
516491af7014SMax Reitz 
516591af7014SMax Reitz     if (drv->bdrv_refresh_filename) {
516691af7014SMax Reitz         /* Obsolete information is of no use here, so drop the old file name
516791af7014SMax Reitz          * information before refreshing it */
516891af7014SMax Reitz         bs->exact_filename[0] = '\0';
516991af7014SMax Reitz         if (bs->full_open_options) {
517091af7014SMax Reitz             QDECREF(bs->full_open_options);
517191af7014SMax Reitz             bs->full_open_options = NULL;
517291af7014SMax Reitz         }
517391af7014SMax Reitz 
51744cdd01d3SKevin Wolf         opts = qdict_new();
51754cdd01d3SKevin Wolf         append_open_options(opts, bs);
51764cdd01d3SKevin Wolf         drv->bdrv_refresh_filename(bs, opts);
51774cdd01d3SKevin Wolf         QDECREF(opts);
517891af7014SMax Reitz     } else if (bs->file) {
517991af7014SMax Reitz         /* Try to reconstruct valid information from the underlying file */
518091af7014SMax Reitz         bool has_open_options;
518191af7014SMax Reitz 
518291af7014SMax Reitz         bs->exact_filename[0] = '\0';
518391af7014SMax Reitz         if (bs->full_open_options) {
518491af7014SMax Reitz             QDECREF(bs->full_open_options);
518591af7014SMax Reitz             bs->full_open_options = NULL;
518691af7014SMax Reitz         }
518791af7014SMax Reitz 
518891af7014SMax Reitz         opts = qdict_new();
518991af7014SMax Reitz         has_open_options = append_open_options(opts, bs);
519091af7014SMax Reitz 
519191af7014SMax Reitz         /* If no specific options have been given for this BDS, the filename of
519291af7014SMax Reitz          * the underlying file should suffice for this one as well */
51939a4f4c31SKevin Wolf         if (bs->file->bs->exact_filename[0] && !has_open_options) {
51949a4f4c31SKevin Wolf             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
519591af7014SMax Reitz         }
519691af7014SMax Reitz         /* Reconstructing the full options QDict is simple for most format block
519791af7014SMax Reitz          * drivers, as long as the full options are known for the underlying
519891af7014SMax Reitz          * file BDS. The full options QDict of that file BDS should somehow
519991af7014SMax Reitz          * contain a representation of the filename, therefore the following
520091af7014SMax Reitz          * suffices without querying the (exact_)filename of this BDS. */
52019a4f4c31SKevin Wolf         if (bs->file->bs->full_open_options) {
520246f5ac20SEric Blake             qdict_put_str(opts, "driver", drv->format_name);
52039a4f4c31SKevin Wolf             QINCREF(bs->file->bs->full_open_options);
5204de6e7951SEric Blake             qdict_put(opts, "file", bs->file->bs->full_open_options);
520591af7014SMax Reitz 
520691af7014SMax Reitz             bs->full_open_options = opts;
520791af7014SMax Reitz         } else {
520891af7014SMax Reitz             QDECREF(opts);
520991af7014SMax Reitz         }
521091af7014SMax Reitz     } else if (!bs->full_open_options && qdict_size(bs->options)) {
521191af7014SMax Reitz         /* There is no underlying file BDS (at least referenced by BDS.file),
521291af7014SMax Reitz          * so the full options QDict should be equal to the options given
521391af7014SMax Reitz          * specifically for this block device when it was opened (plus the
521491af7014SMax Reitz          * driver specification).
521591af7014SMax Reitz          * Because those options don't change, there is no need to update
521691af7014SMax Reitz          * full_open_options when it's already set. */
521791af7014SMax Reitz 
521891af7014SMax Reitz         opts = qdict_new();
521991af7014SMax Reitz         append_open_options(opts, bs);
522046f5ac20SEric Blake         qdict_put_str(opts, "driver", drv->format_name);
522191af7014SMax Reitz 
522291af7014SMax Reitz         if (bs->exact_filename[0]) {
522391af7014SMax Reitz             /* This may not work for all block protocol drivers (some may
522491af7014SMax Reitz              * require this filename to be parsed), but we have to find some
522591af7014SMax Reitz              * default solution here, so just include it. If some block driver
522691af7014SMax Reitz              * does not support pure options without any filename at all or
522791af7014SMax Reitz              * needs some special format of the options QDict, it needs to
522891af7014SMax Reitz              * implement the driver-specific bdrv_refresh_filename() function.
522991af7014SMax Reitz              */
523046f5ac20SEric Blake             qdict_put_str(opts, "filename", bs->exact_filename);
523191af7014SMax Reitz         }
523291af7014SMax Reitz 
523391af7014SMax Reitz         bs->full_open_options = opts;
523491af7014SMax Reitz     }
523591af7014SMax Reitz 
523691af7014SMax Reitz     if (bs->exact_filename[0]) {
523791af7014SMax Reitz         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
523891af7014SMax Reitz     } else if (bs->full_open_options) {
523991af7014SMax Reitz         QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
524091af7014SMax Reitz         snprintf(bs->filename, sizeof(bs->filename), "json:%s",
524191af7014SMax Reitz                  qstring_get_str(json));
524291af7014SMax Reitz         QDECREF(json);
524391af7014SMax Reitz     }
524491af7014SMax Reitz }
5245e06018adSWen Congyang 
5246e06018adSWen Congyang /*
5247e06018adSWen Congyang  * Hot add/remove a BDS's child. So the user can take a child offline when
5248e06018adSWen Congyang  * it is broken and take a new child online
5249e06018adSWen Congyang  */
5250e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5251e06018adSWen Congyang                     Error **errp)
5252e06018adSWen Congyang {
5253e06018adSWen Congyang 
5254e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
5255e06018adSWen Congyang         error_setg(errp, "The node %s does not support adding a child",
5256e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
5257e06018adSWen Congyang         return;
5258e06018adSWen Congyang     }
5259e06018adSWen Congyang 
5260e06018adSWen Congyang     if (!QLIST_EMPTY(&child_bs->parents)) {
5261e06018adSWen Congyang         error_setg(errp, "The node %s already has a parent",
5262e06018adSWen Congyang                    child_bs->node_name);
5263e06018adSWen Congyang         return;
5264e06018adSWen Congyang     }
5265e06018adSWen Congyang 
5266e06018adSWen Congyang     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5267e06018adSWen Congyang }
5268e06018adSWen Congyang 
5269e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5270e06018adSWen Congyang {
5271e06018adSWen Congyang     BdrvChild *tmp;
5272e06018adSWen Congyang 
5273e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5274e06018adSWen Congyang         error_setg(errp, "The node %s does not support removing a child",
5275e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
5276e06018adSWen Congyang         return;
5277e06018adSWen Congyang     }
5278e06018adSWen Congyang 
5279e06018adSWen Congyang     QLIST_FOREACH(tmp, &parent_bs->children, next) {
5280e06018adSWen Congyang         if (tmp == child) {
5281e06018adSWen Congyang             break;
5282e06018adSWen Congyang         }
5283e06018adSWen Congyang     }
5284e06018adSWen Congyang 
5285e06018adSWen Congyang     if (!tmp) {
5286e06018adSWen Congyang         error_setg(errp, "The node %s does not have a child named %s",
5287e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs),
5288e06018adSWen Congyang                    bdrv_get_device_or_node_name(child->bs));
5289e06018adSWen Congyang         return;
5290e06018adSWen Congyang     }
5291e06018adSWen Congyang 
5292e06018adSWen Congyang     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5293e06018adSWen Congyang }
529467b792f5SVladimir Sementsov-Ogievskiy 
529567b792f5SVladimir Sementsov-Ogievskiy bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
529667b792f5SVladimir Sementsov-Ogievskiy                                      uint32_t granularity, Error **errp)
529767b792f5SVladimir Sementsov-Ogievskiy {
529867b792f5SVladimir Sementsov-Ogievskiy     BlockDriver *drv = bs->drv;
529967b792f5SVladimir Sementsov-Ogievskiy 
530067b792f5SVladimir Sementsov-Ogievskiy     if (!drv) {
530167b792f5SVladimir Sementsov-Ogievskiy         error_setg_errno(errp, ENOMEDIUM,
530267b792f5SVladimir Sementsov-Ogievskiy                          "Can't store persistent bitmaps to %s",
530367b792f5SVladimir Sementsov-Ogievskiy                          bdrv_get_device_or_node_name(bs));
530467b792f5SVladimir Sementsov-Ogievskiy         return false;
530567b792f5SVladimir Sementsov-Ogievskiy     }
530667b792f5SVladimir Sementsov-Ogievskiy 
530767b792f5SVladimir Sementsov-Ogievskiy     if (!drv->bdrv_can_store_new_dirty_bitmap) {
530867b792f5SVladimir Sementsov-Ogievskiy         error_setg_errno(errp, ENOTSUP,
530967b792f5SVladimir Sementsov-Ogievskiy                          "Can't store persistent bitmaps to %s",
531067b792f5SVladimir Sementsov-Ogievskiy                          bdrv_get_device_or_node_name(bs));
531167b792f5SVladimir Sementsov-Ogievskiy         return false;
531267b792f5SVladimir Sementsov-Ogievskiy     }
531367b792f5SVladimir Sementsov-Ogievskiy 
531467b792f5SVladimir Sementsov-Ogievskiy     return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);
531567b792f5SVladimir Sementsov-Ogievskiy }
5316