xref: /openbmc/qemu/block.c (revision cc954f01e3c004aad081aa36736a17e842b80211)
1fc01f7e7Sbellard /*
2fc01f7e7Sbellard  * QEMU System Emulator block driver
3fc01f7e7Sbellard  *
4fc01f7e7Sbellard  * Copyright (c) 2003 Fabrice Bellard
5fc01f7e7Sbellard  *
6fc01f7e7Sbellard  * Permission is hereby granted, free of charge, to any person obtaining a copy
7fc01f7e7Sbellard  * of this software and associated documentation files (the "Software"), to deal
8fc01f7e7Sbellard  * in the Software without restriction, including without limitation the rights
9fc01f7e7Sbellard  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10fc01f7e7Sbellard  * copies of the Software, and to permit persons to whom the Software is
11fc01f7e7Sbellard  * furnished to do so, subject to the following conditions:
12fc01f7e7Sbellard  *
13fc01f7e7Sbellard  * The above copyright notice and this permission notice shall be included in
14fc01f7e7Sbellard  * all copies or substantial portions of the Software.
15fc01f7e7Sbellard  *
16fc01f7e7Sbellard  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17fc01f7e7Sbellard  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18fc01f7e7Sbellard  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19fc01f7e7Sbellard  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20fc01f7e7Sbellard  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21fc01f7e7Sbellard  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22fc01f7e7Sbellard  * THE SOFTWARE.
23fc01f7e7Sbellard  */
24d38ea87aSPeter Maydell #include "qemu/osdep.h"
250ab8ed18SDaniel P. Berrange #include "block/trace.h"
26737e150eSPaolo Bonzini #include "block/block_int.h"
27737e150eSPaolo Bonzini #include "block/blockjob.h"
28cd7fca95SKevin Wolf #include "block/nbd.h"
29d49b6836SMarkus Armbruster #include "qemu/error-report.h"
3088d88798SMarc Mari #include "module_block.h"
311de7afc9SPaolo Bonzini #include "qemu/module.h"
32cc7a8ea7SMarkus Armbruster #include "qapi/qmp/qerror.h"
3391a097e7SKevin Wolf #include "qapi/qmp/qbool.h"
347b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h"
35bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h"
369c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
371de7afc9SPaolo Bonzini #include "qemu/notify.h"
3810817bf0SDaniel P. Berrange #include "qemu/coroutine.h"
39c13163fbSBenoît Canet #include "block/qapi.h"
40b2023818SLuiz Capitulino #include "qmp-commands.h"
411de7afc9SPaolo Bonzini #include "qemu/timer.h"
42a5ee7bd4SWenchao Xia #include "qapi-event.h"
43f348b6d1SVeronia Bahaa #include "qemu/cutils.h"
44f348b6d1SVeronia Bahaa #include "qemu/id.h"
45fc01f7e7Sbellard 
4671e72a19SJuan Quintela #ifdef CONFIG_BSD
477674e7bfSbellard #include <sys/ioctl.h>
4872cf2d4fSBlue Swirl #include <sys/queue.h>
49c5e97233Sblueswir1 #ifndef __DragonFly__
507674e7bfSbellard #include <sys/disk.h>
517674e7bfSbellard #endif
52c5e97233Sblueswir1 #endif
537674e7bfSbellard 
5449dc768dSaliguori #ifdef _WIN32
5549dc768dSaliguori #include <windows.h>
5649dc768dSaliguori #endif
5749dc768dSaliguori 
581c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
591c9805a3SStefan Hajnoczi 
60dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
61dc364f4cSBenoît Canet     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
62dc364f4cSBenoît Canet 
632c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
642c1d04e0SMax Reitz     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
652c1d04e0SMax Reitz 
668a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers =
678a22f02aSStefan Hajnoczi     QLIST_HEAD_INITIALIZER(bdrv_drivers);
68ea2384d3Sbellard 
695b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
705b363937SMax Reitz                                            const char *reference,
715b363937SMax Reitz                                            QDict *options, int flags,
72f3930ed0SKevin Wolf                                            BlockDriverState *parent,
735b363937SMax Reitz                                            const BdrvChildRole *child_role,
745b363937SMax Reitz                                            Error **errp);
75f3930ed0SKevin Wolf 
76eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */
77eb852011SMarkus Armbruster static int use_bdrv_whitelist;
78eb852011SMarkus Armbruster 
799e0b22f4SStefan Hajnoczi #ifdef _WIN32
809e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename)
819e0b22f4SStefan Hajnoczi {
829e0b22f4SStefan Hajnoczi     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
839e0b22f4SStefan Hajnoczi              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
849e0b22f4SStefan Hajnoczi             filename[1] == ':');
859e0b22f4SStefan Hajnoczi }
869e0b22f4SStefan Hajnoczi 
879e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename)
889e0b22f4SStefan Hajnoczi {
899e0b22f4SStefan Hajnoczi     if (is_windows_drive_prefix(filename) &&
909e0b22f4SStefan Hajnoczi         filename[2] == '\0')
919e0b22f4SStefan Hajnoczi         return 1;
929e0b22f4SStefan Hajnoczi     if (strstart(filename, "\\\\.\\", NULL) ||
939e0b22f4SStefan Hajnoczi         strstart(filename, "//./", NULL))
949e0b22f4SStefan Hajnoczi         return 1;
959e0b22f4SStefan Hajnoczi     return 0;
969e0b22f4SStefan Hajnoczi }
979e0b22f4SStefan Hajnoczi #endif
989e0b22f4SStefan Hajnoczi 
99339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs)
100339064d5SKevin Wolf {
101339064d5SKevin Wolf     if (!bs || !bs->drv) {
102459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
103459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
104339064d5SKevin Wolf     }
105339064d5SKevin Wolf 
106339064d5SKevin Wolf     return bs->bl.opt_mem_alignment;
107339064d5SKevin Wolf }
108339064d5SKevin Wolf 
1094196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs)
1104196d2f0SDenis V. Lunev {
1114196d2f0SDenis V. Lunev     if (!bs || !bs->drv) {
112459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
113459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
1144196d2f0SDenis V. Lunev     }
1154196d2f0SDenis V. Lunev 
1164196d2f0SDenis V. Lunev     return bs->bl.min_mem_alignment;
1174196d2f0SDenis V. Lunev }
1184196d2f0SDenis V. Lunev 
1199e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */
1205c98415bSMax Reitz int path_has_protocol(const char *path)
1219e0b22f4SStefan Hajnoczi {
122947995c0SPaolo Bonzini     const char *p;
123947995c0SPaolo Bonzini 
1249e0b22f4SStefan Hajnoczi #ifdef _WIN32
1259e0b22f4SStefan Hajnoczi     if (is_windows_drive(path) ||
1269e0b22f4SStefan Hajnoczi         is_windows_drive_prefix(path)) {
1279e0b22f4SStefan Hajnoczi         return 0;
1289e0b22f4SStefan Hajnoczi     }
129947995c0SPaolo Bonzini     p = path + strcspn(path, ":/\\");
130947995c0SPaolo Bonzini #else
131947995c0SPaolo Bonzini     p = path + strcspn(path, ":/");
1329e0b22f4SStefan Hajnoczi #endif
1339e0b22f4SStefan Hajnoczi 
134947995c0SPaolo Bonzini     return *p == ':';
1359e0b22f4SStefan Hajnoczi }
1369e0b22f4SStefan Hajnoczi 
13783f64091Sbellard int path_is_absolute(const char *path)
13883f64091Sbellard {
13921664424Sbellard #ifdef _WIN32
14021664424Sbellard     /* specific case for names like: "\\.\d:" */
141f53f4da9SPaolo Bonzini     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
14221664424Sbellard         return 1;
143f53f4da9SPaolo Bonzini     }
144f53f4da9SPaolo Bonzini     return (*path == '/' || *path == '\\');
1453b9f94e1Sbellard #else
146f53f4da9SPaolo Bonzini     return (*path == '/');
1473b9f94e1Sbellard #endif
14883f64091Sbellard }
14983f64091Sbellard 
15083f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a
15183f64091Sbellard    path to it by considering it is relative to base_path. URL are
15283f64091Sbellard    supported. */
15383f64091Sbellard void path_combine(char *dest, int dest_size,
15483f64091Sbellard                   const char *base_path,
15583f64091Sbellard                   const char *filename)
15683f64091Sbellard {
15783f64091Sbellard     const char *p, *p1;
15883f64091Sbellard     int len;
15983f64091Sbellard 
16083f64091Sbellard     if (dest_size <= 0)
16183f64091Sbellard         return;
16283f64091Sbellard     if (path_is_absolute(filename)) {
16383f64091Sbellard         pstrcpy(dest, dest_size, filename);
16483f64091Sbellard     } else {
1650d54a6feSMax Reitz         const char *protocol_stripped = NULL;
1660d54a6feSMax Reitz 
1670d54a6feSMax Reitz         if (path_has_protocol(base_path)) {
1680d54a6feSMax Reitz             protocol_stripped = strchr(base_path, ':');
1690d54a6feSMax Reitz             if (protocol_stripped) {
1700d54a6feSMax Reitz                 protocol_stripped++;
1710d54a6feSMax Reitz             }
1720d54a6feSMax Reitz         }
1730d54a6feSMax Reitz         p = protocol_stripped ?: base_path;
1740d54a6feSMax Reitz 
1753b9f94e1Sbellard         p1 = strrchr(base_path, '/');
1763b9f94e1Sbellard #ifdef _WIN32
1773b9f94e1Sbellard         {
1783b9f94e1Sbellard             const char *p2;
1793b9f94e1Sbellard             p2 = strrchr(base_path, '\\');
1803b9f94e1Sbellard             if (!p1 || p2 > p1)
1813b9f94e1Sbellard                 p1 = p2;
1823b9f94e1Sbellard         }
1833b9f94e1Sbellard #endif
18483f64091Sbellard         if (p1)
18583f64091Sbellard             p1++;
18683f64091Sbellard         else
18783f64091Sbellard             p1 = base_path;
18883f64091Sbellard         if (p1 > p)
18983f64091Sbellard             p = p1;
19083f64091Sbellard         len = p - base_path;
19183f64091Sbellard         if (len > dest_size - 1)
19283f64091Sbellard             len = dest_size - 1;
19383f64091Sbellard         memcpy(dest, base_path, len);
19483f64091Sbellard         dest[len] = '\0';
19583f64091Sbellard         pstrcat(dest, dest_size, filename);
19683f64091Sbellard     }
19783f64091Sbellard }
19883f64091Sbellard 
19903c320d8SMax Reitz /*
20003c320d8SMax Reitz  * Helper function for bdrv_parse_filename() implementations to remove optional
20103c320d8SMax Reitz  * protocol prefixes (especially "file:") from a filename and for putting the
20203c320d8SMax Reitz  * stripped filename into the options QDict if there is such a prefix.
20303c320d8SMax Reitz  */
20403c320d8SMax Reitz void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
20503c320d8SMax Reitz                                       QDict *options)
20603c320d8SMax Reitz {
20703c320d8SMax Reitz     if (strstart(filename, prefix, &filename)) {
20803c320d8SMax Reitz         /* Stripping the explicit protocol prefix may result in a protocol
20903c320d8SMax Reitz          * prefix being (wrongly) detected (if the filename contains a colon) */
21003c320d8SMax Reitz         if (path_has_protocol(filename)) {
21103c320d8SMax Reitz             QString *fat_filename;
21203c320d8SMax Reitz 
21303c320d8SMax Reitz             /* This means there is some colon before the first slash; therefore,
21403c320d8SMax Reitz              * this cannot be an absolute path */
21503c320d8SMax Reitz             assert(!path_is_absolute(filename));
21603c320d8SMax Reitz 
21703c320d8SMax Reitz             /* And we can thus fix the protocol detection issue by prefixing it
21803c320d8SMax Reitz              * by "./" */
21903c320d8SMax Reitz             fat_filename = qstring_from_str("./");
22003c320d8SMax Reitz             qstring_append(fat_filename, filename);
22103c320d8SMax Reitz 
22203c320d8SMax Reitz             assert(!path_has_protocol(qstring_get_str(fat_filename)));
22303c320d8SMax Reitz 
22403c320d8SMax Reitz             qdict_put(options, "filename", fat_filename);
22503c320d8SMax Reitz         } else {
22603c320d8SMax Reitz             /* If no protocol prefix was detected, we can use the shortened
22703c320d8SMax Reitz              * filename as-is */
22803c320d8SMax Reitz             qdict_put_str(options, "filename", filename);
22903c320d8SMax Reitz         }
23003c320d8SMax Reitz     }
23103c320d8SMax Reitz }
23203c320d8SMax Reitz 
23303c320d8SMax Reitz 
2349c5e6594SKevin Wolf /* Returns whether the image file is opened as read-only. Note that this can
2359c5e6594SKevin Wolf  * return false and writing to the image file is still not possible because the
2369c5e6594SKevin Wolf  * image is inactivated. */
23793ed524eSJeff Cody bool bdrv_is_read_only(BlockDriverState *bs)
23893ed524eSJeff Cody {
23993ed524eSJeff Cody     return bs->read_only;
24093ed524eSJeff Cody }
24193ed524eSJeff Cody 
24254a32bfeSKevin Wolf int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
24354a32bfeSKevin Wolf                            bool ignore_allow_rdw, Error **errp)
244fe5241bfSJeff Cody {
245e2b8247aSJeff Cody     /* Do not set read_only if copy_on_read is enabled */
246e2b8247aSJeff Cody     if (bs->copy_on_read && read_only) {
247e2b8247aSJeff Cody         error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
248e2b8247aSJeff Cody                    bdrv_get_device_or_node_name(bs));
249e2b8247aSJeff Cody         return -EINVAL;
250e2b8247aSJeff Cody     }
251e2b8247aSJeff Cody 
252d6fcdf06SJeff Cody     /* Do not clear read_only if it is prohibited */
25354a32bfeSKevin Wolf     if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
25454a32bfeSKevin Wolf         !ignore_allow_rdw)
25554a32bfeSKevin Wolf     {
256d6fcdf06SJeff Cody         error_setg(errp, "Node '%s' is read only",
257d6fcdf06SJeff Cody                    bdrv_get_device_or_node_name(bs));
258d6fcdf06SJeff Cody         return -EPERM;
259d6fcdf06SJeff Cody     }
260d6fcdf06SJeff Cody 
26145803a03SJeff Cody     return 0;
26245803a03SJeff Cody }
26345803a03SJeff Cody 
264398e6ad0SKevin Wolf /* TODO Remove (deprecated since 2.11)
265398e6ad0SKevin Wolf  * Block drivers are not supposed to automatically change bs->read_only.
266398e6ad0SKevin Wolf  * Instead, they should just check whether they can provide what the user
267398e6ad0SKevin Wolf  * explicitly requested and error out if read-write is requested, but they can
268398e6ad0SKevin Wolf  * only provide read-only access. */
26945803a03SJeff Cody int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp)
27045803a03SJeff Cody {
27145803a03SJeff Cody     int ret = 0;
27245803a03SJeff Cody 
27354a32bfeSKevin Wolf     ret = bdrv_can_set_read_only(bs, read_only, false, errp);
27445803a03SJeff Cody     if (ret < 0) {
27545803a03SJeff Cody         return ret;
27645803a03SJeff Cody     }
27745803a03SJeff Cody 
278fe5241bfSJeff Cody     bs->read_only = read_only;
279e2b8247aSJeff Cody     return 0;
280fe5241bfSJeff Cody }
281fe5241bfSJeff Cody 
2820a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed,
2830a82855aSMax Reitz                                                   const char *backing,
2849f07429eSMax Reitz                                                   char *dest, size_t sz,
2859f07429eSMax Reitz                                                   Error **errp)
2860a82855aSMax Reitz {
2879f07429eSMax Reitz     if (backing[0] == '\0' || path_has_protocol(backing) ||
2889f07429eSMax Reitz         path_is_absolute(backing))
2899f07429eSMax Reitz     {
2900a82855aSMax Reitz         pstrcpy(dest, sz, backing);
2919f07429eSMax Reitz     } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
2929f07429eSMax Reitz         error_setg(errp, "Cannot use relative backing file names for '%s'",
2939f07429eSMax Reitz                    backed);
2940a82855aSMax Reitz     } else {
2950a82855aSMax Reitz         path_combine(dest, sz, backed, backing);
2960a82855aSMax Reitz     }
2970a82855aSMax Reitz }
2980a82855aSMax Reitz 
2999f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
3009f07429eSMax Reitz                                     Error **errp)
301dc5a1371SPaolo Bonzini {
3029f07429eSMax Reitz     char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
3039f07429eSMax Reitz 
3049f07429eSMax Reitz     bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
3059f07429eSMax Reitz                                                  dest, sz, errp);
306dc5a1371SPaolo Bonzini }
307dc5a1371SPaolo Bonzini 
3080eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv)
3090eb7217eSStefan Hajnoczi {
3108a22f02aSStefan Hajnoczi     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
311ea2384d3Sbellard }
312b338082bSbellard 
313e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void)
314e4e9986bSMarkus Armbruster {
315e4e9986bSMarkus Armbruster     BlockDriverState *bs;
316e4e9986bSMarkus Armbruster     int i;
317e4e9986bSMarkus Armbruster 
3185839e53bSMarkus Armbruster     bs = g_new0(BlockDriverState, 1);
319e4654d2dSFam Zheng     QLIST_INIT(&bs->dirty_bitmaps);
320fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
321fbe40ff7SFam Zheng         QLIST_INIT(&bs->op_blockers[i]);
322fbe40ff7SFam Zheng     }
323d616b224SStefan Hajnoczi     notifier_with_return_list_init(&bs->before_write_notifiers);
3243783fa3dSPaolo Bonzini     qemu_co_mutex_init(&bs->reqs_lock);
3252119882cSPaolo Bonzini     qemu_mutex_init(&bs->dirty_bitmap_mutex);
3269fcb0251SFam Zheng     bs->refcnt = 1;
327dcd04228SStefan Hajnoczi     bs->aio_context = qemu_get_aio_context();
328d7d512f6SPaolo Bonzini 
3293ff2f67aSEvgeny Yakovlev     qemu_co_queue_init(&bs->flush_queue);
3303ff2f67aSEvgeny Yakovlev 
3312c1d04e0SMax Reitz     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
3322c1d04e0SMax Reitz 
333b338082bSbellard     return bs;
334b338082bSbellard }
335b338082bSbellard 
33688d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name)
337ea2384d3Sbellard {
338ea2384d3Sbellard     BlockDriver *drv1;
33988d88798SMarc Mari 
3408a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
3418a22f02aSStefan Hajnoczi         if (!strcmp(drv1->format_name, format_name)) {
342ea2384d3Sbellard             return drv1;
343ea2384d3Sbellard         }
3448a22f02aSStefan Hajnoczi     }
34588d88798SMarc Mari 
346ea2384d3Sbellard     return NULL;
347ea2384d3Sbellard }
348ea2384d3Sbellard 
34988d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name)
35088d88798SMarc Mari {
35188d88798SMarc Mari     BlockDriver *drv1;
35288d88798SMarc Mari     int i;
35388d88798SMarc Mari 
35488d88798SMarc Mari     drv1 = bdrv_do_find_format(format_name);
35588d88798SMarc Mari     if (drv1) {
35688d88798SMarc Mari         return drv1;
35788d88798SMarc Mari     }
35888d88798SMarc Mari 
35988d88798SMarc Mari     /* The driver isn't registered, maybe we need to load a module */
36088d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
36188d88798SMarc Mari         if (!strcmp(block_driver_modules[i].format_name, format_name)) {
36288d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
36388d88798SMarc Mari             break;
36488d88798SMarc Mari         }
36588d88798SMarc Mari     }
36688d88798SMarc Mari 
36788d88798SMarc Mari     return bdrv_do_find_format(format_name);
36888d88798SMarc Mari }
36988d88798SMarc Mari 
370b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
371eb852011SMarkus Armbruster {
372b64ec4e4SFam Zheng     static const char *whitelist_rw[] = {
373b64ec4e4SFam Zheng         CONFIG_BDRV_RW_WHITELIST
374b64ec4e4SFam Zheng     };
375b64ec4e4SFam Zheng     static const char *whitelist_ro[] = {
376b64ec4e4SFam Zheng         CONFIG_BDRV_RO_WHITELIST
377eb852011SMarkus Armbruster     };
378eb852011SMarkus Armbruster     const char **p;
379eb852011SMarkus Armbruster 
380b64ec4e4SFam Zheng     if (!whitelist_rw[0] && !whitelist_ro[0]) {
381eb852011SMarkus Armbruster         return 1;               /* no whitelist, anything goes */
382b64ec4e4SFam Zheng     }
383eb852011SMarkus Armbruster 
384b64ec4e4SFam Zheng     for (p = whitelist_rw; *p; p++) {
385eb852011SMarkus Armbruster         if (!strcmp(drv->format_name, *p)) {
386eb852011SMarkus Armbruster             return 1;
387eb852011SMarkus Armbruster         }
388eb852011SMarkus Armbruster     }
389b64ec4e4SFam Zheng     if (read_only) {
390b64ec4e4SFam Zheng         for (p = whitelist_ro; *p; p++) {
391b64ec4e4SFam Zheng             if (!strcmp(drv->format_name, *p)) {
392b64ec4e4SFam Zheng                 return 1;
393b64ec4e4SFam Zheng             }
394b64ec4e4SFam Zheng         }
395b64ec4e4SFam Zheng     }
396eb852011SMarkus Armbruster     return 0;
397eb852011SMarkus Armbruster }
398eb852011SMarkus Armbruster 
399e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void)
400e6ff69bfSDaniel P. Berrange {
401e6ff69bfSDaniel P. Berrange     return use_bdrv_whitelist;
402e6ff69bfSDaniel P. Berrange }
403e6ff69bfSDaniel P. Berrange 
4045b7e1542SZhi Yong Wu typedef struct CreateCo {
4055b7e1542SZhi Yong Wu     BlockDriver *drv;
4065b7e1542SZhi Yong Wu     char *filename;
40783d0521aSChunyan Liu     QemuOpts *opts;
4085b7e1542SZhi Yong Wu     int ret;
409cc84d90fSMax Reitz     Error *err;
4105b7e1542SZhi Yong Wu } CreateCo;
4115b7e1542SZhi Yong Wu 
4125b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque)
4135b7e1542SZhi Yong Wu {
414cc84d90fSMax Reitz     Error *local_err = NULL;
415cc84d90fSMax Reitz     int ret;
416cc84d90fSMax Reitz 
4175b7e1542SZhi Yong Wu     CreateCo *cco = opaque;
4185b7e1542SZhi Yong Wu     assert(cco->drv);
4195b7e1542SZhi Yong Wu 
420c282e1fdSChunyan Liu     ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err);
421cc84d90fSMax Reitz     error_propagate(&cco->err, local_err);
422cc84d90fSMax Reitz     cco->ret = ret;
4235b7e1542SZhi Yong Wu }
4245b7e1542SZhi Yong Wu 
4250e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename,
42683d0521aSChunyan Liu                 QemuOpts *opts, Error **errp)
427ea2384d3Sbellard {
4285b7e1542SZhi Yong Wu     int ret;
4290e7e1989SKevin Wolf 
4305b7e1542SZhi Yong Wu     Coroutine *co;
4315b7e1542SZhi Yong Wu     CreateCo cco = {
4325b7e1542SZhi Yong Wu         .drv = drv,
4335b7e1542SZhi Yong Wu         .filename = g_strdup(filename),
43483d0521aSChunyan Liu         .opts = opts,
4355b7e1542SZhi Yong Wu         .ret = NOT_DONE,
436cc84d90fSMax Reitz         .err = NULL,
4375b7e1542SZhi Yong Wu     };
4385b7e1542SZhi Yong Wu 
439c282e1fdSChunyan Liu     if (!drv->bdrv_create) {
440cc84d90fSMax Reitz         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
44180168bffSLuiz Capitulino         ret = -ENOTSUP;
44280168bffSLuiz Capitulino         goto out;
4435b7e1542SZhi Yong Wu     }
4445b7e1542SZhi Yong Wu 
4455b7e1542SZhi Yong Wu     if (qemu_in_coroutine()) {
4465b7e1542SZhi Yong Wu         /* Fast-path if already in coroutine context */
4475b7e1542SZhi Yong Wu         bdrv_create_co_entry(&cco);
4485b7e1542SZhi Yong Wu     } else {
4490b8b8753SPaolo Bonzini         co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
4500b8b8753SPaolo Bonzini         qemu_coroutine_enter(co);
4515b7e1542SZhi Yong Wu         while (cco.ret == NOT_DONE) {
452b47ec2c4SPaolo Bonzini             aio_poll(qemu_get_aio_context(), true);
4535b7e1542SZhi Yong Wu         }
4545b7e1542SZhi Yong Wu     }
4555b7e1542SZhi Yong Wu 
4565b7e1542SZhi Yong Wu     ret = cco.ret;
457cc84d90fSMax Reitz     if (ret < 0) {
45884d18f06SMarkus Armbruster         if (cco.err) {
459cc84d90fSMax Reitz             error_propagate(errp, cco.err);
460cc84d90fSMax Reitz         } else {
461cc84d90fSMax Reitz             error_setg_errno(errp, -ret, "Could not create image");
462cc84d90fSMax Reitz         }
463cc84d90fSMax Reitz     }
4645b7e1542SZhi Yong Wu 
46580168bffSLuiz Capitulino out:
46680168bffSLuiz Capitulino     g_free(cco.filename);
4675b7e1542SZhi Yong Wu     return ret;
468ea2384d3Sbellard }
469ea2384d3Sbellard 
470c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
47184a12e66SChristoph Hellwig {
47284a12e66SChristoph Hellwig     BlockDriver *drv;
473cc84d90fSMax Reitz     Error *local_err = NULL;
474cc84d90fSMax Reitz     int ret;
47584a12e66SChristoph Hellwig 
476b65a5e12SMax Reitz     drv = bdrv_find_protocol(filename, true, errp);
47784a12e66SChristoph Hellwig     if (drv == NULL) {
47816905d71SStefan Hajnoczi         return -ENOENT;
47984a12e66SChristoph Hellwig     }
48084a12e66SChristoph Hellwig 
481c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
482cc84d90fSMax Reitz     error_propagate(errp, local_err);
483cc84d90fSMax Reitz     return ret;
48484a12e66SChristoph Hellwig }
48584a12e66SChristoph Hellwig 
486892b7de8SEkaterina Tumanova /**
487892b7de8SEkaterina Tumanova  * Try to get @bs's logical and physical block size.
488892b7de8SEkaterina Tumanova  * On success, store them in @bsz struct and return 0.
489892b7de8SEkaterina Tumanova  * On failure return -errno.
490892b7de8SEkaterina Tumanova  * @bs must not be empty.
491892b7de8SEkaterina Tumanova  */
492892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
493892b7de8SEkaterina Tumanova {
494892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
495892b7de8SEkaterina Tumanova 
496892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_blocksizes) {
497892b7de8SEkaterina Tumanova         return drv->bdrv_probe_blocksizes(bs, bsz);
4985a612c00SManos Pitsidianakis     } else if (drv && drv->is_filter && bs->file) {
4995a612c00SManos Pitsidianakis         return bdrv_probe_blocksizes(bs->file->bs, bsz);
500892b7de8SEkaterina Tumanova     }
501892b7de8SEkaterina Tumanova 
502892b7de8SEkaterina Tumanova     return -ENOTSUP;
503892b7de8SEkaterina Tumanova }
504892b7de8SEkaterina Tumanova 
505892b7de8SEkaterina Tumanova /**
506892b7de8SEkaterina Tumanova  * Try to get @bs's geometry (cyls, heads, sectors).
507892b7de8SEkaterina Tumanova  * On success, store them in @geo struct and return 0.
508892b7de8SEkaterina Tumanova  * On failure return -errno.
509892b7de8SEkaterina Tumanova  * @bs must not be empty.
510892b7de8SEkaterina Tumanova  */
511892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
512892b7de8SEkaterina Tumanova {
513892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
514892b7de8SEkaterina Tumanova 
515892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_geometry) {
516892b7de8SEkaterina Tumanova         return drv->bdrv_probe_geometry(bs, geo);
5175a612c00SManos Pitsidianakis     } else if (drv && drv->is_filter && bs->file) {
5185a612c00SManos Pitsidianakis         return bdrv_probe_geometry(bs->file->bs, geo);
519892b7de8SEkaterina Tumanova     }
520892b7de8SEkaterina Tumanova 
521892b7de8SEkaterina Tumanova     return -ENOTSUP;
522892b7de8SEkaterina Tumanova }
523892b7de8SEkaterina Tumanova 
524eba25057SJim Meyering /*
525eba25057SJim Meyering  * Create a uniquely-named empty temporary file.
526eba25057SJim Meyering  * Return 0 upon success, otherwise a negative errno value.
527eba25057SJim Meyering  */
528eba25057SJim Meyering int get_tmp_filename(char *filename, int size)
529eba25057SJim Meyering {
530d5249393Sbellard #ifdef _WIN32
5313b9f94e1Sbellard     char temp_dir[MAX_PATH];
532eba25057SJim Meyering     /* GetTempFileName requires that its output buffer (4th param)
533eba25057SJim Meyering        have length MAX_PATH or greater.  */
534eba25057SJim Meyering     assert(size >= MAX_PATH);
535eba25057SJim Meyering     return (GetTempPath(MAX_PATH, temp_dir)
536eba25057SJim Meyering             && GetTempFileName(temp_dir, "qem", 0, filename)
537eba25057SJim Meyering             ? 0 : -GetLastError());
538d5249393Sbellard #else
539ea2384d3Sbellard     int fd;
5407ccfb2ebSblueswir1     const char *tmpdir;
5410badc1eeSaurel32     tmpdir = getenv("TMPDIR");
54269bef793SAmit Shah     if (!tmpdir) {
54369bef793SAmit Shah         tmpdir = "/var/tmp";
54469bef793SAmit Shah     }
545eba25057SJim Meyering     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
546eba25057SJim Meyering         return -EOVERFLOW;
547ea2384d3Sbellard     }
548eba25057SJim Meyering     fd = mkstemp(filename);
549fe235a06SDunrong Huang     if (fd < 0) {
550fe235a06SDunrong Huang         return -errno;
551fe235a06SDunrong Huang     }
552fe235a06SDunrong Huang     if (close(fd) != 0) {
553fe235a06SDunrong Huang         unlink(filename);
554eba25057SJim Meyering         return -errno;
555eba25057SJim Meyering     }
556eba25057SJim Meyering     return 0;
557d5249393Sbellard #endif
558eba25057SJim Meyering }
559ea2384d3Sbellard 
560f3a5d3f8SChristoph Hellwig /*
561f3a5d3f8SChristoph Hellwig  * Detect host devices. By convention, /dev/cdrom[N] is always
562f3a5d3f8SChristoph Hellwig  * recognized as a host CDROM.
563f3a5d3f8SChristoph Hellwig  */
564f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename)
565f3a5d3f8SChristoph Hellwig {
566508c7cb3SChristoph Hellwig     int score_max = 0, score;
567508c7cb3SChristoph Hellwig     BlockDriver *drv = NULL, *d;
568f3a5d3f8SChristoph Hellwig 
5698a22f02aSStefan Hajnoczi     QLIST_FOREACH(d, &bdrv_drivers, list) {
570508c7cb3SChristoph Hellwig         if (d->bdrv_probe_device) {
571508c7cb3SChristoph Hellwig             score = d->bdrv_probe_device(filename);
572508c7cb3SChristoph Hellwig             if (score > score_max) {
573508c7cb3SChristoph Hellwig                 score_max = score;
574508c7cb3SChristoph Hellwig                 drv = d;
575f3a5d3f8SChristoph Hellwig             }
576508c7cb3SChristoph Hellwig         }
577f3a5d3f8SChristoph Hellwig     }
578f3a5d3f8SChristoph Hellwig 
579508c7cb3SChristoph Hellwig     return drv;
580f3a5d3f8SChristoph Hellwig }
581f3a5d3f8SChristoph Hellwig 
58288d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol)
58388d88798SMarc Mari {
58488d88798SMarc Mari     BlockDriver *drv1;
58588d88798SMarc Mari 
58688d88798SMarc Mari     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
58788d88798SMarc Mari         if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
58888d88798SMarc Mari             return drv1;
58988d88798SMarc Mari         }
59088d88798SMarc Mari     }
59188d88798SMarc Mari 
59288d88798SMarc Mari     return NULL;
59388d88798SMarc Mari }
59488d88798SMarc Mari 
59598289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename,
596b65a5e12SMax Reitz                                 bool allow_protocol_prefix,
597b65a5e12SMax Reitz                                 Error **errp)
59884a12e66SChristoph Hellwig {
59984a12e66SChristoph Hellwig     BlockDriver *drv1;
60084a12e66SChristoph Hellwig     char protocol[128];
60184a12e66SChristoph Hellwig     int len;
60284a12e66SChristoph Hellwig     const char *p;
60388d88798SMarc Mari     int i;
60484a12e66SChristoph Hellwig 
60566f82ceeSKevin Wolf     /* TODO Drivers without bdrv_file_open must be specified explicitly */
60666f82ceeSKevin Wolf 
60739508e7aSChristoph Hellwig     /*
60839508e7aSChristoph Hellwig      * XXX(hch): we really should not let host device detection
60939508e7aSChristoph Hellwig      * override an explicit protocol specification, but moving this
61039508e7aSChristoph Hellwig      * later breaks access to device names with colons in them.
61139508e7aSChristoph Hellwig      * Thanks to the brain-dead persistent naming schemes on udev-
61239508e7aSChristoph Hellwig      * based Linux systems those actually are quite common.
61339508e7aSChristoph Hellwig      */
61484a12e66SChristoph Hellwig     drv1 = find_hdev_driver(filename);
61539508e7aSChristoph Hellwig     if (drv1) {
61684a12e66SChristoph Hellwig         return drv1;
61784a12e66SChristoph Hellwig     }
61839508e7aSChristoph Hellwig 
61998289620SKevin Wolf     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
620ef810437SMax Reitz         return &bdrv_file;
62139508e7aSChristoph Hellwig     }
62298289620SKevin Wolf 
6239e0b22f4SStefan Hajnoczi     p = strchr(filename, ':');
6249e0b22f4SStefan Hajnoczi     assert(p != NULL);
62584a12e66SChristoph Hellwig     len = p - filename;
62684a12e66SChristoph Hellwig     if (len > sizeof(protocol) - 1)
62784a12e66SChristoph Hellwig         len = sizeof(protocol) - 1;
62884a12e66SChristoph Hellwig     memcpy(protocol, filename, len);
62984a12e66SChristoph Hellwig     protocol[len] = '\0';
63088d88798SMarc Mari 
63188d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
63288d88798SMarc Mari     if (drv1) {
63384a12e66SChristoph Hellwig         return drv1;
63484a12e66SChristoph Hellwig     }
63588d88798SMarc Mari 
63688d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
63788d88798SMarc Mari         if (block_driver_modules[i].protocol_name &&
63888d88798SMarc Mari             !strcmp(block_driver_modules[i].protocol_name, protocol)) {
63988d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
64088d88798SMarc Mari             break;
64188d88798SMarc Mari         }
64284a12e66SChristoph Hellwig     }
643b65a5e12SMax Reitz 
64488d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
64588d88798SMarc Mari     if (!drv1) {
646b65a5e12SMax Reitz         error_setg(errp, "Unknown protocol '%s'", protocol);
64788d88798SMarc Mari     }
64888d88798SMarc Mari     return drv1;
64984a12e66SChristoph Hellwig }
65084a12e66SChristoph Hellwig 
651c6684249SMarkus Armbruster /*
652c6684249SMarkus Armbruster  * Guess image format by probing its contents.
653c6684249SMarkus Armbruster  * This is not a good idea when your image is raw (CVE-2008-2004), but
654c6684249SMarkus Armbruster  * we do it anyway for backward compatibility.
655c6684249SMarkus Armbruster  *
656c6684249SMarkus Armbruster  * @buf         contains the image's first @buf_size bytes.
6577cddd372SKevin Wolf  * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
6587cddd372SKevin Wolf  *              but can be smaller if the image file is smaller)
659c6684249SMarkus Armbruster  * @filename    is its filename.
660c6684249SMarkus Armbruster  *
661c6684249SMarkus Armbruster  * For all block drivers, call the bdrv_probe() method to get its
662c6684249SMarkus Armbruster  * probing score.
663c6684249SMarkus Armbruster  * Return the first block driver with the highest probing score.
664c6684249SMarkus Armbruster  */
66538f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
666c6684249SMarkus Armbruster                             const char *filename)
667c6684249SMarkus Armbruster {
668c6684249SMarkus Armbruster     int score_max = 0, score;
669c6684249SMarkus Armbruster     BlockDriver *drv = NULL, *d;
670c6684249SMarkus Armbruster 
671c6684249SMarkus Armbruster     QLIST_FOREACH(d, &bdrv_drivers, list) {
672c6684249SMarkus Armbruster         if (d->bdrv_probe) {
673c6684249SMarkus Armbruster             score = d->bdrv_probe(buf, buf_size, filename);
674c6684249SMarkus Armbruster             if (score > score_max) {
675c6684249SMarkus Armbruster                 score_max = score;
676c6684249SMarkus Armbruster                 drv = d;
677c6684249SMarkus Armbruster             }
678c6684249SMarkus Armbruster         }
679c6684249SMarkus Armbruster     }
680c6684249SMarkus Armbruster 
681c6684249SMarkus Armbruster     return drv;
682c6684249SMarkus Armbruster }
683c6684249SMarkus Armbruster 
6845696c6e3SKevin Wolf static int find_image_format(BlockBackend *file, const char *filename,
68534b5d2c6SMax Reitz                              BlockDriver **pdrv, Error **errp)
686ea2384d3Sbellard {
687c6684249SMarkus Armbruster     BlockDriver *drv;
6887cddd372SKevin Wolf     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
689f500a6d3SKevin Wolf     int ret = 0;
690f8ea0b00SNicholas Bellinger 
69108a00559SKevin Wolf     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
6925696c6e3SKevin Wolf     if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
693ef810437SMax Reitz         *pdrv = &bdrv_raw;
694c98ac35dSStefan Weil         return ret;
6951a396859SNicholas A. Bellinger     }
696f8ea0b00SNicholas Bellinger 
6975696c6e3SKevin Wolf     ret = blk_pread(file, 0, buf, sizeof(buf));
698ea2384d3Sbellard     if (ret < 0) {
69934b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not read image for determining its "
70034b5d2c6SMax Reitz                          "format");
701c98ac35dSStefan Weil         *pdrv = NULL;
702c98ac35dSStefan Weil         return ret;
703ea2384d3Sbellard     }
704ea2384d3Sbellard 
705c6684249SMarkus Armbruster     drv = bdrv_probe_all(buf, ret, filename);
706c98ac35dSStefan Weil     if (!drv) {
70734b5d2c6SMax Reitz         error_setg(errp, "Could not determine image format: No compatible "
70834b5d2c6SMax Reitz                    "driver found");
709c98ac35dSStefan Weil         ret = -ENOENT;
710c98ac35dSStefan Weil     }
711c98ac35dSStefan Weil     *pdrv = drv;
712c98ac35dSStefan Weil     return ret;
713ea2384d3Sbellard }
714ea2384d3Sbellard 
71551762288SStefan Hajnoczi /**
71651762288SStefan Hajnoczi  * Set the current 'total_sectors' value
71765a9bb25SMarkus Armbruster  * Return 0 on success, -errno on error.
71851762288SStefan Hajnoczi  */
71951762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
72051762288SStefan Hajnoczi {
72151762288SStefan Hajnoczi     BlockDriver *drv = bs->drv;
72251762288SStefan Hajnoczi 
723d470ad42SMax Reitz     if (!drv) {
724d470ad42SMax Reitz         return -ENOMEDIUM;
725d470ad42SMax Reitz     }
726d470ad42SMax Reitz 
727396759adSNicholas Bellinger     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
728b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs))
729396759adSNicholas Bellinger         return 0;
730396759adSNicholas Bellinger 
73151762288SStefan Hajnoczi     /* query actual device if possible, otherwise just trust the hint */
73251762288SStefan Hajnoczi     if (drv->bdrv_getlength) {
73351762288SStefan Hajnoczi         int64_t length = drv->bdrv_getlength(bs);
73451762288SStefan Hajnoczi         if (length < 0) {
73551762288SStefan Hajnoczi             return length;
73651762288SStefan Hajnoczi         }
7377e382003SFam Zheng         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
73851762288SStefan Hajnoczi     }
73951762288SStefan Hajnoczi 
74051762288SStefan Hajnoczi     bs->total_sectors = hint;
74151762288SStefan Hajnoczi     return 0;
74251762288SStefan Hajnoczi }
74351762288SStefan Hajnoczi 
744c3993cdcSStefan Hajnoczi /**
745cddff5baSKevin Wolf  * Combines a QDict of new block driver @options with any missing options taken
746cddff5baSKevin Wolf  * from @old_options, so that leaving out an option defaults to its old value.
747cddff5baSKevin Wolf  */
748cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options,
749cddff5baSKevin Wolf                               QDict *old_options)
750cddff5baSKevin Wolf {
751cddff5baSKevin Wolf     if (bs->drv && bs->drv->bdrv_join_options) {
752cddff5baSKevin Wolf         bs->drv->bdrv_join_options(options, old_options);
753cddff5baSKevin Wolf     } else {
754cddff5baSKevin Wolf         qdict_join(options, old_options, false);
755cddff5baSKevin Wolf     }
756cddff5baSKevin Wolf }
757cddff5baSKevin Wolf 
758cddff5baSKevin Wolf /**
7599e8f1835SPaolo Bonzini  * Set open flags for a given discard mode
7609e8f1835SPaolo Bonzini  *
7619e8f1835SPaolo Bonzini  * Return 0 on success, -1 if the discard mode was invalid.
7629e8f1835SPaolo Bonzini  */
7639e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags)
7649e8f1835SPaolo Bonzini {
7659e8f1835SPaolo Bonzini     *flags &= ~BDRV_O_UNMAP;
7669e8f1835SPaolo Bonzini 
7679e8f1835SPaolo Bonzini     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
7689e8f1835SPaolo Bonzini         /* do nothing */
7699e8f1835SPaolo Bonzini     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
7709e8f1835SPaolo Bonzini         *flags |= BDRV_O_UNMAP;
7719e8f1835SPaolo Bonzini     } else {
7729e8f1835SPaolo Bonzini         return -1;
7739e8f1835SPaolo Bonzini     }
7749e8f1835SPaolo Bonzini 
7759e8f1835SPaolo Bonzini     return 0;
7769e8f1835SPaolo Bonzini }
7779e8f1835SPaolo Bonzini 
7789e8f1835SPaolo Bonzini /**
779c3993cdcSStefan Hajnoczi  * Set open flags for a given cache mode
780c3993cdcSStefan Hajnoczi  *
781c3993cdcSStefan Hajnoczi  * Return 0 on success, -1 if the cache mode was invalid.
782c3993cdcSStefan Hajnoczi  */
78353e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
784c3993cdcSStefan Hajnoczi {
785c3993cdcSStefan Hajnoczi     *flags &= ~BDRV_O_CACHE_MASK;
786c3993cdcSStefan Hajnoczi 
787c3993cdcSStefan Hajnoczi     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
78853e8ae01SKevin Wolf         *writethrough = false;
78953e8ae01SKevin Wolf         *flags |= BDRV_O_NOCACHE;
79092196b2fSStefan Hajnoczi     } else if (!strcmp(mode, "directsync")) {
79153e8ae01SKevin Wolf         *writethrough = true;
79292196b2fSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE;
793c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writeback")) {
79453e8ae01SKevin Wolf         *writethrough = false;
795c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "unsafe")) {
79653e8ae01SKevin Wolf         *writethrough = false;
797c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NO_FLUSH;
798c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writethrough")) {
79953e8ae01SKevin Wolf         *writethrough = true;
800c3993cdcSStefan Hajnoczi     } else {
801c3993cdcSStefan Hajnoczi         return -1;
802c3993cdcSStefan Hajnoczi     }
803c3993cdcSStefan Hajnoczi 
804c3993cdcSStefan Hajnoczi     return 0;
805c3993cdcSStefan Hajnoczi }
806c3993cdcSStefan Hajnoczi 
807b5411555SKevin Wolf static char *bdrv_child_get_parent_desc(BdrvChild *c)
808b5411555SKevin Wolf {
809b5411555SKevin Wolf     BlockDriverState *parent = c->opaque;
810b5411555SKevin Wolf     return g_strdup(bdrv_get_device_or_node_name(parent));
811b5411555SKevin Wolf }
812b5411555SKevin Wolf 
81320018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child)
81420018e12SKevin Wolf {
81520018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
81620018e12SKevin Wolf     bdrv_drained_begin(bs);
81720018e12SKevin Wolf }
81820018e12SKevin Wolf 
81920018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child)
82020018e12SKevin Wolf {
82120018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
82220018e12SKevin Wolf     bdrv_drained_end(bs);
82320018e12SKevin Wolf }
82420018e12SKevin Wolf 
82538701b6aSKevin Wolf static int bdrv_child_cb_inactivate(BdrvChild *child)
82638701b6aSKevin Wolf {
82738701b6aSKevin Wolf     BlockDriverState *bs = child->opaque;
82838701b6aSKevin Wolf     assert(bs->open_flags & BDRV_O_INACTIVE);
82938701b6aSKevin Wolf     return 0;
83038701b6aSKevin Wolf }
83138701b6aSKevin Wolf 
8320b50cc88SKevin Wolf /*
83373176beeSKevin Wolf  * Returns the options and flags that a temporary snapshot should get, based on
83473176beeSKevin Wolf  * the originally requested flags (the originally requested image will have
83573176beeSKevin Wolf  * flags like a backing file)
836b1e6fc08SKevin Wolf  */
83773176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
83873176beeSKevin Wolf                                        int parent_flags, QDict *parent_options)
839b1e6fc08SKevin Wolf {
84073176beeSKevin Wolf     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
84173176beeSKevin Wolf 
84273176beeSKevin Wolf     /* For temporary files, unconditional cache=unsafe is fine */
84373176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
84473176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
84541869044SKevin Wolf 
846f87a0e29SAlberto Garcia     /* Copy the read-only option from the parent */
847f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
848f87a0e29SAlberto Garcia 
84941869044SKevin Wolf     /* aio=native doesn't work for cache.direct=off, so disable it for the
85041869044SKevin Wolf      * temporary snapshot */
85141869044SKevin Wolf     *child_flags &= ~BDRV_O_NATIVE_AIO;
852b1e6fc08SKevin Wolf }
853b1e6fc08SKevin Wolf 
854b1e6fc08SKevin Wolf /*
8558e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if a protocol driver
8568e2160e2SKevin Wolf  * is expected, based on the given options and flags for the parent BDS
8570b50cc88SKevin Wolf  */
8588e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options,
8598e2160e2SKevin Wolf                                    int parent_flags, QDict *parent_options)
8600b50cc88SKevin Wolf {
8618e2160e2SKevin Wolf     int flags = parent_flags;
8628e2160e2SKevin Wolf 
8630b50cc88SKevin Wolf     /* Enable protocol handling, disable format probing for bs->file */
8640b50cc88SKevin Wolf     flags |= BDRV_O_PROTOCOL;
8650b50cc88SKevin Wolf 
86691a097e7SKevin Wolf     /* If the cache mode isn't explicitly set, inherit direct and no-flush from
86791a097e7SKevin Wolf      * the parent. */
86891a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
86991a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
8705a9347c6SFam Zheng     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
87191a097e7SKevin Wolf 
872f87a0e29SAlberto Garcia     /* Inherit the read-only option from the parent if it's not set */
873f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
874f87a0e29SAlberto Garcia 
8750b50cc88SKevin Wolf     /* Our block drivers take care to send flushes and respect unmap policy,
87691a097e7SKevin Wolf      * so we can default to enable both on lower layers regardless of the
87791a097e7SKevin Wolf      * corresponding parent options. */
878818584a4SKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
8790b50cc88SKevin Wolf 
8800b50cc88SKevin Wolf     /* Clear flags that only apply to the top layer */
881abb06c5aSDaniel P. Berrange     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
882abb06c5aSDaniel P. Berrange                BDRV_O_NO_IO);
8830b50cc88SKevin Wolf 
8848e2160e2SKevin Wolf     *child_flags = flags;
8850b50cc88SKevin Wolf }
8860b50cc88SKevin Wolf 
887f3930ed0SKevin Wolf const BdrvChildRole child_file = {
888b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
8898e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_options,
89020018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
89120018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
89238701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
893f3930ed0SKevin Wolf };
894f3930ed0SKevin Wolf 
895f3930ed0SKevin Wolf /*
8968e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if the use of formats
8978e2160e2SKevin Wolf  * (and not only protocols) is permitted for it, based on the given options and
8988e2160e2SKevin Wolf  * flags for the parent BDS
899f3930ed0SKevin Wolf  */
9008e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
9018e2160e2SKevin Wolf                                        int parent_flags, QDict *parent_options)
902f3930ed0SKevin Wolf {
9038e2160e2SKevin Wolf     child_file.inherit_options(child_flags, child_options,
9048e2160e2SKevin Wolf                                parent_flags, parent_options);
9058e2160e2SKevin Wolf 
906abb06c5aSDaniel P. Berrange     *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
907f3930ed0SKevin Wolf }
908f3930ed0SKevin Wolf 
909f3930ed0SKevin Wolf const BdrvChildRole child_format = {
910b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
9118e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_fmt_options,
91220018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
91320018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
91438701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
915f3930ed0SKevin Wolf };
916f3930ed0SKevin Wolf 
917db95dbbaSKevin Wolf static void bdrv_backing_attach(BdrvChild *c)
918db95dbbaSKevin Wolf {
919db95dbbaSKevin Wolf     BlockDriverState *parent = c->opaque;
920db95dbbaSKevin Wolf     BlockDriverState *backing_hd = c->bs;
921db95dbbaSKevin Wolf 
922db95dbbaSKevin Wolf     assert(!parent->backing_blocker);
923db95dbbaSKevin Wolf     error_setg(&parent->backing_blocker,
924db95dbbaSKevin Wolf                "node is used as backing hd of '%s'",
925db95dbbaSKevin Wolf                bdrv_get_device_or_node_name(parent));
926db95dbbaSKevin Wolf 
927db95dbbaSKevin Wolf     parent->open_flags &= ~BDRV_O_NO_BACKING;
928db95dbbaSKevin Wolf     pstrcpy(parent->backing_file, sizeof(parent->backing_file),
929db95dbbaSKevin Wolf             backing_hd->filename);
930db95dbbaSKevin Wolf     pstrcpy(parent->backing_format, sizeof(parent->backing_format),
931db95dbbaSKevin Wolf             backing_hd->drv ? backing_hd->drv->format_name : "");
932db95dbbaSKevin Wolf 
933db95dbbaSKevin Wolf     bdrv_op_block_all(backing_hd, parent->backing_blocker);
934db95dbbaSKevin Wolf     /* Otherwise we won't be able to commit or stream */
935db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
936db95dbbaSKevin Wolf                     parent->backing_blocker);
937db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
938db95dbbaSKevin Wolf                     parent->backing_blocker);
939db95dbbaSKevin Wolf     /*
940db95dbbaSKevin Wolf      * We do backup in 3 ways:
941db95dbbaSKevin Wolf      * 1. drive backup
942db95dbbaSKevin Wolf      *    The target bs is new opened, and the source is top BDS
943db95dbbaSKevin Wolf      * 2. blockdev backup
944db95dbbaSKevin Wolf      *    Both the source and the target are top BDSes.
945db95dbbaSKevin Wolf      * 3. internal backup(used for block replication)
946db95dbbaSKevin Wolf      *    Both the source and the target are backing file
947db95dbbaSKevin Wolf      *
948db95dbbaSKevin Wolf      * In case 1 and 2, neither the source nor the target is the backing file.
949db95dbbaSKevin Wolf      * In case 3, we will block the top BDS, so there is only one block job
950db95dbbaSKevin Wolf      * for the top BDS and its backing chain.
951db95dbbaSKevin Wolf      */
952db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
953db95dbbaSKevin Wolf                     parent->backing_blocker);
954db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
955db95dbbaSKevin Wolf                     parent->backing_blocker);
956db95dbbaSKevin Wolf }
957db95dbbaSKevin Wolf 
958db95dbbaSKevin Wolf static void bdrv_backing_detach(BdrvChild *c)
959db95dbbaSKevin Wolf {
960db95dbbaSKevin Wolf     BlockDriverState *parent = c->opaque;
961db95dbbaSKevin Wolf 
962db95dbbaSKevin Wolf     assert(parent->backing_blocker);
963db95dbbaSKevin Wolf     bdrv_op_unblock_all(c->bs, parent->backing_blocker);
964db95dbbaSKevin Wolf     error_free(parent->backing_blocker);
965db95dbbaSKevin Wolf     parent->backing_blocker = NULL;
966db95dbbaSKevin Wolf }
967db95dbbaSKevin Wolf 
968317fc44eSKevin Wolf /*
9698e2160e2SKevin Wolf  * Returns the options and flags that bs->backing should get, based on the
9708e2160e2SKevin Wolf  * given options and flags for the parent BDS
971317fc44eSKevin Wolf  */
9728e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options,
9738e2160e2SKevin Wolf                                  int parent_flags, QDict *parent_options)
974317fc44eSKevin Wolf {
9758e2160e2SKevin Wolf     int flags = parent_flags;
9768e2160e2SKevin Wolf 
977b8816a43SKevin Wolf     /* The cache mode is inherited unmodified for backing files; except WCE,
978b8816a43SKevin Wolf      * which is only applied on the top level (BlockBackend) */
97991a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
98091a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
9815a9347c6SFam Zheng     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
98291a097e7SKevin Wolf 
983317fc44eSKevin Wolf     /* backing files always opened read-only */
984f87a0e29SAlberto Garcia     qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
985f87a0e29SAlberto Garcia     flags &= ~BDRV_O_COPY_ON_READ;
986317fc44eSKevin Wolf 
987317fc44eSKevin Wolf     /* snapshot=on is handled on the top layer */
9888bfea15dSKevin Wolf     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
989317fc44eSKevin Wolf 
9908e2160e2SKevin Wolf     *child_flags = flags;
991317fc44eSKevin Wolf }
992317fc44eSKevin Wolf 
9936858eba0SKevin Wolf static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
9946858eba0SKevin Wolf                                         const char *filename, Error **errp)
9956858eba0SKevin Wolf {
9966858eba0SKevin Wolf     BlockDriverState *parent = c->opaque;
99761f09ceaSKevin Wolf     int orig_flags = bdrv_get_flags(parent);
9986858eba0SKevin Wolf     int ret;
9996858eba0SKevin Wolf 
100061f09ceaSKevin Wolf     if (!(orig_flags & BDRV_O_RDWR)) {
100161f09ceaSKevin Wolf         ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp);
100261f09ceaSKevin Wolf         if (ret < 0) {
100361f09ceaSKevin Wolf             return ret;
100461f09ceaSKevin Wolf         }
100561f09ceaSKevin Wolf     }
100661f09ceaSKevin Wolf 
10076858eba0SKevin Wolf     ret = bdrv_change_backing_file(parent, filename,
10086858eba0SKevin Wolf                                    base->drv ? base->drv->format_name : "");
10096858eba0SKevin Wolf     if (ret < 0) {
101064730694SKevin Wolf         error_setg_errno(errp, -ret, "Could not update backing file link");
10116858eba0SKevin Wolf     }
10126858eba0SKevin Wolf 
101361f09ceaSKevin Wolf     if (!(orig_flags & BDRV_O_RDWR)) {
101461f09ceaSKevin Wolf         bdrv_reopen(parent, orig_flags, NULL);
101561f09ceaSKevin Wolf     }
101661f09ceaSKevin Wolf 
10176858eba0SKevin Wolf     return ret;
10186858eba0SKevin Wolf }
10196858eba0SKevin Wolf 
102091ef3825SKevin Wolf const BdrvChildRole child_backing = {
1021b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
1022db95dbbaSKevin Wolf     .attach          = bdrv_backing_attach,
1023db95dbbaSKevin Wolf     .detach          = bdrv_backing_detach,
10248e2160e2SKevin Wolf     .inherit_options = bdrv_backing_options,
102520018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
102620018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
102738701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
10286858eba0SKevin Wolf     .update_filename = bdrv_backing_update_filename,
1029f3930ed0SKevin Wolf };
1030f3930ed0SKevin Wolf 
10317b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags)
10327b272452SKevin Wolf {
103361de4c68SKevin Wolf     int open_flags = flags;
10347b272452SKevin Wolf 
10357b272452SKevin Wolf     /*
10367b272452SKevin Wolf      * Clear flags that are internal to the block layer before opening the
10377b272452SKevin Wolf      * image.
10387b272452SKevin Wolf      */
103920cca275SKevin Wolf     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
10407b272452SKevin Wolf 
10417b272452SKevin Wolf     /*
10427b272452SKevin Wolf      * Snapshots should be writable.
10437b272452SKevin Wolf      */
10448bfea15dSKevin Wolf     if (flags & BDRV_O_TEMPORARY) {
10457b272452SKevin Wolf         open_flags |= BDRV_O_RDWR;
10467b272452SKevin Wolf     }
10477b272452SKevin Wolf 
10487b272452SKevin Wolf     return open_flags;
10497b272452SKevin Wolf }
10507b272452SKevin Wolf 
105191a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts)
105291a097e7SKevin Wolf {
105391a097e7SKevin Wolf     *flags &= ~BDRV_O_CACHE_MASK;
105491a097e7SKevin Wolf 
105591a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
105691a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
105791a097e7SKevin Wolf         *flags |= BDRV_O_NO_FLUSH;
105891a097e7SKevin Wolf     }
105991a097e7SKevin Wolf 
106091a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
106191a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
106291a097e7SKevin Wolf         *flags |= BDRV_O_NOCACHE;
106391a097e7SKevin Wolf     }
1064f87a0e29SAlberto Garcia 
1065f87a0e29SAlberto Garcia     *flags &= ~BDRV_O_RDWR;
1066f87a0e29SAlberto Garcia 
1067f87a0e29SAlberto Garcia     assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
1068f87a0e29SAlberto Garcia     if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) {
1069f87a0e29SAlberto Garcia         *flags |= BDRV_O_RDWR;
1070f87a0e29SAlberto Garcia     }
1071f87a0e29SAlberto Garcia 
107291a097e7SKevin Wolf }
107391a097e7SKevin Wolf 
107491a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags)
107591a097e7SKevin Wolf {
107691a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
107746f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
107891a097e7SKevin Wolf     }
107991a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
108046f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
108146f5ac20SEric Blake                        flags & BDRV_O_NO_FLUSH);
108291a097e7SKevin Wolf     }
1083f87a0e29SAlberto Garcia     if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
108446f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1085f87a0e29SAlberto Garcia     }
108691a097e7SKevin Wolf }
108791a097e7SKevin Wolf 
1088636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs,
10896913c0c2SBenoît Canet                                   const char *node_name,
10906913c0c2SBenoît Canet                                   Error **errp)
10916913c0c2SBenoît Canet {
109215489c76SJeff Cody     char *gen_node_name = NULL;
10936913c0c2SBenoît Canet 
109415489c76SJeff Cody     if (!node_name) {
109515489c76SJeff Cody         node_name = gen_node_name = id_generate(ID_BLOCK);
109615489c76SJeff Cody     } else if (!id_wellformed(node_name)) {
109715489c76SJeff Cody         /*
109815489c76SJeff Cody          * Check for empty string or invalid characters, but not if it is
109915489c76SJeff Cody          * generated (generated names use characters not available to the user)
110015489c76SJeff Cody          */
11019aebf3b8SKevin Wolf         error_setg(errp, "Invalid node name");
1102636ea370SKevin Wolf         return;
11036913c0c2SBenoît Canet     }
11046913c0c2SBenoît Canet 
11050c5e94eeSBenoît Canet     /* takes care of avoiding namespaces collisions */
11067f06d47eSMarkus Armbruster     if (blk_by_name(node_name)) {
11070c5e94eeSBenoît Canet         error_setg(errp, "node-name=%s is conflicting with a device id",
11080c5e94eeSBenoît Canet                    node_name);
110915489c76SJeff Cody         goto out;
11100c5e94eeSBenoît Canet     }
11110c5e94eeSBenoît Canet 
11126913c0c2SBenoît Canet     /* takes care of avoiding duplicates node names */
11136913c0c2SBenoît Canet     if (bdrv_find_node(node_name)) {
11146913c0c2SBenoît Canet         error_setg(errp, "Duplicate node name");
111515489c76SJeff Cody         goto out;
11166913c0c2SBenoît Canet     }
11176913c0c2SBenoît Canet 
11186913c0c2SBenoît Canet     /* copy node name into the bs and insert it into the graph list */
11196913c0c2SBenoît Canet     pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
11206913c0c2SBenoît Canet     QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
112115489c76SJeff Cody out:
112215489c76SJeff Cody     g_free(gen_node_name);
11236913c0c2SBenoît Canet }
11246913c0c2SBenoît Canet 
112501a56501SKevin Wolf static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
112601a56501SKevin Wolf                             const char *node_name, QDict *options,
112701a56501SKevin Wolf                             int open_flags, Error **errp)
112801a56501SKevin Wolf {
112901a56501SKevin Wolf     Error *local_err = NULL;
113001a56501SKevin Wolf     int ret;
113101a56501SKevin Wolf 
113201a56501SKevin Wolf     bdrv_assign_node_name(bs, node_name, &local_err);
113301a56501SKevin Wolf     if (local_err) {
113401a56501SKevin Wolf         error_propagate(errp, local_err);
113501a56501SKevin Wolf         return -EINVAL;
113601a56501SKevin Wolf     }
113701a56501SKevin Wolf 
113801a56501SKevin Wolf     bs->drv = drv;
1139680c7f96SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
114001a56501SKevin Wolf     bs->opaque = g_malloc0(drv->instance_size);
114101a56501SKevin Wolf 
114201a56501SKevin Wolf     if (drv->bdrv_file_open) {
114301a56501SKevin Wolf         assert(!drv->bdrv_needs_filename || bs->filename[0]);
114401a56501SKevin Wolf         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1145680c7f96SKevin Wolf     } else if (drv->bdrv_open) {
114601a56501SKevin Wolf         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1147680c7f96SKevin Wolf     } else {
1148680c7f96SKevin Wolf         ret = 0;
114901a56501SKevin Wolf     }
115001a56501SKevin Wolf 
115101a56501SKevin Wolf     if (ret < 0) {
115201a56501SKevin Wolf         if (local_err) {
115301a56501SKevin Wolf             error_propagate(errp, local_err);
115401a56501SKevin Wolf         } else if (bs->filename[0]) {
115501a56501SKevin Wolf             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
115601a56501SKevin Wolf         } else {
115701a56501SKevin Wolf             error_setg_errno(errp, -ret, "Could not open image");
115801a56501SKevin Wolf         }
1159180ca19aSManos Pitsidianakis         goto open_failed;
116001a56501SKevin Wolf     }
116101a56501SKevin Wolf 
116201a56501SKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
116301a56501SKevin Wolf     if (ret < 0) {
116401a56501SKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
1165180ca19aSManos Pitsidianakis         return ret;
116601a56501SKevin Wolf     }
116701a56501SKevin Wolf 
116801a56501SKevin Wolf     bdrv_refresh_limits(bs, &local_err);
116901a56501SKevin Wolf     if (local_err) {
117001a56501SKevin Wolf         error_propagate(errp, local_err);
1171180ca19aSManos Pitsidianakis         return -EINVAL;
117201a56501SKevin Wolf     }
117301a56501SKevin Wolf 
117401a56501SKevin Wolf     assert(bdrv_opt_mem_align(bs) != 0);
117501a56501SKevin Wolf     assert(bdrv_min_mem_align(bs) != 0);
117601a56501SKevin Wolf     assert(is_power_of_2(bs->bl.request_alignment));
117701a56501SKevin Wolf 
117801a56501SKevin Wolf     return 0;
1179180ca19aSManos Pitsidianakis open_failed:
1180180ca19aSManos Pitsidianakis     bs->drv = NULL;
1181180ca19aSManos Pitsidianakis     if (bs->file != NULL) {
1182180ca19aSManos Pitsidianakis         bdrv_unref_child(bs, bs->file);
1183180ca19aSManos Pitsidianakis         bs->file = NULL;
1184180ca19aSManos Pitsidianakis     }
118501a56501SKevin Wolf     g_free(bs->opaque);
118601a56501SKevin Wolf     bs->opaque = NULL;
118701a56501SKevin Wolf     return ret;
118801a56501SKevin Wolf }
118901a56501SKevin Wolf 
1190680c7f96SKevin Wolf BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1191680c7f96SKevin Wolf                                        int flags, Error **errp)
1192680c7f96SKevin Wolf {
1193680c7f96SKevin Wolf     BlockDriverState *bs;
1194680c7f96SKevin Wolf     int ret;
1195680c7f96SKevin Wolf 
1196680c7f96SKevin Wolf     bs = bdrv_new();
1197680c7f96SKevin Wolf     bs->open_flags = flags;
1198680c7f96SKevin Wolf     bs->explicit_options = qdict_new();
1199680c7f96SKevin Wolf     bs->options = qdict_new();
1200680c7f96SKevin Wolf     bs->opaque = NULL;
1201680c7f96SKevin Wolf 
1202680c7f96SKevin Wolf     update_options_from_flags(bs->options, flags);
1203680c7f96SKevin Wolf 
1204680c7f96SKevin Wolf     ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1205680c7f96SKevin Wolf     if (ret < 0) {
1206680c7f96SKevin Wolf         QDECREF(bs->explicit_options);
1207180ca19aSManos Pitsidianakis         bs->explicit_options = NULL;
1208680c7f96SKevin Wolf         QDECREF(bs->options);
1209180ca19aSManos Pitsidianakis         bs->options = NULL;
1210680c7f96SKevin Wolf         bdrv_unref(bs);
1211680c7f96SKevin Wolf         return NULL;
1212680c7f96SKevin Wolf     }
1213680c7f96SKevin Wolf 
1214680c7f96SKevin Wolf     return bs;
1215680c7f96SKevin Wolf }
1216680c7f96SKevin Wolf 
1217c5f3014bSKevin Wolf QemuOptsList bdrv_runtime_opts = {
121818edf289SKevin Wolf     .name = "bdrv_common",
121918edf289SKevin Wolf     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
122018edf289SKevin Wolf     .desc = {
122118edf289SKevin Wolf         {
122218edf289SKevin Wolf             .name = "node-name",
122318edf289SKevin Wolf             .type = QEMU_OPT_STRING,
122418edf289SKevin Wolf             .help = "Node name of the block device node",
122518edf289SKevin Wolf         },
122662392ebbSKevin Wolf         {
122762392ebbSKevin Wolf             .name = "driver",
122862392ebbSKevin Wolf             .type = QEMU_OPT_STRING,
122962392ebbSKevin Wolf             .help = "Block driver to use for the node",
123062392ebbSKevin Wolf         },
123191a097e7SKevin Wolf         {
123291a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_DIRECT,
123391a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
123491a097e7SKevin Wolf             .help = "Bypass software writeback cache on the host",
123591a097e7SKevin Wolf         },
123691a097e7SKevin Wolf         {
123791a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_NO_FLUSH,
123891a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
123991a097e7SKevin Wolf             .help = "Ignore flush requests",
124091a097e7SKevin Wolf         },
1241f87a0e29SAlberto Garcia         {
1242f87a0e29SAlberto Garcia             .name = BDRV_OPT_READ_ONLY,
1243f87a0e29SAlberto Garcia             .type = QEMU_OPT_BOOL,
1244f87a0e29SAlberto Garcia             .help = "Node is opened in read-only mode",
1245f87a0e29SAlberto Garcia         },
1246692e01a2SKevin Wolf         {
1247692e01a2SKevin Wolf             .name = "detect-zeroes",
1248692e01a2SKevin Wolf             .type = QEMU_OPT_STRING,
1249692e01a2SKevin Wolf             .help = "try to optimize zero writes (off, on, unmap)",
1250692e01a2SKevin Wolf         },
1251818584a4SKevin Wolf         {
1252818584a4SKevin Wolf             .name = "discard",
1253818584a4SKevin Wolf             .type = QEMU_OPT_STRING,
1254818584a4SKevin Wolf             .help = "discard operation (ignore/off, unmap/on)",
1255818584a4SKevin Wolf         },
12565a9347c6SFam Zheng         {
12575a9347c6SFam Zheng             .name = BDRV_OPT_FORCE_SHARE,
12585a9347c6SFam Zheng             .type = QEMU_OPT_BOOL,
12595a9347c6SFam Zheng             .help = "always accept other writers (default: off)",
12605a9347c6SFam Zheng         },
126118edf289SKevin Wolf         { /* end of list */ }
126218edf289SKevin Wolf     },
126318edf289SKevin Wolf };
126418edf289SKevin Wolf 
1265b6ce07aaSKevin Wolf /*
126657915332SKevin Wolf  * Common part for opening disk images and files
1267b6ad491aSKevin Wolf  *
1268b6ad491aSKevin Wolf  * Removes all processed options from *options.
126957915332SKevin Wolf  */
12705696c6e3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
127182dc8b41SKevin Wolf                             QDict *options, Error **errp)
127257915332SKevin Wolf {
127357915332SKevin Wolf     int ret, open_flags;
1274035fccdfSKevin Wolf     const char *filename;
127562392ebbSKevin Wolf     const char *driver_name = NULL;
12766913c0c2SBenoît Canet     const char *node_name = NULL;
1277818584a4SKevin Wolf     const char *discard;
1278692e01a2SKevin Wolf     const char *detect_zeroes;
127918edf289SKevin Wolf     QemuOpts *opts;
128062392ebbSKevin Wolf     BlockDriver *drv;
128134b5d2c6SMax Reitz     Error *local_err = NULL;
128257915332SKevin Wolf 
12836405875cSPaolo Bonzini     assert(bs->file == NULL);
1284707ff828SKevin Wolf     assert(options != NULL && bs->options != options);
128557915332SKevin Wolf 
128662392ebbSKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
128762392ebbSKevin Wolf     qemu_opts_absorb_qdict(opts, options, &local_err);
128862392ebbSKevin Wolf     if (local_err) {
128962392ebbSKevin Wolf         error_propagate(errp, local_err);
129062392ebbSKevin Wolf         ret = -EINVAL;
129162392ebbSKevin Wolf         goto fail_opts;
129262392ebbSKevin Wolf     }
129362392ebbSKevin Wolf 
12949b7e8691SAlberto Garcia     update_flags_from_options(&bs->open_flags, opts);
12959b7e8691SAlberto Garcia 
129662392ebbSKevin Wolf     driver_name = qemu_opt_get(opts, "driver");
129762392ebbSKevin Wolf     drv = bdrv_find_format(driver_name);
129862392ebbSKevin Wolf     assert(drv != NULL);
129962392ebbSKevin Wolf 
13005a9347c6SFam Zheng     bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
13015a9347c6SFam Zheng 
13025a9347c6SFam Zheng     if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
13035a9347c6SFam Zheng         error_setg(errp,
13045a9347c6SFam Zheng                    BDRV_OPT_FORCE_SHARE
13055a9347c6SFam Zheng                    "=on can only be used with read-only images");
13065a9347c6SFam Zheng         ret = -EINVAL;
13075a9347c6SFam Zheng         goto fail_opts;
13085a9347c6SFam Zheng     }
13095a9347c6SFam Zheng 
131045673671SKevin Wolf     if (file != NULL) {
13115696c6e3SKevin Wolf         filename = blk_bs(file)->filename;
131245673671SKevin Wolf     } else {
1313129c7d1cSMarkus Armbruster         /*
1314129c7d1cSMarkus Armbruster          * Caution: while qdict_get_try_str() is fine, getting
1315129c7d1cSMarkus Armbruster          * non-string types would require more care.  When @options
1316129c7d1cSMarkus Armbruster          * come from -blockdev or blockdev_add, its members are typed
1317129c7d1cSMarkus Armbruster          * according to the QAPI schema, but when they come from
1318129c7d1cSMarkus Armbruster          * -drive, they're all QString.
1319129c7d1cSMarkus Armbruster          */
132045673671SKevin Wolf         filename = qdict_get_try_str(options, "filename");
132145673671SKevin Wolf     }
132245673671SKevin Wolf 
13234a008240SMax Reitz     if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1324765003dbSKevin Wolf         error_setg(errp, "The '%s' block driver requires a file name",
1325765003dbSKevin Wolf                    drv->format_name);
132618edf289SKevin Wolf         ret = -EINVAL;
132718edf289SKevin Wolf         goto fail_opts;
132818edf289SKevin Wolf     }
132918edf289SKevin Wolf 
133082dc8b41SKevin Wolf     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
133182dc8b41SKevin Wolf                            drv->format_name);
133262392ebbSKevin Wolf 
133382dc8b41SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1334b64ec4e4SFam Zheng 
1335b64ec4e4SFam Zheng     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
13368f94a6e4SKevin Wolf         error_setg(errp,
13378f94a6e4SKevin Wolf                    !bs->read_only && bdrv_is_whitelisted(drv, true)
13388f94a6e4SKevin Wolf                         ? "Driver '%s' can only be used for read-only devices"
13398f94a6e4SKevin Wolf                         : "Driver '%s' is not whitelisted",
13408f94a6e4SKevin Wolf                    drv->format_name);
134118edf289SKevin Wolf         ret = -ENOTSUP;
134218edf289SKevin Wolf         goto fail_opts;
1343b64ec4e4SFam Zheng     }
134457915332SKevin Wolf 
1345d3faa13eSPaolo Bonzini     /* bdrv_new() and bdrv_close() make it so */
1346d3faa13eSPaolo Bonzini     assert(atomic_read(&bs->copy_on_read) == 0);
1347d3faa13eSPaolo Bonzini 
134882dc8b41SKevin Wolf     if (bs->open_flags & BDRV_O_COPY_ON_READ) {
13490ebd24e0SKevin Wolf         if (!bs->read_only) {
135053fec9d3SStefan Hajnoczi             bdrv_enable_copy_on_read(bs);
13510ebd24e0SKevin Wolf         } else {
13520ebd24e0SKevin Wolf             error_setg(errp, "Can't use copy-on-read on read-only device");
135318edf289SKevin Wolf             ret = -EINVAL;
135418edf289SKevin Wolf             goto fail_opts;
13550ebd24e0SKevin Wolf         }
135653fec9d3SStefan Hajnoczi     }
135753fec9d3SStefan Hajnoczi 
1358818584a4SKevin Wolf     discard = qemu_opt_get(opts, "discard");
1359818584a4SKevin Wolf     if (discard != NULL) {
1360818584a4SKevin Wolf         if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1361818584a4SKevin Wolf             error_setg(errp, "Invalid discard option");
1362818584a4SKevin Wolf             ret = -EINVAL;
1363818584a4SKevin Wolf             goto fail_opts;
1364818584a4SKevin Wolf         }
1365818584a4SKevin Wolf     }
1366818584a4SKevin Wolf 
1367692e01a2SKevin Wolf     detect_zeroes = qemu_opt_get(opts, "detect-zeroes");
1368692e01a2SKevin Wolf     if (detect_zeroes) {
1369692e01a2SKevin Wolf         BlockdevDetectZeroesOptions value =
1370f7abe0ecSMarc-André Lureau             qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
1371692e01a2SKevin Wolf                             detect_zeroes,
1372692e01a2SKevin Wolf                             BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
1373692e01a2SKevin Wolf                             &local_err);
1374692e01a2SKevin Wolf         if (local_err) {
1375692e01a2SKevin Wolf             error_propagate(errp, local_err);
1376692e01a2SKevin Wolf             ret = -EINVAL;
1377692e01a2SKevin Wolf             goto fail_opts;
1378692e01a2SKevin Wolf         }
1379692e01a2SKevin Wolf 
1380692e01a2SKevin Wolf         if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1381692e01a2SKevin Wolf             !(bs->open_flags & BDRV_O_UNMAP))
1382692e01a2SKevin Wolf         {
1383692e01a2SKevin Wolf             error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1384692e01a2SKevin Wolf                              "without setting discard operation to unmap");
1385692e01a2SKevin Wolf             ret = -EINVAL;
1386692e01a2SKevin Wolf             goto fail_opts;
1387692e01a2SKevin Wolf         }
1388692e01a2SKevin Wolf 
1389692e01a2SKevin Wolf         bs->detect_zeroes = value;
1390692e01a2SKevin Wolf     }
1391692e01a2SKevin Wolf 
1392c2ad1b0cSKevin Wolf     if (filename != NULL) {
139357915332SKevin Wolf         pstrcpy(bs->filename, sizeof(bs->filename), filename);
1394c2ad1b0cSKevin Wolf     } else {
1395c2ad1b0cSKevin Wolf         bs->filename[0] = '\0';
1396c2ad1b0cSKevin Wolf     }
139791af7014SMax Reitz     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
139857915332SKevin Wolf 
139966f82ceeSKevin Wolf     /* Open the image, either directly or using a protocol */
140082dc8b41SKevin Wolf     open_flags = bdrv_open_flags(bs, bs->open_flags);
140101a56501SKevin Wolf     node_name = qemu_opt_get(opts, "node-name");
140266f82ceeSKevin Wolf 
140301a56501SKevin Wolf     assert(!drv->bdrv_file_open || file == NULL);
140401a56501SKevin Wolf     ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
140557915332SKevin Wolf     if (ret < 0) {
140601a56501SKevin Wolf         goto fail_opts;
140734b5d2c6SMax Reitz     }
140818edf289SKevin Wolf 
140918edf289SKevin Wolf     qemu_opts_del(opts);
141057915332SKevin Wolf     return 0;
141157915332SKevin Wolf 
141218edf289SKevin Wolf fail_opts:
141318edf289SKevin Wolf     qemu_opts_del(opts);
141457915332SKevin Wolf     return ret;
141557915332SKevin Wolf }
141657915332SKevin Wolf 
14175e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp)
14185e5c4f63SKevin Wolf {
14195e5c4f63SKevin Wolf     QObject *options_obj;
14205e5c4f63SKevin Wolf     QDict *options;
14215e5c4f63SKevin Wolf     int ret;
14225e5c4f63SKevin Wolf 
14235e5c4f63SKevin Wolf     ret = strstart(filename, "json:", &filename);
14245e5c4f63SKevin Wolf     assert(ret);
14255e5c4f63SKevin Wolf 
14265577fff7SMarkus Armbruster     options_obj = qobject_from_json(filename, errp);
14275e5c4f63SKevin Wolf     if (!options_obj) {
14285577fff7SMarkus Armbruster         /* Work around qobject_from_json() lossage TODO fix that */
14295577fff7SMarkus Armbruster         if (errp && !*errp) {
14305e5c4f63SKevin Wolf             error_setg(errp, "Could not parse the JSON options");
14315e5c4f63SKevin Wolf             return NULL;
14325e5c4f63SKevin Wolf         }
14335577fff7SMarkus Armbruster         error_prepend(errp, "Could not parse the JSON options: ");
14345577fff7SMarkus Armbruster         return NULL;
14355577fff7SMarkus Armbruster     }
14365e5c4f63SKevin Wolf 
1437ca6b6e1eSMarkus Armbruster     options = qobject_to_qdict(options_obj);
1438ca6b6e1eSMarkus Armbruster     if (!options) {
14395e5c4f63SKevin Wolf         qobject_decref(options_obj);
14405e5c4f63SKevin Wolf         error_setg(errp, "Invalid JSON object given");
14415e5c4f63SKevin Wolf         return NULL;
14425e5c4f63SKevin Wolf     }
14435e5c4f63SKevin Wolf 
14445e5c4f63SKevin Wolf     qdict_flatten(options);
14455e5c4f63SKevin Wolf 
14465e5c4f63SKevin Wolf     return options;
14475e5c4f63SKevin Wolf }
14485e5c4f63SKevin Wolf 
1449de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename,
1450de3b53f0SKevin Wolf                                 Error **errp)
1451de3b53f0SKevin Wolf {
1452de3b53f0SKevin Wolf     QDict *json_options;
1453de3b53f0SKevin Wolf     Error *local_err = NULL;
1454de3b53f0SKevin Wolf 
1455de3b53f0SKevin Wolf     /* Parse json: pseudo-protocol */
1456de3b53f0SKevin Wolf     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1457de3b53f0SKevin Wolf         return;
1458de3b53f0SKevin Wolf     }
1459de3b53f0SKevin Wolf 
1460de3b53f0SKevin Wolf     json_options = parse_json_filename(*pfilename, &local_err);
1461de3b53f0SKevin Wolf     if (local_err) {
1462de3b53f0SKevin Wolf         error_propagate(errp, local_err);
1463de3b53f0SKevin Wolf         return;
1464de3b53f0SKevin Wolf     }
1465de3b53f0SKevin Wolf 
1466de3b53f0SKevin Wolf     /* Options given in the filename have lower priority than options
1467de3b53f0SKevin Wolf      * specified directly */
1468de3b53f0SKevin Wolf     qdict_join(options, json_options, false);
1469de3b53f0SKevin Wolf     QDECREF(json_options);
1470de3b53f0SKevin Wolf     *pfilename = NULL;
1471de3b53f0SKevin Wolf }
1472de3b53f0SKevin Wolf 
147357915332SKevin Wolf /*
1474f54120ffSKevin Wolf  * Fills in default options for opening images and converts the legacy
1475f54120ffSKevin Wolf  * filename/flags pair to option QDict entries.
147653a29513SMax Reitz  * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
147753a29513SMax Reitz  * block driver has been specified explicitly.
1478f54120ffSKevin Wolf  */
1479de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename,
1480053e1578SMax Reitz                              int *flags, Error **errp)
1481f54120ffSKevin Wolf {
1482f54120ffSKevin Wolf     const char *drvname;
148353a29513SMax Reitz     bool protocol = *flags & BDRV_O_PROTOCOL;
1484f54120ffSKevin Wolf     bool parse_filename = false;
1485053e1578SMax Reitz     BlockDriver *drv = NULL;
1486f54120ffSKevin Wolf     Error *local_err = NULL;
1487f54120ffSKevin Wolf 
1488129c7d1cSMarkus Armbruster     /*
1489129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
1490129c7d1cSMarkus Armbruster      * types would require more care.  When @options come from
1491129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
1492129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
1493129c7d1cSMarkus Armbruster      * QString.
1494129c7d1cSMarkus Armbruster      */
149553a29513SMax Reitz     drvname = qdict_get_try_str(*options, "driver");
1496053e1578SMax Reitz     if (drvname) {
1497053e1578SMax Reitz         drv = bdrv_find_format(drvname);
1498053e1578SMax Reitz         if (!drv) {
1499053e1578SMax Reitz             error_setg(errp, "Unknown driver '%s'", drvname);
1500053e1578SMax Reitz             return -ENOENT;
1501053e1578SMax Reitz         }
150253a29513SMax Reitz         /* If the user has explicitly specified the driver, this choice should
150353a29513SMax Reitz          * override the BDRV_O_PROTOCOL flag */
1504053e1578SMax Reitz         protocol = drv->bdrv_file_open;
150553a29513SMax Reitz     }
150653a29513SMax Reitz 
150753a29513SMax Reitz     if (protocol) {
150853a29513SMax Reitz         *flags |= BDRV_O_PROTOCOL;
150953a29513SMax Reitz     } else {
151053a29513SMax Reitz         *flags &= ~BDRV_O_PROTOCOL;
151153a29513SMax Reitz     }
151253a29513SMax Reitz 
151391a097e7SKevin Wolf     /* Translate cache options from flags into options */
151491a097e7SKevin Wolf     update_options_from_flags(*options, *flags);
151591a097e7SKevin Wolf 
1516f54120ffSKevin Wolf     /* Fetch the file name from the options QDict if necessary */
151717b005f1SKevin Wolf     if (protocol && filename) {
1518f54120ffSKevin Wolf         if (!qdict_haskey(*options, "filename")) {
151946f5ac20SEric Blake             qdict_put_str(*options, "filename", filename);
1520f54120ffSKevin Wolf             parse_filename = true;
1521f54120ffSKevin Wolf         } else {
1522f54120ffSKevin Wolf             error_setg(errp, "Can't specify 'file' and 'filename' options at "
1523f54120ffSKevin Wolf                              "the same time");
1524f54120ffSKevin Wolf             return -EINVAL;
1525f54120ffSKevin Wolf         }
1526f54120ffSKevin Wolf     }
1527f54120ffSKevin Wolf 
1528f54120ffSKevin Wolf     /* Find the right block driver */
1529129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
1530f54120ffSKevin Wolf     filename = qdict_get_try_str(*options, "filename");
1531f54120ffSKevin Wolf 
153217b005f1SKevin Wolf     if (!drvname && protocol) {
1533f54120ffSKevin Wolf         if (filename) {
1534b65a5e12SMax Reitz             drv = bdrv_find_protocol(filename, parse_filename, errp);
1535f54120ffSKevin Wolf             if (!drv) {
1536f54120ffSKevin Wolf                 return -EINVAL;
1537f54120ffSKevin Wolf             }
1538f54120ffSKevin Wolf 
1539f54120ffSKevin Wolf             drvname = drv->format_name;
154046f5ac20SEric Blake             qdict_put_str(*options, "driver", drvname);
1541f54120ffSKevin Wolf         } else {
1542f54120ffSKevin Wolf             error_setg(errp, "Must specify either driver or file");
1543f54120ffSKevin Wolf             return -EINVAL;
1544f54120ffSKevin Wolf         }
154517b005f1SKevin Wolf     }
154617b005f1SKevin Wolf 
154717b005f1SKevin Wolf     assert(drv || !protocol);
1548f54120ffSKevin Wolf 
1549f54120ffSKevin Wolf     /* Driver-specific filename parsing */
155017b005f1SKevin Wolf     if (drv && drv->bdrv_parse_filename && parse_filename) {
1551f54120ffSKevin Wolf         drv->bdrv_parse_filename(filename, *options, &local_err);
1552f54120ffSKevin Wolf         if (local_err) {
1553f54120ffSKevin Wolf             error_propagate(errp, local_err);
1554f54120ffSKevin Wolf             return -EINVAL;
1555f54120ffSKevin Wolf         }
1556f54120ffSKevin Wolf 
1557f54120ffSKevin Wolf         if (!drv->bdrv_needs_filename) {
1558f54120ffSKevin Wolf             qdict_del(*options, "filename");
1559f54120ffSKevin Wolf         }
1560f54120ffSKevin Wolf     }
1561f54120ffSKevin Wolf 
1562f54120ffSKevin Wolf     return 0;
1563f54120ffSKevin Wolf }
1564f54120ffSKevin Wolf 
15653121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
15663121fb45SKevin Wolf                                  uint64_t perm, uint64_t shared,
1567c1cef672SFam Zheng                                  GSList *ignore_children, Error **errp);
1568c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c);
1569c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1570c1cef672SFam Zheng 
1571148eb13cSKevin Wolf typedef struct BlockReopenQueueEntry {
1572148eb13cSKevin Wolf      bool prepared;
1573148eb13cSKevin Wolf      BDRVReopenState state;
1574148eb13cSKevin Wolf      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1575148eb13cSKevin Wolf } BlockReopenQueueEntry;
1576148eb13cSKevin Wolf 
1577148eb13cSKevin Wolf /*
1578148eb13cSKevin Wolf  * Return the flags that @bs will have after the reopens in @q have
1579148eb13cSKevin Wolf  * successfully completed. If @q is NULL (or @bs is not contained in @q),
1580148eb13cSKevin Wolf  * return the current flags.
1581148eb13cSKevin Wolf  */
1582148eb13cSKevin Wolf static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1583148eb13cSKevin Wolf {
1584148eb13cSKevin Wolf     BlockReopenQueueEntry *entry;
1585148eb13cSKevin Wolf 
1586148eb13cSKevin Wolf     if (q != NULL) {
1587148eb13cSKevin Wolf         QSIMPLEQ_FOREACH(entry, q, entry) {
1588148eb13cSKevin Wolf             if (entry->state.bs == bs) {
1589148eb13cSKevin Wolf                 return entry->state.flags;
1590148eb13cSKevin Wolf             }
1591148eb13cSKevin Wolf         }
1592148eb13cSKevin Wolf     }
1593148eb13cSKevin Wolf 
1594148eb13cSKevin Wolf     return bs->open_flags;
1595148eb13cSKevin Wolf }
1596148eb13cSKevin Wolf 
1597148eb13cSKevin Wolf /* Returns whether the image file can be written to after the reopen queue @q
1598148eb13cSKevin Wolf  * has been successfully applied, or right now if @q is NULL. */
1599148eb13cSKevin Wolf static bool bdrv_is_writable(BlockDriverState *bs, BlockReopenQueue *q)
1600148eb13cSKevin Wolf {
1601148eb13cSKevin Wolf     int flags = bdrv_reopen_get_flags(q, bs);
1602148eb13cSKevin Wolf 
1603148eb13cSKevin Wolf     return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1604148eb13cSKevin Wolf }
1605148eb13cSKevin Wolf 
1606ffd1a5a2SFam Zheng static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
1607e0995dc3SKevin Wolf                             BdrvChild *c, const BdrvChildRole *role,
1608e0995dc3SKevin Wolf                             BlockReopenQueue *reopen_queue,
1609ffd1a5a2SFam Zheng                             uint64_t parent_perm, uint64_t parent_shared,
1610ffd1a5a2SFam Zheng                             uint64_t *nperm, uint64_t *nshared)
1611ffd1a5a2SFam Zheng {
1612ffd1a5a2SFam Zheng     if (bs->drv && bs->drv->bdrv_child_perm) {
1613e0995dc3SKevin Wolf         bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
1614ffd1a5a2SFam Zheng                                  parent_perm, parent_shared,
1615ffd1a5a2SFam Zheng                                  nperm, nshared);
1616ffd1a5a2SFam Zheng     }
1617e0995dc3SKevin Wolf     /* TODO Take force_share from reopen_queue */
1618ffd1a5a2SFam Zheng     if (child_bs && child_bs->force_share) {
1619ffd1a5a2SFam Zheng         *nshared = BLK_PERM_ALL;
1620ffd1a5a2SFam Zheng     }
1621ffd1a5a2SFam Zheng }
1622ffd1a5a2SFam Zheng 
162333a610c3SKevin Wolf /*
162433a610c3SKevin Wolf  * Check whether permissions on this node can be changed in a way that
162533a610c3SKevin Wolf  * @cumulative_perms and @cumulative_shared_perms are the new cumulative
162633a610c3SKevin Wolf  * permissions of all its parents. This involves checking whether all necessary
162733a610c3SKevin Wolf  * permission changes to child nodes can be performed.
162833a610c3SKevin Wolf  *
162933a610c3SKevin Wolf  * A call to this function must always be followed by a call to bdrv_set_perm()
163033a610c3SKevin Wolf  * or bdrv_abort_perm_update().
163133a610c3SKevin Wolf  */
16323121fb45SKevin Wolf static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
16333121fb45SKevin Wolf                            uint64_t cumulative_perms,
163446181129SKevin Wolf                            uint64_t cumulative_shared_perms,
163546181129SKevin Wolf                            GSList *ignore_children, Error **errp)
163633a610c3SKevin Wolf {
163733a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
163833a610c3SKevin Wolf     BdrvChild *c;
163933a610c3SKevin Wolf     int ret;
164033a610c3SKevin Wolf 
164133a610c3SKevin Wolf     /* Write permissions never work with read-only images */
164233a610c3SKevin Wolf     if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
1643148eb13cSKevin Wolf         !bdrv_is_writable(bs, q))
164433a610c3SKevin Wolf     {
164533a610c3SKevin Wolf         error_setg(errp, "Block node is read-only");
164633a610c3SKevin Wolf         return -EPERM;
164733a610c3SKevin Wolf     }
164833a610c3SKevin Wolf 
164933a610c3SKevin Wolf     /* Check this node */
165033a610c3SKevin Wolf     if (!drv) {
165133a610c3SKevin Wolf         return 0;
165233a610c3SKevin Wolf     }
165333a610c3SKevin Wolf 
165433a610c3SKevin Wolf     if (drv->bdrv_check_perm) {
165533a610c3SKevin Wolf         return drv->bdrv_check_perm(bs, cumulative_perms,
165633a610c3SKevin Wolf                                     cumulative_shared_perms, errp);
165733a610c3SKevin Wolf     }
165833a610c3SKevin Wolf 
165978e421c9SKevin Wolf     /* Drivers that never have children can omit .bdrv_child_perm() */
166033a610c3SKevin Wolf     if (!drv->bdrv_child_perm) {
166178e421c9SKevin Wolf         assert(QLIST_EMPTY(&bs->children));
166233a610c3SKevin Wolf         return 0;
166333a610c3SKevin Wolf     }
166433a610c3SKevin Wolf 
166533a610c3SKevin Wolf     /* Check all children */
166633a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
166733a610c3SKevin Wolf         uint64_t cur_perm, cur_shared;
16683121fb45SKevin Wolf         bdrv_child_perm(bs, c->bs, c, c->role, q,
166933a610c3SKevin Wolf                         cumulative_perms, cumulative_shared_perms,
167033a610c3SKevin Wolf                         &cur_perm, &cur_shared);
16713121fb45SKevin Wolf         ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
16723121fb45SKevin Wolf                                     ignore_children, errp);
167333a610c3SKevin Wolf         if (ret < 0) {
167433a610c3SKevin Wolf             return ret;
167533a610c3SKevin Wolf         }
167633a610c3SKevin Wolf     }
167733a610c3SKevin Wolf 
167833a610c3SKevin Wolf     return 0;
167933a610c3SKevin Wolf }
168033a610c3SKevin Wolf 
168133a610c3SKevin Wolf /*
168233a610c3SKevin Wolf  * Notifies drivers that after a previous bdrv_check_perm() call, the
168333a610c3SKevin Wolf  * permission update is not performed and any preparations made for it (e.g.
168433a610c3SKevin Wolf  * taken file locks) need to be undone.
168533a610c3SKevin Wolf  *
168633a610c3SKevin Wolf  * This function recursively notifies all child nodes.
168733a610c3SKevin Wolf  */
168833a610c3SKevin Wolf static void bdrv_abort_perm_update(BlockDriverState *bs)
168933a610c3SKevin Wolf {
169033a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
169133a610c3SKevin Wolf     BdrvChild *c;
169233a610c3SKevin Wolf 
169333a610c3SKevin Wolf     if (!drv) {
169433a610c3SKevin Wolf         return;
169533a610c3SKevin Wolf     }
169633a610c3SKevin Wolf 
169733a610c3SKevin Wolf     if (drv->bdrv_abort_perm_update) {
169833a610c3SKevin Wolf         drv->bdrv_abort_perm_update(bs);
169933a610c3SKevin Wolf     }
170033a610c3SKevin Wolf 
170133a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
170233a610c3SKevin Wolf         bdrv_child_abort_perm_update(c);
170333a610c3SKevin Wolf     }
170433a610c3SKevin Wolf }
170533a610c3SKevin Wolf 
170633a610c3SKevin Wolf static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
170733a610c3SKevin Wolf                           uint64_t cumulative_shared_perms)
170833a610c3SKevin Wolf {
170933a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
171033a610c3SKevin Wolf     BdrvChild *c;
171133a610c3SKevin Wolf 
171233a610c3SKevin Wolf     if (!drv) {
171333a610c3SKevin Wolf         return;
171433a610c3SKevin Wolf     }
171533a610c3SKevin Wolf 
171633a610c3SKevin Wolf     /* Update this node */
171733a610c3SKevin Wolf     if (drv->bdrv_set_perm) {
171833a610c3SKevin Wolf         drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
171933a610c3SKevin Wolf     }
172033a610c3SKevin Wolf 
172178e421c9SKevin Wolf     /* Drivers that never have children can omit .bdrv_child_perm() */
172233a610c3SKevin Wolf     if (!drv->bdrv_child_perm) {
172378e421c9SKevin Wolf         assert(QLIST_EMPTY(&bs->children));
172433a610c3SKevin Wolf         return;
172533a610c3SKevin Wolf     }
172633a610c3SKevin Wolf 
172733a610c3SKevin Wolf     /* Update all children */
172833a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
172933a610c3SKevin Wolf         uint64_t cur_perm, cur_shared;
1730e0995dc3SKevin Wolf         bdrv_child_perm(bs, c->bs, c, c->role, NULL,
173133a610c3SKevin Wolf                         cumulative_perms, cumulative_shared_perms,
173233a610c3SKevin Wolf                         &cur_perm, &cur_shared);
173333a610c3SKevin Wolf         bdrv_child_set_perm(c, cur_perm, cur_shared);
173433a610c3SKevin Wolf     }
173533a610c3SKevin Wolf }
173633a610c3SKevin Wolf 
173733a610c3SKevin Wolf static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
173833a610c3SKevin Wolf                                      uint64_t *shared_perm)
173933a610c3SKevin Wolf {
174033a610c3SKevin Wolf     BdrvChild *c;
174133a610c3SKevin Wolf     uint64_t cumulative_perms = 0;
174233a610c3SKevin Wolf     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
174333a610c3SKevin Wolf 
174433a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
174533a610c3SKevin Wolf         cumulative_perms |= c->perm;
174633a610c3SKevin Wolf         cumulative_shared_perms &= c->shared_perm;
174733a610c3SKevin Wolf     }
174833a610c3SKevin Wolf 
174933a610c3SKevin Wolf     *perm = cumulative_perms;
175033a610c3SKevin Wolf     *shared_perm = cumulative_shared_perms;
175133a610c3SKevin Wolf }
175233a610c3SKevin Wolf 
1753d083319fSKevin Wolf static char *bdrv_child_user_desc(BdrvChild *c)
1754d083319fSKevin Wolf {
1755d083319fSKevin Wolf     if (c->role->get_parent_desc) {
1756d083319fSKevin Wolf         return c->role->get_parent_desc(c);
1757d083319fSKevin Wolf     }
1758d083319fSKevin Wolf 
1759d083319fSKevin Wolf     return g_strdup("another user");
1760d083319fSKevin Wolf }
1761d083319fSKevin Wolf 
17625176196cSFam Zheng char *bdrv_perm_names(uint64_t perm)
1763d083319fSKevin Wolf {
1764d083319fSKevin Wolf     struct perm_name {
1765d083319fSKevin Wolf         uint64_t perm;
1766d083319fSKevin Wolf         const char *name;
1767d083319fSKevin Wolf     } permissions[] = {
1768d083319fSKevin Wolf         { BLK_PERM_CONSISTENT_READ, "consistent read" },
1769d083319fSKevin Wolf         { BLK_PERM_WRITE,           "write" },
1770d083319fSKevin Wolf         { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1771d083319fSKevin Wolf         { BLK_PERM_RESIZE,          "resize" },
1772d083319fSKevin Wolf         { BLK_PERM_GRAPH_MOD,       "change children" },
1773d083319fSKevin Wolf         { 0, NULL }
1774d083319fSKevin Wolf     };
1775d083319fSKevin Wolf 
1776d083319fSKevin Wolf     char *result = g_strdup("");
1777d083319fSKevin Wolf     struct perm_name *p;
1778d083319fSKevin Wolf 
1779d083319fSKevin Wolf     for (p = permissions; p->name; p++) {
1780d083319fSKevin Wolf         if (perm & p->perm) {
1781d083319fSKevin Wolf             char *old = result;
1782d083319fSKevin Wolf             result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1783d083319fSKevin Wolf             g_free(old);
1784d083319fSKevin Wolf         }
1785d083319fSKevin Wolf     }
1786d083319fSKevin Wolf 
1787d083319fSKevin Wolf     return result;
1788d083319fSKevin Wolf }
1789d083319fSKevin Wolf 
179033a610c3SKevin Wolf /*
179133a610c3SKevin Wolf  * Checks whether a new reference to @bs can be added if the new user requires
179246181129SKevin Wolf  * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
179346181129SKevin Wolf  * set, the BdrvChild objects in this list are ignored in the calculations;
179446181129SKevin Wolf  * this allows checking permission updates for an existing reference.
179533a610c3SKevin Wolf  *
179633a610c3SKevin Wolf  * Needs to be followed by a call to either bdrv_set_perm() or
179733a610c3SKevin Wolf  * bdrv_abort_perm_update(). */
17983121fb45SKevin Wolf static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
17993121fb45SKevin Wolf                                   uint64_t new_used_perm,
1800d5e6f437SKevin Wolf                                   uint64_t new_shared_perm,
180146181129SKevin Wolf                                   GSList *ignore_children, Error **errp)
1802d5e6f437SKevin Wolf {
1803d5e6f437SKevin Wolf     BdrvChild *c;
180433a610c3SKevin Wolf     uint64_t cumulative_perms = new_used_perm;
180533a610c3SKevin Wolf     uint64_t cumulative_shared_perms = new_shared_perm;
1806d5e6f437SKevin Wolf 
1807d5e6f437SKevin Wolf     /* There is no reason why anyone couldn't tolerate write_unchanged */
1808d5e6f437SKevin Wolf     assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1809d5e6f437SKevin Wolf 
1810d5e6f437SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
181146181129SKevin Wolf         if (g_slist_find(ignore_children, c)) {
1812d5e6f437SKevin Wolf             continue;
1813d5e6f437SKevin Wolf         }
1814d5e6f437SKevin Wolf 
1815d083319fSKevin Wolf         if ((new_used_perm & c->shared_perm) != new_used_perm) {
1816d083319fSKevin Wolf             char *user = bdrv_child_user_desc(c);
1817d083319fSKevin Wolf             char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1818d083319fSKevin Wolf             error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1819d083319fSKevin Wolf                              "allow '%s' on %s",
1820d083319fSKevin Wolf                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1821d083319fSKevin Wolf             g_free(user);
1822d083319fSKevin Wolf             g_free(perm_names);
1823d083319fSKevin Wolf             return -EPERM;
1824d5e6f437SKevin Wolf         }
1825d083319fSKevin Wolf 
1826d083319fSKevin Wolf         if ((c->perm & new_shared_perm) != c->perm) {
1827d083319fSKevin Wolf             char *user = bdrv_child_user_desc(c);
1828d083319fSKevin Wolf             char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1829d083319fSKevin Wolf             error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1830d083319fSKevin Wolf                              "'%s' on %s",
1831d083319fSKevin Wolf                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1832d083319fSKevin Wolf             g_free(user);
1833d083319fSKevin Wolf             g_free(perm_names);
1834d5e6f437SKevin Wolf             return -EPERM;
1835d5e6f437SKevin Wolf         }
183633a610c3SKevin Wolf 
183733a610c3SKevin Wolf         cumulative_perms |= c->perm;
183833a610c3SKevin Wolf         cumulative_shared_perms &= c->shared_perm;
1839d5e6f437SKevin Wolf     }
1840d5e6f437SKevin Wolf 
18413121fb45SKevin Wolf     return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
184246181129SKevin Wolf                            ignore_children, errp);
184333a610c3SKevin Wolf }
184433a610c3SKevin Wolf 
184533a610c3SKevin Wolf /* Needs to be followed by a call to either bdrv_child_set_perm() or
184633a610c3SKevin Wolf  * bdrv_child_abort_perm_update(). */
18473121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
18483121fb45SKevin Wolf                                  uint64_t perm, uint64_t shared,
184946181129SKevin Wolf                                  GSList *ignore_children, Error **errp)
185033a610c3SKevin Wolf {
185146181129SKevin Wolf     int ret;
185246181129SKevin Wolf 
185346181129SKevin Wolf     ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
18543121fb45SKevin Wolf     ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
185546181129SKevin Wolf     g_slist_free(ignore_children);
185646181129SKevin Wolf 
185746181129SKevin Wolf     return ret;
185833a610c3SKevin Wolf }
185933a610c3SKevin Wolf 
1860c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
186133a610c3SKevin Wolf {
186233a610c3SKevin Wolf     uint64_t cumulative_perms, cumulative_shared_perms;
186333a610c3SKevin Wolf 
186433a610c3SKevin Wolf     c->perm = perm;
186533a610c3SKevin Wolf     c->shared_perm = shared;
186633a610c3SKevin Wolf 
186733a610c3SKevin Wolf     bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
186833a610c3SKevin Wolf                              &cumulative_shared_perms);
186933a610c3SKevin Wolf     bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
187033a610c3SKevin Wolf }
187133a610c3SKevin Wolf 
1872c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c)
187333a610c3SKevin Wolf {
187433a610c3SKevin Wolf     bdrv_abort_perm_update(c->bs);
187533a610c3SKevin Wolf }
187633a610c3SKevin Wolf 
187733a610c3SKevin Wolf int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
187833a610c3SKevin Wolf                             Error **errp)
187933a610c3SKevin Wolf {
188033a610c3SKevin Wolf     int ret;
188133a610c3SKevin Wolf 
18823121fb45SKevin Wolf     ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
188333a610c3SKevin Wolf     if (ret < 0) {
188433a610c3SKevin Wolf         bdrv_child_abort_perm_update(c);
188533a610c3SKevin Wolf         return ret;
188633a610c3SKevin Wolf     }
188733a610c3SKevin Wolf 
188833a610c3SKevin Wolf     bdrv_child_set_perm(c, perm, shared);
188933a610c3SKevin Wolf 
1890d5e6f437SKevin Wolf     return 0;
1891d5e6f437SKevin Wolf }
1892d5e6f437SKevin Wolf 
18936a1b9ee1SKevin Wolf #define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \
18946a1b9ee1SKevin Wolf                                  | BLK_PERM_WRITE \
18956a1b9ee1SKevin Wolf                                  | BLK_PERM_WRITE_UNCHANGED \
18966a1b9ee1SKevin Wolf                                  | BLK_PERM_RESIZE)
18976a1b9ee1SKevin Wolf #define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH)
18986a1b9ee1SKevin Wolf 
18996a1b9ee1SKevin Wolf void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
19006a1b9ee1SKevin Wolf                                const BdrvChildRole *role,
1901e0995dc3SKevin Wolf                                BlockReopenQueue *reopen_queue,
19026a1b9ee1SKevin Wolf                                uint64_t perm, uint64_t shared,
19036a1b9ee1SKevin Wolf                                uint64_t *nperm, uint64_t *nshared)
19046a1b9ee1SKevin Wolf {
19056a1b9ee1SKevin Wolf     if (c == NULL) {
19066a1b9ee1SKevin Wolf         *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
19076a1b9ee1SKevin Wolf         *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
19086a1b9ee1SKevin Wolf         return;
19096a1b9ee1SKevin Wolf     }
19106a1b9ee1SKevin Wolf 
19116a1b9ee1SKevin Wolf     *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
19126a1b9ee1SKevin Wolf              (c->perm & DEFAULT_PERM_UNCHANGED);
19136a1b9ee1SKevin Wolf     *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
19146a1b9ee1SKevin Wolf                (c->shared_perm & DEFAULT_PERM_UNCHANGED);
19156a1b9ee1SKevin Wolf }
19166a1b9ee1SKevin Wolf 
19176b1a044aSKevin Wolf void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
19186b1a044aSKevin Wolf                                const BdrvChildRole *role,
1919e0995dc3SKevin Wolf                                BlockReopenQueue *reopen_queue,
19206b1a044aSKevin Wolf                                uint64_t perm, uint64_t shared,
19216b1a044aSKevin Wolf                                uint64_t *nperm, uint64_t *nshared)
19226b1a044aSKevin Wolf {
19236b1a044aSKevin Wolf     bool backing = (role == &child_backing);
19246b1a044aSKevin Wolf     assert(role == &child_backing || role == &child_file);
19256b1a044aSKevin Wolf 
19266b1a044aSKevin Wolf     if (!backing) {
19275fbfabd3SKevin Wolf         int flags = bdrv_reopen_get_flags(reopen_queue, bs);
19285fbfabd3SKevin Wolf 
19296b1a044aSKevin Wolf         /* Apart from the modifications below, the same permissions are
19306b1a044aSKevin Wolf          * forwarded and left alone as for filters */
1931e0995dc3SKevin Wolf         bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
1932e0995dc3SKevin Wolf                                   &perm, &shared);
19336b1a044aSKevin Wolf 
19346b1a044aSKevin Wolf         /* Format drivers may touch metadata even if the guest doesn't write */
1935148eb13cSKevin Wolf         if (bdrv_is_writable(bs, reopen_queue)) {
19366b1a044aSKevin Wolf             perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
19376b1a044aSKevin Wolf         }
19386b1a044aSKevin Wolf 
19396b1a044aSKevin Wolf         /* bs->file always needs to be consistent because of the metadata. We
19406b1a044aSKevin Wolf          * can never allow other users to resize or write to it. */
19415fbfabd3SKevin Wolf         if (!(flags & BDRV_O_NO_IO)) {
19426b1a044aSKevin Wolf             perm |= BLK_PERM_CONSISTENT_READ;
19435fbfabd3SKevin Wolf         }
19446b1a044aSKevin Wolf         shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
19456b1a044aSKevin Wolf     } else {
19466b1a044aSKevin Wolf         /* We want consistent read from backing files if the parent needs it.
19476b1a044aSKevin Wolf          * No other operations are performed on backing files. */
19486b1a044aSKevin Wolf         perm &= BLK_PERM_CONSISTENT_READ;
19496b1a044aSKevin Wolf 
19506b1a044aSKevin Wolf         /* If the parent can deal with changing data, we're okay with a
19516b1a044aSKevin Wolf          * writable and resizable backing file. */
19526b1a044aSKevin Wolf         /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
19536b1a044aSKevin Wolf         if (shared & BLK_PERM_WRITE) {
19546b1a044aSKevin Wolf             shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
19556b1a044aSKevin Wolf         } else {
19566b1a044aSKevin Wolf             shared = 0;
19576b1a044aSKevin Wolf         }
19586b1a044aSKevin Wolf 
19596b1a044aSKevin Wolf         shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
19606b1a044aSKevin Wolf                   BLK_PERM_WRITE_UNCHANGED;
19616b1a044aSKevin Wolf     }
19626b1a044aSKevin Wolf 
19639c5e6594SKevin Wolf     if (bs->open_flags & BDRV_O_INACTIVE) {
19649c5e6594SKevin Wolf         shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
19659c5e6594SKevin Wolf     }
19669c5e6594SKevin Wolf 
19676b1a044aSKevin Wolf     *nperm = perm;
19686b1a044aSKevin Wolf     *nshared = shared;
19696b1a044aSKevin Wolf }
19706b1a044aSKevin Wolf 
19718ee03995SKevin Wolf static void bdrv_replace_child_noperm(BdrvChild *child,
19728ee03995SKevin Wolf                                       BlockDriverState *new_bs)
1973e9740bc6SKevin Wolf {
1974e9740bc6SKevin Wolf     BlockDriverState *old_bs = child->bs;
1975e9740bc6SKevin Wolf 
1976bb2614e9SFam Zheng     if (old_bs && new_bs) {
1977bb2614e9SFam Zheng         assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
1978bb2614e9SFam Zheng     }
1979e9740bc6SKevin Wolf     if (old_bs) {
198036fe1331SKevin Wolf         if (old_bs->quiesce_counter && child->role->drained_end) {
198136fe1331SKevin Wolf             child->role->drained_end(child);
1982e9740bc6SKevin Wolf         }
1983db95dbbaSKevin Wolf         if (child->role->detach) {
1984db95dbbaSKevin Wolf             child->role->detach(child);
1985db95dbbaSKevin Wolf         }
198636fe1331SKevin Wolf         QLIST_REMOVE(child, next_parent);
1987e9740bc6SKevin Wolf     }
1988e9740bc6SKevin Wolf 
1989e9740bc6SKevin Wolf     child->bs = new_bs;
199036fe1331SKevin Wolf 
199136fe1331SKevin Wolf     if (new_bs) {
199236fe1331SKevin Wolf         QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
199336fe1331SKevin Wolf         if (new_bs->quiesce_counter && child->role->drained_begin) {
199436fe1331SKevin Wolf             child->role->drained_begin(child);
199536fe1331SKevin Wolf         }
199633a610c3SKevin Wolf 
1997db95dbbaSKevin Wolf         if (child->role->attach) {
1998db95dbbaSKevin Wolf             child->role->attach(child);
1999db95dbbaSKevin Wolf         }
200036fe1331SKevin Wolf     }
2001e9740bc6SKevin Wolf }
2002e9740bc6SKevin Wolf 
2003466787fbSKevin Wolf /*
2004466787fbSKevin Wolf  * Updates @child to change its reference to point to @new_bs, including
2005466787fbSKevin Wolf  * checking and applying the necessary permisson updates both to the old node
2006466787fbSKevin Wolf  * and to @new_bs.
2007466787fbSKevin Wolf  *
2008466787fbSKevin Wolf  * NULL is passed as @new_bs for removing the reference before freeing @child.
2009466787fbSKevin Wolf  *
2010466787fbSKevin Wolf  * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2011466787fbSKevin Wolf  * function uses bdrv_set_perm() to update the permissions according to the new
2012466787fbSKevin Wolf  * reference that @new_bs gets.
2013466787fbSKevin Wolf  */
2014466787fbSKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
20158ee03995SKevin Wolf {
20168ee03995SKevin Wolf     BlockDriverState *old_bs = child->bs;
20178ee03995SKevin Wolf     uint64_t perm, shared_perm;
20188ee03995SKevin Wolf 
20198aecf1d1SKevin Wolf     bdrv_replace_child_noperm(child, new_bs);
20208aecf1d1SKevin Wolf 
20218ee03995SKevin Wolf     if (old_bs) {
20228ee03995SKevin Wolf         /* Update permissions for old node. This is guaranteed to succeed
20238ee03995SKevin Wolf          * because we're just taking a parent away, so we're loosening
20248ee03995SKevin Wolf          * restrictions. */
20258ee03995SKevin Wolf         bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
20263121fb45SKevin Wolf         bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
20278ee03995SKevin Wolf         bdrv_set_perm(old_bs, perm, shared_perm);
20288ee03995SKevin Wolf     }
20298ee03995SKevin Wolf 
20308ee03995SKevin Wolf     if (new_bs) {
2031f54120ffSKevin Wolf         bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2032f54120ffSKevin Wolf         bdrv_set_perm(new_bs, perm, shared_perm);
2033f54120ffSKevin Wolf     }
2034f54120ffSKevin Wolf }
2035f54120ffSKevin Wolf 
2036f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2037260fecf1SKevin Wolf                                   const char *child_name,
203836fe1331SKevin Wolf                                   const BdrvChildRole *child_role,
2039d5e6f437SKevin Wolf                                   uint64_t perm, uint64_t shared_perm,
2040d5e6f437SKevin Wolf                                   void *opaque, Error **errp)
2041df581792SKevin Wolf {
2042d5e6f437SKevin Wolf     BdrvChild *child;
2043d5e6f437SKevin Wolf     int ret;
2044d5e6f437SKevin Wolf 
20453121fb45SKevin Wolf     ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
2046d5e6f437SKevin Wolf     if (ret < 0) {
204733a610c3SKevin Wolf         bdrv_abort_perm_update(child_bs);
2048d5e6f437SKevin Wolf         return NULL;
2049d5e6f437SKevin Wolf     }
2050d5e6f437SKevin Wolf 
2051d5e6f437SKevin Wolf     child = g_new(BdrvChild, 1);
2052df581792SKevin Wolf     *child = (BdrvChild) {
2053e9740bc6SKevin Wolf         .bs             = NULL,
2054260fecf1SKevin Wolf         .name           = g_strdup(child_name),
2055df581792SKevin Wolf         .role           = child_role,
2056d5e6f437SKevin Wolf         .perm           = perm,
2057d5e6f437SKevin Wolf         .shared_perm    = shared_perm,
205836fe1331SKevin Wolf         .opaque         = opaque,
2059df581792SKevin Wolf     };
2060df581792SKevin Wolf 
206133a610c3SKevin Wolf     /* This performs the matching bdrv_set_perm() for the above check. */
2062466787fbSKevin Wolf     bdrv_replace_child(child, child_bs);
2063b4b059f6SKevin Wolf 
2064b4b059f6SKevin Wolf     return child;
2065df581792SKevin Wolf }
2066df581792SKevin Wolf 
206798292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2068f21d96d0SKevin Wolf                              BlockDriverState *child_bs,
2069f21d96d0SKevin Wolf                              const char *child_name,
20708b2ff529SKevin Wolf                              const BdrvChildRole *child_role,
20718b2ff529SKevin Wolf                              Error **errp)
2072f21d96d0SKevin Wolf {
2073d5e6f437SKevin Wolf     BdrvChild *child;
2074f68c598bSKevin Wolf     uint64_t perm, shared_perm;
2075d5e6f437SKevin Wolf 
2076f68c598bSKevin Wolf     bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2077f68c598bSKevin Wolf 
2078f68c598bSKevin Wolf     assert(parent_bs->drv);
2079bb2614e9SFam Zheng     assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
2080e0995dc3SKevin Wolf     bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2081f68c598bSKevin Wolf                     perm, shared_perm, &perm, &shared_perm);
2082f68c598bSKevin Wolf 
2083d5e6f437SKevin Wolf     child = bdrv_root_attach_child(child_bs, child_name, child_role,
2084f68c598bSKevin Wolf                                    perm, shared_perm, parent_bs, errp);
2085d5e6f437SKevin Wolf     if (child == NULL) {
2086d5e6f437SKevin Wolf         return NULL;
2087d5e6f437SKevin Wolf     }
2088d5e6f437SKevin Wolf 
2089f21d96d0SKevin Wolf     QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2090f21d96d0SKevin Wolf     return child;
2091f21d96d0SKevin Wolf }
2092f21d96d0SKevin Wolf 
20933f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child)
209433a60407SKevin Wolf {
2095f21d96d0SKevin Wolf     if (child->next.le_prev) {
209633a60407SKevin Wolf         QLIST_REMOVE(child, next);
2097f21d96d0SKevin Wolf         child->next.le_prev = NULL;
2098f21d96d0SKevin Wolf     }
2099e9740bc6SKevin Wolf 
2100466787fbSKevin Wolf     bdrv_replace_child(child, NULL);
2101e9740bc6SKevin Wolf 
2102260fecf1SKevin Wolf     g_free(child->name);
210333a60407SKevin Wolf     g_free(child);
210433a60407SKevin Wolf }
210533a60407SKevin Wolf 
2106f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child)
210733a60407SKevin Wolf {
2108779020cbSKevin Wolf     BlockDriverState *child_bs;
2109779020cbSKevin Wolf 
2110f21d96d0SKevin Wolf     child_bs = child->bs;
2111f21d96d0SKevin Wolf     bdrv_detach_child(child);
2112f21d96d0SKevin Wolf     bdrv_unref(child_bs);
2113f21d96d0SKevin Wolf }
2114f21d96d0SKevin Wolf 
2115f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2116f21d96d0SKevin Wolf {
2117779020cbSKevin Wolf     if (child == NULL) {
2118779020cbSKevin Wolf         return;
2119779020cbSKevin Wolf     }
212033a60407SKevin Wolf 
212133a60407SKevin Wolf     if (child->bs->inherits_from == parent) {
21224e4bf5c4SKevin Wolf         BdrvChild *c;
21234e4bf5c4SKevin Wolf 
21244e4bf5c4SKevin Wolf         /* Remove inherits_from only when the last reference between parent and
21254e4bf5c4SKevin Wolf          * child->bs goes away. */
21264e4bf5c4SKevin Wolf         QLIST_FOREACH(c, &parent->children, next) {
21274e4bf5c4SKevin Wolf             if (c != child && c->bs == child->bs) {
21284e4bf5c4SKevin Wolf                 break;
21294e4bf5c4SKevin Wolf             }
21304e4bf5c4SKevin Wolf         }
21314e4bf5c4SKevin Wolf         if (c == NULL) {
213233a60407SKevin Wolf             child->bs->inherits_from = NULL;
213333a60407SKevin Wolf         }
21344e4bf5c4SKevin Wolf     }
213533a60407SKevin Wolf 
2136f21d96d0SKevin Wolf     bdrv_root_unref_child(child);
213733a60407SKevin Wolf }
213833a60407SKevin Wolf 
21395c8cab48SKevin Wolf 
21405c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
21415c8cab48SKevin Wolf {
21425c8cab48SKevin Wolf     BdrvChild *c;
21435c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
21445c8cab48SKevin Wolf         if (c->role->change_media) {
21455c8cab48SKevin Wolf             c->role->change_media(c, load);
21465c8cab48SKevin Wolf         }
21475c8cab48SKevin Wolf     }
21485c8cab48SKevin Wolf }
21495c8cab48SKevin Wolf 
21505c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs)
21515c8cab48SKevin Wolf {
21525c8cab48SKevin Wolf     BdrvChild *c;
21535c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
21545c8cab48SKevin Wolf         if (c->role->resize) {
21555c8cab48SKevin Wolf             c->role->resize(c);
21565c8cab48SKevin Wolf         }
21575c8cab48SKevin Wolf     }
21585c8cab48SKevin Wolf }
21595c8cab48SKevin Wolf 
21605db15a57SKevin Wolf /*
21615db15a57SKevin Wolf  * Sets the backing file link of a BDS. A new reference is created; callers
21625db15a57SKevin Wolf  * which don't need their own reference any more must call bdrv_unref().
21635db15a57SKevin Wolf  */
216412fa4af6SKevin Wolf void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
216512fa4af6SKevin Wolf                          Error **errp)
21668d24cce1SFam Zheng {
21675db15a57SKevin Wolf     if (backing_hd) {
21685db15a57SKevin Wolf         bdrv_ref(backing_hd);
21695db15a57SKevin Wolf     }
21708d24cce1SFam Zheng 
2171760e0063SKevin Wolf     if (bs->backing) {
21725db15a57SKevin Wolf         bdrv_unref_child(bs, bs->backing);
2173826b6ca0SFam Zheng     }
2174826b6ca0SFam Zheng 
21758d24cce1SFam Zheng     if (!backing_hd) {
2176760e0063SKevin Wolf         bs->backing = NULL;
21778d24cce1SFam Zheng         goto out;
21788d24cce1SFam Zheng     }
217912fa4af6SKevin Wolf 
21808b2ff529SKevin Wolf     bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
218112fa4af6SKevin Wolf                                     errp);
218212fa4af6SKevin Wolf     if (!bs->backing) {
218312fa4af6SKevin Wolf         bdrv_unref(backing_hd);
218412fa4af6SKevin Wolf     }
2185826b6ca0SFam Zheng 
21869e7e940cSKevin Wolf     bdrv_refresh_filename(bs);
21879e7e940cSKevin Wolf 
21888d24cce1SFam Zheng out:
21893baca891SKevin Wolf     bdrv_refresh_limits(bs, NULL);
21908d24cce1SFam Zheng }
21918d24cce1SFam Zheng 
219231ca6d07SKevin Wolf /*
219331ca6d07SKevin Wolf  * Opens the backing file for a BlockDriverState if not yet open
219431ca6d07SKevin Wolf  *
2195d9b7b057SKevin Wolf  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2196d9b7b057SKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2197d9b7b057SKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
2198d9b7b057SKevin Wolf  * BlockdevRef.
2199d9b7b057SKevin Wolf  *
2200d9b7b057SKevin Wolf  * TODO Can this be unified with bdrv_open_image()?
220131ca6d07SKevin Wolf  */
2202d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2203d9b7b057SKevin Wolf                            const char *bdref_key, Error **errp)
22049156df12SPaolo Bonzini {
22051ba4b6a5SBenoît Canet     char *backing_filename = g_malloc0(PATH_MAX);
2206d9b7b057SKevin Wolf     char *bdref_key_dot;
2207d9b7b057SKevin Wolf     const char *reference = NULL;
2208317fc44eSKevin Wolf     int ret = 0;
22098d24cce1SFam Zheng     BlockDriverState *backing_hd;
2210d9b7b057SKevin Wolf     QDict *options;
2211d9b7b057SKevin Wolf     QDict *tmp_parent_options = NULL;
221234b5d2c6SMax Reitz     Error *local_err = NULL;
22139156df12SPaolo Bonzini 
2214760e0063SKevin Wolf     if (bs->backing != NULL) {
22151ba4b6a5SBenoît Canet         goto free_exit;
22169156df12SPaolo Bonzini     }
22179156df12SPaolo Bonzini 
221831ca6d07SKevin Wolf     /* NULL means an empty set of options */
2219d9b7b057SKevin Wolf     if (parent_options == NULL) {
2220d9b7b057SKevin Wolf         tmp_parent_options = qdict_new();
2221d9b7b057SKevin Wolf         parent_options = tmp_parent_options;
222231ca6d07SKevin Wolf     }
222331ca6d07SKevin Wolf 
22249156df12SPaolo Bonzini     bs->open_flags &= ~BDRV_O_NO_BACKING;
2225d9b7b057SKevin Wolf 
2226d9b7b057SKevin Wolf     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2227d9b7b057SKevin Wolf     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2228d9b7b057SKevin Wolf     g_free(bdref_key_dot);
2229d9b7b057SKevin Wolf 
2230129c7d1cSMarkus Armbruster     /*
2231129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
2232129c7d1cSMarkus Armbruster      * types would require more care.  When @parent_options come from
2233129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
2234129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
2235129c7d1cSMarkus Armbruster      * QString.
2236129c7d1cSMarkus Armbruster      */
2237d9b7b057SKevin Wolf     reference = qdict_get_try_str(parent_options, bdref_key);
2238d9b7b057SKevin Wolf     if (reference || qdict_haskey(options, "file.filename")) {
22391cb6f506SKevin Wolf         backing_filename[0] = '\0';
22401cb6f506SKevin Wolf     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
224131ca6d07SKevin Wolf         QDECREF(options);
22421ba4b6a5SBenoît Canet         goto free_exit;
2243dbecebddSFam Zheng     } else {
22449f07429eSMax Reitz         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
22459f07429eSMax Reitz                                        &local_err);
22469f07429eSMax Reitz         if (local_err) {
22479f07429eSMax Reitz             ret = -EINVAL;
22489f07429eSMax Reitz             error_propagate(errp, local_err);
22499f07429eSMax Reitz             QDECREF(options);
22509f07429eSMax Reitz             goto free_exit;
22519f07429eSMax Reitz         }
22529156df12SPaolo Bonzini     }
22539156df12SPaolo Bonzini 
22548ee79e70SKevin Wolf     if (!bs->drv || !bs->drv->supports_backing) {
22558ee79e70SKevin Wolf         ret = -EINVAL;
22568ee79e70SKevin Wolf         error_setg(errp, "Driver doesn't support backing files");
22578ee79e70SKevin Wolf         QDECREF(options);
22588ee79e70SKevin Wolf         goto free_exit;
22598ee79e70SKevin Wolf     }
22608ee79e70SKevin Wolf 
22616bff597bSPeter Krempa     if (!reference &&
22626bff597bSPeter Krempa         bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
226346f5ac20SEric Blake         qdict_put_str(options, "driver", bs->backing_format);
22649156df12SPaolo Bonzini     }
22659156df12SPaolo Bonzini 
22665b363937SMax Reitz     backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2267d9b7b057SKevin Wolf                                    reference, options, 0, bs, &child_backing,
2268e43bfd9cSMarkus Armbruster                                    errp);
22695b363937SMax Reitz     if (!backing_hd) {
22709156df12SPaolo Bonzini         bs->open_flags |= BDRV_O_NO_BACKING;
2271e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not open backing file: ");
22725b363937SMax Reitz         ret = -EINVAL;
22731ba4b6a5SBenoît Canet         goto free_exit;
22749156df12SPaolo Bonzini     }
22755ce6bfe2Ssochin.jiang     bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
2276df581792SKevin Wolf 
22775db15a57SKevin Wolf     /* Hook up the backing file link; drop our reference, bs owns the
22785db15a57SKevin Wolf      * backing_hd reference now */
227912fa4af6SKevin Wolf     bdrv_set_backing_hd(bs, backing_hd, &local_err);
22805db15a57SKevin Wolf     bdrv_unref(backing_hd);
228112fa4af6SKevin Wolf     if (local_err) {
22828cd1a3e4SFam Zheng         error_propagate(errp, local_err);
228312fa4af6SKevin Wolf         ret = -EINVAL;
228412fa4af6SKevin Wolf         goto free_exit;
228512fa4af6SKevin Wolf     }
2286d80ac658SPeter Feiner 
2287d9b7b057SKevin Wolf     qdict_del(parent_options, bdref_key);
2288d9b7b057SKevin Wolf 
22891ba4b6a5SBenoît Canet free_exit:
22901ba4b6a5SBenoît Canet     g_free(backing_filename);
2291d9b7b057SKevin Wolf     QDECREF(tmp_parent_options);
22921ba4b6a5SBenoît Canet     return ret;
22939156df12SPaolo Bonzini }
22949156df12SPaolo Bonzini 
22952d6b86afSKevin Wolf static BlockDriverState *
22962d6b86afSKevin Wolf bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
22972d6b86afSKevin Wolf                    BlockDriverState *parent, const BdrvChildRole *child_role,
2298f7d9fd8cSMax Reitz                    bool allow_none, Error **errp)
2299da557aacSMax Reitz {
23002d6b86afSKevin Wolf     BlockDriverState *bs = NULL;
2301da557aacSMax Reitz     QDict *image_options;
2302da557aacSMax Reitz     char *bdref_key_dot;
2303da557aacSMax Reitz     const char *reference;
2304da557aacSMax Reitz 
2305df581792SKevin Wolf     assert(child_role != NULL);
2306f67503e5SMax Reitz 
2307da557aacSMax Reitz     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2308da557aacSMax Reitz     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2309da557aacSMax Reitz     g_free(bdref_key_dot);
2310da557aacSMax Reitz 
2311129c7d1cSMarkus Armbruster     /*
2312129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
2313129c7d1cSMarkus Armbruster      * types would require more care.  When @options come from
2314129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
2315129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
2316129c7d1cSMarkus Armbruster      * QString.
2317129c7d1cSMarkus Armbruster      */
2318da557aacSMax Reitz     reference = qdict_get_try_str(options, bdref_key);
2319da557aacSMax Reitz     if (!filename && !reference && !qdict_size(image_options)) {
2320b4b059f6SKevin Wolf         if (!allow_none) {
2321da557aacSMax Reitz             error_setg(errp, "A block device must be specified for \"%s\"",
2322da557aacSMax Reitz                        bdref_key);
2323da557aacSMax Reitz         }
2324b20e61e0SMarkus Armbruster         QDECREF(image_options);
2325da557aacSMax Reitz         goto done;
2326da557aacSMax Reitz     }
2327da557aacSMax Reitz 
23285b363937SMax Reitz     bs = bdrv_open_inherit(filename, reference, image_options, 0,
2329ce343771SMax Reitz                            parent, child_role, errp);
23305b363937SMax Reitz     if (!bs) {
2331df581792SKevin Wolf         goto done;
2332df581792SKevin Wolf     }
2333df581792SKevin Wolf 
2334da557aacSMax Reitz done:
2335da557aacSMax Reitz     qdict_del(options, bdref_key);
23362d6b86afSKevin Wolf     return bs;
23372d6b86afSKevin Wolf }
23382d6b86afSKevin Wolf 
23392d6b86afSKevin Wolf /*
23402d6b86afSKevin Wolf  * Opens a disk image whose options are given as BlockdevRef in another block
23412d6b86afSKevin Wolf  * device's options.
23422d6b86afSKevin Wolf  *
23432d6b86afSKevin Wolf  * If allow_none is true, no image will be opened if filename is false and no
23442d6b86afSKevin Wolf  * BlockdevRef is given. NULL will be returned, but errp remains unset.
23452d6b86afSKevin Wolf  *
23462d6b86afSKevin Wolf  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
23472d6b86afSKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
23482d6b86afSKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
23492d6b86afSKevin Wolf  * BlockdevRef.
23502d6b86afSKevin Wolf  *
23512d6b86afSKevin Wolf  * The BlockdevRef will be removed from the options QDict.
23522d6b86afSKevin Wolf  */
23532d6b86afSKevin Wolf BdrvChild *bdrv_open_child(const char *filename,
23542d6b86afSKevin Wolf                            QDict *options, const char *bdref_key,
23552d6b86afSKevin Wolf                            BlockDriverState *parent,
23562d6b86afSKevin Wolf                            const BdrvChildRole *child_role,
23572d6b86afSKevin Wolf                            bool allow_none, Error **errp)
23582d6b86afSKevin Wolf {
23598b2ff529SKevin Wolf     BdrvChild *c;
23602d6b86afSKevin Wolf     BlockDriverState *bs;
23612d6b86afSKevin Wolf 
23622d6b86afSKevin Wolf     bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
23632d6b86afSKevin Wolf                             allow_none, errp);
23642d6b86afSKevin Wolf     if (bs == NULL) {
23652d6b86afSKevin Wolf         return NULL;
23662d6b86afSKevin Wolf     }
23672d6b86afSKevin Wolf 
23688b2ff529SKevin Wolf     c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
23698b2ff529SKevin Wolf     if (!c) {
23708b2ff529SKevin Wolf         bdrv_unref(bs);
23718b2ff529SKevin Wolf         return NULL;
23728b2ff529SKevin Wolf     }
23738b2ff529SKevin Wolf 
23748b2ff529SKevin Wolf     return c;
2375b4b059f6SKevin Wolf }
2376b4b059f6SKevin Wolf 
237766836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
237866836189SMax Reitz                                                    int flags,
237966836189SMax Reitz                                                    QDict *snapshot_options,
238066836189SMax Reitz                                                    Error **errp)
2381b998875dSKevin Wolf {
2382b998875dSKevin Wolf     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
23831ba4b6a5SBenoît Canet     char *tmp_filename = g_malloc0(PATH_MAX + 1);
2384b998875dSKevin Wolf     int64_t total_size;
238583d0521aSChunyan Liu     QemuOpts *opts = NULL;
2386ff6ed714SEric Blake     BlockDriverState *bs_snapshot = NULL;
2387b2c2832cSKevin Wolf     Error *local_err = NULL;
2388b998875dSKevin Wolf     int ret;
2389b998875dSKevin Wolf 
2390b998875dSKevin Wolf     /* if snapshot, we create a temporary backing file and open it
2391b998875dSKevin Wolf        instead of opening 'filename' directly */
2392b998875dSKevin Wolf 
2393b998875dSKevin Wolf     /* Get the required size from the image */
2394f187743aSKevin Wolf     total_size = bdrv_getlength(bs);
2395f187743aSKevin Wolf     if (total_size < 0) {
2396f187743aSKevin Wolf         error_setg_errno(errp, -total_size, "Could not get image size");
23971ba4b6a5SBenoît Canet         goto out;
2398f187743aSKevin Wolf     }
2399b998875dSKevin Wolf 
2400b998875dSKevin Wolf     /* Create the temporary image */
24011ba4b6a5SBenoît Canet     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
2402b998875dSKevin Wolf     if (ret < 0) {
2403b998875dSKevin Wolf         error_setg_errno(errp, -ret, "Could not get temporary filename");
24041ba4b6a5SBenoît Canet         goto out;
2405b998875dSKevin Wolf     }
2406b998875dSKevin Wolf 
2407ef810437SMax Reitz     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
2408c282e1fdSChunyan Liu                             &error_abort);
240939101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
2410e43bfd9cSMarkus Armbruster     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
241183d0521aSChunyan Liu     qemu_opts_del(opts);
2412b998875dSKevin Wolf     if (ret < 0) {
2413e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not create temporary overlay '%s': ",
2414e43bfd9cSMarkus Armbruster                       tmp_filename);
24151ba4b6a5SBenoît Canet         goto out;
2416b998875dSKevin Wolf     }
2417b998875dSKevin Wolf 
241873176beeSKevin Wolf     /* Prepare options QDict for the temporary file */
241946f5ac20SEric Blake     qdict_put_str(snapshot_options, "file.driver", "file");
242046f5ac20SEric Blake     qdict_put_str(snapshot_options, "file.filename", tmp_filename);
242146f5ac20SEric Blake     qdict_put_str(snapshot_options, "driver", "qcow2");
2422b998875dSKevin Wolf 
24235b363937SMax Reitz     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
242473176beeSKevin Wolf     snapshot_options = NULL;
24255b363937SMax Reitz     if (!bs_snapshot) {
24261ba4b6a5SBenoît Canet         goto out;
2427b998875dSKevin Wolf     }
2428b998875dSKevin Wolf 
2429ff6ed714SEric Blake     /* bdrv_append() consumes a strong reference to bs_snapshot
2430ff6ed714SEric Blake      * (i.e. it will call bdrv_unref() on it) even on error, so in
2431ff6ed714SEric Blake      * order to be able to return one, we have to increase
2432ff6ed714SEric Blake      * bs_snapshot's refcount here */
243366836189SMax Reitz     bdrv_ref(bs_snapshot);
2434b2c2832cSKevin Wolf     bdrv_append(bs_snapshot, bs, &local_err);
2435b2c2832cSKevin Wolf     if (local_err) {
2436b2c2832cSKevin Wolf         error_propagate(errp, local_err);
2437ff6ed714SEric Blake         bs_snapshot = NULL;
2438b2c2832cSKevin Wolf         goto out;
2439b2c2832cSKevin Wolf     }
24401ba4b6a5SBenoît Canet 
24411ba4b6a5SBenoît Canet out:
244273176beeSKevin Wolf     QDECREF(snapshot_options);
24431ba4b6a5SBenoît Canet     g_free(tmp_filename);
2444ff6ed714SEric Blake     return bs_snapshot;
2445b998875dSKevin Wolf }
2446b998875dSKevin Wolf 
2447da557aacSMax Reitz /*
2448b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
2449de9c0cecSKevin Wolf  *
2450de9c0cecSKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
2451de9c0cecSKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
2452de9c0cecSKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
2453de9c0cecSKevin Wolf  * dictionary, it needs to use QINCREF() before calling bdrv_open.
2454f67503e5SMax Reitz  *
2455f67503e5SMax Reitz  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2456f67503e5SMax Reitz  * If it is not NULL, the referenced BDS will be reused.
2457ddf5636dSMax Reitz  *
2458ddf5636dSMax Reitz  * The reference parameter may be used to specify an existing block device which
2459ddf5636dSMax Reitz  * should be opened. If specified, neither options nor a filename may be given,
2460ddf5636dSMax Reitz  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
2461b6ce07aaSKevin Wolf  */
24625b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
24635b363937SMax Reitz                                            const char *reference,
24645b363937SMax Reitz                                            QDict *options, int flags,
2465f3930ed0SKevin Wolf                                            BlockDriverState *parent,
24665b363937SMax Reitz                                            const BdrvChildRole *child_role,
24675b363937SMax Reitz                                            Error **errp)
2468ea2384d3Sbellard {
2469b6ce07aaSKevin Wolf     int ret;
24705696c6e3SKevin Wolf     BlockBackend *file = NULL;
24719a4f4c31SKevin Wolf     BlockDriverState *bs;
2472ce343771SMax Reitz     BlockDriver *drv = NULL;
247374fe54f2SKevin Wolf     const char *drvname;
24743e8c2e57SAlberto Garcia     const char *backing;
247534b5d2c6SMax Reitz     Error *local_err = NULL;
247673176beeSKevin Wolf     QDict *snapshot_options = NULL;
2477b1e6fc08SKevin Wolf     int snapshot_flags = 0;
247833e3963eSbellard 
2479f3930ed0SKevin Wolf     assert(!child_role || !flags);
2480f3930ed0SKevin Wolf     assert(!child_role == !parent);
2481f67503e5SMax Reitz 
2482ddf5636dSMax Reitz     if (reference) {
2483ddf5636dSMax Reitz         bool options_non_empty = options ? qdict_size(options) : false;
2484ddf5636dSMax Reitz         QDECREF(options);
2485ddf5636dSMax Reitz 
2486ddf5636dSMax Reitz         if (filename || options_non_empty) {
2487ddf5636dSMax Reitz             error_setg(errp, "Cannot reference an existing block device with "
2488ddf5636dSMax Reitz                        "additional options or a new filename");
24895b363937SMax Reitz             return NULL;
2490ddf5636dSMax Reitz         }
2491ddf5636dSMax Reitz 
2492ddf5636dSMax Reitz         bs = bdrv_lookup_bs(reference, reference, errp);
2493ddf5636dSMax Reitz         if (!bs) {
24945b363937SMax Reitz             return NULL;
2495ddf5636dSMax Reitz         }
249676b22320SKevin Wolf 
2497ddf5636dSMax Reitz         bdrv_ref(bs);
24985b363937SMax Reitz         return bs;
2499ddf5636dSMax Reitz     }
2500ddf5636dSMax Reitz 
2501e4e9986bSMarkus Armbruster     bs = bdrv_new();
2502f67503e5SMax Reitz 
2503de9c0cecSKevin Wolf     /* NULL means an empty set of options */
2504de9c0cecSKevin Wolf     if (options == NULL) {
2505de9c0cecSKevin Wolf         options = qdict_new();
2506de9c0cecSKevin Wolf     }
2507de9c0cecSKevin Wolf 
2508145f598eSKevin Wolf     /* json: syntax counts as explicit options, as if in the QDict */
2509de3b53f0SKevin Wolf     parse_json_protocol(options, &filename, &local_err);
2510de3b53f0SKevin Wolf     if (local_err) {
2511de3b53f0SKevin Wolf         goto fail;
2512de3b53f0SKevin Wolf     }
2513de3b53f0SKevin Wolf 
2514145f598eSKevin Wolf     bs->explicit_options = qdict_clone_shallow(options);
2515145f598eSKevin Wolf 
2516f3930ed0SKevin Wolf     if (child_role) {
2517bddcec37SKevin Wolf         bs->inherits_from = parent;
25188e2160e2SKevin Wolf         child_role->inherit_options(&flags, options,
25198e2160e2SKevin Wolf                                     parent->open_flags, parent->options);
2520f3930ed0SKevin Wolf     }
2521f3930ed0SKevin Wolf 
2522de3b53f0SKevin Wolf     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
2523462f5bcfSKevin Wolf     if (local_err) {
2524462f5bcfSKevin Wolf         goto fail;
2525462f5bcfSKevin Wolf     }
2526462f5bcfSKevin Wolf 
2527129c7d1cSMarkus Armbruster     /*
2528129c7d1cSMarkus Armbruster      * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2529129c7d1cSMarkus Armbruster      * Caution: getting a boolean member of @options requires care.
2530129c7d1cSMarkus Armbruster      * When @options come from -blockdev or blockdev_add, members are
2531129c7d1cSMarkus Armbruster      * typed according to the QAPI schema, but when they come from
2532129c7d1cSMarkus Armbruster      * -drive, they're all QString.
2533129c7d1cSMarkus Armbruster      */
2534f87a0e29SAlberto Garcia     if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2535f87a0e29SAlberto Garcia         !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2536f87a0e29SAlberto Garcia         flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2537f87a0e29SAlberto Garcia     } else {
2538f87a0e29SAlberto Garcia         flags &= ~BDRV_O_RDWR;
253914499ea5SAlberto Garcia     }
254014499ea5SAlberto Garcia 
254114499ea5SAlberto Garcia     if (flags & BDRV_O_SNAPSHOT) {
254214499ea5SAlberto Garcia         snapshot_options = qdict_new();
254314499ea5SAlberto Garcia         bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
254414499ea5SAlberto Garcia                                    flags, options);
2545f87a0e29SAlberto Garcia         /* Let bdrv_backing_options() override "read-only" */
2546f87a0e29SAlberto Garcia         qdict_del(options, BDRV_OPT_READ_ONLY);
254714499ea5SAlberto Garcia         bdrv_backing_options(&flags, options, flags, options);
254814499ea5SAlberto Garcia     }
254914499ea5SAlberto Garcia 
255062392ebbSKevin Wolf     bs->open_flags = flags;
255162392ebbSKevin Wolf     bs->options = options;
255262392ebbSKevin Wolf     options = qdict_clone_shallow(options);
255362392ebbSKevin Wolf 
255476c591b0SKevin Wolf     /* Find the right image format driver */
2555129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
255676c591b0SKevin Wolf     drvname = qdict_get_try_str(options, "driver");
255776c591b0SKevin Wolf     if (drvname) {
255876c591b0SKevin Wolf         drv = bdrv_find_format(drvname);
255976c591b0SKevin Wolf         if (!drv) {
256076c591b0SKevin Wolf             error_setg(errp, "Unknown driver: '%s'", drvname);
256176c591b0SKevin Wolf             goto fail;
256276c591b0SKevin Wolf         }
256376c591b0SKevin Wolf     }
256476c591b0SKevin Wolf 
256576c591b0SKevin Wolf     assert(drvname || !(flags & BDRV_O_PROTOCOL));
256676c591b0SKevin Wolf 
2567129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
25683e8c2e57SAlberto Garcia     backing = qdict_get_try_str(options, "backing");
25693e8c2e57SAlberto Garcia     if (backing && *backing == '\0') {
25703e8c2e57SAlberto Garcia         flags |= BDRV_O_NO_BACKING;
25713e8c2e57SAlberto Garcia         qdict_del(options, "backing");
25723e8c2e57SAlberto Garcia     }
25733e8c2e57SAlberto Garcia 
25745696c6e3SKevin Wolf     /* Open image file without format layer. This BlockBackend is only used for
25754e4bf5c4SKevin Wolf      * probing, the block drivers will do their own bdrv_open_child() for the
25764e4bf5c4SKevin Wolf      * same BDS, which is why we put the node name back into options. */
2577f4788adcSKevin Wolf     if ((flags & BDRV_O_PROTOCOL) == 0) {
25785696c6e3SKevin Wolf         BlockDriverState *file_bs;
25795696c6e3SKevin Wolf 
25805696c6e3SKevin Wolf         file_bs = bdrv_open_child_bs(filename, options, "file", bs,
25811fdd6933SKevin Wolf                                      &child_file, true, &local_err);
25821fdd6933SKevin Wolf         if (local_err) {
25838bfea15dSKevin Wolf             goto fail;
2584f500a6d3SKevin Wolf         }
25855696c6e3SKevin Wolf         if (file_bs != NULL) {
2586dacaa162SKevin Wolf             /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
2587dacaa162SKevin Wolf              * looking at the header to guess the image format. This works even
2588dacaa162SKevin Wolf              * in cases where a guest would not see a consistent state. */
2589dacaa162SKevin Wolf             file = blk_new(0, BLK_PERM_ALL);
2590d7086422SKevin Wolf             blk_insert_bs(file, file_bs, &local_err);
25915696c6e3SKevin Wolf             bdrv_unref(file_bs);
2592d7086422SKevin Wolf             if (local_err) {
2593d7086422SKevin Wolf                 goto fail;
2594d7086422SKevin Wolf             }
25955696c6e3SKevin Wolf 
259646f5ac20SEric Blake             qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
25974e4bf5c4SKevin Wolf         }
2598f4788adcSKevin Wolf     }
2599f500a6d3SKevin Wolf 
260076c591b0SKevin Wolf     /* Image format probing */
260138f3ef57SKevin Wolf     bs->probed = !drv;
260276c591b0SKevin Wolf     if (!drv && file) {
2603cf2ab8fcSKevin Wolf         ret = find_image_format(file, filename, &drv, &local_err);
260417b005f1SKevin Wolf         if (ret < 0) {
260517b005f1SKevin Wolf             goto fail;
260617b005f1SKevin Wolf         }
260762392ebbSKevin Wolf         /*
260862392ebbSKevin Wolf          * This option update would logically belong in bdrv_fill_options(),
260962392ebbSKevin Wolf          * but we first need to open bs->file for the probing to work, while
261062392ebbSKevin Wolf          * opening bs->file already requires the (mostly) final set of options
261162392ebbSKevin Wolf          * so that cache mode etc. can be inherited.
261262392ebbSKevin Wolf          *
261362392ebbSKevin Wolf          * Adding the driver later is somewhat ugly, but it's not an option
261462392ebbSKevin Wolf          * that would ever be inherited, so it's correct. We just need to make
261562392ebbSKevin Wolf          * sure to update both bs->options (which has the full effective
261662392ebbSKevin Wolf          * options for bs) and options (which has file.* already removed).
261762392ebbSKevin Wolf          */
261846f5ac20SEric Blake         qdict_put_str(bs->options, "driver", drv->format_name);
261946f5ac20SEric Blake         qdict_put_str(options, "driver", drv->format_name);
262076c591b0SKevin Wolf     } else if (!drv) {
26212a05cbe4SMax Reitz         error_setg(errp, "Must specify either driver or file");
26228bfea15dSKevin Wolf         goto fail;
26232a05cbe4SMax Reitz     }
2624f500a6d3SKevin Wolf 
262553a29513SMax Reitz     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
262653a29513SMax Reitz     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
262753a29513SMax Reitz     /* file must be NULL if a protocol BDS is about to be created
262853a29513SMax Reitz      * (the inverse results in an error message from bdrv_open_common()) */
262953a29513SMax Reitz     assert(!(flags & BDRV_O_PROTOCOL) || !file);
263053a29513SMax Reitz 
2631b6ce07aaSKevin Wolf     /* Open the image */
263282dc8b41SKevin Wolf     ret = bdrv_open_common(bs, file, options, &local_err);
2633b6ce07aaSKevin Wolf     if (ret < 0) {
26348bfea15dSKevin Wolf         goto fail;
26356987307cSChristoph Hellwig     }
26366987307cSChristoph Hellwig 
26374e4bf5c4SKevin Wolf     if (file) {
26385696c6e3SKevin Wolf         blk_unref(file);
2639f500a6d3SKevin Wolf         file = NULL;
2640f500a6d3SKevin Wolf     }
2641f500a6d3SKevin Wolf 
2642b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
26439156df12SPaolo Bonzini     if ((flags & BDRV_O_NO_BACKING) == 0) {
2644d9b7b057SKevin Wolf         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
2645b6ce07aaSKevin Wolf         if (ret < 0) {
2646b6ad491aSKevin Wolf             goto close_and_fail;
2647b6ce07aaSKevin Wolf         }
2648b6ce07aaSKevin Wolf     }
2649b6ce07aaSKevin Wolf 
265091af7014SMax Reitz     bdrv_refresh_filename(bs);
265191af7014SMax Reitz 
2652b6ad491aSKevin Wolf     /* Check if any unknown options were used */
26537ad2757fSPaolo Bonzini     if (qdict_size(options) != 0) {
2654b6ad491aSKevin Wolf         const QDictEntry *entry = qdict_first(options);
26555acd9d81SMax Reitz         if (flags & BDRV_O_PROTOCOL) {
26565acd9d81SMax Reitz             error_setg(errp, "Block protocol '%s' doesn't support the option "
26575acd9d81SMax Reitz                        "'%s'", drv->format_name, entry->key);
26585acd9d81SMax Reitz         } else {
2659d0e46a55SMax Reitz             error_setg(errp,
2660d0e46a55SMax Reitz                        "Block format '%s' does not support the option '%s'",
2661d0e46a55SMax Reitz                        drv->format_name, entry->key);
26625acd9d81SMax Reitz         }
2663b6ad491aSKevin Wolf 
2664b6ad491aSKevin Wolf         goto close_and_fail;
2665b6ad491aSKevin Wolf     }
2666b6ad491aSKevin Wolf 
26675c8cab48SKevin Wolf     bdrv_parent_cb_change_media(bs, true);
2668b6ce07aaSKevin Wolf 
2669c3adb58fSMarkus Armbruster     QDECREF(options);
2670dd62f1caSKevin Wolf 
2671dd62f1caSKevin Wolf     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2672dd62f1caSKevin Wolf      * temporary snapshot afterwards. */
2673dd62f1caSKevin Wolf     if (snapshot_flags) {
267466836189SMax Reitz         BlockDriverState *snapshot_bs;
267566836189SMax Reitz         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
267666836189SMax Reitz                                                 snapshot_options, &local_err);
267773176beeSKevin Wolf         snapshot_options = NULL;
2678dd62f1caSKevin Wolf         if (local_err) {
2679dd62f1caSKevin Wolf             goto close_and_fail;
2680dd62f1caSKevin Wolf         }
268166836189SMax Reitz         /* We are not going to return bs but the overlay on top of it
268266836189SMax Reitz          * (snapshot_bs); thus, we have to drop the strong reference to bs
26835b363937SMax Reitz          * (which we obtained by calling bdrv_new()). bs will not be deleted,
26845b363937SMax Reitz          * though, because the overlay still has a reference to it. */
268566836189SMax Reitz         bdrv_unref(bs);
268666836189SMax Reitz         bs = snapshot_bs;
268766836189SMax Reitz     }
268866836189SMax Reitz 
26895b363937SMax Reitz     return bs;
2690b6ce07aaSKevin Wolf 
26918bfea15dSKevin Wolf fail:
26925696c6e3SKevin Wolf     blk_unref(file);
269373176beeSKevin Wolf     QDECREF(snapshot_options);
2694145f598eSKevin Wolf     QDECREF(bs->explicit_options);
2695de9c0cecSKevin Wolf     QDECREF(bs->options);
2696b6ad491aSKevin Wolf     QDECREF(options);
2697de9c0cecSKevin Wolf     bs->options = NULL;
2698998cbd6aSManos Pitsidianakis     bs->explicit_options = NULL;
2699f67503e5SMax Reitz     bdrv_unref(bs);
270034b5d2c6SMax Reitz     error_propagate(errp, local_err);
27015b363937SMax Reitz     return NULL;
2702de9c0cecSKevin Wolf 
2703b6ad491aSKevin Wolf close_and_fail:
2704f67503e5SMax Reitz     bdrv_unref(bs);
270573176beeSKevin Wolf     QDECREF(snapshot_options);
2706b6ad491aSKevin Wolf     QDECREF(options);
270734b5d2c6SMax Reitz     error_propagate(errp, local_err);
27085b363937SMax Reitz     return NULL;
2709b6ce07aaSKevin Wolf }
2710b6ce07aaSKevin Wolf 
27115b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference,
27125b363937SMax Reitz                             QDict *options, int flags, Error **errp)
2713f3930ed0SKevin Wolf {
27145b363937SMax Reitz     return bdrv_open_inherit(filename, reference, options, flags, NULL,
2715ce343771SMax Reitz                              NULL, errp);
2716f3930ed0SKevin Wolf }
2717f3930ed0SKevin Wolf 
2718e971aa12SJeff Cody /*
2719e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
2720e971aa12SJeff Cody  * reopen of multiple devices.
2721e971aa12SJeff Cody  *
2722e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2723e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
2724e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
2725e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
2726e971aa12SJeff Cody  * atomic 'set'.
2727e971aa12SJeff Cody  *
2728e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
2729e971aa12SJeff Cody  *
27304d2cb092SKevin Wolf  * options contains the changed options for the associated bs
27314d2cb092SKevin Wolf  * (the BlockReopenQueue takes ownership)
27324d2cb092SKevin Wolf  *
2733e971aa12SJeff Cody  * flags contains the open flags for the associated bs
2734e971aa12SJeff Cody  *
2735e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
2736e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
2737e971aa12SJeff Cody  *
2738e971aa12SJeff Cody  */
273928518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
27404d2cb092SKevin Wolf                                                  BlockDriverState *bs,
274128518102SKevin Wolf                                                  QDict *options,
274228518102SKevin Wolf                                                  int flags,
274328518102SKevin Wolf                                                  const BdrvChildRole *role,
274428518102SKevin Wolf                                                  QDict *parent_options,
274528518102SKevin Wolf                                                  int parent_flags)
2746e971aa12SJeff Cody {
2747e971aa12SJeff Cody     assert(bs != NULL);
2748e971aa12SJeff Cody 
2749e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
275067251a31SKevin Wolf     BdrvChild *child;
2751145f598eSKevin Wolf     QDict *old_options, *explicit_options;
275267251a31SKevin Wolf 
2753e971aa12SJeff Cody     if (bs_queue == NULL) {
2754e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
2755e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
2756e971aa12SJeff Cody     }
2757e971aa12SJeff Cody 
27584d2cb092SKevin Wolf     if (!options) {
27594d2cb092SKevin Wolf         options = qdict_new();
27604d2cb092SKevin Wolf     }
27614d2cb092SKevin Wolf 
27625b7ba05fSAlberto Garcia     /* Check if this BlockDriverState is already in the queue */
27635b7ba05fSAlberto Garcia     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
27645b7ba05fSAlberto Garcia         if (bs == bs_entry->state.bs) {
27655b7ba05fSAlberto Garcia             break;
27665b7ba05fSAlberto Garcia         }
27675b7ba05fSAlberto Garcia     }
27685b7ba05fSAlberto Garcia 
276928518102SKevin Wolf     /*
277028518102SKevin Wolf      * Precedence of options:
277128518102SKevin Wolf      * 1. Explicitly passed in options (highest)
277291a097e7SKevin Wolf      * 2. Set in flags (only for top level)
2773145f598eSKevin Wolf      * 3. Retained from explicitly set options of bs
27748e2160e2SKevin Wolf      * 4. Inherited from parent node
277528518102SKevin Wolf      * 5. Retained from effective options of bs
277628518102SKevin Wolf      */
277728518102SKevin Wolf 
277891a097e7SKevin Wolf     if (!parent_options) {
277991a097e7SKevin Wolf         /*
278091a097e7SKevin Wolf          * Any setting represented by flags is always updated. If the
278191a097e7SKevin Wolf          * corresponding QDict option is set, it takes precedence. Otherwise
278291a097e7SKevin Wolf          * the flag is translated into a QDict option. The old setting of bs is
278391a097e7SKevin Wolf          * not considered.
278491a097e7SKevin Wolf          */
278591a097e7SKevin Wolf         update_options_from_flags(options, flags);
278691a097e7SKevin Wolf     }
278791a097e7SKevin Wolf 
2788145f598eSKevin Wolf     /* Old explicitly set values (don't overwrite by inherited value) */
27895b7ba05fSAlberto Garcia     if (bs_entry) {
27905b7ba05fSAlberto Garcia         old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
27915b7ba05fSAlberto Garcia     } else {
2792145f598eSKevin Wolf         old_options = qdict_clone_shallow(bs->explicit_options);
27935b7ba05fSAlberto Garcia     }
2794145f598eSKevin Wolf     bdrv_join_options(bs, options, old_options);
2795145f598eSKevin Wolf     QDECREF(old_options);
2796145f598eSKevin Wolf 
2797145f598eSKevin Wolf     explicit_options = qdict_clone_shallow(options);
2798145f598eSKevin Wolf 
279928518102SKevin Wolf     /* Inherit from parent node */
280028518102SKevin Wolf     if (parent_options) {
280128518102SKevin Wolf         assert(!flags);
28028e2160e2SKevin Wolf         role->inherit_options(&flags, options, parent_flags, parent_options);
280328518102SKevin Wolf     }
280428518102SKevin Wolf 
280528518102SKevin Wolf     /* Old values are used for options that aren't set yet */
28064d2cb092SKevin Wolf     old_options = qdict_clone_shallow(bs->options);
2807cddff5baSKevin Wolf     bdrv_join_options(bs, options, old_options);
28084d2cb092SKevin Wolf     QDECREF(old_options);
28094d2cb092SKevin Wolf 
2810fd452021SKevin Wolf     /* bdrv_open_inherit() sets and clears some additional flags internally */
2811f1f25a2eSKevin Wolf     flags &= ~BDRV_O_PROTOCOL;
2812fd452021SKevin Wolf     if (flags & BDRV_O_RDWR) {
2813fd452021SKevin Wolf         flags |= BDRV_O_ALLOW_RDWR;
2814fd452021SKevin Wolf     }
2815f1f25a2eSKevin Wolf 
28161857c97bSKevin Wolf     if (!bs_entry) {
28171857c97bSKevin Wolf         bs_entry = g_new0(BlockReopenQueueEntry, 1);
28181857c97bSKevin Wolf         QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
28191857c97bSKevin Wolf     } else {
28201857c97bSKevin Wolf         QDECREF(bs_entry->state.options);
28211857c97bSKevin Wolf         QDECREF(bs_entry->state.explicit_options);
28221857c97bSKevin Wolf     }
28231857c97bSKevin Wolf 
28241857c97bSKevin Wolf     bs_entry->state.bs = bs;
28251857c97bSKevin Wolf     bs_entry->state.options = options;
28261857c97bSKevin Wolf     bs_entry->state.explicit_options = explicit_options;
28271857c97bSKevin Wolf     bs_entry->state.flags = flags;
28281857c97bSKevin Wolf 
282930450259SKevin Wolf     /* This needs to be overwritten in bdrv_reopen_prepare() */
283030450259SKevin Wolf     bs_entry->state.perm = UINT64_MAX;
283130450259SKevin Wolf     bs_entry->state.shared_perm = 0;
283230450259SKevin Wolf 
283367251a31SKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
28344c9dfe5dSKevin Wolf         QDict *new_child_options;
28354c9dfe5dSKevin Wolf         char *child_key_dot;
283667251a31SKevin Wolf 
28374c9dfe5dSKevin Wolf         /* reopen can only change the options of block devices that were
28384c9dfe5dSKevin Wolf          * implicitly created and inherited options. For other (referenced)
28394c9dfe5dSKevin Wolf          * block devices, a syntax like "backing.foo" results in an error. */
284067251a31SKevin Wolf         if (child->bs->inherits_from != bs) {
284167251a31SKevin Wolf             continue;
284267251a31SKevin Wolf         }
284367251a31SKevin Wolf 
28444c9dfe5dSKevin Wolf         child_key_dot = g_strdup_printf("%s.", child->name);
28454c9dfe5dSKevin Wolf         qdict_extract_subqdict(options, &new_child_options, child_key_dot);
28464c9dfe5dSKevin Wolf         g_free(child_key_dot);
28474c9dfe5dSKevin Wolf 
284828518102SKevin Wolf         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
284928518102SKevin Wolf                                 child->role, options, flags);
2850e971aa12SJeff Cody     }
2851e971aa12SJeff Cody 
2852e971aa12SJeff Cody     return bs_queue;
2853e971aa12SJeff Cody }
2854e971aa12SJeff Cody 
285528518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
285628518102SKevin Wolf                                     BlockDriverState *bs,
285728518102SKevin Wolf                                     QDict *options, int flags)
285828518102SKevin Wolf {
285928518102SKevin Wolf     return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
286028518102SKevin Wolf                                    NULL, NULL, 0);
286128518102SKevin Wolf }
286228518102SKevin Wolf 
2863e971aa12SJeff Cody /*
2864e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
2865e971aa12SJeff Cody  *
2866e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
2867e971aa12SJeff Cody  * via bdrv_reopen_queue().
2868e971aa12SJeff Cody  *
2869e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
2870e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
2871e971aa12SJeff Cody  * device will cause all device changes to be abandonded, and intermediate
2872e971aa12SJeff Cody  * data cleaned up.
2873e971aa12SJeff Cody  *
2874e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
2875e971aa12SJeff Cody  * to all devices.
2876e971aa12SJeff Cody  *
2877e971aa12SJeff Cody  */
2878720150f3SPaolo Bonzini int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
2879e971aa12SJeff Cody {
2880e971aa12SJeff Cody     int ret = -1;
2881e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
2882e971aa12SJeff Cody     Error *local_err = NULL;
2883e971aa12SJeff Cody 
2884e971aa12SJeff Cody     assert(bs_queue != NULL);
2885e971aa12SJeff Cody 
2886c9d1a561SPaolo Bonzini     aio_context_release(ctx);
288740840e41SAlberto Garcia     bdrv_drain_all_begin();
2888c9d1a561SPaolo Bonzini     aio_context_acquire(ctx);
2889e971aa12SJeff Cody 
2890e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2891e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
2892e971aa12SJeff Cody             error_propagate(errp, local_err);
2893e971aa12SJeff Cody             goto cleanup;
2894e971aa12SJeff Cody         }
2895e971aa12SJeff Cody         bs_entry->prepared = true;
2896e971aa12SJeff Cody     }
2897e971aa12SJeff Cody 
2898e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
2899e971aa12SJeff Cody      * changes
2900e971aa12SJeff Cody      */
2901e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2902e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
2903e971aa12SJeff Cody     }
2904e971aa12SJeff Cody 
2905e971aa12SJeff Cody     ret = 0;
2906e971aa12SJeff Cody 
2907e971aa12SJeff Cody cleanup:
2908e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
2909e971aa12SJeff Cody         if (ret && bs_entry->prepared) {
2910e971aa12SJeff Cody             bdrv_reopen_abort(&bs_entry->state);
2911145f598eSKevin Wolf         } else if (ret) {
2912145f598eSKevin Wolf             QDECREF(bs_entry->state.explicit_options);
2913e971aa12SJeff Cody         }
29144d2cb092SKevin Wolf         QDECREF(bs_entry->state.options);
2915e971aa12SJeff Cody         g_free(bs_entry);
2916e971aa12SJeff Cody     }
2917e971aa12SJeff Cody     g_free(bs_queue);
291840840e41SAlberto Garcia 
291940840e41SAlberto Garcia     bdrv_drain_all_end();
292040840e41SAlberto Garcia 
2921e971aa12SJeff Cody     return ret;
2922e971aa12SJeff Cody }
2923e971aa12SJeff Cody 
2924e971aa12SJeff Cody 
2925e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */
2926e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
2927e971aa12SJeff Cody {
2928e971aa12SJeff Cody     int ret = -1;
2929e971aa12SJeff Cody     Error *local_err = NULL;
29304d2cb092SKevin Wolf     BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
2931e971aa12SJeff Cody 
2932720150f3SPaolo Bonzini     ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err);
2933e971aa12SJeff Cody     if (local_err != NULL) {
2934e971aa12SJeff Cody         error_propagate(errp, local_err);
2935e971aa12SJeff Cody     }
2936e971aa12SJeff Cody     return ret;
2937e971aa12SJeff Cody }
2938e971aa12SJeff Cody 
293930450259SKevin Wolf static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
294030450259SKevin Wolf                                                           BdrvChild *c)
294130450259SKevin Wolf {
294230450259SKevin Wolf     BlockReopenQueueEntry *entry;
294330450259SKevin Wolf 
294430450259SKevin Wolf     QSIMPLEQ_FOREACH(entry, q, entry) {
294530450259SKevin Wolf         BlockDriverState *bs = entry->state.bs;
294630450259SKevin Wolf         BdrvChild *child;
294730450259SKevin Wolf 
294830450259SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
294930450259SKevin Wolf             if (child == c) {
295030450259SKevin Wolf                 return entry;
295130450259SKevin Wolf             }
295230450259SKevin Wolf         }
295330450259SKevin Wolf     }
295430450259SKevin Wolf 
295530450259SKevin Wolf     return NULL;
295630450259SKevin Wolf }
295730450259SKevin Wolf 
295830450259SKevin Wolf static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
295930450259SKevin Wolf                              uint64_t *perm, uint64_t *shared)
296030450259SKevin Wolf {
296130450259SKevin Wolf     BdrvChild *c;
296230450259SKevin Wolf     BlockReopenQueueEntry *parent;
296330450259SKevin Wolf     uint64_t cumulative_perms = 0;
296430450259SKevin Wolf     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
296530450259SKevin Wolf 
296630450259SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
296730450259SKevin Wolf         parent = find_parent_in_reopen_queue(q, c);
296830450259SKevin Wolf         if (!parent) {
296930450259SKevin Wolf             cumulative_perms |= c->perm;
297030450259SKevin Wolf             cumulative_shared_perms &= c->shared_perm;
297130450259SKevin Wolf         } else {
297230450259SKevin Wolf             uint64_t nperm, nshared;
297330450259SKevin Wolf 
297430450259SKevin Wolf             bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
297530450259SKevin Wolf                             parent->state.perm, parent->state.shared_perm,
297630450259SKevin Wolf                             &nperm, &nshared);
297730450259SKevin Wolf 
297830450259SKevin Wolf             cumulative_perms |= nperm;
297930450259SKevin Wolf             cumulative_shared_perms &= nshared;
298030450259SKevin Wolf         }
298130450259SKevin Wolf     }
298230450259SKevin Wolf     *perm = cumulative_perms;
298330450259SKevin Wolf     *shared = cumulative_shared_perms;
298430450259SKevin Wolf }
2985e971aa12SJeff Cody 
2986e971aa12SJeff Cody /*
2987e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
2988e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
2989e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
2990e971aa12SJeff Cody  *
2991e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
2992e971aa12SJeff Cody  * flags are the new open flags
2993e971aa12SJeff Cody  * queue is the reopen queue
2994e971aa12SJeff Cody  *
2995e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
2996e971aa12SJeff Cody  * as well.
2997e971aa12SJeff Cody  *
2998e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
2999e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
3000e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
3001e971aa12SJeff Cody  *
3002e971aa12SJeff Cody  */
3003e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3004e971aa12SJeff Cody                         Error **errp)
3005e971aa12SJeff Cody {
3006e971aa12SJeff Cody     int ret = -1;
3007e971aa12SJeff Cody     Error *local_err = NULL;
3008e971aa12SJeff Cody     BlockDriver *drv;
3009ccf9dc07SKevin Wolf     QemuOpts *opts;
3010ccf9dc07SKevin Wolf     const char *value;
30113d8ce171SJeff Cody     bool read_only;
3012e971aa12SJeff Cody 
3013e971aa12SJeff Cody     assert(reopen_state != NULL);
3014e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
3015e971aa12SJeff Cody     drv = reopen_state->bs->drv;
3016e971aa12SJeff Cody 
3017ccf9dc07SKevin Wolf     /* Process generic block layer options */
3018ccf9dc07SKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3019ccf9dc07SKevin Wolf     qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3020ccf9dc07SKevin Wolf     if (local_err) {
3021ccf9dc07SKevin Wolf         error_propagate(errp, local_err);
3022ccf9dc07SKevin Wolf         ret = -EINVAL;
3023ccf9dc07SKevin Wolf         goto error;
3024ccf9dc07SKevin Wolf     }
3025ccf9dc07SKevin Wolf 
302691a097e7SKevin Wolf     update_flags_from_options(&reopen_state->flags, opts);
302791a097e7SKevin Wolf 
3028ccf9dc07SKevin Wolf     /* node-name and driver must be unchanged. Put them back into the QDict, so
3029ccf9dc07SKevin Wolf      * that they are checked at the end of this function. */
3030ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "node-name");
3031ccf9dc07SKevin Wolf     if (value) {
303246f5ac20SEric Blake         qdict_put_str(reopen_state->options, "node-name", value);
3033ccf9dc07SKevin Wolf     }
3034ccf9dc07SKevin Wolf 
3035ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "driver");
3036ccf9dc07SKevin Wolf     if (value) {
303746f5ac20SEric Blake         qdict_put_str(reopen_state->options, "driver", value);
3038ccf9dc07SKevin Wolf     }
3039ccf9dc07SKevin Wolf 
30403d8ce171SJeff Cody     /* If we are to stay read-only, do not allow permission change
30413d8ce171SJeff Cody      * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
30423d8ce171SJeff Cody      * not set, or if the BDS still has copy_on_read enabled */
30433d8ce171SJeff Cody     read_only = !(reopen_state->flags & BDRV_O_RDWR);
304454a32bfeSKevin Wolf     ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
30453d8ce171SJeff Cody     if (local_err) {
30463d8ce171SJeff Cody         error_propagate(errp, local_err);
3047e971aa12SJeff Cody         goto error;
3048e971aa12SJeff Cody     }
3049e971aa12SJeff Cody 
305030450259SKevin Wolf     /* Calculate required permissions after reopening */
305130450259SKevin Wolf     bdrv_reopen_perm(queue, reopen_state->bs,
305230450259SKevin Wolf                      &reopen_state->perm, &reopen_state->shared_perm);
3053e971aa12SJeff Cody 
3054e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
3055e971aa12SJeff Cody     if (ret) {
3056455b0fdeSEric Blake         error_setg_errno(errp, -ret, "Error flushing drive");
3057e971aa12SJeff Cody         goto error;
3058e971aa12SJeff Cody     }
3059e971aa12SJeff Cody 
3060e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
3061e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3062e971aa12SJeff Cody         if (ret) {
3063e971aa12SJeff Cody             if (local_err != NULL) {
3064e971aa12SJeff Cody                 error_propagate(errp, local_err);
3065e971aa12SJeff Cody             } else {
3066d8b6895fSLuiz Capitulino                 error_setg(errp, "failed while preparing to reopen image '%s'",
3067e971aa12SJeff Cody                            reopen_state->bs->filename);
3068e971aa12SJeff Cody             }
3069e971aa12SJeff Cody             goto error;
3070e971aa12SJeff Cody         }
3071e971aa12SJeff Cody     } else {
3072e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
3073e971aa12SJeff Cody          * handler for each supported drv. */
307481e5f78aSAlberto Garcia         error_setg(errp, "Block format '%s' used by node '%s' "
307581e5f78aSAlberto Garcia                    "does not support reopening files", drv->format_name,
307681e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
3077e971aa12SJeff Cody         ret = -1;
3078e971aa12SJeff Cody         goto error;
3079e971aa12SJeff Cody     }
3080e971aa12SJeff Cody 
30814d2cb092SKevin Wolf     /* Options that are not handled are only okay if they are unchanged
30824d2cb092SKevin Wolf      * compared to the old state. It is expected that some options are only
30834d2cb092SKevin Wolf      * used for the initial open, but not reopen (e.g. filename) */
30844d2cb092SKevin Wolf     if (qdict_size(reopen_state->options)) {
30854d2cb092SKevin Wolf         const QDictEntry *entry = qdict_first(reopen_state->options);
30864d2cb092SKevin Wolf 
30874d2cb092SKevin Wolf         do {
308854fd1b0dSMax Reitz             QObject *new = entry->value;
308954fd1b0dSMax Reitz             QObject *old = qdict_get(reopen_state->bs->options, entry->key);
30904d2cb092SKevin Wolf 
309154fd1b0dSMax Reitz             /*
309254fd1b0dSMax Reitz              * TODO: When using -drive to specify blockdev options, all values
309354fd1b0dSMax Reitz              * will be strings; however, when using -blockdev, blockdev-add or
309454fd1b0dSMax Reitz              * filenames using the json:{} pseudo-protocol, they will be
309554fd1b0dSMax Reitz              * correctly typed.
309654fd1b0dSMax Reitz              * In contrast, reopening options are (currently) always strings
309754fd1b0dSMax Reitz              * (because you can only specify them through qemu-io; all other
309854fd1b0dSMax Reitz              * callers do not specify any options).
309954fd1b0dSMax Reitz              * Therefore, when using anything other than -drive to create a BDS,
310054fd1b0dSMax Reitz              * this cannot detect non-string options as unchanged, because
310154fd1b0dSMax Reitz              * qobject_is_equal() always returns false for objects of different
310254fd1b0dSMax Reitz              * type.  In the future, this should be remedied by correctly typing
310354fd1b0dSMax Reitz              * all options.  For now, this is not too big of an issue because
310454fd1b0dSMax Reitz              * the user can simply omit options which cannot be changed anyway,
310554fd1b0dSMax Reitz              * so they will stay unchanged.
310654fd1b0dSMax Reitz              */
310754fd1b0dSMax Reitz             if (!qobject_is_equal(new, old)) {
31084d2cb092SKevin Wolf                 error_setg(errp, "Cannot change the option '%s'", entry->key);
31094d2cb092SKevin Wolf                 ret = -EINVAL;
31104d2cb092SKevin Wolf                 goto error;
31114d2cb092SKevin Wolf             }
31124d2cb092SKevin Wolf         } while ((entry = qdict_next(reopen_state->options, entry)));
31134d2cb092SKevin Wolf     }
31144d2cb092SKevin Wolf 
311530450259SKevin Wolf     ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
311630450259SKevin Wolf                           reopen_state->shared_perm, NULL, errp);
311730450259SKevin Wolf     if (ret < 0) {
311830450259SKevin Wolf         goto error;
311930450259SKevin Wolf     }
312030450259SKevin Wolf 
3121e971aa12SJeff Cody     ret = 0;
3122e971aa12SJeff Cody 
3123e971aa12SJeff Cody error:
3124ccf9dc07SKevin Wolf     qemu_opts_del(opts);
3125e971aa12SJeff Cody     return ret;
3126e971aa12SJeff Cody }
3127e971aa12SJeff Cody 
3128e971aa12SJeff Cody /*
3129e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3130e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
3131e971aa12SJeff Cody  * the active BlockDriverState contents.
3132e971aa12SJeff Cody  */
3133e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3134e971aa12SJeff Cody {
3135e971aa12SJeff Cody     BlockDriver *drv;
313650bf65baSVladimir Sementsov-Ogievskiy     BlockDriverState *bs;
3137cb9ff6c2SVladimir Sementsov-Ogievskiy     bool old_can_write, new_can_write;
3138e971aa12SJeff Cody 
3139e971aa12SJeff Cody     assert(reopen_state != NULL);
314050bf65baSVladimir Sementsov-Ogievskiy     bs = reopen_state->bs;
314150bf65baSVladimir Sementsov-Ogievskiy     drv = bs->drv;
3142e971aa12SJeff Cody     assert(drv != NULL);
3143e971aa12SJeff Cody 
3144cb9ff6c2SVladimir Sementsov-Ogievskiy     old_can_write =
3145cb9ff6c2SVladimir Sementsov-Ogievskiy         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3146cb9ff6c2SVladimir Sementsov-Ogievskiy 
3147e971aa12SJeff Cody     /* If there are any driver level actions to take */
3148e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
3149e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
3150e971aa12SJeff Cody     }
3151e971aa12SJeff Cody 
3152e971aa12SJeff Cody     /* set BDS specific flags now */
315350bf65baSVladimir Sementsov-Ogievskiy     QDECREF(bs->explicit_options);
3154145f598eSKevin Wolf 
315550bf65baSVladimir Sementsov-Ogievskiy     bs->explicit_options   = reopen_state->explicit_options;
315650bf65baSVladimir Sementsov-Ogievskiy     bs->open_flags         = reopen_state->flags;
315750bf65baSVladimir Sementsov-Ogievskiy     bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
3158355ef4acSKevin Wolf 
315950bf65baSVladimir Sementsov-Ogievskiy     bdrv_refresh_limits(bs, NULL);
3160cb9ff6c2SVladimir Sementsov-Ogievskiy 
316130450259SKevin Wolf     bdrv_set_perm(reopen_state->bs, reopen_state->perm,
316230450259SKevin Wolf                   reopen_state->shared_perm);
316330450259SKevin Wolf 
3164cb9ff6c2SVladimir Sementsov-Ogievskiy     new_can_write =
3165cb9ff6c2SVladimir Sementsov-Ogievskiy         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3166cb9ff6c2SVladimir Sementsov-Ogievskiy     if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3167cb9ff6c2SVladimir Sementsov-Ogievskiy         Error *local_err = NULL;
3168cb9ff6c2SVladimir Sementsov-Ogievskiy         if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3169cb9ff6c2SVladimir Sementsov-Ogievskiy             /* This is not fatal, bitmaps just left read-only, so all following
3170cb9ff6c2SVladimir Sementsov-Ogievskiy              * writes will fail. User can remove read-only bitmaps to unblock
3171cb9ff6c2SVladimir Sementsov-Ogievskiy              * writes.
3172cb9ff6c2SVladimir Sementsov-Ogievskiy              */
3173cb9ff6c2SVladimir Sementsov-Ogievskiy             error_reportf_err(local_err,
3174cb9ff6c2SVladimir Sementsov-Ogievskiy                               "%s: Failed to make dirty bitmaps writable: ",
3175cb9ff6c2SVladimir Sementsov-Ogievskiy                               bdrv_get_node_name(bs));
3176cb9ff6c2SVladimir Sementsov-Ogievskiy         }
3177cb9ff6c2SVladimir Sementsov-Ogievskiy     }
3178e971aa12SJeff Cody }
3179e971aa12SJeff Cody 
3180e971aa12SJeff Cody /*
3181e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
3182e971aa12SJeff Cody  * reopen_state
3183e971aa12SJeff Cody  */
3184e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3185e971aa12SJeff Cody {
3186e971aa12SJeff Cody     BlockDriver *drv;
3187e971aa12SJeff Cody 
3188e971aa12SJeff Cody     assert(reopen_state != NULL);
3189e971aa12SJeff Cody     drv = reopen_state->bs->drv;
3190e971aa12SJeff Cody     assert(drv != NULL);
3191e971aa12SJeff Cody 
3192e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
3193e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
3194e971aa12SJeff Cody     }
3195145f598eSKevin Wolf 
3196145f598eSKevin Wolf     QDECREF(reopen_state->explicit_options);
319730450259SKevin Wolf 
319830450259SKevin Wolf     bdrv_abort_perm_update(reopen_state->bs);
3199e971aa12SJeff Cody }
3200e971aa12SJeff Cody 
3201e971aa12SJeff Cody 
320264dff520SMax Reitz static void bdrv_close(BlockDriverState *bs)
3203fc01f7e7Sbellard {
320433384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
320550a3efb0SAlberto Garcia     BdrvChild *child, *next;
320633384421SMax Reitz 
3207ca9bd24cSMax Reitz     assert(!bs->job);
320830f55fb8SMax Reitz     assert(!bs->refcnt);
320999b7e775SAlberto Garcia 
3210fc27291dSPaolo Bonzini     bdrv_drained_begin(bs); /* complete I/O */
321158fda173SStefan Hajnoczi     bdrv_flush(bs);
321253ec73e2SFam Zheng     bdrv_drain(bs); /* in case flush left pending I/O */
3213fc27291dSPaolo Bonzini 
32143cbc002cSPaolo Bonzini     if (bs->drv) {
32159a7dedbcSKevin Wolf         bs->drv->bdrv_close(bs);
32169a4f4c31SKevin Wolf         bs->drv = NULL;
321750a3efb0SAlberto Garcia     }
32189a7dedbcSKevin Wolf 
321912fa4af6SKevin Wolf     bdrv_set_backing_hd(bs, NULL, &error_abort);
32209a7dedbcSKevin Wolf 
32219a4f4c31SKevin Wolf     if (bs->file != NULL) {
32229a4f4c31SKevin Wolf         bdrv_unref_child(bs, bs->file);
32239a4f4c31SKevin Wolf         bs->file = NULL;
32249a4f4c31SKevin Wolf     }
32259a4f4c31SKevin Wolf 
32266e93e7c4SKevin Wolf     QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
322733a60407SKevin Wolf         /* TODO Remove bdrv_unref() from drivers' close function and use
322833a60407SKevin Wolf          * bdrv_unref_child() here */
3229bddcec37SKevin Wolf         if (child->bs->inherits_from == bs) {
3230bddcec37SKevin Wolf             child->bs->inherits_from = NULL;
3231bddcec37SKevin Wolf         }
323233a60407SKevin Wolf         bdrv_detach_child(child);
32336e93e7c4SKevin Wolf     }
32346e93e7c4SKevin Wolf 
32357267c094SAnthony Liguori     g_free(bs->opaque);
3236ea2384d3Sbellard     bs->opaque = NULL;
3237d3faa13eSPaolo Bonzini     atomic_set(&bs->copy_on_read, 0);
3238a275fa42SPaolo Bonzini     bs->backing_file[0] = '\0';
3239a275fa42SPaolo Bonzini     bs->backing_format[0] = '\0';
32406405875cSPaolo Bonzini     bs->total_sectors = 0;
324154115412SEric Blake     bs->encrypted = false;
324254115412SEric Blake     bs->sg = false;
3243de9c0cecSKevin Wolf     QDECREF(bs->options);
3244145f598eSKevin Wolf     QDECREF(bs->explicit_options);
3245de9c0cecSKevin Wolf     bs->options = NULL;
3246998cbd6aSManos Pitsidianakis     bs->explicit_options = NULL;
324791af7014SMax Reitz     QDECREF(bs->full_open_options);
324891af7014SMax Reitz     bs->full_open_options = NULL;
324966f82ceeSKevin Wolf 
3250cca43ae1SVladimir Sementsov-Ogievskiy     bdrv_release_named_dirty_bitmaps(bs);
3251cca43ae1SVladimir Sementsov-Ogievskiy     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3252cca43ae1SVladimir Sementsov-Ogievskiy 
325333384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
325433384421SMax Reitz         g_free(ban);
325533384421SMax Reitz     }
325633384421SMax Reitz     QLIST_INIT(&bs->aio_notifiers);
3257fc27291dSPaolo Bonzini     bdrv_drained_end(bs);
3258b338082bSbellard }
3259b338082bSbellard 
32602bc93fedSMORITA Kazutaka void bdrv_close_all(void)
32612bc93fedSMORITA Kazutaka {
3262a1a2af07SKevin Wolf     block_job_cancel_sync_all();
3263cd7fca95SKevin Wolf     nbd_export_close_all();
32642bc93fedSMORITA Kazutaka 
3265ca9bd24cSMax Reitz     /* Drop references from requests still in flight, such as canceled block
3266ca9bd24cSMax Reitz      * jobs whose AIO context has not been polled yet */
3267ca9bd24cSMax Reitz     bdrv_drain_all();
3268ca9bd24cSMax Reitz 
3269ca9bd24cSMax Reitz     blk_remove_all_bs();
3270ca9bd24cSMax Reitz     blockdev_close_all_bdrv_states();
3271ca9bd24cSMax Reitz 
3272a1a2af07SKevin Wolf     assert(QTAILQ_EMPTY(&all_bdrv_states));
32732bc93fedSMORITA Kazutaka }
32742bc93fedSMORITA Kazutaka 
3275d0ac0380SKevin Wolf static bool should_update_child(BdrvChild *c, BlockDriverState *to)
3276dd62f1caSKevin Wolf {
3277d0ac0380SKevin Wolf     BdrvChild *to_c;
3278dd62f1caSKevin Wolf 
327926de9438SKevin Wolf     if (c->role->stay_at_node) {
3280d0ac0380SKevin Wolf         return false;
328126de9438SKevin Wolf     }
3282d0ac0380SKevin Wolf 
32839bd910e2SMax Reitz     if (c->role == &child_backing) {
32843e44c8e0SKevin Wolf         /* If @from is a backing file of @to, ignore the child to avoid
32853e44c8e0SKevin Wolf          * creating a loop. We only want to change the pointer of other
32863e44c8e0SKevin Wolf          * parents. */
32879bd910e2SMax Reitz         QLIST_FOREACH(to_c, &to->children, next) {
32889bd910e2SMax Reitz             if (to_c == c) {
32899bd910e2SMax Reitz                 break;
32909bd910e2SMax Reitz             }
32919bd910e2SMax Reitz         }
32929bd910e2SMax Reitz         if (to_c) {
3293d0ac0380SKevin Wolf             return false;
32949bd910e2SMax Reitz         }
32959bd910e2SMax Reitz     }
32969bd910e2SMax Reitz 
3297d0ac0380SKevin Wolf     return true;
3298d0ac0380SKevin Wolf }
3299d0ac0380SKevin Wolf 
33005fe31c25SKevin Wolf void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
33015fe31c25SKevin Wolf                        Error **errp)
3302d0ac0380SKevin Wolf {
3303d0ac0380SKevin Wolf     BdrvChild *c, *next;
3304234ac1a9SKevin Wolf     GSList *list = NULL, *p;
3305234ac1a9SKevin Wolf     uint64_t old_perm, old_shared;
3306234ac1a9SKevin Wolf     uint64_t perm = 0, shared = BLK_PERM_ALL;
3307234ac1a9SKevin Wolf     int ret;
3308d0ac0380SKevin Wolf 
33095fe31c25SKevin Wolf     assert(!atomic_read(&from->in_flight));
33105fe31c25SKevin Wolf     assert(!atomic_read(&to->in_flight));
33115fe31c25SKevin Wolf 
3312234ac1a9SKevin Wolf     /* Make sure that @from doesn't go away until we have successfully attached
3313234ac1a9SKevin Wolf      * all of its parents to @to. */
3314234ac1a9SKevin Wolf     bdrv_ref(from);
3315234ac1a9SKevin Wolf 
3316234ac1a9SKevin Wolf     /* Put all parents into @list and calculate their cumulative permissions */
3317d0ac0380SKevin Wolf     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
3318d0ac0380SKevin Wolf         if (!should_update_child(c, to)) {
3319d0ac0380SKevin Wolf             continue;
3320d0ac0380SKevin Wolf         }
3321234ac1a9SKevin Wolf         list = g_slist_prepend(list, c);
3322234ac1a9SKevin Wolf         perm |= c->perm;
3323234ac1a9SKevin Wolf         shared &= c->shared_perm;
3324234ac1a9SKevin Wolf     }
3325234ac1a9SKevin Wolf 
3326234ac1a9SKevin Wolf     /* Check whether the required permissions can be granted on @to, ignoring
3327234ac1a9SKevin Wolf      * all BdrvChild in @list so that they can't block themselves. */
33283121fb45SKevin Wolf     ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
3329234ac1a9SKevin Wolf     if (ret < 0) {
3330234ac1a9SKevin Wolf         bdrv_abort_perm_update(to);
3331234ac1a9SKevin Wolf         goto out;
3332234ac1a9SKevin Wolf     }
3333234ac1a9SKevin Wolf 
3334234ac1a9SKevin Wolf     /* Now actually perform the change. We performed the permission check for
3335234ac1a9SKevin Wolf      * all elements of @list at once, so set the permissions all at once at the
3336234ac1a9SKevin Wolf      * very end. */
3337234ac1a9SKevin Wolf     for (p = list; p != NULL; p = p->next) {
3338234ac1a9SKevin Wolf         c = p->data;
3339d0ac0380SKevin Wolf 
3340dd62f1caSKevin Wolf         bdrv_ref(to);
3341234ac1a9SKevin Wolf         bdrv_replace_child_noperm(c, to);
3342dd62f1caSKevin Wolf         bdrv_unref(from);
3343dd62f1caSKevin Wolf     }
3344234ac1a9SKevin Wolf 
3345234ac1a9SKevin Wolf     bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3346234ac1a9SKevin Wolf     bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3347234ac1a9SKevin Wolf 
3348234ac1a9SKevin Wolf out:
3349234ac1a9SKevin Wolf     g_slist_free(list);
3350234ac1a9SKevin Wolf     bdrv_unref(from);
3351dd62f1caSKevin Wolf }
3352dd62f1caSKevin Wolf 
33538802d1fdSJeff Cody /*
33548802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
33558802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
33568802d1fdSJeff Cody  *
33578802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
33588802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
33598802d1fdSJeff Cody  *
3360bfb197e0SMarkus Armbruster  * bs_new must not be attached to a BlockBackend.
3361f6801b83SJeff Cody  *
33628802d1fdSJeff Cody  * This function does not create any image files.
3363dd62f1caSKevin Wolf  *
3364dd62f1caSKevin Wolf  * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3365dd62f1caSKevin Wolf  * that's what the callers commonly need. bs_new will be referenced by the old
3366dd62f1caSKevin Wolf  * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3367dd62f1caSKevin Wolf  * reference of its own, it must call bdrv_ref().
33688802d1fdSJeff Cody  */
3369b2c2832cSKevin Wolf void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3370b2c2832cSKevin Wolf                  Error **errp)
33718802d1fdSJeff Cody {
3372b2c2832cSKevin Wolf     Error *local_err = NULL;
3373b2c2832cSKevin Wolf 
3374b2c2832cSKevin Wolf     bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3375b2c2832cSKevin Wolf     if (local_err) {
3376b2c2832cSKevin Wolf         error_propagate(errp, local_err);
3377b2c2832cSKevin Wolf         goto out;
3378b2c2832cSKevin Wolf     }
3379dd62f1caSKevin Wolf 
33805fe31c25SKevin Wolf     bdrv_replace_node(bs_top, bs_new, &local_err);
3381234ac1a9SKevin Wolf     if (local_err) {
3382234ac1a9SKevin Wolf         error_propagate(errp, local_err);
3383234ac1a9SKevin Wolf         bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3384234ac1a9SKevin Wolf         goto out;
3385234ac1a9SKevin Wolf     }
3386dd62f1caSKevin Wolf 
3387dd62f1caSKevin Wolf     /* bs_new is now referenced by its new parents, we don't need the
3388dd62f1caSKevin Wolf      * additional reference any more. */
3389b2c2832cSKevin Wolf out:
3390dd62f1caSKevin Wolf     bdrv_unref(bs_new);
33918802d1fdSJeff Cody }
33928802d1fdSJeff Cody 
33934f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs)
3394b338082bSbellard {
33953e914655SPaolo Bonzini     assert(!bs->job);
33963718d8abSFam Zheng     assert(bdrv_op_blocker_is_empty(bs));
33974f6fd349SFam Zheng     assert(!bs->refcnt);
339818846deeSMarkus Armbruster 
3399e1b5c52eSStefan Hajnoczi     bdrv_close(bs);
3400e1b5c52eSStefan Hajnoczi 
34011b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
340263eaaae0SKevin Wolf     if (bs->node_name[0] != '\0') {
340363eaaae0SKevin Wolf         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
340463eaaae0SKevin Wolf     }
34052c1d04e0SMax Reitz     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
34062c1d04e0SMax Reitz 
34077267c094SAnthony Liguori     g_free(bs);
3408fc01f7e7Sbellard }
3409fc01f7e7Sbellard 
3410e97fc193Saliguori /*
3411e97fc193Saliguori  * Run consistency checks on an image
3412e97fc193Saliguori  *
3413e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
3414a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
3415e076f338SKevin Wolf  * check are stored in res.
3416e97fc193Saliguori  */
34174534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
3418e97fc193Saliguori {
3419908bcd54SMax Reitz     if (bs->drv == NULL) {
3420908bcd54SMax Reitz         return -ENOMEDIUM;
3421908bcd54SMax Reitz     }
3422e97fc193Saliguori     if (bs->drv->bdrv_check == NULL) {
3423e97fc193Saliguori         return -ENOTSUP;
3424e97fc193Saliguori     }
3425e97fc193Saliguori 
3426e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
34274534ff54SKevin Wolf     return bs->drv->bdrv_check(bs, res, fix);
3428e97fc193Saliguori }
3429e97fc193Saliguori 
3430756e6736SKevin Wolf /*
3431756e6736SKevin Wolf  * Return values:
3432756e6736SKevin Wolf  * 0        - success
3433756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
3434756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
3435756e6736SKevin Wolf  *            image file header
3436756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
3437756e6736SKevin Wolf  */
3438756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
3439756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
3440756e6736SKevin Wolf {
3441756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
3442469ef350SPaolo Bonzini     int ret;
3443756e6736SKevin Wolf 
3444d470ad42SMax Reitz     if (!drv) {
3445d470ad42SMax Reitz         return -ENOMEDIUM;
3446d470ad42SMax Reitz     }
3447d470ad42SMax Reitz 
34485f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
34495f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
34505f377794SPaolo Bonzini         return -EINVAL;
34515f377794SPaolo Bonzini     }
34525f377794SPaolo Bonzini 
3453756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
3454469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
3455756e6736SKevin Wolf     } else {
3456469ef350SPaolo Bonzini         ret = -ENOTSUP;
3457756e6736SKevin Wolf     }
3458469ef350SPaolo Bonzini 
3459469ef350SPaolo Bonzini     if (ret == 0) {
3460469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3461469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3462469ef350SPaolo Bonzini     }
3463469ef350SPaolo Bonzini     return ret;
3464756e6736SKevin Wolf }
3465756e6736SKevin Wolf 
34666ebdcee2SJeff Cody /*
34676ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
34686ebdcee2SJeff Cody  *
34696ebdcee2SJeff Cody  * active is the current topmost image.
34706ebdcee2SJeff Cody  *
34716ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
34726ebdcee2SJeff Cody  * or if active == bs.
34734caf0fcdSJeff Cody  *
34744caf0fcdSJeff Cody  * Returns the bottommost base image if bs == NULL.
34756ebdcee2SJeff Cody  */
34766ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
34776ebdcee2SJeff Cody                                     BlockDriverState *bs)
34786ebdcee2SJeff Cody {
3479760e0063SKevin Wolf     while (active && bs != backing_bs(active)) {
3480760e0063SKevin Wolf         active = backing_bs(active);
34816ebdcee2SJeff Cody     }
34826ebdcee2SJeff Cody 
34834caf0fcdSJeff Cody     return active;
34846ebdcee2SJeff Cody }
34856ebdcee2SJeff Cody 
34864caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */
34874caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs)
34884caf0fcdSJeff Cody {
34894caf0fcdSJeff Cody     return bdrv_find_overlay(bs, NULL);
34906ebdcee2SJeff Cody }
34916ebdcee2SJeff Cody 
34926ebdcee2SJeff Cody /*
34936ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
34946ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
34956ebdcee2SJeff Cody  *
34966ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
34976ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
34986ebdcee2SJeff Cody  *
34996ebdcee2SJeff Cody  * E.g., this will convert the following chain:
35006ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
35016ebdcee2SJeff Cody  *
35026ebdcee2SJeff Cody  * to
35036ebdcee2SJeff Cody  *
35046ebdcee2SJeff Cody  * bottom <- base <- active
35056ebdcee2SJeff Cody  *
35066ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
35076ebdcee2SJeff Cody  *
35086ebdcee2SJeff Cody  * base <- intermediate <- top <- active
35096ebdcee2SJeff Cody  *
35106ebdcee2SJeff Cody  * to
35116ebdcee2SJeff Cody  *
35126ebdcee2SJeff Cody  * base <- active
35136ebdcee2SJeff Cody  *
351454e26900SJeff Cody  * If backing_file_str is non-NULL, it will be used when modifying top's
351554e26900SJeff Cody  * overlay image metadata.
351654e26900SJeff Cody  *
35176ebdcee2SJeff Cody  * Error conditions:
35186ebdcee2SJeff Cody  *  if active == top, that is considered an error
35196ebdcee2SJeff Cody  *
35206ebdcee2SJeff Cody  */
3521bde70715SKevin Wolf int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3522bde70715SKevin Wolf                            const char *backing_file_str)
35236ebdcee2SJeff Cody {
352461f09ceaSKevin Wolf     BdrvChild *c, *next;
352512fa4af6SKevin Wolf     Error *local_err = NULL;
35266ebdcee2SJeff Cody     int ret = -EIO;
35276ebdcee2SJeff Cody 
35286858eba0SKevin Wolf     bdrv_ref(top);
35296858eba0SKevin Wolf 
35306ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
35316ebdcee2SJeff Cody         goto exit;
35326ebdcee2SJeff Cody     }
35336ebdcee2SJeff Cody 
35345db15a57SKevin Wolf     /* Make sure that base is in the backing chain of top */
35355db15a57SKevin Wolf     if (!bdrv_chain_contains(top, base)) {
35366ebdcee2SJeff Cody         goto exit;
35376ebdcee2SJeff Cody     }
35386ebdcee2SJeff Cody 
35396ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
3540bde70715SKevin Wolf     /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
3541bde70715SKevin Wolf      * we've figured out how they should work. */
35425db15a57SKevin Wolf     backing_file_str = backing_file_str ? backing_file_str : base->filename;
354312fa4af6SKevin Wolf 
354461f09ceaSKevin Wolf     QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
354561f09ceaSKevin Wolf         /* Check whether we are allowed to switch c from top to base */
354661f09ceaSKevin Wolf         GSList *ignore_children = g_slist_prepend(NULL, c);
354761f09ceaSKevin Wolf         bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
354861f09ceaSKevin Wolf                                ignore_children, &local_err);
354912fa4af6SKevin Wolf         if (local_err) {
355012fa4af6SKevin Wolf             ret = -EPERM;
355112fa4af6SKevin Wolf             error_report_err(local_err);
355212fa4af6SKevin Wolf             goto exit;
355312fa4af6SKevin Wolf         }
355461f09ceaSKevin Wolf         g_slist_free(ignore_children);
355561f09ceaSKevin Wolf 
355661f09ceaSKevin Wolf         /* If so, update the backing file path in the image file */
355761f09ceaSKevin Wolf         if (c->role->update_filename) {
355861f09ceaSKevin Wolf             ret = c->role->update_filename(c, base, backing_file_str,
355961f09ceaSKevin Wolf                                            &local_err);
356061f09ceaSKevin Wolf             if (ret < 0) {
356161f09ceaSKevin Wolf                 bdrv_abort_perm_update(base);
356261f09ceaSKevin Wolf                 error_report_err(local_err);
356361f09ceaSKevin Wolf                 goto exit;
356461f09ceaSKevin Wolf             }
356561f09ceaSKevin Wolf         }
356661f09ceaSKevin Wolf 
356761f09ceaSKevin Wolf         /* Do the actual switch in the in-memory graph.
356861f09ceaSKevin Wolf          * Completes bdrv_check_update_perm() transaction internally. */
356961f09ceaSKevin Wolf         bdrv_ref(base);
357061f09ceaSKevin Wolf         bdrv_replace_child(c, base);
357161f09ceaSKevin Wolf         bdrv_unref(top);
357261f09ceaSKevin Wolf     }
35736ebdcee2SJeff Cody 
35746ebdcee2SJeff Cody     ret = 0;
35756ebdcee2SJeff Cody exit:
35766858eba0SKevin Wolf     bdrv_unref(top);
35776ebdcee2SJeff Cody     return ret;
35786ebdcee2SJeff Cody }
35796ebdcee2SJeff Cody 
358083f64091Sbellard /**
358183f64091Sbellard  * Truncate file to 'offset' bytes (needed only for file protocols)
358283f64091Sbellard  */
35837ea37c30SMax Reitz int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc,
35847ea37c30SMax Reitz                   Error **errp)
358583f64091Sbellard {
358652cdbc58SKevin Wolf     BlockDriverState *bs = child->bs;
358783f64091Sbellard     BlockDriver *drv = bs->drv;
358851762288SStefan Hajnoczi     int ret;
3589c8f6d58eSKevin Wolf 
3590362b3786SMax Reitz     assert(child->perm & BLK_PERM_RESIZE);
3591c8f6d58eSKevin Wolf 
35925a612c00SManos Pitsidianakis     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
3593ed3d2ec9SMax Reitz     if (!drv) {
3594ed3d2ec9SMax Reitz         error_setg(errp, "No medium inserted");
359519cb3738Sbellard         return -ENOMEDIUM;
3596ed3d2ec9SMax Reitz     }
3597ed3d2ec9SMax Reitz     if (!drv->bdrv_truncate) {
35985a612c00SManos Pitsidianakis         if (bs->file && drv->is_filter) {
35995a612c00SManos Pitsidianakis             return bdrv_truncate(bs->file, offset, prealloc, errp);
36005a612c00SManos Pitsidianakis         }
3601ed3d2ec9SMax Reitz         error_setg(errp, "Image format driver does not support resize");
360283f64091Sbellard         return -ENOTSUP;
3603ed3d2ec9SMax Reitz     }
3604ed3d2ec9SMax Reitz     if (bs->read_only) {
3605ed3d2ec9SMax Reitz         error_setg(errp, "Image is read-only");
360659f2689dSNaphtali Sprei         return -EACCES;
3607ed3d2ec9SMax Reitz     }
36089c75e168SJeff Cody 
3609504c205aSDenis V. Lunev     assert(!(bs->open_flags & BDRV_O_INACTIVE));
3610504c205aSDenis V. Lunev 
36117ea37c30SMax Reitz     ret = drv->bdrv_truncate(bs, offset, prealloc, errp);
36121b6cc579SEric Blake     if (ret < 0) {
36131b6cc579SEric Blake         return ret;
36141b6cc579SEric Blake     }
361551762288SStefan Hajnoczi     ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
36161b6cc579SEric Blake     if (ret < 0) {
36171b6cc579SEric Blake         error_setg_errno(errp, -ret, "Could not refresh total sector count");
36181b6cc579SEric Blake     } else {
36191b6cc579SEric Blake         offset = bs->total_sectors * BDRV_SECTOR_SIZE;
36201b6cc579SEric Blake     }
36211b6cc579SEric Blake     bdrv_dirty_bitmap_truncate(bs, offset);
36225c8cab48SKevin Wolf     bdrv_parent_cb_resize(bs);
362347fec599SPaolo Bonzini     atomic_inc(&bs->write_gen);
362451762288SStefan Hajnoczi     return ret;
362583f64091Sbellard }
362683f64091Sbellard 
362783f64091Sbellard /**
36284a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
36294a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
36304a1d5e1fSFam Zheng  */
36314a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
36324a1d5e1fSFam Zheng {
36334a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
36344a1d5e1fSFam Zheng     if (!drv) {
36354a1d5e1fSFam Zheng         return -ENOMEDIUM;
36364a1d5e1fSFam Zheng     }
36374a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
36384a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
36394a1d5e1fSFam Zheng     }
36404a1d5e1fSFam Zheng     if (bs->file) {
36419a4f4c31SKevin Wolf         return bdrv_get_allocated_file_size(bs->file->bs);
36424a1d5e1fSFam Zheng     }
36434a1d5e1fSFam Zheng     return -ENOTSUP;
36444a1d5e1fSFam Zheng }
36454a1d5e1fSFam Zheng 
364690880ff1SStefan Hajnoczi /*
364790880ff1SStefan Hajnoczi  * bdrv_measure:
364890880ff1SStefan Hajnoczi  * @drv: Format driver
364990880ff1SStefan Hajnoczi  * @opts: Creation options for new image
365090880ff1SStefan Hajnoczi  * @in_bs: Existing image containing data for new image (may be NULL)
365190880ff1SStefan Hajnoczi  * @errp: Error object
365290880ff1SStefan Hajnoczi  * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
365390880ff1SStefan Hajnoczi  *          or NULL on error
365490880ff1SStefan Hajnoczi  *
365590880ff1SStefan Hajnoczi  * Calculate file size required to create a new image.
365690880ff1SStefan Hajnoczi  *
365790880ff1SStefan Hajnoczi  * If @in_bs is given then space for allocated clusters and zero clusters
365890880ff1SStefan Hajnoczi  * from that image are included in the calculation.  If @opts contains a
365990880ff1SStefan Hajnoczi  * backing file that is shared by @in_bs then backing clusters may be omitted
366090880ff1SStefan Hajnoczi  * from the calculation.
366190880ff1SStefan Hajnoczi  *
366290880ff1SStefan Hajnoczi  * If @in_bs is NULL then the calculation includes no allocated clusters
366390880ff1SStefan Hajnoczi  * unless a preallocation option is given in @opts.
366490880ff1SStefan Hajnoczi  *
366590880ff1SStefan Hajnoczi  * Note that @in_bs may use a different BlockDriver from @drv.
366690880ff1SStefan Hajnoczi  *
366790880ff1SStefan Hajnoczi  * If an error occurs the @errp pointer is set.
366890880ff1SStefan Hajnoczi  */
366990880ff1SStefan Hajnoczi BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
367090880ff1SStefan Hajnoczi                                BlockDriverState *in_bs, Error **errp)
367190880ff1SStefan Hajnoczi {
367290880ff1SStefan Hajnoczi     if (!drv->bdrv_measure) {
367390880ff1SStefan Hajnoczi         error_setg(errp, "Block driver '%s' does not support size measurement",
367490880ff1SStefan Hajnoczi                    drv->format_name);
367590880ff1SStefan Hajnoczi         return NULL;
367690880ff1SStefan Hajnoczi     }
367790880ff1SStefan Hajnoczi 
367890880ff1SStefan Hajnoczi     return drv->bdrv_measure(opts, in_bs, errp);
367990880ff1SStefan Hajnoczi }
368090880ff1SStefan Hajnoczi 
36814a1d5e1fSFam Zheng /**
368265a9bb25SMarkus Armbruster  * Return number of sectors on success, -errno on error.
368383f64091Sbellard  */
368465a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs)
368583f64091Sbellard {
368683f64091Sbellard     BlockDriver *drv = bs->drv;
368765a9bb25SMarkus Armbruster 
368883f64091Sbellard     if (!drv)
368919cb3738Sbellard         return -ENOMEDIUM;
369051762288SStefan Hajnoczi 
3691b94a2610SKevin Wolf     if (drv->has_variable_length) {
3692b94a2610SKevin Wolf         int ret = refresh_total_sectors(bs, bs->total_sectors);
3693b94a2610SKevin Wolf         if (ret < 0) {
3694b94a2610SKevin Wolf             return ret;
3695fc01f7e7Sbellard         }
369646a4e4e6SStefan Hajnoczi     }
369765a9bb25SMarkus Armbruster     return bs->total_sectors;
369865a9bb25SMarkus Armbruster }
369965a9bb25SMarkus Armbruster 
370065a9bb25SMarkus Armbruster /**
370165a9bb25SMarkus Armbruster  * Return length in bytes on success, -errno on error.
370265a9bb25SMarkus Armbruster  * The length is always a multiple of BDRV_SECTOR_SIZE.
370365a9bb25SMarkus Armbruster  */
370465a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs)
370565a9bb25SMarkus Armbruster {
370665a9bb25SMarkus Armbruster     int64_t ret = bdrv_nb_sectors(bs);
370765a9bb25SMarkus Armbruster 
37084a9c9ea0SFam Zheng     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
370965a9bb25SMarkus Armbruster     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
371046a4e4e6SStefan Hajnoczi }
3711fc01f7e7Sbellard 
371219cb3738Sbellard /* return 0 as number of sectors if no device present or error */
371396b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
3714fc01f7e7Sbellard {
371565a9bb25SMarkus Armbruster     int64_t nb_sectors = bdrv_nb_sectors(bs);
371665a9bb25SMarkus Armbruster 
371765a9bb25SMarkus Armbruster     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
3718fc01f7e7Sbellard }
3719cf98951bSbellard 
372054115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs)
3721985a03b0Sths {
3722985a03b0Sths     return bs->sg;
3723985a03b0Sths }
3724985a03b0Sths 
372554115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs)
3726ea2384d3Sbellard {
3727760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
372854115412SEric Blake         return true;
3729760e0063SKevin Wolf     }
3730ea2384d3Sbellard     return bs->encrypted;
3731ea2384d3Sbellard }
3732ea2384d3Sbellard 
3733f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
3734ea2384d3Sbellard {
3735f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
3736ea2384d3Sbellard }
3737ea2384d3Sbellard 
3738ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b)
3739ada42401SStefan Hajnoczi {
3740ceff5bd7SMax Reitz     return strcmp(*(char *const *)a, *(char *const *)b);
3741ada42401SStefan Hajnoczi }
3742ada42401SStefan Hajnoczi 
3743ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
3744ea2384d3Sbellard                          void *opaque)
3745ea2384d3Sbellard {
3746ea2384d3Sbellard     BlockDriver *drv;
3747e855e4fbSJeff Cody     int count = 0;
3748ada42401SStefan Hajnoczi     int i;
3749e855e4fbSJeff Cody     const char **formats = NULL;
3750ea2384d3Sbellard 
37518a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
3752e855e4fbSJeff Cody         if (drv->format_name) {
3753e855e4fbSJeff Cody             bool found = false;
3754e855e4fbSJeff Cody             int i = count;
3755e855e4fbSJeff Cody             while (formats && i && !found) {
3756e855e4fbSJeff Cody                 found = !strcmp(formats[--i], drv->format_name);
3757e855e4fbSJeff Cody             }
3758e855e4fbSJeff Cody 
3759e855e4fbSJeff Cody             if (!found) {
37605839e53bSMarkus Armbruster                 formats = g_renew(const char *, formats, count + 1);
3761e855e4fbSJeff Cody                 formats[count++] = drv->format_name;
3762ea2384d3Sbellard             }
3763ea2384d3Sbellard         }
3764e855e4fbSJeff Cody     }
3765ada42401SStefan Hajnoczi 
3766eb0df69fSMax Reitz     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
3767eb0df69fSMax Reitz         const char *format_name = block_driver_modules[i].format_name;
3768eb0df69fSMax Reitz 
3769eb0df69fSMax Reitz         if (format_name) {
3770eb0df69fSMax Reitz             bool found = false;
3771eb0df69fSMax Reitz             int j = count;
3772eb0df69fSMax Reitz 
3773eb0df69fSMax Reitz             while (formats && j && !found) {
3774eb0df69fSMax Reitz                 found = !strcmp(formats[--j], format_name);
3775eb0df69fSMax Reitz             }
3776eb0df69fSMax Reitz 
3777eb0df69fSMax Reitz             if (!found) {
3778eb0df69fSMax Reitz                 formats = g_renew(const char *, formats, count + 1);
3779eb0df69fSMax Reitz                 formats[count++] = format_name;
3780eb0df69fSMax Reitz             }
3781eb0df69fSMax Reitz         }
3782eb0df69fSMax Reitz     }
3783eb0df69fSMax Reitz 
3784ada42401SStefan Hajnoczi     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
3785ada42401SStefan Hajnoczi 
3786ada42401SStefan Hajnoczi     for (i = 0; i < count; i++) {
3787ada42401SStefan Hajnoczi         it(opaque, formats[i]);
3788ada42401SStefan Hajnoczi     }
3789ada42401SStefan Hajnoczi 
3790e855e4fbSJeff Cody     g_free(formats);
3791e855e4fbSJeff Cody }
3792ea2384d3Sbellard 
3793dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */
3794dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name)
3795dc364f4cSBenoît Canet {
3796dc364f4cSBenoît Canet     BlockDriverState *bs;
3797dc364f4cSBenoît Canet 
3798dc364f4cSBenoît Canet     assert(node_name);
3799dc364f4cSBenoît Canet 
3800dc364f4cSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3801dc364f4cSBenoît Canet         if (!strcmp(node_name, bs->node_name)) {
3802dc364f4cSBenoît Canet             return bs;
3803dc364f4cSBenoît Canet         }
3804dc364f4cSBenoît Canet     }
3805dc364f4cSBenoît Canet     return NULL;
3806dc364f4cSBenoît Canet }
3807dc364f4cSBenoît Canet 
3808c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */
3809d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
3810c13163fbSBenoît Canet {
3811c13163fbSBenoît Canet     BlockDeviceInfoList *list, *entry;
3812c13163fbSBenoît Canet     BlockDriverState *bs;
3813c13163fbSBenoît Canet 
3814c13163fbSBenoît Canet     list = NULL;
3815c13163fbSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3816c83f9fbaSKevin Wolf         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
3817d5a8ee60SAlberto Garcia         if (!info) {
3818d5a8ee60SAlberto Garcia             qapi_free_BlockDeviceInfoList(list);
3819d5a8ee60SAlberto Garcia             return NULL;
3820d5a8ee60SAlberto Garcia         }
3821c13163fbSBenoît Canet         entry = g_malloc0(sizeof(*entry));
3822d5a8ee60SAlberto Garcia         entry->value = info;
3823c13163fbSBenoît Canet         entry->next = list;
3824c13163fbSBenoît Canet         list = entry;
3825c13163fbSBenoît Canet     }
3826c13163fbSBenoît Canet 
3827c13163fbSBenoît Canet     return list;
3828c13163fbSBenoît Canet }
3829c13163fbSBenoît Canet 
383012d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device,
383112d3ba82SBenoît Canet                                  const char *node_name,
383212d3ba82SBenoît Canet                                  Error **errp)
383312d3ba82SBenoît Canet {
38347f06d47eSMarkus Armbruster     BlockBackend *blk;
38357f06d47eSMarkus Armbruster     BlockDriverState *bs;
383612d3ba82SBenoît Canet 
383712d3ba82SBenoît Canet     if (device) {
38387f06d47eSMarkus Armbruster         blk = blk_by_name(device);
383912d3ba82SBenoît Canet 
38407f06d47eSMarkus Armbruster         if (blk) {
38419f4ed6fbSAlberto Garcia             bs = blk_bs(blk);
38429f4ed6fbSAlberto Garcia             if (!bs) {
38435433c24fSMax Reitz                 error_setg(errp, "Device '%s' has no medium", device);
38445433c24fSMax Reitz             }
38455433c24fSMax Reitz 
38469f4ed6fbSAlberto Garcia             return bs;
384712d3ba82SBenoît Canet         }
3848dd67fa50SBenoît Canet     }
384912d3ba82SBenoît Canet 
3850dd67fa50SBenoît Canet     if (node_name) {
385112d3ba82SBenoît Canet         bs = bdrv_find_node(node_name);
385212d3ba82SBenoît Canet 
3853dd67fa50SBenoît Canet         if (bs) {
3854dd67fa50SBenoît Canet             return bs;
3855dd67fa50SBenoît Canet         }
385612d3ba82SBenoît Canet     }
385712d3ba82SBenoît Canet 
3858dd67fa50SBenoît Canet     error_setg(errp, "Cannot find device=%s nor node_name=%s",
3859dd67fa50SBenoît Canet                      device ? device : "",
3860dd67fa50SBenoît Canet                      node_name ? node_name : "");
3861dd67fa50SBenoît Canet     return NULL;
386212d3ba82SBenoît Canet }
386312d3ba82SBenoît Canet 
38645a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise,
38655a6684d2SJeff Cody  * return false.  If either argument is NULL, return false. */
38665a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
38675a6684d2SJeff Cody {
38685a6684d2SJeff Cody     while (top && top != base) {
3869760e0063SKevin Wolf         top = backing_bs(top);
38705a6684d2SJeff Cody     }
38715a6684d2SJeff Cody 
38725a6684d2SJeff Cody     return top != NULL;
38735a6684d2SJeff Cody }
38745a6684d2SJeff Cody 
387504df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs)
387604df765aSFam Zheng {
387704df765aSFam Zheng     if (!bs) {
387804df765aSFam Zheng         return QTAILQ_FIRST(&graph_bdrv_states);
387904df765aSFam Zheng     }
388004df765aSFam Zheng     return QTAILQ_NEXT(bs, node_list);
388104df765aSFam Zheng }
388204df765aSFam Zheng 
388320a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs)
388420a9e77dSFam Zheng {
388520a9e77dSFam Zheng     return bs->node_name;
388620a9e77dSFam Zheng }
388720a9e77dSFam Zheng 
38881f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs)
38894c265bf9SKevin Wolf {
38904c265bf9SKevin Wolf     BdrvChild *c;
38914c265bf9SKevin Wolf     const char *name;
38924c265bf9SKevin Wolf 
38934c265bf9SKevin Wolf     /* If multiple parents have a name, just pick the first one. */
38944c265bf9SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
38954c265bf9SKevin Wolf         if (c->role->get_name) {
38964c265bf9SKevin Wolf             name = c->role->get_name(c);
38974c265bf9SKevin Wolf             if (name && *name) {
38984c265bf9SKevin Wolf                 return name;
38994c265bf9SKevin Wolf             }
39004c265bf9SKevin Wolf         }
39014c265bf9SKevin Wolf     }
39024c265bf9SKevin Wolf 
39034c265bf9SKevin Wolf     return NULL;
39044c265bf9SKevin Wolf }
39054c265bf9SKevin Wolf 
39067f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */
3907bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs)
3908ea2384d3Sbellard {
39094c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: "";
3910ea2384d3Sbellard }
3911ea2384d3Sbellard 
39129b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device
39139b2aa84fSAlberto Garcia  * name associated. Since node and device names live in the same
39149b2aa84fSAlberto Garcia  * namespace, the result is unambiguous. The exception is if both are
39159b2aa84fSAlberto Garcia  * absent, then this returns an empty (non-null) string. */
39169b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
39179b2aa84fSAlberto Garcia {
39184c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: bs->node_name;
39199b2aa84fSAlberto Garcia }
39209b2aa84fSAlberto Garcia 
3921c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
3922c8433287SMarkus Armbruster {
3923c8433287SMarkus Armbruster     return bs->open_flags;
3924c8433287SMarkus Armbruster }
3925c8433287SMarkus Armbruster 
39263ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs)
39273ac21627SPeter Lieven {
39283ac21627SPeter Lieven     return 1;
39293ac21627SPeter Lieven }
39303ac21627SPeter Lieven 
3931f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
3932f2feebbdSKevin Wolf {
3933d470ad42SMax Reitz     if (!bs->drv) {
3934d470ad42SMax Reitz         return 0;
3935d470ad42SMax Reitz     }
3936f2feebbdSKevin Wolf 
393711212d8fSPaolo Bonzini     /* If BS is a copy on write image, it is initialized to
393811212d8fSPaolo Bonzini        the contents of the base image, which may not be zeroes.  */
3939760e0063SKevin Wolf     if (bs->backing) {
394011212d8fSPaolo Bonzini         return 0;
394111212d8fSPaolo Bonzini     }
3942336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
3943336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
3944f2feebbdSKevin Wolf     }
39455a612c00SManos Pitsidianakis     if (bs->file && bs->drv->is_filter) {
39465a612c00SManos Pitsidianakis         return bdrv_has_zero_init(bs->file->bs);
39475a612c00SManos Pitsidianakis     }
3948f2feebbdSKevin Wolf 
39493ac21627SPeter Lieven     /* safe default */
39503ac21627SPeter Lieven     return 0;
3951f2feebbdSKevin Wolf }
3952f2feebbdSKevin Wolf 
39534ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
39544ce78691SPeter Lieven {
39554ce78691SPeter Lieven     BlockDriverInfo bdi;
39564ce78691SPeter Lieven 
3957760e0063SKevin Wolf     if (bs->backing) {
39584ce78691SPeter Lieven         return false;
39594ce78691SPeter Lieven     }
39604ce78691SPeter Lieven 
39614ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
39624ce78691SPeter Lieven         return bdi.unallocated_blocks_are_zero;
39634ce78691SPeter Lieven     }
39644ce78691SPeter Lieven 
39654ce78691SPeter Lieven     return false;
39664ce78691SPeter Lieven }
39674ce78691SPeter Lieven 
39684ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
39694ce78691SPeter Lieven {
39704ce78691SPeter Lieven     BlockDriverInfo bdi;
39714ce78691SPeter Lieven 
39722f0342efSDenis V. Lunev     if (!(bs->open_flags & BDRV_O_UNMAP)) {
39734ce78691SPeter Lieven         return false;
39744ce78691SPeter Lieven     }
39754ce78691SPeter Lieven 
39764ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
39774ce78691SPeter Lieven         return bdi.can_write_zeroes_with_unmap;
39784ce78691SPeter Lieven     }
39794ce78691SPeter Lieven 
39804ce78691SPeter Lieven     return false;
39814ce78691SPeter Lieven }
39824ce78691SPeter Lieven 
3983045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
3984045df330Saliguori {
3985760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted)
3986045df330Saliguori         return bs->backing_file;
3987045df330Saliguori     else if (bs->encrypted)
3988045df330Saliguori         return bs->filename;
3989045df330Saliguori     else
3990045df330Saliguori         return NULL;
3991045df330Saliguori }
3992045df330Saliguori 
399383f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
399483f64091Sbellard                                char *filename, int filename_size)
399583f64091Sbellard {
399683f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
399783f64091Sbellard }
399883f64091Sbellard 
3999faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4000faea38e7Sbellard {
4001faea38e7Sbellard     BlockDriver *drv = bs->drv;
40025a612c00SManos Pitsidianakis     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
40035a612c00SManos Pitsidianakis     if (!drv) {
400419cb3738Sbellard         return -ENOMEDIUM;
40055a612c00SManos Pitsidianakis     }
40065a612c00SManos Pitsidianakis     if (!drv->bdrv_get_info) {
40075a612c00SManos Pitsidianakis         if (bs->file && drv->is_filter) {
40085a612c00SManos Pitsidianakis             return bdrv_get_info(bs->file->bs, bdi);
40095a612c00SManos Pitsidianakis         }
4010faea38e7Sbellard         return -ENOTSUP;
40115a612c00SManos Pitsidianakis     }
4012faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
4013faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
4014faea38e7Sbellard }
4015faea38e7Sbellard 
4016eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
4017eae041feSMax Reitz {
4018eae041feSMax Reitz     BlockDriver *drv = bs->drv;
4019eae041feSMax Reitz     if (drv && drv->bdrv_get_specific_info) {
4020eae041feSMax Reitz         return drv->bdrv_get_specific_info(bs);
4021eae041feSMax Reitz     }
4022eae041feSMax Reitz     return NULL;
4023eae041feSMax Reitz }
4024eae041feSMax Reitz 
4025a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
40268b9b0cc2SKevin Wolf {
4027bf736fe3SKevin Wolf     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
40288b9b0cc2SKevin Wolf         return;
40298b9b0cc2SKevin Wolf     }
40308b9b0cc2SKevin Wolf 
4031bf736fe3SKevin Wolf     bs->drv->bdrv_debug_event(bs, event);
403241c695c7SKevin Wolf }
40338b9b0cc2SKevin Wolf 
403441c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
403541c695c7SKevin Wolf                           const char *tag)
403641c695c7SKevin Wolf {
403741c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
40389a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
403941c695c7SKevin Wolf     }
404041c695c7SKevin Wolf 
404141c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
404241c695c7SKevin Wolf         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
404341c695c7SKevin Wolf     }
404441c695c7SKevin Wolf 
404541c695c7SKevin Wolf     return -ENOTSUP;
404641c695c7SKevin Wolf }
404741c695c7SKevin Wolf 
40484cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
40494cc70e93SFam Zheng {
40504cc70e93SFam Zheng     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
40519a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
40524cc70e93SFam Zheng     }
40534cc70e93SFam Zheng 
40544cc70e93SFam Zheng     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
40554cc70e93SFam Zheng         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
40564cc70e93SFam Zheng     }
40574cc70e93SFam Zheng 
40584cc70e93SFam Zheng     return -ENOTSUP;
40594cc70e93SFam Zheng }
40604cc70e93SFam Zheng 
406141c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
406241c695c7SKevin Wolf {
4063938789eaSMax Reitz     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
40649a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
406541c695c7SKevin Wolf     }
406641c695c7SKevin Wolf 
406741c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
406841c695c7SKevin Wolf         return bs->drv->bdrv_debug_resume(bs, tag);
406941c695c7SKevin Wolf     }
407041c695c7SKevin Wolf 
407141c695c7SKevin Wolf     return -ENOTSUP;
407241c695c7SKevin Wolf }
407341c695c7SKevin Wolf 
407441c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
407541c695c7SKevin Wolf {
407641c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
40779a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
407841c695c7SKevin Wolf     }
407941c695c7SKevin Wolf 
408041c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
408141c695c7SKevin Wolf         return bs->drv->bdrv_debug_is_suspended(bs, tag);
408241c695c7SKevin Wolf     }
408341c695c7SKevin Wolf 
408441c695c7SKevin Wolf     return false;
40858b9b0cc2SKevin Wolf }
40868b9b0cc2SKevin Wolf 
4087b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol.  If it is
4088b1b1d783SJeff Cody  * relative, it must be relative to the chain.  So, passing in bs->filename
4089b1b1d783SJeff Cody  * from a BDS as backing_file should not be done, as that may be relative to
4090b1b1d783SJeff Cody  * the CWD rather than the chain. */
4091e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4092e8a6bb9cSMarcelo Tosatti         const char *backing_file)
4093e8a6bb9cSMarcelo Tosatti {
4094b1b1d783SJeff Cody     char *filename_full = NULL;
4095b1b1d783SJeff Cody     char *backing_file_full = NULL;
4096b1b1d783SJeff Cody     char *filename_tmp = NULL;
4097b1b1d783SJeff Cody     int is_protocol = 0;
4098b1b1d783SJeff Cody     BlockDriverState *curr_bs = NULL;
4099b1b1d783SJeff Cody     BlockDriverState *retval = NULL;
4100418661e0SJeff Cody     Error *local_error = NULL;
4101b1b1d783SJeff Cody 
4102b1b1d783SJeff Cody     if (!bs || !bs->drv || !backing_file) {
4103e8a6bb9cSMarcelo Tosatti         return NULL;
4104e8a6bb9cSMarcelo Tosatti     }
4105e8a6bb9cSMarcelo Tosatti 
4106b1b1d783SJeff Cody     filename_full     = g_malloc(PATH_MAX);
4107b1b1d783SJeff Cody     backing_file_full = g_malloc(PATH_MAX);
4108b1b1d783SJeff Cody     filename_tmp      = g_malloc(PATH_MAX);
4109b1b1d783SJeff Cody 
4110b1b1d783SJeff Cody     is_protocol = path_has_protocol(backing_file);
4111b1b1d783SJeff Cody 
4112760e0063SKevin Wolf     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
4113b1b1d783SJeff Cody 
4114b1b1d783SJeff Cody         /* If either of the filename paths is actually a protocol, then
4115b1b1d783SJeff Cody          * compare unmodified paths; otherwise make paths relative */
4116b1b1d783SJeff Cody         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4117b1b1d783SJeff Cody             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4118760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
4119b1b1d783SJeff Cody                 break;
4120b1b1d783SJeff Cody             }
4121418661e0SJeff Cody             /* Also check against the full backing filename for the image */
4122418661e0SJeff Cody             bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
4123418661e0SJeff Cody                                            &local_error);
4124418661e0SJeff Cody             if (local_error == NULL) {
4125418661e0SJeff Cody                 if (strcmp(backing_file, backing_file_full) == 0) {
4126418661e0SJeff Cody                     retval = curr_bs->backing->bs;
4127418661e0SJeff Cody                     break;
4128418661e0SJeff Cody                 }
4129418661e0SJeff Cody             } else {
4130418661e0SJeff Cody                 error_free(local_error);
4131418661e0SJeff Cody                 local_error = NULL;
4132418661e0SJeff Cody             }
4133e8a6bb9cSMarcelo Tosatti         } else {
4134b1b1d783SJeff Cody             /* If not an absolute filename path, make it relative to the current
4135b1b1d783SJeff Cody              * image's filename path */
4136b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4137b1b1d783SJeff Cody                          backing_file);
4138b1b1d783SJeff Cody 
4139b1b1d783SJeff Cody             /* We are going to compare absolute pathnames */
4140b1b1d783SJeff Cody             if (!realpath(filename_tmp, filename_full)) {
4141b1b1d783SJeff Cody                 continue;
4142b1b1d783SJeff Cody             }
4143b1b1d783SJeff Cody 
4144b1b1d783SJeff Cody             /* We need to make sure the backing filename we are comparing against
4145b1b1d783SJeff Cody              * is relative to the current image filename (or absolute) */
4146b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4147b1b1d783SJeff Cody                          curr_bs->backing_file);
4148b1b1d783SJeff Cody 
4149b1b1d783SJeff Cody             if (!realpath(filename_tmp, backing_file_full)) {
4150b1b1d783SJeff Cody                 continue;
4151b1b1d783SJeff Cody             }
4152b1b1d783SJeff Cody 
4153b1b1d783SJeff Cody             if (strcmp(backing_file_full, filename_full) == 0) {
4154760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
4155b1b1d783SJeff Cody                 break;
4156b1b1d783SJeff Cody             }
4157e8a6bb9cSMarcelo Tosatti         }
4158e8a6bb9cSMarcelo Tosatti     }
4159e8a6bb9cSMarcelo Tosatti 
4160b1b1d783SJeff Cody     g_free(filename_full);
4161b1b1d783SJeff Cody     g_free(backing_file_full);
4162b1b1d783SJeff Cody     g_free(filename_tmp);
4163b1b1d783SJeff Cody     return retval;
4164e8a6bb9cSMarcelo Tosatti }
4165e8a6bb9cSMarcelo Tosatti 
4166ea2384d3Sbellard void bdrv_init(void)
4167ea2384d3Sbellard {
41685efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
4169ea2384d3Sbellard }
4170ce1a14dcSpbrook 
4171eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
4172eb852011SMarkus Armbruster {
4173eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
4174eb852011SMarkus Armbruster     bdrv_init();
4175eb852011SMarkus Armbruster }
4176eb852011SMarkus Armbruster 
41775a8a30dbSKevin Wolf void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
41780f15423cSAnthony Liguori {
41794417ab7aSKevin Wolf     BdrvChild *child, *parent;
41809c5e6594SKevin Wolf     uint64_t perm, shared_perm;
41815a8a30dbSKevin Wolf     Error *local_err = NULL;
41825a8a30dbSKevin Wolf     int ret;
41835a8a30dbSKevin Wolf 
41843456a8d1SKevin Wolf     if (!bs->drv)  {
41853456a8d1SKevin Wolf         return;
41860f15423cSAnthony Liguori     }
41873456a8d1SKevin Wolf 
418804c01a5cSKevin Wolf     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
41897ea2d269SAlexey Kardashevskiy         return;
41907ea2d269SAlexey Kardashevskiy     }
41917ea2d269SAlexey Kardashevskiy 
419216e977d5SVladimir Sementsov-Ogievskiy     QLIST_FOREACH(child, &bs->children, next) {
419316e977d5SVladimir Sementsov-Ogievskiy         bdrv_invalidate_cache(child->bs, &local_err);
41945a8a30dbSKevin Wolf         if (local_err) {
41955a8a30dbSKevin Wolf             error_propagate(errp, local_err);
41965a8a30dbSKevin Wolf             return;
41973456a8d1SKevin Wolf         }
41980d1c5c91SFam Zheng     }
41990d1c5c91SFam Zheng 
4200dafe0960SKevin Wolf     /*
4201dafe0960SKevin Wolf      * Update permissions, they may differ for inactive nodes.
4202dafe0960SKevin Wolf      *
4203dafe0960SKevin Wolf      * Note that the required permissions of inactive images are always a
4204dafe0960SKevin Wolf      * subset of the permissions required after activating the image. This
4205dafe0960SKevin Wolf      * allows us to just get the permissions upfront without restricting
4206dafe0960SKevin Wolf      * drv->bdrv_invalidate_cache().
4207dafe0960SKevin Wolf      *
4208dafe0960SKevin Wolf      * It also means that in error cases, we don't have to try and revert to
4209dafe0960SKevin Wolf      * the old permissions (which is an operation that could fail, too). We can
4210dafe0960SKevin Wolf      * just keep the extended permissions for the next time that an activation
4211dafe0960SKevin Wolf      * of the image is tried.
4212dafe0960SKevin Wolf      */
421316e977d5SVladimir Sementsov-Ogievskiy     bs->open_flags &= ~BDRV_O_INACTIVE;
4214dafe0960SKevin Wolf     bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4215dafe0960SKevin Wolf     ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
4216dafe0960SKevin Wolf     if (ret < 0) {
4217dafe0960SKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
4218dafe0960SKevin Wolf         error_propagate(errp, local_err);
4219dafe0960SKevin Wolf         return;
4220dafe0960SKevin Wolf     }
4221dafe0960SKevin Wolf     bdrv_set_perm(bs, perm, shared_perm);
4222dafe0960SKevin Wolf 
422316e977d5SVladimir Sementsov-Ogievskiy     if (bs->drv->bdrv_invalidate_cache) {
422416e977d5SVladimir Sementsov-Ogievskiy         bs->drv->bdrv_invalidate_cache(bs, &local_err);
42250d1c5c91SFam Zheng         if (local_err) {
42260d1c5c91SFam Zheng             bs->open_flags |= BDRV_O_INACTIVE;
42270d1c5c91SFam Zheng             error_propagate(errp, local_err);
42280d1c5c91SFam Zheng             return;
42290d1c5c91SFam Zheng         }
42300d1c5c91SFam Zheng     }
42313456a8d1SKevin Wolf 
42325a8a30dbSKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
42335a8a30dbSKevin Wolf     if (ret < 0) {
423404c01a5cSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
42355a8a30dbSKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
42365a8a30dbSKevin Wolf         return;
42375a8a30dbSKevin Wolf     }
42384417ab7aSKevin Wolf 
42394417ab7aSKevin Wolf     QLIST_FOREACH(parent, &bs->parents, next_parent) {
42404417ab7aSKevin Wolf         if (parent->role->activate) {
42414417ab7aSKevin Wolf             parent->role->activate(parent, &local_err);
42424417ab7aSKevin Wolf             if (local_err) {
42434417ab7aSKevin Wolf                 error_propagate(errp, local_err);
42444417ab7aSKevin Wolf                 return;
42454417ab7aSKevin Wolf             }
42464417ab7aSKevin Wolf         }
42474417ab7aSKevin Wolf     }
42480f15423cSAnthony Liguori }
42490f15423cSAnthony Liguori 
42505a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp)
42510f15423cSAnthony Liguori {
42527c8eece4SKevin Wolf     BlockDriverState *bs;
42535a8a30dbSKevin Wolf     Error *local_err = NULL;
425488be7b4bSKevin Wolf     BdrvNextIterator it;
42550f15423cSAnthony Liguori 
425688be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4257ed78cda3SStefan Hajnoczi         AioContext *aio_context = bdrv_get_aio_context(bs);
4258ed78cda3SStefan Hajnoczi 
4259ed78cda3SStefan Hajnoczi         aio_context_acquire(aio_context);
42605a8a30dbSKevin Wolf         bdrv_invalidate_cache(bs, &local_err);
4261ed78cda3SStefan Hajnoczi         aio_context_release(aio_context);
42625a8a30dbSKevin Wolf         if (local_err) {
42635a8a30dbSKevin Wolf             error_propagate(errp, local_err);
42645e003f17SMax Reitz             bdrv_next_cleanup(&it);
42655a8a30dbSKevin Wolf             return;
42665a8a30dbSKevin Wolf         }
42670f15423cSAnthony Liguori     }
42680f15423cSAnthony Liguori }
42690f15423cSAnthony Liguori 
4270aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs,
4271aad0b7a0SFam Zheng                                    bool setting_flag)
427276b1c7feSKevin Wolf {
4273cfa1a572SKevin Wolf     BdrvChild *child, *parent;
427476b1c7feSKevin Wolf     int ret;
427576b1c7feSKevin Wolf 
4276d470ad42SMax Reitz     if (!bs->drv) {
4277d470ad42SMax Reitz         return -ENOMEDIUM;
4278d470ad42SMax Reitz     }
4279d470ad42SMax Reitz 
4280aad0b7a0SFam Zheng     if (!setting_flag && bs->drv->bdrv_inactivate) {
428176b1c7feSKevin Wolf         ret = bs->drv->bdrv_inactivate(bs);
428276b1c7feSKevin Wolf         if (ret < 0) {
428376b1c7feSKevin Wolf             return ret;
428476b1c7feSKevin Wolf         }
428576b1c7feSKevin Wolf     }
428676b1c7feSKevin Wolf 
42877d5b5261SStefan Hajnoczi     if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) {
42889c5e6594SKevin Wolf         uint64_t perm, shared_perm;
42899c5e6594SKevin Wolf 
4290cfa1a572SKevin Wolf         QLIST_FOREACH(parent, &bs->parents, next_parent) {
4291cfa1a572SKevin Wolf             if (parent->role->inactivate) {
4292cfa1a572SKevin Wolf                 ret = parent->role->inactivate(parent);
4293cfa1a572SKevin Wolf                 if (ret < 0) {
4294cfa1a572SKevin Wolf                     return ret;
4295cfa1a572SKevin Wolf                 }
4296cfa1a572SKevin Wolf             }
4297cfa1a572SKevin Wolf         }
42989c5e6594SKevin Wolf 
42997d5b5261SStefan Hajnoczi         bs->open_flags |= BDRV_O_INACTIVE;
43007d5b5261SStefan Hajnoczi 
43019c5e6594SKevin Wolf         /* Update permissions, they may differ for inactive nodes */
43029c5e6594SKevin Wolf         bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
43033121fb45SKevin Wolf         bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
43049c5e6594SKevin Wolf         bdrv_set_perm(bs, perm, shared_perm);
4305aad0b7a0SFam Zheng     }
430638701b6aSKevin Wolf 
430738701b6aSKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
430838701b6aSKevin Wolf         ret = bdrv_inactivate_recurse(child->bs, setting_flag);
430938701b6aSKevin Wolf         if (ret < 0) {
431038701b6aSKevin Wolf             return ret;
431138701b6aSKevin Wolf         }
431238701b6aSKevin Wolf     }
431338701b6aSKevin Wolf 
4314615b5dcfSVladimir Sementsov-Ogievskiy     /* At this point persistent bitmaps should be already stored by the format
4315615b5dcfSVladimir Sementsov-Ogievskiy      * driver */
4316615b5dcfSVladimir Sementsov-Ogievskiy     bdrv_release_persistent_dirty_bitmaps(bs);
4317615b5dcfSVladimir Sementsov-Ogievskiy 
431876b1c7feSKevin Wolf     return 0;
431976b1c7feSKevin Wolf }
432076b1c7feSKevin Wolf 
432176b1c7feSKevin Wolf int bdrv_inactivate_all(void)
432276b1c7feSKevin Wolf {
432379720af6SMax Reitz     BlockDriverState *bs = NULL;
432488be7b4bSKevin Wolf     BdrvNextIterator it;
4325aad0b7a0SFam Zheng     int ret = 0;
4326aad0b7a0SFam Zheng     int pass;
4327bd6458e4SPaolo Bonzini     GSList *aio_ctxs = NULL, *ctx;
432876b1c7feSKevin Wolf 
432988be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4330bd6458e4SPaolo Bonzini         AioContext *aio_context = bdrv_get_aio_context(bs);
4331bd6458e4SPaolo Bonzini 
4332bd6458e4SPaolo Bonzini         if (!g_slist_find(aio_ctxs, aio_context)) {
4333bd6458e4SPaolo Bonzini             aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
4334bd6458e4SPaolo Bonzini             aio_context_acquire(aio_context);
4335bd6458e4SPaolo Bonzini         }
4336aad0b7a0SFam Zheng     }
433776b1c7feSKevin Wolf 
4338aad0b7a0SFam Zheng     /* We do two passes of inactivation. The first pass calls to drivers'
4339aad0b7a0SFam Zheng      * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
4340aad0b7a0SFam Zheng      * the second pass sets the BDRV_O_INACTIVE flag so that no further write
4341aad0b7a0SFam Zheng      * is allowed. */
4342aad0b7a0SFam Zheng     for (pass = 0; pass < 2; pass++) {
434388be7b4bSKevin Wolf         for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4344aad0b7a0SFam Zheng             ret = bdrv_inactivate_recurse(bs, pass);
434576b1c7feSKevin Wolf             if (ret < 0) {
43465e003f17SMax Reitz                 bdrv_next_cleanup(&it);
4347aad0b7a0SFam Zheng                 goto out;
4348aad0b7a0SFam Zheng             }
434976b1c7feSKevin Wolf         }
435076b1c7feSKevin Wolf     }
435176b1c7feSKevin Wolf 
4352aad0b7a0SFam Zheng out:
4353bd6458e4SPaolo Bonzini     for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4354bd6458e4SPaolo Bonzini         AioContext *aio_context = ctx->data;
4355bd6458e4SPaolo Bonzini         aio_context_release(aio_context);
4356aad0b7a0SFam Zheng     }
4357bd6458e4SPaolo Bonzini     g_slist_free(aio_ctxs);
4358aad0b7a0SFam Zheng 
4359aad0b7a0SFam Zheng     return ret;
436076b1c7feSKevin Wolf }
436176b1c7feSKevin Wolf 
4362f9f05dc5SKevin Wolf /**************************************************************/
436319cb3738Sbellard /* removable device support */
436419cb3738Sbellard 
436519cb3738Sbellard /**
436619cb3738Sbellard  * Return TRUE if the media is present
436719cb3738Sbellard  */
4368e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs)
436919cb3738Sbellard {
437019cb3738Sbellard     BlockDriver *drv = bs->drv;
437128d7a789SMax Reitz     BdrvChild *child;
4372a1aff5bfSMarkus Armbruster 
4373e031f750SMax Reitz     if (!drv) {
4374e031f750SMax Reitz         return false;
4375e031f750SMax Reitz     }
437628d7a789SMax Reitz     if (drv->bdrv_is_inserted) {
4377a1aff5bfSMarkus Armbruster         return drv->bdrv_is_inserted(bs);
437819cb3738Sbellard     }
437928d7a789SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
438028d7a789SMax Reitz         if (!bdrv_is_inserted(child->bs)) {
438128d7a789SMax Reitz             return false;
438228d7a789SMax Reitz         }
438328d7a789SMax Reitz     }
438428d7a789SMax Reitz     return true;
438528d7a789SMax Reitz }
438619cb3738Sbellard 
438719cb3738Sbellard /**
438819cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
438919cb3738Sbellard  */
4390f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
439119cb3738Sbellard {
439219cb3738Sbellard     BlockDriver *drv = bs->drv;
439319cb3738Sbellard 
4394822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
4395822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
439619cb3738Sbellard     }
439719cb3738Sbellard }
439819cb3738Sbellard 
439919cb3738Sbellard /**
440019cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
440119cb3738Sbellard  * to eject it manually).
440219cb3738Sbellard  */
4403025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
440419cb3738Sbellard {
440519cb3738Sbellard     BlockDriver *drv = bs->drv;
440619cb3738Sbellard 
4407025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
4408b8c6d095SStefan Hajnoczi 
4409025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
4410025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
441119cb3738Sbellard     }
441219cb3738Sbellard }
4413985a03b0Sths 
44149fcb0251SFam Zheng /* Get a reference to bs */
44159fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs)
44169fcb0251SFam Zheng {
44179fcb0251SFam Zheng     bs->refcnt++;
44189fcb0251SFam Zheng }
44199fcb0251SFam Zheng 
44209fcb0251SFam Zheng /* Release a previously grabbed reference to bs.
44219fcb0251SFam Zheng  * If after releasing, reference count is zero, the BlockDriverState is
44229fcb0251SFam Zheng  * deleted. */
44239fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs)
44249fcb0251SFam Zheng {
44259a4d5ca6SJeff Cody     if (!bs) {
44269a4d5ca6SJeff Cody         return;
44279a4d5ca6SJeff Cody     }
44289fcb0251SFam Zheng     assert(bs->refcnt > 0);
44299fcb0251SFam Zheng     if (--bs->refcnt == 0) {
44309fcb0251SFam Zheng         bdrv_delete(bs);
44319fcb0251SFam Zheng     }
44329fcb0251SFam Zheng }
44339fcb0251SFam Zheng 
4434fbe40ff7SFam Zheng struct BdrvOpBlocker {
4435fbe40ff7SFam Zheng     Error *reason;
4436fbe40ff7SFam Zheng     QLIST_ENTRY(BdrvOpBlocker) list;
4437fbe40ff7SFam Zheng };
4438fbe40ff7SFam Zheng 
4439fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
4440fbe40ff7SFam Zheng {
4441fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
4442fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4443fbe40ff7SFam Zheng     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
4444fbe40ff7SFam Zheng         blocker = QLIST_FIRST(&bs->op_blockers[op]);
444557ef3f12SEduardo Habkost         error_propagate(errp, error_copy(blocker->reason));
4446e43bfd9cSMarkus Armbruster         error_prepend(errp, "Node '%s' is busy: ",
4447e43bfd9cSMarkus Armbruster                       bdrv_get_device_or_node_name(bs));
4448fbe40ff7SFam Zheng         return true;
4449fbe40ff7SFam Zheng     }
4450fbe40ff7SFam Zheng     return false;
4451fbe40ff7SFam Zheng }
4452fbe40ff7SFam Zheng 
4453fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
4454fbe40ff7SFam Zheng {
4455fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
4456fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4457fbe40ff7SFam Zheng 
44585839e53bSMarkus Armbruster     blocker = g_new0(BdrvOpBlocker, 1);
4459fbe40ff7SFam Zheng     blocker->reason = reason;
4460fbe40ff7SFam Zheng     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
4461fbe40ff7SFam Zheng }
4462fbe40ff7SFam Zheng 
4463fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
4464fbe40ff7SFam Zheng {
4465fbe40ff7SFam Zheng     BdrvOpBlocker *blocker, *next;
4466fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4467fbe40ff7SFam Zheng     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
4468fbe40ff7SFam Zheng         if (blocker->reason == reason) {
4469fbe40ff7SFam Zheng             QLIST_REMOVE(blocker, list);
4470fbe40ff7SFam Zheng             g_free(blocker);
4471fbe40ff7SFam Zheng         }
4472fbe40ff7SFam Zheng     }
4473fbe40ff7SFam Zheng }
4474fbe40ff7SFam Zheng 
4475fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
4476fbe40ff7SFam Zheng {
4477fbe40ff7SFam Zheng     int i;
4478fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4479fbe40ff7SFam Zheng         bdrv_op_block(bs, i, reason);
4480fbe40ff7SFam Zheng     }
4481fbe40ff7SFam Zheng }
4482fbe40ff7SFam Zheng 
4483fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
4484fbe40ff7SFam Zheng {
4485fbe40ff7SFam Zheng     int i;
4486fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4487fbe40ff7SFam Zheng         bdrv_op_unblock(bs, i, reason);
4488fbe40ff7SFam Zheng     }
4489fbe40ff7SFam Zheng }
4490fbe40ff7SFam Zheng 
4491fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
4492fbe40ff7SFam Zheng {
4493fbe40ff7SFam Zheng     int i;
4494fbe40ff7SFam Zheng 
4495fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4496fbe40ff7SFam Zheng         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
4497fbe40ff7SFam Zheng             return false;
4498fbe40ff7SFam Zheng         }
4499fbe40ff7SFam Zheng     }
4500fbe40ff7SFam Zheng     return true;
4501fbe40ff7SFam Zheng }
4502fbe40ff7SFam Zheng 
4503d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt,
4504f88e1a42SJes Sorensen                      const char *base_filename, const char *base_fmt,
45059217283dSFam Zheng                      char *options, uint64_t img_size, int flags, bool quiet,
45069217283dSFam Zheng                      Error **errp)
4507f88e1a42SJes Sorensen {
450883d0521aSChunyan Liu     QemuOptsList *create_opts = NULL;
450983d0521aSChunyan Liu     QemuOpts *opts = NULL;
451083d0521aSChunyan Liu     const char *backing_fmt, *backing_file;
451183d0521aSChunyan Liu     int64_t size;
4512f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
4513cc84d90fSMax Reitz     Error *local_err = NULL;
4514f88e1a42SJes Sorensen     int ret = 0;
4515f88e1a42SJes Sorensen 
4516f88e1a42SJes Sorensen     /* Find driver and parse its options */
4517f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
4518f88e1a42SJes Sorensen     if (!drv) {
451971c79813SLuiz Capitulino         error_setg(errp, "Unknown file format '%s'", fmt);
4520d92ada22SLuiz Capitulino         return;
4521f88e1a42SJes Sorensen     }
4522f88e1a42SJes Sorensen 
4523b65a5e12SMax Reitz     proto_drv = bdrv_find_protocol(filename, true, errp);
4524f88e1a42SJes Sorensen     if (!proto_drv) {
4525d92ada22SLuiz Capitulino         return;
4526f88e1a42SJes Sorensen     }
4527f88e1a42SJes Sorensen 
4528c6149724SMax Reitz     if (!drv->create_opts) {
4529c6149724SMax Reitz         error_setg(errp, "Format driver '%s' does not support image creation",
4530c6149724SMax Reitz                    drv->format_name);
4531c6149724SMax Reitz         return;
4532c6149724SMax Reitz     }
4533c6149724SMax Reitz 
4534c6149724SMax Reitz     if (!proto_drv->create_opts) {
4535c6149724SMax Reitz         error_setg(errp, "Protocol driver '%s' does not support image creation",
4536c6149724SMax Reitz                    proto_drv->format_name);
4537c6149724SMax Reitz         return;
4538c6149724SMax Reitz     }
4539c6149724SMax Reitz 
4540c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, drv->create_opts);
4541c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4542f88e1a42SJes Sorensen 
4543f88e1a42SJes Sorensen     /* Create parameter list with default values */
454483d0521aSChunyan Liu     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
454539101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4546f88e1a42SJes Sorensen 
4547f88e1a42SJes Sorensen     /* Parse -o options */
4548f88e1a42SJes Sorensen     if (options) {
4549dc523cd3SMarkus Armbruster         qemu_opts_do_parse(opts, options, NULL, &local_err);
4550dc523cd3SMarkus Armbruster         if (local_err) {
4551dc523cd3SMarkus Armbruster             error_report_err(local_err);
4552dc523cd3SMarkus Armbruster             local_err = NULL;
455383d0521aSChunyan Liu             error_setg(errp, "Invalid options for file format '%s'", fmt);
4554f88e1a42SJes Sorensen             goto out;
4555f88e1a42SJes Sorensen         }
4556f88e1a42SJes Sorensen     }
4557f88e1a42SJes Sorensen 
4558f88e1a42SJes Sorensen     if (base_filename) {
4559f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
45606be4194bSMarkus Armbruster         if (local_err) {
456171c79813SLuiz Capitulino             error_setg(errp, "Backing file not supported for file format '%s'",
456271c79813SLuiz Capitulino                        fmt);
4563f88e1a42SJes Sorensen             goto out;
4564f88e1a42SJes Sorensen         }
4565f88e1a42SJes Sorensen     }
4566f88e1a42SJes Sorensen 
4567f88e1a42SJes Sorensen     if (base_fmt) {
4568f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
45696be4194bSMarkus Armbruster         if (local_err) {
457071c79813SLuiz Capitulino             error_setg(errp, "Backing file format not supported for file "
457171c79813SLuiz Capitulino                              "format '%s'", fmt);
4572f88e1a42SJes Sorensen             goto out;
4573f88e1a42SJes Sorensen         }
4574f88e1a42SJes Sorensen     }
4575f88e1a42SJes Sorensen 
457683d0521aSChunyan Liu     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
457783d0521aSChunyan Liu     if (backing_file) {
457883d0521aSChunyan Liu         if (!strcmp(filename, backing_file)) {
457971c79813SLuiz Capitulino             error_setg(errp, "Error: Trying to create an image with the "
458071c79813SLuiz Capitulino                              "same filename as the backing file");
4581792da93aSJes Sorensen             goto out;
4582792da93aSJes Sorensen         }
4583792da93aSJes Sorensen     }
4584792da93aSJes Sorensen 
458583d0521aSChunyan Liu     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
4586f88e1a42SJes Sorensen 
45876e6e55f5SJohn Snow     /* The size for the image must always be specified, unless we have a backing
45886e6e55f5SJohn Snow      * file and we have not been forbidden from opening it. */
4589a8b42a1cSEric Blake     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
45906e6e55f5SJohn Snow     if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
459166f6b814SMax Reitz         BlockDriverState *bs;
459229168018SMax Reitz         char *full_backing = g_new0(char, PATH_MAX);
459363090dacSPaolo Bonzini         int back_flags;
4594e6641719SMax Reitz         QDict *backing_options = NULL;
459563090dacSPaolo Bonzini 
459629168018SMax Reitz         bdrv_get_full_backing_filename_from_filename(filename, backing_file,
459729168018SMax Reitz                                                      full_backing, PATH_MAX,
459829168018SMax Reitz                                                      &local_err);
459929168018SMax Reitz         if (local_err) {
460029168018SMax Reitz             g_free(full_backing);
460129168018SMax Reitz             goto out;
460229168018SMax Reitz         }
460329168018SMax Reitz 
460463090dacSPaolo Bonzini         /* backing files always opened read-only */
460561de4c68SKevin Wolf         back_flags = flags;
4606bfd18d1eSKevin Wolf         back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4607f88e1a42SJes Sorensen 
4608e6641719SMax Reitz         backing_options = qdict_new();
4609*cc954f01SFam Zheng         if (backing_fmt) {
461046f5ac20SEric Blake             qdict_put_str(backing_options, "driver", backing_fmt);
4611e6641719SMax Reitz         }
4612*cc954f01SFam Zheng         qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
4613e6641719SMax Reitz 
46145b363937SMax Reitz         bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
46155b363937SMax Reitz                        &local_err);
461629168018SMax Reitz         g_free(full_backing);
46176e6e55f5SJohn Snow         if (!bs && size != -1) {
46186e6e55f5SJohn Snow             /* Couldn't open BS, but we have a size, so it's nonfatal */
46196e6e55f5SJohn Snow             warn_reportf_err(local_err,
46206e6e55f5SJohn Snow                             "Could not verify backing image. "
46216e6e55f5SJohn Snow                             "This may become an error in future versions.\n");
46226e6e55f5SJohn Snow             local_err = NULL;
46236e6e55f5SJohn Snow         } else if (!bs) {
46246e6e55f5SJohn Snow             /* Couldn't open bs, do not have size */
46256e6e55f5SJohn Snow             error_append_hint(&local_err,
46266e6e55f5SJohn Snow                               "Could not open backing image to determine size.\n");
4627f88e1a42SJes Sorensen             goto out;
46286e6e55f5SJohn Snow         } else {
46296e6e55f5SJohn Snow             if (size == -1) {
46306e6e55f5SJohn Snow                 /* Opened BS, have no size */
463152bf1e72SMarkus Armbruster                 size = bdrv_getlength(bs);
463252bf1e72SMarkus Armbruster                 if (size < 0) {
463352bf1e72SMarkus Armbruster                     error_setg_errno(errp, -size, "Could not get size of '%s'",
463452bf1e72SMarkus Armbruster                                      backing_file);
463552bf1e72SMarkus Armbruster                     bdrv_unref(bs);
463652bf1e72SMarkus Armbruster                     goto out;
463752bf1e72SMarkus Armbruster                 }
463839101f25SMarkus Armbruster                 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
46396e6e55f5SJohn Snow             }
464066f6b814SMax Reitz             bdrv_unref(bs);
46416e6e55f5SJohn Snow         }
46426e6e55f5SJohn Snow     } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
46436e6e55f5SJohn Snow 
46446e6e55f5SJohn Snow     if (size == -1) {
464571c79813SLuiz Capitulino         error_setg(errp, "Image creation needs a size parameter");
4646f88e1a42SJes Sorensen         goto out;
4647f88e1a42SJes Sorensen     }
4648f88e1a42SJes Sorensen 
4649f382d43aSMiroslav Rezanina     if (!quiet) {
4650f88e1a42SJes Sorensen         printf("Formatting '%s', fmt=%s ", filename, fmt);
465143c5d8f8SFam Zheng         qemu_opts_print(opts, " ");
4652f88e1a42SJes Sorensen         puts("");
4653f382d43aSMiroslav Rezanina     }
465483d0521aSChunyan Liu 
4655c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
465683d0521aSChunyan Liu 
4657cc84d90fSMax Reitz     if (ret == -EFBIG) {
4658cc84d90fSMax Reitz         /* This is generally a better message than whatever the driver would
4659cc84d90fSMax Reitz          * deliver (especially because of the cluster_size_hint), since that
4660cc84d90fSMax Reitz          * is most probably not much different from "image too large". */
4661f3f4d2c0SKevin Wolf         const char *cluster_size_hint = "";
466283d0521aSChunyan Liu         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
4663f3f4d2c0SKevin Wolf             cluster_size_hint = " (try using a larger cluster size)";
4664f3f4d2c0SKevin Wolf         }
4665cc84d90fSMax Reitz         error_setg(errp, "The image size is too large for file format '%s'"
4666cc84d90fSMax Reitz                    "%s", fmt, cluster_size_hint);
4667cc84d90fSMax Reitz         error_free(local_err);
4668cc84d90fSMax Reitz         local_err = NULL;
4669f88e1a42SJes Sorensen     }
4670f88e1a42SJes Sorensen 
4671f88e1a42SJes Sorensen out:
467283d0521aSChunyan Liu     qemu_opts_del(opts);
467383d0521aSChunyan Liu     qemu_opts_free(create_opts);
4674cc84d90fSMax Reitz     error_propagate(errp, local_err);
4675cc84d90fSMax Reitz }
467685d126f3SStefan Hajnoczi 
467785d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs)
467885d126f3SStefan Hajnoczi {
4679dcd04228SStefan Hajnoczi     return bs->aio_context;
4680dcd04228SStefan Hajnoczi }
4681dcd04228SStefan Hajnoczi 
4682052a7572SFam Zheng void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
4683052a7572SFam Zheng {
4684052a7572SFam Zheng     aio_co_enter(bdrv_get_aio_context(bs), co);
4685052a7572SFam Zheng }
4686052a7572SFam Zheng 
4687e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
4688e8a095daSStefan Hajnoczi {
4689e8a095daSStefan Hajnoczi     QLIST_REMOVE(ban, list);
4690e8a095daSStefan Hajnoczi     g_free(ban);
4691e8a095daSStefan Hajnoczi }
4692e8a095daSStefan Hajnoczi 
4693dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs)
4694dcd04228SStefan Hajnoczi {
4695e8a095daSStefan Hajnoczi     BdrvAioNotifier *baf, *baf_tmp;
4696b97511c7SMax Reitz     BdrvChild *child;
469733384421SMax Reitz 
4698dcd04228SStefan Hajnoczi     if (!bs->drv) {
4699dcd04228SStefan Hajnoczi         return;
4700dcd04228SStefan Hajnoczi     }
4701dcd04228SStefan Hajnoczi 
4702e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
4703e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
4704e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
4705e8a095daSStefan Hajnoczi         if (baf->deleted) {
4706e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(baf);
4707e8a095daSStefan Hajnoczi         } else {
470833384421SMax Reitz             baf->detach_aio_context(baf->opaque);
470933384421SMax Reitz         }
4710e8a095daSStefan Hajnoczi     }
4711e8a095daSStefan Hajnoczi     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
4712e8a095daSStefan Hajnoczi      * remove remaining aio notifiers if we aren't called again.
4713e8a095daSStefan Hajnoczi      */
4714e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
471533384421SMax Reitz 
4716dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_detach_aio_context) {
4717dcd04228SStefan Hajnoczi         bs->drv->bdrv_detach_aio_context(bs);
4718dcd04228SStefan Hajnoczi     }
4719b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
4720b97511c7SMax Reitz         bdrv_detach_aio_context(child->bs);
4721dcd04228SStefan Hajnoczi     }
4722dcd04228SStefan Hajnoczi 
4723dcd04228SStefan Hajnoczi     bs->aio_context = NULL;
4724dcd04228SStefan Hajnoczi }
4725dcd04228SStefan Hajnoczi 
4726dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs,
4727dcd04228SStefan Hajnoczi                              AioContext *new_context)
4728dcd04228SStefan Hajnoczi {
4729e8a095daSStefan Hajnoczi     BdrvAioNotifier *ban, *ban_tmp;
4730b97511c7SMax Reitz     BdrvChild *child;
473133384421SMax Reitz 
4732dcd04228SStefan Hajnoczi     if (!bs->drv) {
4733dcd04228SStefan Hajnoczi         return;
4734dcd04228SStefan Hajnoczi     }
4735dcd04228SStefan Hajnoczi 
4736dcd04228SStefan Hajnoczi     bs->aio_context = new_context;
4737dcd04228SStefan Hajnoczi 
4738b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
4739b97511c7SMax Reitz         bdrv_attach_aio_context(child->bs, new_context);
4740dcd04228SStefan Hajnoczi     }
4741dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_attach_aio_context) {
4742dcd04228SStefan Hajnoczi         bs->drv->bdrv_attach_aio_context(bs, new_context);
4743dcd04228SStefan Hajnoczi     }
474433384421SMax Reitz 
4745e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
4746e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
4747e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
4748e8a095daSStefan Hajnoczi         if (ban->deleted) {
4749e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(ban);
4750e8a095daSStefan Hajnoczi         } else {
475133384421SMax Reitz             ban->attached_aio_context(new_context, ban->opaque);
475233384421SMax Reitz         }
4753dcd04228SStefan Hajnoczi     }
4754e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
4755e8a095daSStefan Hajnoczi }
4756dcd04228SStefan Hajnoczi 
4757dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
4758dcd04228SStefan Hajnoczi {
4759aabf5910SFam Zheng     AioContext *ctx = bdrv_get_aio_context(bs);
4760c2b6428dSPaolo Bonzini 
4761aabf5910SFam Zheng     aio_disable_external(ctx);
4762aabf5910SFam Zheng     bdrv_parent_drained_begin(bs);
476353ec73e2SFam Zheng     bdrv_drain(bs); /* ensure there are no in-flight requests */
4764dcd04228SStefan Hajnoczi 
4765c2b6428dSPaolo Bonzini     while (aio_poll(ctx, false)) {
4766c2b6428dSPaolo Bonzini         /* wait for all bottom halves to execute */
4767c2b6428dSPaolo Bonzini     }
4768c2b6428dSPaolo Bonzini 
4769dcd04228SStefan Hajnoczi     bdrv_detach_aio_context(bs);
4770dcd04228SStefan Hajnoczi 
4771dcd04228SStefan Hajnoczi     /* This function executes in the old AioContext so acquire the new one in
4772dcd04228SStefan Hajnoczi      * case it runs in a different thread.
4773dcd04228SStefan Hajnoczi      */
4774dcd04228SStefan Hajnoczi     aio_context_acquire(new_context);
4775dcd04228SStefan Hajnoczi     bdrv_attach_aio_context(bs, new_context);
4776aabf5910SFam Zheng     bdrv_parent_drained_end(bs);
4777aabf5910SFam Zheng     aio_enable_external(ctx);
4778dcd04228SStefan Hajnoczi     aio_context_release(new_context);
477985d126f3SStefan Hajnoczi }
4780d616b224SStefan Hajnoczi 
478133384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs,
478233384421SMax Reitz         void (*attached_aio_context)(AioContext *new_context, void *opaque),
478333384421SMax Reitz         void (*detach_aio_context)(void *opaque), void *opaque)
478433384421SMax Reitz {
478533384421SMax Reitz     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
478633384421SMax Reitz     *ban = (BdrvAioNotifier){
478733384421SMax Reitz         .attached_aio_context = attached_aio_context,
478833384421SMax Reitz         .detach_aio_context   = detach_aio_context,
478933384421SMax Reitz         .opaque               = opaque
479033384421SMax Reitz     };
479133384421SMax Reitz 
479233384421SMax Reitz     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
479333384421SMax Reitz }
479433384421SMax Reitz 
479533384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
479633384421SMax Reitz                                       void (*attached_aio_context)(AioContext *,
479733384421SMax Reitz                                                                    void *),
479833384421SMax Reitz                                       void (*detach_aio_context)(void *),
479933384421SMax Reitz                                       void *opaque)
480033384421SMax Reitz {
480133384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
480233384421SMax Reitz 
480333384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
480433384421SMax Reitz         if (ban->attached_aio_context == attached_aio_context &&
480533384421SMax Reitz             ban->detach_aio_context   == detach_aio_context   &&
4806e8a095daSStefan Hajnoczi             ban->opaque               == opaque               &&
4807e8a095daSStefan Hajnoczi             ban->deleted              == false)
480833384421SMax Reitz         {
4809e8a095daSStefan Hajnoczi             if (bs->walking_aio_notifiers) {
4810e8a095daSStefan Hajnoczi                 ban->deleted = true;
4811e8a095daSStefan Hajnoczi             } else {
4812e8a095daSStefan Hajnoczi                 bdrv_do_remove_aio_context_notifier(ban);
4813e8a095daSStefan Hajnoczi             }
481433384421SMax Reitz             return;
481533384421SMax Reitz         }
481633384421SMax Reitz     }
481733384421SMax Reitz 
481833384421SMax Reitz     abort();
481933384421SMax Reitz }
482033384421SMax Reitz 
482177485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
48228b13976dSMax Reitz                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque)
48236f176b48SMax Reitz {
4824d470ad42SMax Reitz     if (!bs->drv) {
4825d470ad42SMax Reitz         return -ENOMEDIUM;
4826d470ad42SMax Reitz     }
4827c282e1fdSChunyan Liu     if (!bs->drv->bdrv_amend_options) {
48286f176b48SMax Reitz         return -ENOTSUP;
48296f176b48SMax Reitz     }
48308b13976dSMax Reitz     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque);
48316f176b48SMax Reitz }
4832f6186f49SBenoît Canet 
4833b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method
4834b5042a36SBenoît Canet  * of block filter and by bdrv_is_first_non_filter.
4835b5042a36SBenoît Canet  * It is used to test if the given bs is the candidate or recurse more in the
4836b5042a36SBenoît Canet  * node graph.
4837212a5a8fSBenoît Canet  */
4838212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
4839212a5a8fSBenoît Canet                                       BlockDriverState *candidate)
4840f6186f49SBenoît Canet {
4841b5042a36SBenoît Canet     /* return false if basic checks fails */
4842b5042a36SBenoît Canet     if (!bs || !bs->drv) {
4843b5042a36SBenoît Canet         return false;
4844b5042a36SBenoît Canet     }
4845b5042a36SBenoît Canet 
4846b5042a36SBenoît Canet     /* the code reached a non block filter driver -> check if the bs is
4847b5042a36SBenoît Canet      * the same as the candidate. It's the recursion termination condition.
4848b5042a36SBenoît Canet      */
4849b5042a36SBenoît Canet     if (!bs->drv->is_filter) {
4850b5042a36SBenoît Canet         return bs == candidate;
4851b5042a36SBenoît Canet     }
4852b5042a36SBenoît Canet     /* Down this path the driver is a block filter driver */
4853b5042a36SBenoît Canet 
4854b5042a36SBenoît Canet     /* If the block filter recursion method is defined use it to recurse down
4855b5042a36SBenoît Canet      * the node graph.
4856b5042a36SBenoît Canet      */
4857b5042a36SBenoît Canet     if (bs->drv->bdrv_recurse_is_first_non_filter) {
4858212a5a8fSBenoît Canet         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
4859212a5a8fSBenoît Canet     }
4860212a5a8fSBenoît Canet 
4861b5042a36SBenoît Canet     /* the driver is a block filter but don't allow to recurse -> return false
4862b5042a36SBenoît Canet      */
4863b5042a36SBenoît Canet     return false;
4864212a5a8fSBenoît Canet }
4865212a5a8fSBenoît Canet 
4866212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's
4867212a5a8fSBenoît Canet  * bs chain. Since we don't have pointers to parents it explore all bs chains
4868212a5a8fSBenoît Canet  * from the top. Some filters can choose not to pass down the recursion.
4869212a5a8fSBenoît Canet  */
4870212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate)
4871212a5a8fSBenoît Canet {
48727c8eece4SKevin Wolf     BlockDriverState *bs;
487388be7b4bSKevin Wolf     BdrvNextIterator it;
4874212a5a8fSBenoît Canet 
4875212a5a8fSBenoît Canet     /* walk down the bs forest recursively */
487688be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4877212a5a8fSBenoît Canet         bool perm;
4878212a5a8fSBenoît Canet 
4879b5042a36SBenoît Canet         /* try to recurse in this top level bs */
4880e6dc8a1fSKevin Wolf         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
4881212a5a8fSBenoît Canet 
4882212a5a8fSBenoît Canet         /* candidate is the first non filter */
4883212a5a8fSBenoît Canet         if (perm) {
48845e003f17SMax Reitz             bdrv_next_cleanup(&it);
4885212a5a8fSBenoît Canet             return true;
4886212a5a8fSBenoît Canet         }
4887212a5a8fSBenoît Canet     }
4888212a5a8fSBenoît Canet 
4889212a5a8fSBenoît Canet     return false;
4890f6186f49SBenoît Canet }
489109158f00SBenoît Canet 
4892e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
4893e12f3784SWen Congyang                                         const char *node_name, Error **errp)
489409158f00SBenoît Canet {
489509158f00SBenoît Canet     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
48965a7e7a0bSStefan Hajnoczi     AioContext *aio_context;
48975a7e7a0bSStefan Hajnoczi 
489809158f00SBenoît Canet     if (!to_replace_bs) {
489909158f00SBenoît Canet         error_setg(errp, "Node name '%s' not found", node_name);
490009158f00SBenoît Canet         return NULL;
490109158f00SBenoît Canet     }
490209158f00SBenoît Canet 
49035a7e7a0bSStefan Hajnoczi     aio_context = bdrv_get_aio_context(to_replace_bs);
49045a7e7a0bSStefan Hajnoczi     aio_context_acquire(aio_context);
49055a7e7a0bSStefan Hajnoczi 
490609158f00SBenoît Canet     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
49075a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
49085a7e7a0bSStefan Hajnoczi         goto out;
490909158f00SBenoît Canet     }
491009158f00SBenoît Canet 
491109158f00SBenoît Canet     /* We don't want arbitrary node of the BDS chain to be replaced only the top
491209158f00SBenoît Canet      * most non filter in order to prevent data corruption.
491309158f00SBenoît Canet      * Another benefit is that this tests exclude backing files which are
491409158f00SBenoît Canet      * blocked by the backing blockers.
491509158f00SBenoît Canet      */
4916e12f3784SWen Congyang     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
491709158f00SBenoît Canet         error_setg(errp, "Only top most non filter can be replaced");
49185a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
49195a7e7a0bSStefan Hajnoczi         goto out;
492009158f00SBenoît Canet     }
492109158f00SBenoît Canet 
49225a7e7a0bSStefan Hajnoczi out:
49235a7e7a0bSStefan Hajnoczi     aio_context_release(aio_context);
492409158f00SBenoît Canet     return to_replace_bs;
492509158f00SBenoît Canet }
4926448ad91dSMing Lei 
492791af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs)
492891af7014SMax Reitz {
492991af7014SMax Reitz     const QDictEntry *entry;
49309e700c1aSKevin Wolf     QemuOptDesc *desc;
4931260fecf1SKevin Wolf     BdrvChild *child;
493291af7014SMax Reitz     bool found_any = false;
4933260fecf1SKevin Wolf     const char *p;
493491af7014SMax Reitz 
493591af7014SMax Reitz     for (entry = qdict_first(bs->options); entry;
493691af7014SMax Reitz          entry = qdict_next(bs->options, entry))
493791af7014SMax Reitz     {
4938260fecf1SKevin Wolf         /* Exclude options for children */
4939260fecf1SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
4940260fecf1SKevin Wolf             if (strstart(qdict_entry_key(entry), child->name, &p)
4941260fecf1SKevin Wolf                 && (!*p || *p == '.'))
4942260fecf1SKevin Wolf             {
4943260fecf1SKevin Wolf                 break;
4944260fecf1SKevin Wolf             }
4945260fecf1SKevin Wolf         }
4946260fecf1SKevin Wolf         if (child) {
49479e700c1aSKevin Wolf             continue;
49489e700c1aSKevin Wolf         }
49499e700c1aSKevin Wolf 
49509e700c1aSKevin Wolf         /* And exclude all non-driver-specific options */
49519e700c1aSKevin Wolf         for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
49529e700c1aSKevin Wolf             if (!strcmp(qdict_entry_key(entry), desc->name)) {
49539e700c1aSKevin Wolf                 break;
49549e700c1aSKevin Wolf             }
49559e700c1aSKevin Wolf         }
49569e700c1aSKevin Wolf         if (desc->name) {
49579e700c1aSKevin Wolf             continue;
49589e700c1aSKevin Wolf         }
49599e700c1aSKevin Wolf 
496091af7014SMax Reitz         qobject_incref(qdict_entry_value(entry));
496191af7014SMax Reitz         qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry));
496291af7014SMax Reitz         found_any = true;
496391af7014SMax Reitz     }
496491af7014SMax Reitz 
496591af7014SMax Reitz     return found_any;
496691af7014SMax Reitz }
496791af7014SMax Reitz 
496891af7014SMax Reitz /* Updates the following BDS fields:
496991af7014SMax Reitz  *  - exact_filename: A filename which may be used for opening a block device
497091af7014SMax Reitz  *                    which (mostly) equals the given BDS (even without any
497191af7014SMax Reitz  *                    other options; so reading and writing must return the same
497291af7014SMax Reitz  *                    results, but caching etc. may be different)
497391af7014SMax Reitz  *  - full_open_options: Options which, when given when opening a block device
497491af7014SMax Reitz  *                       (without a filename), result in a BDS (mostly)
497591af7014SMax Reitz  *                       equalling the given one
497691af7014SMax Reitz  *  - filename: If exact_filename is set, it is copied here. Otherwise,
497791af7014SMax Reitz  *              full_open_options is converted to a JSON object, prefixed with
497891af7014SMax Reitz  *              "json:" (for use through the JSON pseudo protocol) and put here.
497991af7014SMax Reitz  */
498091af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs)
498191af7014SMax Reitz {
498291af7014SMax Reitz     BlockDriver *drv = bs->drv;
498391af7014SMax Reitz     QDict *opts;
498491af7014SMax Reitz 
498591af7014SMax Reitz     if (!drv) {
498691af7014SMax Reitz         return;
498791af7014SMax Reitz     }
498891af7014SMax Reitz 
498991af7014SMax Reitz     /* This BDS's file name will most probably depend on its file's name, so
499091af7014SMax Reitz      * refresh that first */
499191af7014SMax Reitz     if (bs->file) {
49929a4f4c31SKevin Wolf         bdrv_refresh_filename(bs->file->bs);
499391af7014SMax Reitz     }
499491af7014SMax Reitz 
499591af7014SMax Reitz     if (drv->bdrv_refresh_filename) {
499691af7014SMax Reitz         /* Obsolete information is of no use here, so drop the old file name
499791af7014SMax Reitz          * information before refreshing it */
499891af7014SMax Reitz         bs->exact_filename[0] = '\0';
499991af7014SMax Reitz         if (bs->full_open_options) {
500091af7014SMax Reitz             QDECREF(bs->full_open_options);
500191af7014SMax Reitz             bs->full_open_options = NULL;
500291af7014SMax Reitz         }
500391af7014SMax Reitz 
50044cdd01d3SKevin Wolf         opts = qdict_new();
50054cdd01d3SKevin Wolf         append_open_options(opts, bs);
50064cdd01d3SKevin Wolf         drv->bdrv_refresh_filename(bs, opts);
50074cdd01d3SKevin Wolf         QDECREF(opts);
500891af7014SMax Reitz     } else if (bs->file) {
500991af7014SMax Reitz         /* Try to reconstruct valid information from the underlying file */
501091af7014SMax Reitz         bool has_open_options;
501191af7014SMax Reitz 
501291af7014SMax Reitz         bs->exact_filename[0] = '\0';
501391af7014SMax Reitz         if (bs->full_open_options) {
501491af7014SMax Reitz             QDECREF(bs->full_open_options);
501591af7014SMax Reitz             bs->full_open_options = NULL;
501691af7014SMax Reitz         }
501791af7014SMax Reitz 
501891af7014SMax Reitz         opts = qdict_new();
501991af7014SMax Reitz         has_open_options = append_open_options(opts, bs);
502091af7014SMax Reitz 
502191af7014SMax Reitz         /* If no specific options have been given for this BDS, the filename of
502291af7014SMax Reitz          * the underlying file should suffice for this one as well */
50239a4f4c31SKevin Wolf         if (bs->file->bs->exact_filename[0] && !has_open_options) {
50249a4f4c31SKevin Wolf             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
502591af7014SMax Reitz         }
502691af7014SMax Reitz         /* Reconstructing the full options QDict is simple for most format block
502791af7014SMax Reitz          * drivers, as long as the full options are known for the underlying
502891af7014SMax Reitz          * file BDS. The full options QDict of that file BDS should somehow
502991af7014SMax Reitz          * contain a representation of the filename, therefore the following
503091af7014SMax Reitz          * suffices without querying the (exact_)filename of this BDS. */
50319a4f4c31SKevin Wolf         if (bs->file->bs->full_open_options) {
503246f5ac20SEric Blake             qdict_put_str(opts, "driver", drv->format_name);
50339a4f4c31SKevin Wolf             QINCREF(bs->file->bs->full_open_options);
5034de6e7951SEric Blake             qdict_put(opts, "file", bs->file->bs->full_open_options);
503591af7014SMax Reitz 
503691af7014SMax Reitz             bs->full_open_options = opts;
503791af7014SMax Reitz         } else {
503891af7014SMax Reitz             QDECREF(opts);
503991af7014SMax Reitz         }
504091af7014SMax Reitz     } else if (!bs->full_open_options && qdict_size(bs->options)) {
504191af7014SMax Reitz         /* There is no underlying file BDS (at least referenced by BDS.file),
504291af7014SMax Reitz          * so the full options QDict should be equal to the options given
504391af7014SMax Reitz          * specifically for this block device when it was opened (plus the
504491af7014SMax Reitz          * driver specification).
504591af7014SMax Reitz          * Because those options don't change, there is no need to update
504691af7014SMax Reitz          * full_open_options when it's already set. */
504791af7014SMax Reitz 
504891af7014SMax Reitz         opts = qdict_new();
504991af7014SMax Reitz         append_open_options(opts, bs);
505046f5ac20SEric Blake         qdict_put_str(opts, "driver", drv->format_name);
505191af7014SMax Reitz 
505291af7014SMax Reitz         if (bs->exact_filename[0]) {
505391af7014SMax Reitz             /* This may not work for all block protocol drivers (some may
505491af7014SMax Reitz              * require this filename to be parsed), but we have to find some
505591af7014SMax Reitz              * default solution here, so just include it. If some block driver
505691af7014SMax Reitz              * does not support pure options without any filename at all or
505791af7014SMax Reitz              * needs some special format of the options QDict, it needs to
505891af7014SMax Reitz              * implement the driver-specific bdrv_refresh_filename() function.
505991af7014SMax Reitz              */
506046f5ac20SEric Blake             qdict_put_str(opts, "filename", bs->exact_filename);
506191af7014SMax Reitz         }
506291af7014SMax Reitz 
506391af7014SMax Reitz         bs->full_open_options = opts;
506491af7014SMax Reitz     }
506591af7014SMax Reitz 
506691af7014SMax Reitz     if (bs->exact_filename[0]) {
506791af7014SMax Reitz         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
506891af7014SMax Reitz     } else if (bs->full_open_options) {
506991af7014SMax Reitz         QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
507091af7014SMax Reitz         snprintf(bs->filename, sizeof(bs->filename), "json:%s",
507191af7014SMax Reitz                  qstring_get_str(json));
507291af7014SMax Reitz         QDECREF(json);
507391af7014SMax Reitz     }
507491af7014SMax Reitz }
5075e06018adSWen Congyang 
5076e06018adSWen Congyang /*
5077e06018adSWen Congyang  * Hot add/remove a BDS's child. So the user can take a child offline when
5078e06018adSWen Congyang  * it is broken and take a new child online
5079e06018adSWen Congyang  */
5080e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5081e06018adSWen Congyang                     Error **errp)
5082e06018adSWen Congyang {
5083e06018adSWen Congyang 
5084e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
5085e06018adSWen Congyang         error_setg(errp, "The node %s does not support adding a child",
5086e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
5087e06018adSWen Congyang         return;
5088e06018adSWen Congyang     }
5089e06018adSWen Congyang 
5090e06018adSWen Congyang     if (!QLIST_EMPTY(&child_bs->parents)) {
5091e06018adSWen Congyang         error_setg(errp, "The node %s already has a parent",
5092e06018adSWen Congyang                    child_bs->node_name);
5093e06018adSWen Congyang         return;
5094e06018adSWen Congyang     }
5095e06018adSWen Congyang 
5096e06018adSWen Congyang     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5097e06018adSWen Congyang }
5098e06018adSWen Congyang 
5099e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5100e06018adSWen Congyang {
5101e06018adSWen Congyang     BdrvChild *tmp;
5102e06018adSWen Congyang 
5103e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5104e06018adSWen Congyang         error_setg(errp, "The node %s does not support removing a child",
5105e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
5106e06018adSWen Congyang         return;
5107e06018adSWen Congyang     }
5108e06018adSWen Congyang 
5109e06018adSWen Congyang     QLIST_FOREACH(tmp, &parent_bs->children, next) {
5110e06018adSWen Congyang         if (tmp == child) {
5111e06018adSWen Congyang             break;
5112e06018adSWen Congyang         }
5113e06018adSWen Congyang     }
5114e06018adSWen Congyang 
5115e06018adSWen Congyang     if (!tmp) {
5116e06018adSWen Congyang         error_setg(errp, "The node %s does not have a child named %s",
5117e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs),
5118e06018adSWen Congyang                    bdrv_get_device_or_node_name(child->bs));
5119e06018adSWen Congyang         return;
5120e06018adSWen Congyang     }
5121e06018adSWen Congyang 
5122e06018adSWen Congyang     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5123e06018adSWen Congyang }
512467b792f5SVladimir Sementsov-Ogievskiy 
512567b792f5SVladimir Sementsov-Ogievskiy bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
512667b792f5SVladimir Sementsov-Ogievskiy                                      uint32_t granularity, Error **errp)
512767b792f5SVladimir Sementsov-Ogievskiy {
512867b792f5SVladimir Sementsov-Ogievskiy     BlockDriver *drv = bs->drv;
512967b792f5SVladimir Sementsov-Ogievskiy 
513067b792f5SVladimir Sementsov-Ogievskiy     if (!drv) {
513167b792f5SVladimir Sementsov-Ogievskiy         error_setg_errno(errp, ENOMEDIUM,
513267b792f5SVladimir Sementsov-Ogievskiy                          "Can't store persistent bitmaps to %s",
513367b792f5SVladimir Sementsov-Ogievskiy                          bdrv_get_device_or_node_name(bs));
513467b792f5SVladimir Sementsov-Ogievskiy         return false;
513567b792f5SVladimir Sementsov-Ogievskiy     }
513667b792f5SVladimir Sementsov-Ogievskiy 
513767b792f5SVladimir Sementsov-Ogievskiy     if (!drv->bdrv_can_store_new_dirty_bitmap) {
513867b792f5SVladimir Sementsov-Ogievskiy         error_setg_errno(errp, ENOTSUP,
513967b792f5SVladimir Sementsov-Ogievskiy                          "Can't store persistent bitmaps to %s",
514067b792f5SVladimir Sementsov-Ogievskiy                          bdrv_get_device_or_node_name(bs));
514167b792f5SVladimir Sementsov-Ogievskiy         return false;
514267b792f5SVladimir Sementsov-Ogievskiy     }
514367b792f5SVladimir Sementsov-Ogievskiy 
514467b792f5SVladimir Sementsov-Ogievskiy     return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);
514567b792f5SVladimir Sementsov-Ogievskiy }
5146