xref: /openbmc/qemu/block.c (revision 0f12264e7a41458179ad10276a7c33c72024861a)
1fc01f7e7Sbellard /*
2fc01f7e7Sbellard  * QEMU System Emulator block driver
3fc01f7e7Sbellard  *
4fc01f7e7Sbellard  * Copyright (c) 2003 Fabrice Bellard
5fc01f7e7Sbellard  *
6fc01f7e7Sbellard  * Permission is hereby granted, free of charge, to any person obtaining a copy
7fc01f7e7Sbellard  * of this software and associated documentation files (the "Software"), to deal
8fc01f7e7Sbellard  * in the Software without restriction, including without limitation the rights
9fc01f7e7Sbellard  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10fc01f7e7Sbellard  * copies of the Software, and to permit persons to whom the Software is
11fc01f7e7Sbellard  * furnished to do so, subject to the following conditions:
12fc01f7e7Sbellard  *
13fc01f7e7Sbellard  * The above copyright notice and this permission notice shall be included in
14fc01f7e7Sbellard  * all copies or substantial portions of the Software.
15fc01f7e7Sbellard  *
16fc01f7e7Sbellard  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17fc01f7e7Sbellard  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18fc01f7e7Sbellard  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19fc01f7e7Sbellard  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20fc01f7e7Sbellard  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21fc01f7e7Sbellard  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22fc01f7e7Sbellard  * THE SOFTWARE.
23fc01f7e7Sbellard  */
24e688df6bSMarkus Armbruster 
25d38ea87aSPeter Maydell #include "qemu/osdep.h"
260ab8ed18SDaniel P. Berrange #include "block/trace.h"
27737e150eSPaolo Bonzini #include "block/block_int.h"
28737e150eSPaolo Bonzini #include "block/blockjob.h"
29cd7fca95SKevin Wolf #include "block/nbd.h"
30609f45eaSMax Reitz #include "block/qdict.h"
31d49b6836SMarkus Armbruster #include "qemu/error-report.h"
3288d88798SMarc Mari #include "module_block.h"
331de7afc9SPaolo Bonzini #include "qemu/module.h"
34e688df6bSMarkus Armbruster #include "qapi/error.h"
35452fcdbcSMarkus Armbruster #include "qapi/qmp/qdict.h"
367b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h"
37e59a0cf1SMax Reitz #include "qapi/qmp/qnull.h"
38fc81fa1eSMarkus Armbruster #include "qapi/qmp/qstring.h"
39e1d74bc6SKevin Wolf #include "qapi/qobject-output-visitor.h"
40e1d74bc6SKevin Wolf #include "qapi/qapi-visit-block-core.h"
41bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h"
429c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
431de7afc9SPaolo Bonzini #include "qemu/notify.h"
44922a01a0SMarkus Armbruster #include "qemu/option.h"
4510817bf0SDaniel P. Berrange #include "qemu/coroutine.h"
46c13163fbSBenoît Canet #include "block/qapi.h"
471de7afc9SPaolo Bonzini #include "qemu/timer.h"
48f348b6d1SVeronia Bahaa #include "qemu/cutils.h"
49f348b6d1SVeronia Bahaa #include "qemu/id.h"
50fc01f7e7Sbellard 
5171e72a19SJuan Quintela #ifdef CONFIG_BSD
527674e7bfSbellard #include <sys/ioctl.h>
5372cf2d4fSBlue Swirl #include <sys/queue.h>
54c5e97233Sblueswir1 #ifndef __DragonFly__
557674e7bfSbellard #include <sys/disk.h>
567674e7bfSbellard #endif
57c5e97233Sblueswir1 #endif
587674e7bfSbellard 
5949dc768dSaliguori #ifdef _WIN32
6049dc768dSaliguori #include <windows.h>
6149dc768dSaliguori #endif
6249dc768dSaliguori 
631c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
641c9805a3SStefan Hajnoczi 
65dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
66dc364f4cSBenoît Canet     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
67dc364f4cSBenoît Canet 
682c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
692c1d04e0SMax Reitz     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
702c1d04e0SMax Reitz 
718a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers =
728a22f02aSStefan Hajnoczi     QLIST_HEAD_INITIALIZER(bdrv_drivers);
73ea2384d3Sbellard 
745b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
755b363937SMax Reitz                                            const char *reference,
765b363937SMax Reitz                                            QDict *options, int flags,
77f3930ed0SKevin Wolf                                            BlockDriverState *parent,
785b363937SMax Reitz                                            const BdrvChildRole *child_role,
795b363937SMax Reitz                                            Error **errp);
80f3930ed0SKevin Wolf 
81eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */
82eb852011SMarkus Armbruster static int use_bdrv_whitelist;
83eb852011SMarkus Armbruster 
849e0b22f4SStefan Hajnoczi #ifdef _WIN32
859e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename)
869e0b22f4SStefan Hajnoczi {
879e0b22f4SStefan Hajnoczi     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
889e0b22f4SStefan Hajnoczi              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
899e0b22f4SStefan Hajnoczi             filename[1] == ':');
909e0b22f4SStefan Hajnoczi }
919e0b22f4SStefan Hajnoczi 
929e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename)
939e0b22f4SStefan Hajnoczi {
949e0b22f4SStefan Hajnoczi     if (is_windows_drive_prefix(filename) &&
959e0b22f4SStefan Hajnoczi         filename[2] == '\0')
969e0b22f4SStefan Hajnoczi         return 1;
979e0b22f4SStefan Hajnoczi     if (strstart(filename, "\\\\.\\", NULL) ||
989e0b22f4SStefan Hajnoczi         strstart(filename, "//./", NULL))
999e0b22f4SStefan Hajnoczi         return 1;
1009e0b22f4SStefan Hajnoczi     return 0;
1019e0b22f4SStefan Hajnoczi }
1029e0b22f4SStefan Hajnoczi #endif
1039e0b22f4SStefan Hajnoczi 
104339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs)
105339064d5SKevin Wolf {
106339064d5SKevin Wolf     if (!bs || !bs->drv) {
107459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
108459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
109339064d5SKevin Wolf     }
110339064d5SKevin Wolf 
111339064d5SKevin Wolf     return bs->bl.opt_mem_alignment;
112339064d5SKevin Wolf }
113339064d5SKevin Wolf 
1144196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs)
1154196d2f0SDenis V. Lunev {
1164196d2f0SDenis V. Lunev     if (!bs || !bs->drv) {
117459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
118459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
1194196d2f0SDenis V. Lunev     }
1204196d2f0SDenis V. Lunev 
1214196d2f0SDenis V. Lunev     return bs->bl.min_mem_alignment;
1224196d2f0SDenis V. Lunev }
1234196d2f0SDenis V. Lunev 
1249e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */
1255c98415bSMax Reitz int path_has_protocol(const char *path)
1269e0b22f4SStefan Hajnoczi {
127947995c0SPaolo Bonzini     const char *p;
128947995c0SPaolo Bonzini 
1299e0b22f4SStefan Hajnoczi #ifdef _WIN32
1309e0b22f4SStefan Hajnoczi     if (is_windows_drive(path) ||
1319e0b22f4SStefan Hajnoczi         is_windows_drive_prefix(path)) {
1329e0b22f4SStefan Hajnoczi         return 0;
1339e0b22f4SStefan Hajnoczi     }
134947995c0SPaolo Bonzini     p = path + strcspn(path, ":/\\");
135947995c0SPaolo Bonzini #else
136947995c0SPaolo Bonzini     p = path + strcspn(path, ":/");
1379e0b22f4SStefan Hajnoczi #endif
1389e0b22f4SStefan Hajnoczi 
139947995c0SPaolo Bonzini     return *p == ':';
1409e0b22f4SStefan Hajnoczi }
1419e0b22f4SStefan Hajnoczi 
14283f64091Sbellard int path_is_absolute(const char *path)
14383f64091Sbellard {
14421664424Sbellard #ifdef _WIN32
14521664424Sbellard     /* specific case for names like: "\\.\d:" */
146f53f4da9SPaolo Bonzini     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
14721664424Sbellard         return 1;
148f53f4da9SPaolo Bonzini     }
149f53f4da9SPaolo Bonzini     return (*path == '/' || *path == '\\');
1503b9f94e1Sbellard #else
151f53f4da9SPaolo Bonzini     return (*path == '/');
1523b9f94e1Sbellard #endif
15383f64091Sbellard }
15483f64091Sbellard 
15583f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a
15683f64091Sbellard    path to it by considering it is relative to base_path. URL are
15783f64091Sbellard    supported. */
15883f64091Sbellard void path_combine(char *dest, int dest_size,
15983f64091Sbellard                   const char *base_path,
16083f64091Sbellard                   const char *filename)
16183f64091Sbellard {
16283f64091Sbellard     const char *p, *p1;
16383f64091Sbellard     int len;
16483f64091Sbellard 
16583f64091Sbellard     if (dest_size <= 0)
16683f64091Sbellard         return;
16783f64091Sbellard     if (path_is_absolute(filename)) {
16883f64091Sbellard         pstrcpy(dest, dest_size, filename);
16983f64091Sbellard     } else {
1700d54a6feSMax Reitz         const char *protocol_stripped = NULL;
1710d54a6feSMax Reitz 
1720d54a6feSMax Reitz         if (path_has_protocol(base_path)) {
1730d54a6feSMax Reitz             protocol_stripped = strchr(base_path, ':');
1740d54a6feSMax Reitz             if (protocol_stripped) {
1750d54a6feSMax Reitz                 protocol_stripped++;
1760d54a6feSMax Reitz             }
1770d54a6feSMax Reitz         }
1780d54a6feSMax Reitz         p = protocol_stripped ?: base_path;
1790d54a6feSMax Reitz 
1803b9f94e1Sbellard         p1 = strrchr(base_path, '/');
1813b9f94e1Sbellard #ifdef _WIN32
1823b9f94e1Sbellard         {
1833b9f94e1Sbellard             const char *p2;
1843b9f94e1Sbellard             p2 = strrchr(base_path, '\\');
1853b9f94e1Sbellard             if (!p1 || p2 > p1)
1863b9f94e1Sbellard                 p1 = p2;
1873b9f94e1Sbellard         }
1883b9f94e1Sbellard #endif
18983f64091Sbellard         if (p1)
19083f64091Sbellard             p1++;
19183f64091Sbellard         else
19283f64091Sbellard             p1 = base_path;
19383f64091Sbellard         if (p1 > p)
19483f64091Sbellard             p = p1;
19583f64091Sbellard         len = p - base_path;
19683f64091Sbellard         if (len > dest_size - 1)
19783f64091Sbellard             len = dest_size - 1;
19883f64091Sbellard         memcpy(dest, base_path, len);
19983f64091Sbellard         dest[len] = '\0';
20083f64091Sbellard         pstrcat(dest, dest_size, filename);
20183f64091Sbellard     }
20283f64091Sbellard }
20383f64091Sbellard 
20403c320d8SMax Reitz /*
20503c320d8SMax Reitz  * Helper function for bdrv_parse_filename() implementations to remove optional
20603c320d8SMax Reitz  * protocol prefixes (especially "file:") from a filename and for putting the
20703c320d8SMax Reitz  * stripped filename into the options QDict if there is such a prefix.
20803c320d8SMax Reitz  */
20903c320d8SMax Reitz void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
21003c320d8SMax Reitz                                       QDict *options)
21103c320d8SMax Reitz {
21203c320d8SMax Reitz     if (strstart(filename, prefix, &filename)) {
21303c320d8SMax Reitz         /* Stripping the explicit protocol prefix may result in a protocol
21403c320d8SMax Reitz          * prefix being (wrongly) detected (if the filename contains a colon) */
21503c320d8SMax Reitz         if (path_has_protocol(filename)) {
21603c320d8SMax Reitz             QString *fat_filename;
21703c320d8SMax Reitz 
21803c320d8SMax Reitz             /* This means there is some colon before the first slash; therefore,
21903c320d8SMax Reitz              * this cannot be an absolute path */
22003c320d8SMax Reitz             assert(!path_is_absolute(filename));
22103c320d8SMax Reitz 
22203c320d8SMax Reitz             /* And we can thus fix the protocol detection issue by prefixing it
22303c320d8SMax Reitz              * by "./" */
22403c320d8SMax Reitz             fat_filename = qstring_from_str("./");
22503c320d8SMax Reitz             qstring_append(fat_filename, filename);
22603c320d8SMax Reitz 
22703c320d8SMax Reitz             assert(!path_has_protocol(qstring_get_str(fat_filename)));
22803c320d8SMax Reitz 
22903c320d8SMax Reitz             qdict_put(options, "filename", fat_filename);
23003c320d8SMax Reitz         } else {
23103c320d8SMax Reitz             /* If no protocol prefix was detected, we can use the shortened
23203c320d8SMax Reitz              * filename as-is */
23303c320d8SMax Reitz             qdict_put_str(options, "filename", filename);
23403c320d8SMax Reitz         }
23503c320d8SMax Reitz     }
23603c320d8SMax Reitz }
23703c320d8SMax Reitz 
23803c320d8SMax Reitz 
2399c5e6594SKevin Wolf /* Returns whether the image file is opened as read-only. Note that this can
2409c5e6594SKevin Wolf  * return false and writing to the image file is still not possible because the
2419c5e6594SKevin Wolf  * image is inactivated. */
24293ed524eSJeff Cody bool bdrv_is_read_only(BlockDriverState *bs)
24393ed524eSJeff Cody {
24493ed524eSJeff Cody     return bs->read_only;
24593ed524eSJeff Cody }
24693ed524eSJeff Cody 
24754a32bfeSKevin Wolf int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
24854a32bfeSKevin Wolf                            bool ignore_allow_rdw, Error **errp)
249fe5241bfSJeff Cody {
250e2b8247aSJeff Cody     /* Do not set read_only if copy_on_read is enabled */
251e2b8247aSJeff Cody     if (bs->copy_on_read && read_only) {
252e2b8247aSJeff Cody         error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
253e2b8247aSJeff Cody                    bdrv_get_device_or_node_name(bs));
254e2b8247aSJeff Cody         return -EINVAL;
255e2b8247aSJeff Cody     }
256e2b8247aSJeff Cody 
257d6fcdf06SJeff Cody     /* Do not clear read_only if it is prohibited */
25854a32bfeSKevin Wolf     if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
25954a32bfeSKevin Wolf         !ignore_allow_rdw)
26054a32bfeSKevin Wolf     {
261d6fcdf06SJeff Cody         error_setg(errp, "Node '%s' is read only",
262d6fcdf06SJeff Cody                    bdrv_get_device_or_node_name(bs));
263d6fcdf06SJeff Cody         return -EPERM;
264d6fcdf06SJeff Cody     }
265d6fcdf06SJeff Cody 
26645803a03SJeff Cody     return 0;
26745803a03SJeff Cody }
26845803a03SJeff Cody 
269398e6ad0SKevin Wolf /* TODO Remove (deprecated since 2.11)
270398e6ad0SKevin Wolf  * Block drivers are not supposed to automatically change bs->read_only.
271398e6ad0SKevin Wolf  * Instead, they should just check whether they can provide what the user
272398e6ad0SKevin Wolf  * explicitly requested and error out if read-write is requested, but they can
273398e6ad0SKevin Wolf  * only provide read-only access. */
27445803a03SJeff Cody int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp)
27545803a03SJeff Cody {
27645803a03SJeff Cody     int ret = 0;
27745803a03SJeff Cody 
27854a32bfeSKevin Wolf     ret = bdrv_can_set_read_only(bs, read_only, false, errp);
27945803a03SJeff Cody     if (ret < 0) {
28045803a03SJeff Cody         return ret;
28145803a03SJeff Cody     }
28245803a03SJeff Cody 
283fe5241bfSJeff Cody     bs->read_only = read_only;
284e2b8247aSJeff Cody     return 0;
285fe5241bfSJeff Cody }
286fe5241bfSJeff Cody 
2870a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed,
2880a82855aSMax Reitz                                                   const char *backing,
2899f07429eSMax Reitz                                                   char *dest, size_t sz,
2909f07429eSMax Reitz                                                   Error **errp)
2910a82855aSMax Reitz {
2929f07429eSMax Reitz     if (backing[0] == '\0' || path_has_protocol(backing) ||
2939f07429eSMax Reitz         path_is_absolute(backing))
2949f07429eSMax Reitz     {
2950a82855aSMax Reitz         pstrcpy(dest, sz, backing);
2969f07429eSMax Reitz     } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
2979f07429eSMax Reitz         error_setg(errp, "Cannot use relative backing file names for '%s'",
2989f07429eSMax Reitz                    backed);
2990a82855aSMax Reitz     } else {
3000a82855aSMax Reitz         path_combine(dest, sz, backed, backing);
3010a82855aSMax Reitz     }
3020a82855aSMax Reitz }
3030a82855aSMax Reitz 
3049f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
3059f07429eSMax Reitz                                     Error **errp)
306dc5a1371SPaolo Bonzini {
3079f07429eSMax Reitz     char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
3089f07429eSMax Reitz 
3099f07429eSMax Reitz     bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
3109f07429eSMax Reitz                                                  dest, sz, errp);
311dc5a1371SPaolo Bonzini }
312dc5a1371SPaolo Bonzini 
3130eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv)
3140eb7217eSStefan Hajnoczi {
3158a22f02aSStefan Hajnoczi     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
316ea2384d3Sbellard }
317b338082bSbellard 
318e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void)
319e4e9986bSMarkus Armbruster {
320e4e9986bSMarkus Armbruster     BlockDriverState *bs;
321e4e9986bSMarkus Armbruster     int i;
322e4e9986bSMarkus Armbruster 
3235839e53bSMarkus Armbruster     bs = g_new0(BlockDriverState, 1);
324e4654d2dSFam Zheng     QLIST_INIT(&bs->dirty_bitmaps);
325fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
326fbe40ff7SFam Zheng         QLIST_INIT(&bs->op_blockers[i]);
327fbe40ff7SFam Zheng     }
328d616b224SStefan Hajnoczi     notifier_with_return_list_init(&bs->before_write_notifiers);
3293783fa3dSPaolo Bonzini     qemu_co_mutex_init(&bs->reqs_lock);
3302119882cSPaolo Bonzini     qemu_mutex_init(&bs->dirty_bitmap_mutex);
3319fcb0251SFam Zheng     bs->refcnt = 1;
332dcd04228SStefan Hajnoczi     bs->aio_context = qemu_get_aio_context();
333d7d512f6SPaolo Bonzini 
3343ff2f67aSEvgeny Yakovlev     qemu_co_queue_init(&bs->flush_queue);
3353ff2f67aSEvgeny Yakovlev 
336*0f12264eSKevin Wolf     for (i = 0; i < bdrv_drain_all_count; i++) {
337*0f12264eSKevin Wolf         bdrv_drained_begin(bs);
338*0f12264eSKevin Wolf     }
339*0f12264eSKevin Wolf 
3402c1d04e0SMax Reitz     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
3412c1d04e0SMax Reitz 
342b338082bSbellard     return bs;
343b338082bSbellard }
344b338082bSbellard 
34588d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name)
346ea2384d3Sbellard {
347ea2384d3Sbellard     BlockDriver *drv1;
34888d88798SMarc Mari 
3498a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
3508a22f02aSStefan Hajnoczi         if (!strcmp(drv1->format_name, format_name)) {
351ea2384d3Sbellard             return drv1;
352ea2384d3Sbellard         }
3538a22f02aSStefan Hajnoczi     }
35488d88798SMarc Mari 
355ea2384d3Sbellard     return NULL;
356ea2384d3Sbellard }
357ea2384d3Sbellard 
35888d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name)
35988d88798SMarc Mari {
36088d88798SMarc Mari     BlockDriver *drv1;
36188d88798SMarc Mari     int i;
36288d88798SMarc Mari 
36388d88798SMarc Mari     drv1 = bdrv_do_find_format(format_name);
36488d88798SMarc Mari     if (drv1) {
36588d88798SMarc Mari         return drv1;
36688d88798SMarc Mari     }
36788d88798SMarc Mari 
36888d88798SMarc Mari     /* The driver isn't registered, maybe we need to load a module */
36988d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
37088d88798SMarc Mari         if (!strcmp(block_driver_modules[i].format_name, format_name)) {
37188d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
37288d88798SMarc Mari             break;
37388d88798SMarc Mari         }
37488d88798SMarc Mari     }
37588d88798SMarc Mari 
37688d88798SMarc Mari     return bdrv_do_find_format(format_name);
37788d88798SMarc Mari }
37888d88798SMarc Mari 
379e8eb8637SKevin Wolf int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
380eb852011SMarkus Armbruster {
381b64ec4e4SFam Zheng     static const char *whitelist_rw[] = {
382b64ec4e4SFam Zheng         CONFIG_BDRV_RW_WHITELIST
383b64ec4e4SFam Zheng     };
384b64ec4e4SFam Zheng     static const char *whitelist_ro[] = {
385b64ec4e4SFam Zheng         CONFIG_BDRV_RO_WHITELIST
386eb852011SMarkus Armbruster     };
387eb852011SMarkus Armbruster     const char **p;
388eb852011SMarkus Armbruster 
389b64ec4e4SFam Zheng     if (!whitelist_rw[0] && !whitelist_ro[0]) {
390eb852011SMarkus Armbruster         return 1;               /* no whitelist, anything goes */
391b64ec4e4SFam Zheng     }
392eb852011SMarkus Armbruster 
393b64ec4e4SFam Zheng     for (p = whitelist_rw; *p; p++) {
394eb852011SMarkus Armbruster         if (!strcmp(drv->format_name, *p)) {
395eb852011SMarkus Armbruster             return 1;
396eb852011SMarkus Armbruster         }
397eb852011SMarkus Armbruster     }
398b64ec4e4SFam Zheng     if (read_only) {
399b64ec4e4SFam Zheng         for (p = whitelist_ro; *p; p++) {
400b64ec4e4SFam Zheng             if (!strcmp(drv->format_name, *p)) {
401b64ec4e4SFam Zheng                 return 1;
402b64ec4e4SFam Zheng             }
403b64ec4e4SFam Zheng         }
404b64ec4e4SFam Zheng     }
405eb852011SMarkus Armbruster     return 0;
406eb852011SMarkus Armbruster }
407eb852011SMarkus Armbruster 
408e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void)
409e6ff69bfSDaniel P. Berrange {
410e6ff69bfSDaniel P. Berrange     return use_bdrv_whitelist;
411e6ff69bfSDaniel P. Berrange }
412e6ff69bfSDaniel P. Berrange 
4135b7e1542SZhi Yong Wu typedef struct CreateCo {
4145b7e1542SZhi Yong Wu     BlockDriver *drv;
4155b7e1542SZhi Yong Wu     char *filename;
41683d0521aSChunyan Liu     QemuOpts *opts;
4175b7e1542SZhi Yong Wu     int ret;
418cc84d90fSMax Reitz     Error *err;
4195b7e1542SZhi Yong Wu } CreateCo;
4205b7e1542SZhi Yong Wu 
4215b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque)
4225b7e1542SZhi Yong Wu {
423cc84d90fSMax Reitz     Error *local_err = NULL;
424cc84d90fSMax Reitz     int ret;
425cc84d90fSMax Reitz 
4265b7e1542SZhi Yong Wu     CreateCo *cco = opaque;
4275b7e1542SZhi Yong Wu     assert(cco->drv);
4285b7e1542SZhi Yong Wu 
429efc75e2aSStefan Hajnoczi     ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err);
430cc84d90fSMax Reitz     error_propagate(&cco->err, local_err);
431cc84d90fSMax Reitz     cco->ret = ret;
4325b7e1542SZhi Yong Wu }
4335b7e1542SZhi Yong Wu 
4340e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename,
43583d0521aSChunyan Liu                 QemuOpts *opts, Error **errp)
436ea2384d3Sbellard {
4375b7e1542SZhi Yong Wu     int ret;
4380e7e1989SKevin Wolf 
4395b7e1542SZhi Yong Wu     Coroutine *co;
4405b7e1542SZhi Yong Wu     CreateCo cco = {
4415b7e1542SZhi Yong Wu         .drv = drv,
4425b7e1542SZhi Yong Wu         .filename = g_strdup(filename),
44383d0521aSChunyan Liu         .opts = opts,
4445b7e1542SZhi Yong Wu         .ret = NOT_DONE,
445cc84d90fSMax Reitz         .err = NULL,
4465b7e1542SZhi Yong Wu     };
4475b7e1542SZhi Yong Wu 
448efc75e2aSStefan Hajnoczi     if (!drv->bdrv_co_create_opts) {
449cc84d90fSMax Reitz         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
45080168bffSLuiz Capitulino         ret = -ENOTSUP;
45180168bffSLuiz Capitulino         goto out;
4525b7e1542SZhi Yong Wu     }
4535b7e1542SZhi Yong Wu 
4545b7e1542SZhi Yong Wu     if (qemu_in_coroutine()) {
4555b7e1542SZhi Yong Wu         /* Fast-path if already in coroutine context */
4565b7e1542SZhi Yong Wu         bdrv_create_co_entry(&cco);
4575b7e1542SZhi Yong Wu     } else {
4580b8b8753SPaolo Bonzini         co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
4590b8b8753SPaolo Bonzini         qemu_coroutine_enter(co);
4605b7e1542SZhi Yong Wu         while (cco.ret == NOT_DONE) {
461b47ec2c4SPaolo Bonzini             aio_poll(qemu_get_aio_context(), true);
4625b7e1542SZhi Yong Wu         }
4635b7e1542SZhi Yong Wu     }
4645b7e1542SZhi Yong Wu 
4655b7e1542SZhi Yong Wu     ret = cco.ret;
466cc84d90fSMax Reitz     if (ret < 0) {
46784d18f06SMarkus Armbruster         if (cco.err) {
468cc84d90fSMax Reitz             error_propagate(errp, cco.err);
469cc84d90fSMax Reitz         } else {
470cc84d90fSMax Reitz             error_setg_errno(errp, -ret, "Could not create image");
471cc84d90fSMax Reitz         }
472cc84d90fSMax Reitz     }
4735b7e1542SZhi Yong Wu 
47480168bffSLuiz Capitulino out:
47580168bffSLuiz Capitulino     g_free(cco.filename);
4765b7e1542SZhi Yong Wu     return ret;
477ea2384d3Sbellard }
478ea2384d3Sbellard 
479c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
48084a12e66SChristoph Hellwig {
48184a12e66SChristoph Hellwig     BlockDriver *drv;
482cc84d90fSMax Reitz     Error *local_err = NULL;
483cc84d90fSMax Reitz     int ret;
48484a12e66SChristoph Hellwig 
485b65a5e12SMax Reitz     drv = bdrv_find_protocol(filename, true, errp);
48684a12e66SChristoph Hellwig     if (drv == NULL) {
48716905d71SStefan Hajnoczi         return -ENOENT;
48884a12e66SChristoph Hellwig     }
48984a12e66SChristoph Hellwig 
490c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
491cc84d90fSMax Reitz     error_propagate(errp, local_err);
492cc84d90fSMax Reitz     return ret;
49384a12e66SChristoph Hellwig }
49484a12e66SChristoph Hellwig 
495892b7de8SEkaterina Tumanova /**
496892b7de8SEkaterina Tumanova  * Try to get @bs's logical and physical block size.
497892b7de8SEkaterina Tumanova  * On success, store them in @bsz struct and return 0.
498892b7de8SEkaterina Tumanova  * On failure return -errno.
499892b7de8SEkaterina Tumanova  * @bs must not be empty.
500892b7de8SEkaterina Tumanova  */
501892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
502892b7de8SEkaterina Tumanova {
503892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
504892b7de8SEkaterina Tumanova 
505892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_blocksizes) {
506892b7de8SEkaterina Tumanova         return drv->bdrv_probe_blocksizes(bs, bsz);
5075a612c00SManos Pitsidianakis     } else if (drv && drv->is_filter && bs->file) {
5085a612c00SManos Pitsidianakis         return bdrv_probe_blocksizes(bs->file->bs, bsz);
509892b7de8SEkaterina Tumanova     }
510892b7de8SEkaterina Tumanova 
511892b7de8SEkaterina Tumanova     return -ENOTSUP;
512892b7de8SEkaterina Tumanova }
513892b7de8SEkaterina Tumanova 
514892b7de8SEkaterina Tumanova /**
515892b7de8SEkaterina Tumanova  * Try to get @bs's geometry (cyls, heads, sectors).
516892b7de8SEkaterina Tumanova  * On success, store them in @geo struct and return 0.
517892b7de8SEkaterina Tumanova  * On failure return -errno.
518892b7de8SEkaterina Tumanova  * @bs must not be empty.
519892b7de8SEkaterina Tumanova  */
520892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
521892b7de8SEkaterina Tumanova {
522892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
523892b7de8SEkaterina Tumanova 
524892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_geometry) {
525892b7de8SEkaterina Tumanova         return drv->bdrv_probe_geometry(bs, geo);
5265a612c00SManos Pitsidianakis     } else if (drv && drv->is_filter && bs->file) {
5275a612c00SManos Pitsidianakis         return bdrv_probe_geometry(bs->file->bs, geo);
528892b7de8SEkaterina Tumanova     }
529892b7de8SEkaterina Tumanova 
530892b7de8SEkaterina Tumanova     return -ENOTSUP;
531892b7de8SEkaterina Tumanova }
532892b7de8SEkaterina Tumanova 
533eba25057SJim Meyering /*
534eba25057SJim Meyering  * Create a uniquely-named empty temporary file.
535eba25057SJim Meyering  * Return 0 upon success, otherwise a negative errno value.
536eba25057SJim Meyering  */
537eba25057SJim Meyering int get_tmp_filename(char *filename, int size)
538eba25057SJim Meyering {
539d5249393Sbellard #ifdef _WIN32
5403b9f94e1Sbellard     char temp_dir[MAX_PATH];
541eba25057SJim Meyering     /* GetTempFileName requires that its output buffer (4th param)
542eba25057SJim Meyering        have length MAX_PATH or greater.  */
543eba25057SJim Meyering     assert(size >= MAX_PATH);
544eba25057SJim Meyering     return (GetTempPath(MAX_PATH, temp_dir)
545eba25057SJim Meyering             && GetTempFileName(temp_dir, "qem", 0, filename)
546eba25057SJim Meyering             ? 0 : -GetLastError());
547d5249393Sbellard #else
548ea2384d3Sbellard     int fd;
5497ccfb2ebSblueswir1     const char *tmpdir;
5500badc1eeSaurel32     tmpdir = getenv("TMPDIR");
55169bef793SAmit Shah     if (!tmpdir) {
55269bef793SAmit Shah         tmpdir = "/var/tmp";
55369bef793SAmit Shah     }
554eba25057SJim Meyering     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
555eba25057SJim Meyering         return -EOVERFLOW;
556ea2384d3Sbellard     }
557eba25057SJim Meyering     fd = mkstemp(filename);
558fe235a06SDunrong Huang     if (fd < 0) {
559fe235a06SDunrong Huang         return -errno;
560fe235a06SDunrong Huang     }
561fe235a06SDunrong Huang     if (close(fd) != 0) {
562fe235a06SDunrong Huang         unlink(filename);
563eba25057SJim Meyering         return -errno;
564eba25057SJim Meyering     }
565eba25057SJim Meyering     return 0;
566d5249393Sbellard #endif
567eba25057SJim Meyering }
568ea2384d3Sbellard 
569f3a5d3f8SChristoph Hellwig /*
570f3a5d3f8SChristoph Hellwig  * Detect host devices. By convention, /dev/cdrom[N] is always
571f3a5d3f8SChristoph Hellwig  * recognized as a host CDROM.
572f3a5d3f8SChristoph Hellwig  */
573f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename)
574f3a5d3f8SChristoph Hellwig {
575508c7cb3SChristoph Hellwig     int score_max = 0, score;
576508c7cb3SChristoph Hellwig     BlockDriver *drv = NULL, *d;
577f3a5d3f8SChristoph Hellwig 
5788a22f02aSStefan Hajnoczi     QLIST_FOREACH(d, &bdrv_drivers, list) {
579508c7cb3SChristoph Hellwig         if (d->bdrv_probe_device) {
580508c7cb3SChristoph Hellwig             score = d->bdrv_probe_device(filename);
581508c7cb3SChristoph Hellwig             if (score > score_max) {
582508c7cb3SChristoph Hellwig                 score_max = score;
583508c7cb3SChristoph Hellwig                 drv = d;
584f3a5d3f8SChristoph Hellwig             }
585508c7cb3SChristoph Hellwig         }
586f3a5d3f8SChristoph Hellwig     }
587f3a5d3f8SChristoph Hellwig 
588508c7cb3SChristoph Hellwig     return drv;
589f3a5d3f8SChristoph Hellwig }
590f3a5d3f8SChristoph Hellwig 
59188d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol)
59288d88798SMarc Mari {
59388d88798SMarc Mari     BlockDriver *drv1;
59488d88798SMarc Mari 
59588d88798SMarc Mari     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
59688d88798SMarc Mari         if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
59788d88798SMarc Mari             return drv1;
59888d88798SMarc Mari         }
59988d88798SMarc Mari     }
60088d88798SMarc Mari 
60188d88798SMarc Mari     return NULL;
60288d88798SMarc Mari }
60388d88798SMarc Mari 
60498289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename,
605b65a5e12SMax Reitz                                 bool allow_protocol_prefix,
606b65a5e12SMax Reitz                                 Error **errp)
60784a12e66SChristoph Hellwig {
60884a12e66SChristoph Hellwig     BlockDriver *drv1;
60984a12e66SChristoph Hellwig     char protocol[128];
61084a12e66SChristoph Hellwig     int len;
61184a12e66SChristoph Hellwig     const char *p;
61288d88798SMarc Mari     int i;
61384a12e66SChristoph Hellwig 
61466f82ceeSKevin Wolf     /* TODO Drivers without bdrv_file_open must be specified explicitly */
61566f82ceeSKevin Wolf 
61639508e7aSChristoph Hellwig     /*
61739508e7aSChristoph Hellwig      * XXX(hch): we really should not let host device detection
61839508e7aSChristoph Hellwig      * override an explicit protocol specification, but moving this
61939508e7aSChristoph Hellwig      * later breaks access to device names with colons in them.
62039508e7aSChristoph Hellwig      * Thanks to the brain-dead persistent naming schemes on udev-
62139508e7aSChristoph Hellwig      * based Linux systems those actually are quite common.
62239508e7aSChristoph Hellwig      */
62384a12e66SChristoph Hellwig     drv1 = find_hdev_driver(filename);
62439508e7aSChristoph Hellwig     if (drv1) {
62584a12e66SChristoph Hellwig         return drv1;
62684a12e66SChristoph Hellwig     }
62739508e7aSChristoph Hellwig 
62898289620SKevin Wolf     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
629ef810437SMax Reitz         return &bdrv_file;
63039508e7aSChristoph Hellwig     }
63198289620SKevin Wolf 
6329e0b22f4SStefan Hajnoczi     p = strchr(filename, ':');
6339e0b22f4SStefan Hajnoczi     assert(p != NULL);
63484a12e66SChristoph Hellwig     len = p - filename;
63584a12e66SChristoph Hellwig     if (len > sizeof(protocol) - 1)
63684a12e66SChristoph Hellwig         len = sizeof(protocol) - 1;
63784a12e66SChristoph Hellwig     memcpy(protocol, filename, len);
63884a12e66SChristoph Hellwig     protocol[len] = '\0';
63988d88798SMarc Mari 
64088d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
64188d88798SMarc Mari     if (drv1) {
64284a12e66SChristoph Hellwig         return drv1;
64384a12e66SChristoph Hellwig     }
64488d88798SMarc Mari 
64588d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
64688d88798SMarc Mari         if (block_driver_modules[i].protocol_name &&
64788d88798SMarc Mari             !strcmp(block_driver_modules[i].protocol_name, protocol)) {
64888d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
64988d88798SMarc Mari             break;
65088d88798SMarc Mari         }
65184a12e66SChristoph Hellwig     }
652b65a5e12SMax Reitz 
65388d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
65488d88798SMarc Mari     if (!drv1) {
655b65a5e12SMax Reitz         error_setg(errp, "Unknown protocol '%s'", protocol);
65688d88798SMarc Mari     }
65788d88798SMarc Mari     return drv1;
65884a12e66SChristoph Hellwig }
65984a12e66SChristoph Hellwig 
660c6684249SMarkus Armbruster /*
661c6684249SMarkus Armbruster  * Guess image format by probing its contents.
662c6684249SMarkus Armbruster  * This is not a good idea when your image is raw (CVE-2008-2004), but
663c6684249SMarkus Armbruster  * we do it anyway for backward compatibility.
664c6684249SMarkus Armbruster  *
665c6684249SMarkus Armbruster  * @buf         contains the image's first @buf_size bytes.
6667cddd372SKevin Wolf  * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
6677cddd372SKevin Wolf  *              but can be smaller if the image file is smaller)
668c6684249SMarkus Armbruster  * @filename    is its filename.
669c6684249SMarkus Armbruster  *
670c6684249SMarkus Armbruster  * For all block drivers, call the bdrv_probe() method to get its
671c6684249SMarkus Armbruster  * probing score.
672c6684249SMarkus Armbruster  * Return the first block driver with the highest probing score.
673c6684249SMarkus Armbruster  */
67438f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
675c6684249SMarkus Armbruster                             const char *filename)
676c6684249SMarkus Armbruster {
677c6684249SMarkus Armbruster     int score_max = 0, score;
678c6684249SMarkus Armbruster     BlockDriver *drv = NULL, *d;
679c6684249SMarkus Armbruster 
680c6684249SMarkus Armbruster     QLIST_FOREACH(d, &bdrv_drivers, list) {
681c6684249SMarkus Armbruster         if (d->bdrv_probe) {
682c6684249SMarkus Armbruster             score = d->bdrv_probe(buf, buf_size, filename);
683c6684249SMarkus Armbruster             if (score > score_max) {
684c6684249SMarkus Armbruster                 score_max = score;
685c6684249SMarkus Armbruster                 drv = d;
686c6684249SMarkus Armbruster             }
687c6684249SMarkus Armbruster         }
688c6684249SMarkus Armbruster     }
689c6684249SMarkus Armbruster 
690c6684249SMarkus Armbruster     return drv;
691c6684249SMarkus Armbruster }
692c6684249SMarkus Armbruster 
6935696c6e3SKevin Wolf static int find_image_format(BlockBackend *file, const char *filename,
69434b5d2c6SMax Reitz                              BlockDriver **pdrv, Error **errp)
695ea2384d3Sbellard {
696c6684249SMarkus Armbruster     BlockDriver *drv;
6977cddd372SKevin Wolf     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
698f500a6d3SKevin Wolf     int ret = 0;
699f8ea0b00SNicholas Bellinger 
70008a00559SKevin Wolf     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
7015696c6e3SKevin Wolf     if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
702ef810437SMax Reitz         *pdrv = &bdrv_raw;
703c98ac35dSStefan Weil         return ret;
7041a396859SNicholas A. Bellinger     }
705f8ea0b00SNicholas Bellinger 
7065696c6e3SKevin Wolf     ret = blk_pread(file, 0, buf, sizeof(buf));
707ea2384d3Sbellard     if (ret < 0) {
70834b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not read image for determining its "
70934b5d2c6SMax Reitz                          "format");
710c98ac35dSStefan Weil         *pdrv = NULL;
711c98ac35dSStefan Weil         return ret;
712ea2384d3Sbellard     }
713ea2384d3Sbellard 
714c6684249SMarkus Armbruster     drv = bdrv_probe_all(buf, ret, filename);
715c98ac35dSStefan Weil     if (!drv) {
71634b5d2c6SMax Reitz         error_setg(errp, "Could not determine image format: No compatible "
71734b5d2c6SMax Reitz                    "driver found");
718c98ac35dSStefan Weil         ret = -ENOENT;
719c98ac35dSStefan Weil     }
720c98ac35dSStefan Weil     *pdrv = drv;
721c98ac35dSStefan Weil     return ret;
722ea2384d3Sbellard }
723ea2384d3Sbellard 
72451762288SStefan Hajnoczi /**
72551762288SStefan Hajnoczi  * Set the current 'total_sectors' value
72665a9bb25SMarkus Armbruster  * Return 0 on success, -errno on error.
72751762288SStefan Hajnoczi  */
72851762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
72951762288SStefan Hajnoczi {
73051762288SStefan Hajnoczi     BlockDriver *drv = bs->drv;
73151762288SStefan Hajnoczi 
732d470ad42SMax Reitz     if (!drv) {
733d470ad42SMax Reitz         return -ENOMEDIUM;
734d470ad42SMax Reitz     }
735d470ad42SMax Reitz 
736396759adSNicholas Bellinger     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
737b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs))
738396759adSNicholas Bellinger         return 0;
739396759adSNicholas Bellinger 
74051762288SStefan Hajnoczi     /* query actual device if possible, otherwise just trust the hint */
74151762288SStefan Hajnoczi     if (drv->bdrv_getlength) {
74251762288SStefan Hajnoczi         int64_t length = drv->bdrv_getlength(bs);
74351762288SStefan Hajnoczi         if (length < 0) {
74451762288SStefan Hajnoczi             return length;
74551762288SStefan Hajnoczi         }
7467e382003SFam Zheng         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
74751762288SStefan Hajnoczi     }
74851762288SStefan Hajnoczi 
74951762288SStefan Hajnoczi     bs->total_sectors = hint;
75051762288SStefan Hajnoczi     return 0;
75151762288SStefan Hajnoczi }
75251762288SStefan Hajnoczi 
753c3993cdcSStefan Hajnoczi /**
754cddff5baSKevin Wolf  * Combines a QDict of new block driver @options with any missing options taken
755cddff5baSKevin Wolf  * from @old_options, so that leaving out an option defaults to its old value.
756cddff5baSKevin Wolf  */
757cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options,
758cddff5baSKevin Wolf                               QDict *old_options)
759cddff5baSKevin Wolf {
760cddff5baSKevin Wolf     if (bs->drv && bs->drv->bdrv_join_options) {
761cddff5baSKevin Wolf         bs->drv->bdrv_join_options(options, old_options);
762cddff5baSKevin Wolf     } else {
763cddff5baSKevin Wolf         qdict_join(options, old_options, false);
764cddff5baSKevin Wolf     }
765cddff5baSKevin Wolf }
766cddff5baSKevin Wolf 
767cddff5baSKevin Wolf /**
7689e8f1835SPaolo Bonzini  * Set open flags for a given discard mode
7699e8f1835SPaolo Bonzini  *
7709e8f1835SPaolo Bonzini  * Return 0 on success, -1 if the discard mode was invalid.
7719e8f1835SPaolo Bonzini  */
7729e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags)
7739e8f1835SPaolo Bonzini {
7749e8f1835SPaolo Bonzini     *flags &= ~BDRV_O_UNMAP;
7759e8f1835SPaolo Bonzini 
7769e8f1835SPaolo Bonzini     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
7779e8f1835SPaolo Bonzini         /* do nothing */
7789e8f1835SPaolo Bonzini     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
7799e8f1835SPaolo Bonzini         *flags |= BDRV_O_UNMAP;
7809e8f1835SPaolo Bonzini     } else {
7819e8f1835SPaolo Bonzini         return -1;
7829e8f1835SPaolo Bonzini     }
7839e8f1835SPaolo Bonzini 
7849e8f1835SPaolo Bonzini     return 0;
7859e8f1835SPaolo Bonzini }
7869e8f1835SPaolo Bonzini 
7879e8f1835SPaolo Bonzini /**
788c3993cdcSStefan Hajnoczi  * Set open flags for a given cache mode
789c3993cdcSStefan Hajnoczi  *
790c3993cdcSStefan Hajnoczi  * Return 0 on success, -1 if the cache mode was invalid.
791c3993cdcSStefan Hajnoczi  */
79253e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
793c3993cdcSStefan Hajnoczi {
794c3993cdcSStefan Hajnoczi     *flags &= ~BDRV_O_CACHE_MASK;
795c3993cdcSStefan Hajnoczi 
796c3993cdcSStefan Hajnoczi     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
79753e8ae01SKevin Wolf         *writethrough = false;
79853e8ae01SKevin Wolf         *flags |= BDRV_O_NOCACHE;
79992196b2fSStefan Hajnoczi     } else if (!strcmp(mode, "directsync")) {
80053e8ae01SKevin Wolf         *writethrough = true;
80192196b2fSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE;
802c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writeback")) {
80353e8ae01SKevin Wolf         *writethrough = false;
804c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "unsafe")) {
80553e8ae01SKevin Wolf         *writethrough = false;
806c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NO_FLUSH;
807c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writethrough")) {
80853e8ae01SKevin Wolf         *writethrough = true;
809c3993cdcSStefan Hajnoczi     } else {
810c3993cdcSStefan Hajnoczi         return -1;
811c3993cdcSStefan Hajnoczi     }
812c3993cdcSStefan Hajnoczi 
813c3993cdcSStefan Hajnoczi     return 0;
814c3993cdcSStefan Hajnoczi }
815c3993cdcSStefan Hajnoczi 
816b5411555SKevin Wolf static char *bdrv_child_get_parent_desc(BdrvChild *c)
817b5411555SKevin Wolf {
818b5411555SKevin Wolf     BlockDriverState *parent = c->opaque;
819b5411555SKevin Wolf     return g_strdup(bdrv_get_device_or_node_name(parent));
820b5411555SKevin Wolf }
821b5411555SKevin Wolf 
82220018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child)
82320018e12SKevin Wolf {
82420018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
8256cd5c9d7SKevin Wolf     bdrv_do_drained_begin_quiesce(bs, NULL, false);
82620018e12SKevin Wolf }
82720018e12SKevin Wolf 
82889bd0305SKevin Wolf static bool bdrv_child_cb_drained_poll(BdrvChild *child)
82989bd0305SKevin Wolf {
83089bd0305SKevin Wolf     BlockDriverState *bs = child->opaque;
8316cd5c9d7SKevin Wolf     return bdrv_drain_poll(bs, false, NULL, false);
83289bd0305SKevin Wolf }
83389bd0305SKevin Wolf 
83420018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child)
83520018e12SKevin Wolf {
83620018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
83720018e12SKevin Wolf     bdrv_drained_end(bs);
83820018e12SKevin Wolf }
83920018e12SKevin Wolf 
840d736f119SKevin Wolf static void bdrv_child_cb_attach(BdrvChild *child)
841d736f119SKevin Wolf {
842d736f119SKevin Wolf     BlockDriverState *bs = child->opaque;
843d736f119SKevin Wolf     bdrv_apply_subtree_drain(child, bs);
844d736f119SKevin Wolf }
845d736f119SKevin Wolf 
846d736f119SKevin Wolf static void bdrv_child_cb_detach(BdrvChild *child)
847d736f119SKevin Wolf {
848d736f119SKevin Wolf     BlockDriverState *bs = child->opaque;
849d736f119SKevin Wolf     bdrv_unapply_subtree_drain(child, bs);
850d736f119SKevin Wolf }
851d736f119SKevin Wolf 
85238701b6aSKevin Wolf static int bdrv_child_cb_inactivate(BdrvChild *child)
85338701b6aSKevin Wolf {
85438701b6aSKevin Wolf     BlockDriverState *bs = child->opaque;
85538701b6aSKevin Wolf     assert(bs->open_flags & BDRV_O_INACTIVE);
85638701b6aSKevin Wolf     return 0;
85738701b6aSKevin Wolf }
85838701b6aSKevin Wolf 
8590b50cc88SKevin Wolf /*
86073176beeSKevin Wolf  * Returns the options and flags that a temporary snapshot should get, based on
86173176beeSKevin Wolf  * the originally requested flags (the originally requested image will have
86273176beeSKevin Wolf  * flags like a backing file)
863b1e6fc08SKevin Wolf  */
86473176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
86573176beeSKevin Wolf                                        int parent_flags, QDict *parent_options)
866b1e6fc08SKevin Wolf {
86773176beeSKevin Wolf     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
86873176beeSKevin Wolf 
86973176beeSKevin Wolf     /* For temporary files, unconditional cache=unsafe is fine */
87073176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
87173176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
87241869044SKevin Wolf 
873f87a0e29SAlberto Garcia     /* Copy the read-only option from the parent */
874f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
875f87a0e29SAlberto Garcia 
87641869044SKevin Wolf     /* aio=native doesn't work for cache.direct=off, so disable it for the
87741869044SKevin Wolf      * temporary snapshot */
87841869044SKevin Wolf     *child_flags &= ~BDRV_O_NATIVE_AIO;
879b1e6fc08SKevin Wolf }
880b1e6fc08SKevin Wolf 
881b1e6fc08SKevin Wolf /*
8828e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if a protocol driver
8838e2160e2SKevin Wolf  * is expected, based on the given options and flags for the parent BDS
8840b50cc88SKevin Wolf  */
8858e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options,
8868e2160e2SKevin Wolf                                    int parent_flags, QDict *parent_options)
8870b50cc88SKevin Wolf {
8888e2160e2SKevin Wolf     int flags = parent_flags;
8898e2160e2SKevin Wolf 
8900b50cc88SKevin Wolf     /* Enable protocol handling, disable format probing for bs->file */
8910b50cc88SKevin Wolf     flags |= BDRV_O_PROTOCOL;
8920b50cc88SKevin Wolf 
89391a097e7SKevin Wolf     /* If the cache mode isn't explicitly set, inherit direct and no-flush from
89491a097e7SKevin Wolf      * the parent. */
89591a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
89691a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
8975a9347c6SFam Zheng     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
89891a097e7SKevin Wolf 
899f87a0e29SAlberto Garcia     /* Inherit the read-only option from the parent if it's not set */
900f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
901f87a0e29SAlberto Garcia 
9020b50cc88SKevin Wolf     /* Our block drivers take care to send flushes and respect unmap policy,
90391a097e7SKevin Wolf      * so we can default to enable both on lower layers regardless of the
90491a097e7SKevin Wolf      * corresponding parent options. */
905818584a4SKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
9060b50cc88SKevin Wolf 
9070b50cc88SKevin Wolf     /* Clear flags that only apply to the top layer */
908abb06c5aSDaniel P. Berrange     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
909abb06c5aSDaniel P. Berrange                BDRV_O_NO_IO);
9100b50cc88SKevin Wolf 
9118e2160e2SKevin Wolf     *child_flags = flags;
9120b50cc88SKevin Wolf }
9130b50cc88SKevin Wolf 
914f3930ed0SKevin Wolf const BdrvChildRole child_file = {
9156cd5c9d7SKevin Wolf     .parent_is_bds   = true,
916b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
9178e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_options,
91820018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
91989bd0305SKevin Wolf     .drained_poll    = bdrv_child_cb_drained_poll,
92020018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
921d736f119SKevin Wolf     .attach          = bdrv_child_cb_attach,
922d736f119SKevin Wolf     .detach          = bdrv_child_cb_detach,
92338701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
924f3930ed0SKevin Wolf };
925f3930ed0SKevin Wolf 
926f3930ed0SKevin Wolf /*
9278e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if the use of formats
9288e2160e2SKevin Wolf  * (and not only protocols) is permitted for it, based on the given options and
9298e2160e2SKevin Wolf  * flags for the parent BDS
930f3930ed0SKevin Wolf  */
9318e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
9328e2160e2SKevin Wolf                                        int parent_flags, QDict *parent_options)
933f3930ed0SKevin Wolf {
9348e2160e2SKevin Wolf     child_file.inherit_options(child_flags, child_options,
9358e2160e2SKevin Wolf                                parent_flags, parent_options);
9368e2160e2SKevin Wolf 
937abb06c5aSDaniel P. Berrange     *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
938f3930ed0SKevin Wolf }
939f3930ed0SKevin Wolf 
940f3930ed0SKevin Wolf const BdrvChildRole child_format = {
9416cd5c9d7SKevin Wolf     .parent_is_bds   = true,
942b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
9438e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_fmt_options,
94420018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
94589bd0305SKevin Wolf     .drained_poll    = bdrv_child_cb_drained_poll,
94620018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
947d736f119SKevin Wolf     .attach          = bdrv_child_cb_attach,
948d736f119SKevin Wolf     .detach          = bdrv_child_cb_detach,
94938701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
950f3930ed0SKevin Wolf };
951f3930ed0SKevin Wolf 
952db95dbbaSKevin Wolf static void bdrv_backing_attach(BdrvChild *c)
953db95dbbaSKevin Wolf {
954db95dbbaSKevin Wolf     BlockDriverState *parent = c->opaque;
955db95dbbaSKevin Wolf     BlockDriverState *backing_hd = c->bs;
956db95dbbaSKevin Wolf 
957db95dbbaSKevin Wolf     assert(!parent->backing_blocker);
958db95dbbaSKevin Wolf     error_setg(&parent->backing_blocker,
959db95dbbaSKevin Wolf                "node is used as backing hd of '%s'",
960db95dbbaSKevin Wolf                bdrv_get_device_or_node_name(parent));
961db95dbbaSKevin Wolf 
962db95dbbaSKevin Wolf     parent->open_flags &= ~BDRV_O_NO_BACKING;
963db95dbbaSKevin Wolf     pstrcpy(parent->backing_file, sizeof(parent->backing_file),
964db95dbbaSKevin Wolf             backing_hd->filename);
965db95dbbaSKevin Wolf     pstrcpy(parent->backing_format, sizeof(parent->backing_format),
966db95dbbaSKevin Wolf             backing_hd->drv ? backing_hd->drv->format_name : "");
967db95dbbaSKevin Wolf 
968db95dbbaSKevin Wolf     bdrv_op_block_all(backing_hd, parent->backing_blocker);
969db95dbbaSKevin Wolf     /* Otherwise we won't be able to commit or stream */
970db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
971db95dbbaSKevin Wolf                     parent->backing_blocker);
972db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
973db95dbbaSKevin Wolf                     parent->backing_blocker);
974db95dbbaSKevin Wolf     /*
975db95dbbaSKevin Wolf      * We do backup in 3 ways:
976db95dbbaSKevin Wolf      * 1. drive backup
977db95dbbaSKevin Wolf      *    The target bs is new opened, and the source is top BDS
978db95dbbaSKevin Wolf      * 2. blockdev backup
979db95dbbaSKevin Wolf      *    Both the source and the target are top BDSes.
980db95dbbaSKevin Wolf      * 3. internal backup(used for block replication)
981db95dbbaSKevin Wolf      *    Both the source and the target are backing file
982db95dbbaSKevin Wolf      *
983db95dbbaSKevin Wolf      * In case 1 and 2, neither the source nor the target is the backing file.
984db95dbbaSKevin Wolf      * In case 3, we will block the top BDS, so there is only one block job
985db95dbbaSKevin Wolf      * for the top BDS and its backing chain.
986db95dbbaSKevin Wolf      */
987db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
988db95dbbaSKevin Wolf                     parent->backing_blocker);
989db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
990db95dbbaSKevin Wolf                     parent->backing_blocker);
991d736f119SKevin Wolf 
992d736f119SKevin Wolf     bdrv_child_cb_attach(c);
993db95dbbaSKevin Wolf }
994db95dbbaSKevin Wolf 
995db95dbbaSKevin Wolf static void bdrv_backing_detach(BdrvChild *c)
996db95dbbaSKevin Wolf {
997db95dbbaSKevin Wolf     BlockDriverState *parent = c->opaque;
998db95dbbaSKevin Wolf 
999db95dbbaSKevin Wolf     assert(parent->backing_blocker);
1000db95dbbaSKevin Wolf     bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1001db95dbbaSKevin Wolf     error_free(parent->backing_blocker);
1002db95dbbaSKevin Wolf     parent->backing_blocker = NULL;
1003d736f119SKevin Wolf 
1004d736f119SKevin Wolf     bdrv_child_cb_detach(c);
1005db95dbbaSKevin Wolf }
1006db95dbbaSKevin Wolf 
1007317fc44eSKevin Wolf /*
10088e2160e2SKevin Wolf  * Returns the options and flags that bs->backing should get, based on the
10098e2160e2SKevin Wolf  * given options and flags for the parent BDS
1010317fc44eSKevin Wolf  */
10118e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options,
10128e2160e2SKevin Wolf                                  int parent_flags, QDict *parent_options)
1013317fc44eSKevin Wolf {
10148e2160e2SKevin Wolf     int flags = parent_flags;
10158e2160e2SKevin Wolf 
1016b8816a43SKevin Wolf     /* The cache mode is inherited unmodified for backing files; except WCE,
1017b8816a43SKevin Wolf      * which is only applied on the top level (BlockBackend) */
101891a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
101991a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
10205a9347c6SFam Zheng     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
102191a097e7SKevin Wolf 
1022317fc44eSKevin Wolf     /* backing files always opened read-only */
1023f87a0e29SAlberto Garcia     qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1024f87a0e29SAlberto Garcia     flags &= ~BDRV_O_COPY_ON_READ;
1025317fc44eSKevin Wolf 
1026317fc44eSKevin Wolf     /* snapshot=on is handled on the top layer */
10278bfea15dSKevin Wolf     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
1028317fc44eSKevin Wolf 
10298e2160e2SKevin Wolf     *child_flags = flags;
1030317fc44eSKevin Wolf }
1031317fc44eSKevin Wolf 
10326858eba0SKevin Wolf static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
10336858eba0SKevin Wolf                                         const char *filename, Error **errp)
10346858eba0SKevin Wolf {
10356858eba0SKevin Wolf     BlockDriverState *parent = c->opaque;
103661f09ceaSKevin Wolf     int orig_flags = bdrv_get_flags(parent);
10376858eba0SKevin Wolf     int ret;
10386858eba0SKevin Wolf 
103961f09ceaSKevin Wolf     if (!(orig_flags & BDRV_O_RDWR)) {
104061f09ceaSKevin Wolf         ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp);
104161f09ceaSKevin Wolf         if (ret < 0) {
104261f09ceaSKevin Wolf             return ret;
104361f09ceaSKevin Wolf         }
104461f09ceaSKevin Wolf     }
104561f09ceaSKevin Wolf 
10466858eba0SKevin Wolf     ret = bdrv_change_backing_file(parent, filename,
10476858eba0SKevin Wolf                                    base->drv ? base->drv->format_name : "");
10486858eba0SKevin Wolf     if (ret < 0) {
104964730694SKevin Wolf         error_setg_errno(errp, -ret, "Could not update backing file link");
10506858eba0SKevin Wolf     }
10516858eba0SKevin Wolf 
105261f09ceaSKevin Wolf     if (!(orig_flags & BDRV_O_RDWR)) {
105361f09ceaSKevin Wolf         bdrv_reopen(parent, orig_flags, NULL);
105461f09ceaSKevin Wolf     }
105561f09ceaSKevin Wolf 
10566858eba0SKevin Wolf     return ret;
10576858eba0SKevin Wolf }
10586858eba0SKevin Wolf 
105991ef3825SKevin Wolf const BdrvChildRole child_backing = {
10606cd5c9d7SKevin Wolf     .parent_is_bds   = true,
1061b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
1062db95dbbaSKevin Wolf     .attach          = bdrv_backing_attach,
1063db95dbbaSKevin Wolf     .detach          = bdrv_backing_detach,
10648e2160e2SKevin Wolf     .inherit_options = bdrv_backing_options,
106520018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
106689bd0305SKevin Wolf     .drained_poll    = bdrv_child_cb_drained_poll,
106720018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
106838701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
10696858eba0SKevin Wolf     .update_filename = bdrv_backing_update_filename,
1070f3930ed0SKevin Wolf };
1071f3930ed0SKevin Wolf 
10727b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags)
10737b272452SKevin Wolf {
107461de4c68SKevin Wolf     int open_flags = flags;
10757b272452SKevin Wolf 
10767b272452SKevin Wolf     /*
10777b272452SKevin Wolf      * Clear flags that are internal to the block layer before opening the
10787b272452SKevin Wolf      * image.
10797b272452SKevin Wolf      */
108020cca275SKevin Wolf     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
10817b272452SKevin Wolf 
10827b272452SKevin Wolf     /*
10837b272452SKevin Wolf      * Snapshots should be writable.
10847b272452SKevin Wolf      */
10858bfea15dSKevin Wolf     if (flags & BDRV_O_TEMPORARY) {
10867b272452SKevin Wolf         open_flags |= BDRV_O_RDWR;
10877b272452SKevin Wolf     }
10887b272452SKevin Wolf 
10897b272452SKevin Wolf     return open_flags;
10907b272452SKevin Wolf }
10917b272452SKevin Wolf 
109291a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts)
109391a097e7SKevin Wolf {
109491a097e7SKevin Wolf     *flags &= ~BDRV_O_CACHE_MASK;
109591a097e7SKevin Wolf 
109691a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
109791a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
109891a097e7SKevin Wolf         *flags |= BDRV_O_NO_FLUSH;
109991a097e7SKevin Wolf     }
110091a097e7SKevin Wolf 
110191a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
110291a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
110391a097e7SKevin Wolf         *flags |= BDRV_O_NOCACHE;
110491a097e7SKevin Wolf     }
1105f87a0e29SAlberto Garcia 
1106f87a0e29SAlberto Garcia     *flags &= ~BDRV_O_RDWR;
1107f87a0e29SAlberto Garcia 
1108f87a0e29SAlberto Garcia     assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
1109f87a0e29SAlberto Garcia     if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) {
1110f87a0e29SAlberto Garcia         *flags |= BDRV_O_RDWR;
1111f87a0e29SAlberto Garcia     }
1112f87a0e29SAlberto Garcia 
111391a097e7SKevin Wolf }
111491a097e7SKevin Wolf 
111591a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags)
111691a097e7SKevin Wolf {
111791a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
111846f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
111991a097e7SKevin Wolf     }
112091a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
112146f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
112246f5ac20SEric Blake                        flags & BDRV_O_NO_FLUSH);
112391a097e7SKevin Wolf     }
1124f87a0e29SAlberto Garcia     if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
112546f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1126f87a0e29SAlberto Garcia     }
112791a097e7SKevin Wolf }
112891a097e7SKevin Wolf 
1129636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs,
11306913c0c2SBenoît Canet                                   const char *node_name,
11316913c0c2SBenoît Canet                                   Error **errp)
11326913c0c2SBenoît Canet {
113315489c76SJeff Cody     char *gen_node_name = NULL;
11346913c0c2SBenoît Canet 
113515489c76SJeff Cody     if (!node_name) {
113615489c76SJeff Cody         node_name = gen_node_name = id_generate(ID_BLOCK);
113715489c76SJeff Cody     } else if (!id_wellformed(node_name)) {
113815489c76SJeff Cody         /*
113915489c76SJeff Cody          * Check for empty string or invalid characters, but not if it is
114015489c76SJeff Cody          * generated (generated names use characters not available to the user)
114115489c76SJeff Cody          */
11429aebf3b8SKevin Wolf         error_setg(errp, "Invalid node name");
1143636ea370SKevin Wolf         return;
11446913c0c2SBenoît Canet     }
11456913c0c2SBenoît Canet 
11460c5e94eeSBenoît Canet     /* takes care of avoiding namespaces collisions */
11477f06d47eSMarkus Armbruster     if (blk_by_name(node_name)) {
11480c5e94eeSBenoît Canet         error_setg(errp, "node-name=%s is conflicting with a device id",
11490c5e94eeSBenoît Canet                    node_name);
115015489c76SJeff Cody         goto out;
11510c5e94eeSBenoît Canet     }
11520c5e94eeSBenoît Canet 
11536913c0c2SBenoît Canet     /* takes care of avoiding duplicates node names */
11546913c0c2SBenoît Canet     if (bdrv_find_node(node_name)) {
11556913c0c2SBenoît Canet         error_setg(errp, "Duplicate node name");
115615489c76SJeff Cody         goto out;
11576913c0c2SBenoît Canet     }
11586913c0c2SBenoît Canet 
11596913c0c2SBenoît Canet     /* copy node name into the bs and insert it into the graph list */
11606913c0c2SBenoît Canet     pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
11616913c0c2SBenoît Canet     QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
116215489c76SJeff Cody out:
116315489c76SJeff Cody     g_free(gen_node_name);
11646913c0c2SBenoît Canet }
11656913c0c2SBenoît Canet 
116601a56501SKevin Wolf static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
116701a56501SKevin Wolf                             const char *node_name, QDict *options,
116801a56501SKevin Wolf                             int open_flags, Error **errp)
116901a56501SKevin Wolf {
117001a56501SKevin Wolf     Error *local_err = NULL;
1171*0f12264eSKevin Wolf     int i, ret;
117201a56501SKevin Wolf 
117301a56501SKevin Wolf     bdrv_assign_node_name(bs, node_name, &local_err);
117401a56501SKevin Wolf     if (local_err) {
117501a56501SKevin Wolf         error_propagate(errp, local_err);
117601a56501SKevin Wolf         return -EINVAL;
117701a56501SKevin Wolf     }
117801a56501SKevin Wolf 
117901a56501SKevin Wolf     bs->drv = drv;
1180680c7f96SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
118101a56501SKevin Wolf     bs->opaque = g_malloc0(drv->instance_size);
118201a56501SKevin Wolf 
118301a56501SKevin Wolf     if (drv->bdrv_file_open) {
118401a56501SKevin Wolf         assert(!drv->bdrv_needs_filename || bs->filename[0]);
118501a56501SKevin Wolf         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1186680c7f96SKevin Wolf     } else if (drv->bdrv_open) {
118701a56501SKevin Wolf         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1188680c7f96SKevin Wolf     } else {
1189680c7f96SKevin Wolf         ret = 0;
119001a56501SKevin Wolf     }
119101a56501SKevin Wolf 
119201a56501SKevin Wolf     if (ret < 0) {
119301a56501SKevin Wolf         if (local_err) {
119401a56501SKevin Wolf             error_propagate(errp, local_err);
119501a56501SKevin Wolf         } else if (bs->filename[0]) {
119601a56501SKevin Wolf             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
119701a56501SKevin Wolf         } else {
119801a56501SKevin Wolf             error_setg_errno(errp, -ret, "Could not open image");
119901a56501SKevin Wolf         }
1200180ca19aSManos Pitsidianakis         goto open_failed;
120101a56501SKevin Wolf     }
120201a56501SKevin Wolf 
120301a56501SKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
120401a56501SKevin Wolf     if (ret < 0) {
120501a56501SKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
1206180ca19aSManos Pitsidianakis         return ret;
120701a56501SKevin Wolf     }
120801a56501SKevin Wolf 
120901a56501SKevin Wolf     bdrv_refresh_limits(bs, &local_err);
121001a56501SKevin Wolf     if (local_err) {
121101a56501SKevin Wolf         error_propagate(errp, local_err);
1212180ca19aSManos Pitsidianakis         return -EINVAL;
121301a56501SKevin Wolf     }
121401a56501SKevin Wolf 
121501a56501SKevin Wolf     assert(bdrv_opt_mem_align(bs) != 0);
121601a56501SKevin Wolf     assert(bdrv_min_mem_align(bs) != 0);
121701a56501SKevin Wolf     assert(is_power_of_2(bs->bl.request_alignment));
121801a56501SKevin Wolf 
1219*0f12264eSKevin Wolf     for (i = 0; i < bs->quiesce_counter; i++) {
1220*0f12264eSKevin Wolf         if (drv->bdrv_co_drain_begin) {
1221*0f12264eSKevin Wolf             drv->bdrv_co_drain_begin(bs);
1222*0f12264eSKevin Wolf         }
1223*0f12264eSKevin Wolf     }
1224*0f12264eSKevin Wolf 
122501a56501SKevin Wolf     return 0;
1226180ca19aSManos Pitsidianakis open_failed:
1227180ca19aSManos Pitsidianakis     bs->drv = NULL;
1228180ca19aSManos Pitsidianakis     if (bs->file != NULL) {
1229180ca19aSManos Pitsidianakis         bdrv_unref_child(bs, bs->file);
1230180ca19aSManos Pitsidianakis         bs->file = NULL;
1231180ca19aSManos Pitsidianakis     }
123201a56501SKevin Wolf     g_free(bs->opaque);
123301a56501SKevin Wolf     bs->opaque = NULL;
123401a56501SKevin Wolf     return ret;
123501a56501SKevin Wolf }
123601a56501SKevin Wolf 
1237680c7f96SKevin Wolf BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1238680c7f96SKevin Wolf                                        int flags, Error **errp)
1239680c7f96SKevin Wolf {
1240680c7f96SKevin Wolf     BlockDriverState *bs;
1241680c7f96SKevin Wolf     int ret;
1242680c7f96SKevin Wolf 
1243680c7f96SKevin Wolf     bs = bdrv_new();
1244680c7f96SKevin Wolf     bs->open_flags = flags;
1245680c7f96SKevin Wolf     bs->explicit_options = qdict_new();
1246680c7f96SKevin Wolf     bs->options = qdict_new();
1247680c7f96SKevin Wolf     bs->opaque = NULL;
1248680c7f96SKevin Wolf 
1249680c7f96SKevin Wolf     update_options_from_flags(bs->options, flags);
1250680c7f96SKevin Wolf 
1251680c7f96SKevin Wolf     ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1252680c7f96SKevin Wolf     if (ret < 0) {
1253cb3e7f08SMarc-André Lureau         qobject_unref(bs->explicit_options);
1254180ca19aSManos Pitsidianakis         bs->explicit_options = NULL;
1255cb3e7f08SMarc-André Lureau         qobject_unref(bs->options);
1256180ca19aSManos Pitsidianakis         bs->options = NULL;
1257680c7f96SKevin Wolf         bdrv_unref(bs);
1258680c7f96SKevin Wolf         return NULL;
1259680c7f96SKevin Wolf     }
1260680c7f96SKevin Wolf 
1261680c7f96SKevin Wolf     return bs;
1262680c7f96SKevin Wolf }
1263680c7f96SKevin Wolf 
1264c5f3014bSKevin Wolf QemuOptsList bdrv_runtime_opts = {
126518edf289SKevin Wolf     .name = "bdrv_common",
126618edf289SKevin Wolf     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
126718edf289SKevin Wolf     .desc = {
126818edf289SKevin Wolf         {
126918edf289SKevin Wolf             .name = "node-name",
127018edf289SKevin Wolf             .type = QEMU_OPT_STRING,
127118edf289SKevin Wolf             .help = "Node name of the block device node",
127218edf289SKevin Wolf         },
127362392ebbSKevin Wolf         {
127462392ebbSKevin Wolf             .name = "driver",
127562392ebbSKevin Wolf             .type = QEMU_OPT_STRING,
127662392ebbSKevin Wolf             .help = "Block driver to use for the node",
127762392ebbSKevin Wolf         },
127891a097e7SKevin Wolf         {
127991a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_DIRECT,
128091a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
128191a097e7SKevin Wolf             .help = "Bypass software writeback cache on the host",
128291a097e7SKevin Wolf         },
128391a097e7SKevin Wolf         {
128491a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_NO_FLUSH,
128591a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
128691a097e7SKevin Wolf             .help = "Ignore flush requests",
128791a097e7SKevin Wolf         },
1288f87a0e29SAlberto Garcia         {
1289f87a0e29SAlberto Garcia             .name = BDRV_OPT_READ_ONLY,
1290f87a0e29SAlberto Garcia             .type = QEMU_OPT_BOOL,
1291f87a0e29SAlberto Garcia             .help = "Node is opened in read-only mode",
1292f87a0e29SAlberto Garcia         },
1293692e01a2SKevin Wolf         {
1294692e01a2SKevin Wolf             .name = "detect-zeroes",
1295692e01a2SKevin Wolf             .type = QEMU_OPT_STRING,
1296692e01a2SKevin Wolf             .help = "try to optimize zero writes (off, on, unmap)",
1297692e01a2SKevin Wolf         },
1298818584a4SKevin Wolf         {
1299818584a4SKevin Wolf             .name = "discard",
1300818584a4SKevin Wolf             .type = QEMU_OPT_STRING,
1301818584a4SKevin Wolf             .help = "discard operation (ignore/off, unmap/on)",
1302818584a4SKevin Wolf         },
13035a9347c6SFam Zheng         {
13045a9347c6SFam Zheng             .name = BDRV_OPT_FORCE_SHARE,
13055a9347c6SFam Zheng             .type = QEMU_OPT_BOOL,
13065a9347c6SFam Zheng             .help = "always accept other writers (default: off)",
13075a9347c6SFam Zheng         },
130818edf289SKevin Wolf         { /* end of list */ }
130918edf289SKevin Wolf     },
131018edf289SKevin Wolf };
131118edf289SKevin Wolf 
1312b6ce07aaSKevin Wolf /*
131357915332SKevin Wolf  * Common part for opening disk images and files
1314b6ad491aSKevin Wolf  *
1315b6ad491aSKevin Wolf  * Removes all processed options from *options.
131657915332SKevin Wolf  */
13175696c6e3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
131882dc8b41SKevin Wolf                             QDict *options, Error **errp)
131957915332SKevin Wolf {
132057915332SKevin Wolf     int ret, open_flags;
1321035fccdfSKevin Wolf     const char *filename;
132262392ebbSKevin Wolf     const char *driver_name = NULL;
13236913c0c2SBenoît Canet     const char *node_name = NULL;
1324818584a4SKevin Wolf     const char *discard;
1325692e01a2SKevin Wolf     const char *detect_zeroes;
132618edf289SKevin Wolf     QemuOpts *opts;
132762392ebbSKevin Wolf     BlockDriver *drv;
132834b5d2c6SMax Reitz     Error *local_err = NULL;
132957915332SKevin Wolf 
13306405875cSPaolo Bonzini     assert(bs->file == NULL);
1331707ff828SKevin Wolf     assert(options != NULL && bs->options != options);
133257915332SKevin Wolf 
133362392ebbSKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
133462392ebbSKevin Wolf     qemu_opts_absorb_qdict(opts, options, &local_err);
133562392ebbSKevin Wolf     if (local_err) {
133662392ebbSKevin Wolf         error_propagate(errp, local_err);
133762392ebbSKevin Wolf         ret = -EINVAL;
133862392ebbSKevin Wolf         goto fail_opts;
133962392ebbSKevin Wolf     }
134062392ebbSKevin Wolf 
13419b7e8691SAlberto Garcia     update_flags_from_options(&bs->open_flags, opts);
13429b7e8691SAlberto Garcia 
134362392ebbSKevin Wolf     driver_name = qemu_opt_get(opts, "driver");
134462392ebbSKevin Wolf     drv = bdrv_find_format(driver_name);
134562392ebbSKevin Wolf     assert(drv != NULL);
134662392ebbSKevin Wolf 
13475a9347c6SFam Zheng     bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
13485a9347c6SFam Zheng 
13495a9347c6SFam Zheng     if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
13505a9347c6SFam Zheng         error_setg(errp,
13515a9347c6SFam Zheng                    BDRV_OPT_FORCE_SHARE
13525a9347c6SFam Zheng                    "=on can only be used with read-only images");
13535a9347c6SFam Zheng         ret = -EINVAL;
13545a9347c6SFam Zheng         goto fail_opts;
13555a9347c6SFam Zheng     }
13565a9347c6SFam Zheng 
135745673671SKevin Wolf     if (file != NULL) {
13585696c6e3SKevin Wolf         filename = blk_bs(file)->filename;
135945673671SKevin Wolf     } else {
1360129c7d1cSMarkus Armbruster         /*
1361129c7d1cSMarkus Armbruster          * Caution: while qdict_get_try_str() is fine, getting
1362129c7d1cSMarkus Armbruster          * non-string types would require more care.  When @options
1363129c7d1cSMarkus Armbruster          * come from -blockdev or blockdev_add, its members are typed
1364129c7d1cSMarkus Armbruster          * according to the QAPI schema, but when they come from
1365129c7d1cSMarkus Armbruster          * -drive, they're all QString.
1366129c7d1cSMarkus Armbruster          */
136745673671SKevin Wolf         filename = qdict_get_try_str(options, "filename");
136845673671SKevin Wolf     }
136945673671SKevin Wolf 
13704a008240SMax Reitz     if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1371765003dbSKevin Wolf         error_setg(errp, "The '%s' block driver requires a file name",
1372765003dbSKevin Wolf                    drv->format_name);
137318edf289SKevin Wolf         ret = -EINVAL;
137418edf289SKevin Wolf         goto fail_opts;
137518edf289SKevin Wolf     }
137618edf289SKevin Wolf 
137782dc8b41SKevin Wolf     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
137882dc8b41SKevin Wolf                            drv->format_name);
137962392ebbSKevin Wolf 
138082dc8b41SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1381b64ec4e4SFam Zheng 
1382b64ec4e4SFam Zheng     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
13838f94a6e4SKevin Wolf         error_setg(errp,
13848f94a6e4SKevin Wolf                    !bs->read_only && bdrv_is_whitelisted(drv, true)
13858f94a6e4SKevin Wolf                         ? "Driver '%s' can only be used for read-only devices"
13868f94a6e4SKevin Wolf                         : "Driver '%s' is not whitelisted",
13878f94a6e4SKevin Wolf                    drv->format_name);
138818edf289SKevin Wolf         ret = -ENOTSUP;
138918edf289SKevin Wolf         goto fail_opts;
1390b64ec4e4SFam Zheng     }
139157915332SKevin Wolf 
1392d3faa13eSPaolo Bonzini     /* bdrv_new() and bdrv_close() make it so */
1393d3faa13eSPaolo Bonzini     assert(atomic_read(&bs->copy_on_read) == 0);
1394d3faa13eSPaolo Bonzini 
139582dc8b41SKevin Wolf     if (bs->open_flags & BDRV_O_COPY_ON_READ) {
13960ebd24e0SKevin Wolf         if (!bs->read_only) {
139753fec9d3SStefan Hajnoczi             bdrv_enable_copy_on_read(bs);
13980ebd24e0SKevin Wolf         } else {
13990ebd24e0SKevin Wolf             error_setg(errp, "Can't use copy-on-read on read-only device");
140018edf289SKevin Wolf             ret = -EINVAL;
140118edf289SKevin Wolf             goto fail_opts;
14020ebd24e0SKevin Wolf         }
140353fec9d3SStefan Hajnoczi     }
140453fec9d3SStefan Hajnoczi 
1405818584a4SKevin Wolf     discard = qemu_opt_get(opts, "discard");
1406818584a4SKevin Wolf     if (discard != NULL) {
1407818584a4SKevin Wolf         if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1408818584a4SKevin Wolf             error_setg(errp, "Invalid discard option");
1409818584a4SKevin Wolf             ret = -EINVAL;
1410818584a4SKevin Wolf             goto fail_opts;
1411818584a4SKevin Wolf         }
1412818584a4SKevin Wolf     }
1413818584a4SKevin Wolf 
1414692e01a2SKevin Wolf     detect_zeroes = qemu_opt_get(opts, "detect-zeroes");
1415692e01a2SKevin Wolf     if (detect_zeroes) {
1416692e01a2SKevin Wolf         BlockdevDetectZeroesOptions value =
1417f7abe0ecSMarc-André Lureau             qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
1418692e01a2SKevin Wolf                             detect_zeroes,
1419692e01a2SKevin Wolf                             BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
1420692e01a2SKevin Wolf                             &local_err);
1421692e01a2SKevin Wolf         if (local_err) {
1422692e01a2SKevin Wolf             error_propagate(errp, local_err);
1423692e01a2SKevin Wolf             ret = -EINVAL;
1424692e01a2SKevin Wolf             goto fail_opts;
1425692e01a2SKevin Wolf         }
1426692e01a2SKevin Wolf 
1427692e01a2SKevin Wolf         if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1428692e01a2SKevin Wolf             !(bs->open_flags & BDRV_O_UNMAP))
1429692e01a2SKevin Wolf         {
1430692e01a2SKevin Wolf             error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1431692e01a2SKevin Wolf                              "without setting discard operation to unmap");
1432692e01a2SKevin Wolf             ret = -EINVAL;
1433692e01a2SKevin Wolf             goto fail_opts;
1434692e01a2SKevin Wolf         }
1435692e01a2SKevin Wolf 
1436692e01a2SKevin Wolf         bs->detect_zeroes = value;
1437692e01a2SKevin Wolf     }
1438692e01a2SKevin Wolf 
1439c2ad1b0cSKevin Wolf     if (filename != NULL) {
144057915332SKevin Wolf         pstrcpy(bs->filename, sizeof(bs->filename), filename);
1441c2ad1b0cSKevin Wolf     } else {
1442c2ad1b0cSKevin Wolf         bs->filename[0] = '\0';
1443c2ad1b0cSKevin Wolf     }
144491af7014SMax Reitz     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
144557915332SKevin Wolf 
144666f82ceeSKevin Wolf     /* Open the image, either directly or using a protocol */
144782dc8b41SKevin Wolf     open_flags = bdrv_open_flags(bs, bs->open_flags);
144801a56501SKevin Wolf     node_name = qemu_opt_get(opts, "node-name");
144966f82ceeSKevin Wolf 
145001a56501SKevin Wolf     assert(!drv->bdrv_file_open || file == NULL);
145101a56501SKevin Wolf     ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
145257915332SKevin Wolf     if (ret < 0) {
145301a56501SKevin Wolf         goto fail_opts;
145434b5d2c6SMax Reitz     }
145518edf289SKevin Wolf 
145618edf289SKevin Wolf     qemu_opts_del(opts);
145757915332SKevin Wolf     return 0;
145857915332SKevin Wolf 
145918edf289SKevin Wolf fail_opts:
146018edf289SKevin Wolf     qemu_opts_del(opts);
146157915332SKevin Wolf     return ret;
146257915332SKevin Wolf }
146357915332SKevin Wolf 
14645e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp)
14655e5c4f63SKevin Wolf {
14665e5c4f63SKevin Wolf     QObject *options_obj;
14675e5c4f63SKevin Wolf     QDict *options;
14685e5c4f63SKevin Wolf     int ret;
14695e5c4f63SKevin Wolf 
14705e5c4f63SKevin Wolf     ret = strstart(filename, "json:", &filename);
14715e5c4f63SKevin Wolf     assert(ret);
14725e5c4f63SKevin Wolf 
14735577fff7SMarkus Armbruster     options_obj = qobject_from_json(filename, errp);
14745e5c4f63SKevin Wolf     if (!options_obj) {
14755577fff7SMarkus Armbruster         /* Work around qobject_from_json() lossage TODO fix that */
14765577fff7SMarkus Armbruster         if (errp && !*errp) {
14775e5c4f63SKevin Wolf             error_setg(errp, "Could not parse the JSON options");
14785e5c4f63SKevin Wolf             return NULL;
14795e5c4f63SKevin Wolf         }
14805577fff7SMarkus Armbruster         error_prepend(errp, "Could not parse the JSON options: ");
14815577fff7SMarkus Armbruster         return NULL;
14825577fff7SMarkus Armbruster     }
14835e5c4f63SKevin Wolf 
14847dc847ebSMax Reitz     options = qobject_to(QDict, options_obj);
1485ca6b6e1eSMarkus Armbruster     if (!options) {
1486cb3e7f08SMarc-André Lureau         qobject_unref(options_obj);
14875e5c4f63SKevin Wolf         error_setg(errp, "Invalid JSON object given");
14885e5c4f63SKevin Wolf         return NULL;
14895e5c4f63SKevin Wolf     }
14905e5c4f63SKevin Wolf 
14915e5c4f63SKevin Wolf     qdict_flatten(options);
14925e5c4f63SKevin Wolf 
14935e5c4f63SKevin Wolf     return options;
14945e5c4f63SKevin Wolf }
14955e5c4f63SKevin Wolf 
1496de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename,
1497de3b53f0SKevin Wolf                                 Error **errp)
1498de3b53f0SKevin Wolf {
1499de3b53f0SKevin Wolf     QDict *json_options;
1500de3b53f0SKevin Wolf     Error *local_err = NULL;
1501de3b53f0SKevin Wolf 
1502de3b53f0SKevin Wolf     /* Parse json: pseudo-protocol */
1503de3b53f0SKevin Wolf     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1504de3b53f0SKevin Wolf         return;
1505de3b53f0SKevin Wolf     }
1506de3b53f0SKevin Wolf 
1507de3b53f0SKevin Wolf     json_options = parse_json_filename(*pfilename, &local_err);
1508de3b53f0SKevin Wolf     if (local_err) {
1509de3b53f0SKevin Wolf         error_propagate(errp, local_err);
1510de3b53f0SKevin Wolf         return;
1511de3b53f0SKevin Wolf     }
1512de3b53f0SKevin Wolf 
1513de3b53f0SKevin Wolf     /* Options given in the filename have lower priority than options
1514de3b53f0SKevin Wolf      * specified directly */
1515de3b53f0SKevin Wolf     qdict_join(options, json_options, false);
1516cb3e7f08SMarc-André Lureau     qobject_unref(json_options);
1517de3b53f0SKevin Wolf     *pfilename = NULL;
1518de3b53f0SKevin Wolf }
1519de3b53f0SKevin Wolf 
152057915332SKevin Wolf /*
1521f54120ffSKevin Wolf  * Fills in default options for opening images and converts the legacy
1522f54120ffSKevin Wolf  * filename/flags pair to option QDict entries.
152353a29513SMax Reitz  * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
152453a29513SMax Reitz  * block driver has been specified explicitly.
1525f54120ffSKevin Wolf  */
1526de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename,
1527053e1578SMax Reitz                              int *flags, Error **errp)
1528f54120ffSKevin Wolf {
1529f54120ffSKevin Wolf     const char *drvname;
153053a29513SMax Reitz     bool protocol = *flags & BDRV_O_PROTOCOL;
1531f54120ffSKevin Wolf     bool parse_filename = false;
1532053e1578SMax Reitz     BlockDriver *drv = NULL;
1533f54120ffSKevin Wolf     Error *local_err = NULL;
1534f54120ffSKevin Wolf 
1535129c7d1cSMarkus Armbruster     /*
1536129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
1537129c7d1cSMarkus Armbruster      * types would require more care.  When @options come from
1538129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
1539129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
1540129c7d1cSMarkus Armbruster      * QString.
1541129c7d1cSMarkus Armbruster      */
154253a29513SMax Reitz     drvname = qdict_get_try_str(*options, "driver");
1543053e1578SMax Reitz     if (drvname) {
1544053e1578SMax Reitz         drv = bdrv_find_format(drvname);
1545053e1578SMax Reitz         if (!drv) {
1546053e1578SMax Reitz             error_setg(errp, "Unknown driver '%s'", drvname);
1547053e1578SMax Reitz             return -ENOENT;
1548053e1578SMax Reitz         }
154953a29513SMax Reitz         /* If the user has explicitly specified the driver, this choice should
155053a29513SMax Reitz          * override the BDRV_O_PROTOCOL flag */
1551053e1578SMax Reitz         protocol = drv->bdrv_file_open;
155253a29513SMax Reitz     }
155353a29513SMax Reitz 
155453a29513SMax Reitz     if (protocol) {
155553a29513SMax Reitz         *flags |= BDRV_O_PROTOCOL;
155653a29513SMax Reitz     } else {
155753a29513SMax Reitz         *flags &= ~BDRV_O_PROTOCOL;
155853a29513SMax Reitz     }
155953a29513SMax Reitz 
156091a097e7SKevin Wolf     /* Translate cache options from flags into options */
156191a097e7SKevin Wolf     update_options_from_flags(*options, *flags);
156291a097e7SKevin Wolf 
1563f54120ffSKevin Wolf     /* Fetch the file name from the options QDict if necessary */
156417b005f1SKevin Wolf     if (protocol && filename) {
1565f54120ffSKevin Wolf         if (!qdict_haskey(*options, "filename")) {
156646f5ac20SEric Blake             qdict_put_str(*options, "filename", filename);
1567f54120ffSKevin Wolf             parse_filename = true;
1568f54120ffSKevin Wolf         } else {
1569f54120ffSKevin Wolf             error_setg(errp, "Can't specify 'file' and 'filename' options at "
1570f54120ffSKevin Wolf                              "the same time");
1571f54120ffSKevin Wolf             return -EINVAL;
1572f54120ffSKevin Wolf         }
1573f54120ffSKevin Wolf     }
1574f54120ffSKevin Wolf 
1575f54120ffSKevin Wolf     /* Find the right block driver */
1576129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
1577f54120ffSKevin Wolf     filename = qdict_get_try_str(*options, "filename");
1578f54120ffSKevin Wolf 
157917b005f1SKevin Wolf     if (!drvname && protocol) {
1580f54120ffSKevin Wolf         if (filename) {
1581b65a5e12SMax Reitz             drv = bdrv_find_protocol(filename, parse_filename, errp);
1582f54120ffSKevin Wolf             if (!drv) {
1583f54120ffSKevin Wolf                 return -EINVAL;
1584f54120ffSKevin Wolf             }
1585f54120ffSKevin Wolf 
1586f54120ffSKevin Wolf             drvname = drv->format_name;
158746f5ac20SEric Blake             qdict_put_str(*options, "driver", drvname);
1588f54120ffSKevin Wolf         } else {
1589f54120ffSKevin Wolf             error_setg(errp, "Must specify either driver or file");
1590f54120ffSKevin Wolf             return -EINVAL;
1591f54120ffSKevin Wolf         }
159217b005f1SKevin Wolf     }
159317b005f1SKevin Wolf 
159417b005f1SKevin Wolf     assert(drv || !protocol);
1595f54120ffSKevin Wolf 
1596f54120ffSKevin Wolf     /* Driver-specific filename parsing */
159717b005f1SKevin Wolf     if (drv && drv->bdrv_parse_filename && parse_filename) {
1598f54120ffSKevin Wolf         drv->bdrv_parse_filename(filename, *options, &local_err);
1599f54120ffSKevin Wolf         if (local_err) {
1600f54120ffSKevin Wolf             error_propagate(errp, local_err);
1601f54120ffSKevin Wolf             return -EINVAL;
1602f54120ffSKevin Wolf         }
1603f54120ffSKevin Wolf 
1604f54120ffSKevin Wolf         if (!drv->bdrv_needs_filename) {
1605f54120ffSKevin Wolf             qdict_del(*options, "filename");
1606f54120ffSKevin Wolf         }
1607f54120ffSKevin Wolf     }
1608f54120ffSKevin Wolf 
1609f54120ffSKevin Wolf     return 0;
1610f54120ffSKevin Wolf }
1611f54120ffSKevin Wolf 
16123121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
16133121fb45SKevin Wolf                                  uint64_t perm, uint64_t shared,
1614c1cef672SFam Zheng                                  GSList *ignore_children, Error **errp);
1615c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c);
1616c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1617c1cef672SFam Zheng 
1618148eb13cSKevin Wolf typedef struct BlockReopenQueueEntry {
1619148eb13cSKevin Wolf      bool prepared;
1620148eb13cSKevin Wolf      BDRVReopenState state;
1621148eb13cSKevin Wolf      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1622148eb13cSKevin Wolf } BlockReopenQueueEntry;
1623148eb13cSKevin Wolf 
1624148eb13cSKevin Wolf /*
1625148eb13cSKevin Wolf  * Return the flags that @bs will have after the reopens in @q have
1626148eb13cSKevin Wolf  * successfully completed. If @q is NULL (or @bs is not contained in @q),
1627148eb13cSKevin Wolf  * return the current flags.
1628148eb13cSKevin Wolf  */
1629148eb13cSKevin Wolf static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1630148eb13cSKevin Wolf {
1631148eb13cSKevin Wolf     BlockReopenQueueEntry *entry;
1632148eb13cSKevin Wolf 
1633148eb13cSKevin Wolf     if (q != NULL) {
1634148eb13cSKevin Wolf         QSIMPLEQ_FOREACH(entry, q, entry) {
1635148eb13cSKevin Wolf             if (entry->state.bs == bs) {
1636148eb13cSKevin Wolf                 return entry->state.flags;
1637148eb13cSKevin Wolf             }
1638148eb13cSKevin Wolf         }
1639148eb13cSKevin Wolf     }
1640148eb13cSKevin Wolf 
1641148eb13cSKevin Wolf     return bs->open_flags;
1642148eb13cSKevin Wolf }
1643148eb13cSKevin Wolf 
1644148eb13cSKevin Wolf /* Returns whether the image file can be written to after the reopen queue @q
1645148eb13cSKevin Wolf  * has been successfully applied, or right now if @q is NULL. */
1646cc022140SMax Reitz static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1647cc022140SMax Reitz                                           BlockReopenQueue *q)
1648148eb13cSKevin Wolf {
1649148eb13cSKevin Wolf     int flags = bdrv_reopen_get_flags(q, bs);
1650148eb13cSKevin Wolf 
1651148eb13cSKevin Wolf     return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1652148eb13cSKevin Wolf }
1653148eb13cSKevin Wolf 
1654cc022140SMax Reitz /*
1655cc022140SMax Reitz  * Return whether the BDS can be written to.  This is not necessarily
1656cc022140SMax Reitz  * the same as !bdrv_is_read_only(bs), as inactivated images may not
1657cc022140SMax Reitz  * be written to but do not count as read-only images.
1658cc022140SMax Reitz  */
1659cc022140SMax Reitz bool bdrv_is_writable(BlockDriverState *bs)
1660cc022140SMax Reitz {
1661cc022140SMax Reitz     return bdrv_is_writable_after_reopen(bs, NULL);
1662cc022140SMax Reitz }
1663cc022140SMax Reitz 
1664ffd1a5a2SFam Zheng static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
1665e0995dc3SKevin Wolf                             BdrvChild *c, const BdrvChildRole *role,
1666e0995dc3SKevin Wolf                             BlockReopenQueue *reopen_queue,
1667ffd1a5a2SFam Zheng                             uint64_t parent_perm, uint64_t parent_shared,
1668ffd1a5a2SFam Zheng                             uint64_t *nperm, uint64_t *nshared)
1669ffd1a5a2SFam Zheng {
1670ffd1a5a2SFam Zheng     if (bs->drv && bs->drv->bdrv_child_perm) {
1671e0995dc3SKevin Wolf         bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
1672ffd1a5a2SFam Zheng                                  parent_perm, parent_shared,
1673ffd1a5a2SFam Zheng                                  nperm, nshared);
1674ffd1a5a2SFam Zheng     }
1675e0995dc3SKevin Wolf     /* TODO Take force_share from reopen_queue */
1676ffd1a5a2SFam Zheng     if (child_bs && child_bs->force_share) {
1677ffd1a5a2SFam Zheng         *nshared = BLK_PERM_ALL;
1678ffd1a5a2SFam Zheng     }
1679ffd1a5a2SFam Zheng }
1680ffd1a5a2SFam Zheng 
168133a610c3SKevin Wolf /*
168233a610c3SKevin Wolf  * Check whether permissions on this node can be changed in a way that
168333a610c3SKevin Wolf  * @cumulative_perms and @cumulative_shared_perms are the new cumulative
168433a610c3SKevin Wolf  * permissions of all its parents. This involves checking whether all necessary
168533a610c3SKevin Wolf  * permission changes to child nodes can be performed.
168633a610c3SKevin Wolf  *
168733a610c3SKevin Wolf  * A call to this function must always be followed by a call to bdrv_set_perm()
168833a610c3SKevin Wolf  * or bdrv_abort_perm_update().
168933a610c3SKevin Wolf  */
16903121fb45SKevin Wolf static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
16913121fb45SKevin Wolf                            uint64_t cumulative_perms,
169246181129SKevin Wolf                            uint64_t cumulative_shared_perms,
169346181129SKevin Wolf                            GSList *ignore_children, Error **errp)
169433a610c3SKevin Wolf {
169533a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
169633a610c3SKevin Wolf     BdrvChild *c;
169733a610c3SKevin Wolf     int ret;
169833a610c3SKevin Wolf 
169933a610c3SKevin Wolf     /* Write permissions never work with read-only images */
170033a610c3SKevin Wolf     if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
1701cc022140SMax Reitz         !bdrv_is_writable_after_reopen(bs, q))
170233a610c3SKevin Wolf     {
170333a610c3SKevin Wolf         error_setg(errp, "Block node is read-only");
170433a610c3SKevin Wolf         return -EPERM;
170533a610c3SKevin Wolf     }
170633a610c3SKevin Wolf 
170733a610c3SKevin Wolf     /* Check this node */
170833a610c3SKevin Wolf     if (!drv) {
170933a610c3SKevin Wolf         return 0;
171033a610c3SKevin Wolf     }
171133a610c3SKevin Wolf 
171233a610c3SKevin Wolf     if (drv->bdrv_check_perm) {
171333a610c3SKevin Wolf         return drv->bdrv_check_perm(bs, cumulative_perms,
171433a610c3SKevin Wolf                                     cumulative_shared_perms, errp);
171533a610c3SKevin Wolf     }
171633a610c3SKevin Wolf 
171778e421c9SKevin Wolf     /* Drivers that never have children can omit .bdrv_child_perm() */
171833a610c3SKevin Wolf     if (!drv->bdrv_child_perm) {
171978e421c9SKevin Wolf         assert(QLIST_EMPTY(&bs->children));
172033a610c3SKevin Wolf         return 0;
172133a610c3SKevin Wolf     }
172233a610c3SKevin Wolf 
172333a610c3SKevin Wolf     /* Check all children */
172433a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
172533a610c3SKevin Wolf         uint64_t cur_perm, cur_shared;
17263121fb45SKevin Wolf         bdrv_child_perm(bs, c->bs, c, c->role, q,
172733a610c3SKevin Wolf                         cumulative_perms, cumulative_shared_perms,
172833a610c3SKevin Wolf                         &cur_perm, &cur_shared);
17293121fb45SKevin Wolf         ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
17303121fb45SKevin Wolf                                     ignore_children, errp);
173133a610c3SKevin Wolf         if (ret < 0) {
173233a610c3SKevin Wolf             return ret;
173333a610c3SKevin Wolf         }
173433a610c3SKevin Wolf     }
173533a610c3SKevin Wolf 
173633a610c3SKevin Wolf     return 0;
173733a610c3SKevin Wolf }
173833a610c3SKevin Wolf 
173933a610c3SKevin Wolf /*
174033a610c3SKevin Wolf  * Notifies drivers that after a previous bdrv_check_perm() call, the
174133a610c3SKevin Wolf  * permission update is not performed and any preparations made for it (e.g.
174233a610c3SKevin Wolf  * taken file locks) need to be undone.
174333a610c3SKevin Wolf  *
174433a610c3SKevin Wolf  * This function recursively notifies all child nodes.
174533a610c3SKevin Wolf  */
174633a610c3SKevin Wolf static void bdrv_abort_perm_update(BlockDriverState *bs)
174733a610c3SKevin Wolf {
174833a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
174933a610c3SKevin Wolf     BdrvChild *c;
175033a610c3SKevin Wolf 
175133a610c3SKevin Wolf     if (!drv) {
175233a610c3SKevin Wolf         return;
175333a610c3SKevin Wolf     }
175433a610c3SKevin Wolf 
175533a610c3SKevin Wolf     if (drv->bdrv_abort_perm_update) {
175633a610c3SKevin Wolf         drv->bdrv_abort_perm_update(bs);
175733a610c3SKevin Wolf     }
175833a610c3SKevin Wolf 
175933a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
176033a610c3SKevin Wolf         bdrv_child_abort_perm_update(c);
176133a610c3SKevin Wolf     }
176233a610c3SKevin Wolf }
176333a610c3SKevin Wolf 
176433a610c3SKevin Wolf static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
176533a610c3SKevin Wolf                           uint64_t cumulative_shared_perms)
176633a610c3SKevin Wolf {
176733a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
176833a610c3SKevin Wolf     BdrvChild *c;
176933a610c3SKevin Wolf 
177033a610c3SKevin Wolf     if (!drv) {
177133a610c3SKevin Wolf         return;
177233a610c3SKevin Wolf     }
177333a610c3SKevin Wolf 
177433a610c3SKevin Wolf     /* Update this node */
177533a610c3SKevin Wolf     if (drv->bdrv_set_perm) {
177633a610c3SKevin Wolf         drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
177733a610c3SKevin Wolf     }
177833a610c3SKevin Wolf 
177978e421c9SKevin Wolf     /* Drivers that never have children can omit .bdrv_child_perm() */
178033a610c3SKevin Wolf     if (!drv->bdrv_child_perm) {
178178e421c9SKevin Wolf         assert(QLIST_EMPTY(&bs->children));
178233a610c3SKevin Wolf         return;
178333a610c3SKevin Wolf     }
178433a610c3SKevin Wolf 
178533a610c3SKevin Wolf     /* Update all children */
178633a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
178733a610c3SKevin Wolf         uint64_t cur_perm, cur_shared;
1788e0995dc3SKevin Wolf         bdrv_child_perm(bs, c->bs, c, c->role, NULL,
178933a610c3SKevin Wolf                         cumulative_perms, cumulative_shared_perms,
179033a610c3SKevin Wolf                         &cur_perm, &cur_shared);
179133a610c3SKevin Wolf         bdrv_child_set_perm(c, cur_perm, cur_shared);
179233a610c3SKevin Wolf     }
179333a610c3SKevin Wolf }
179433a610c3SKevin Wolf 
179533a610c3SKevin Wolf static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
179633a610c3SKevin Wolf                                      uint64_t *shared_perm)
179733a610c3SKevin Wolf {
179833a610c3SKevin Wolf     BdrvChild *c;
179933a610c3SKevin Wolf     uint64_t cumulative_perms = 0;
180033a610c3SKevin Wolf     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
180133a610c3SKevin Wolf 
180233a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
180333a610c3SKevin Wolf         cumulative_perms |= c->perm;
180433a610c3SKevin Wolf         cumulative_shared_perms &= c->shared_perm;
180533a610c3SKevin Wolf     }
180633a610c3SKevin Wolf 
180733a610c3SKevin Wolf     *perm = cumulative_perms;
180833a610c3SKevin Wolf     *shared_perm = cumulative_shared_perms;
180933a610c3SKevin Wolf }
181033a610c3SKevin Wolf 
1811d083319fSKevin Wolf static char *bdrv_child_user_desc(BdrvChild *c)
1812d083319fSKevin Wolf {
1813d083319fSKevin Wolf     if (c->role->get_parent_desc) {
1814d083319fSKevin Wolf         return c->role->get_parent_desc(c);
1815d083319fSKevin Wolf     }
1816d083319fSKevin Wolf 
1817d083319fSKevin Wolf     return g_strdup("another user");
1818d083319fSKevin Wolf }
1819d083319fSKevin Wolf 
18205176196cSFam Zheng char *bdrv_perm_names(uint64_t perm)
1821d083319fSKevin Wolf {
1822d083319fSKevin Wolf     struct perm_name {
1823d083319fSKevin Wolf         uint64_t perm;
1824d083319fSKevin Wolf         const char *name;
1825d083319fSKevin Wolf     } permissions[] = {
1826d083319fSKevin Wolf         { BLK_PERM_CONSISTENT_READ, "consistent read" },
1827d083319fSKevin Wolf         { BLK_PERM_WRITE,           "write" },
1828d083319fSKevin Wolf         { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1829d083319fSKevin Wolf         { BLK_PERM_RESIZE,          "resize" },
1830d083319fSKevin Wolf         { BLK_PERM_GRAPH_MOD,       "change children" },
1831d083319fSKevin Wolf         { 0, NULL }
1832d083319fSKevin Wolf     };
1833d083319fSKevin Wolf 
1834d083319fSKevin Wolf     char *result = g_strdup("");
1835d083319fSKevin Wolf     struct perm_name *p;
1836d083319fSKevin Wolf 
1837d083319fSKevin Wolf     for (p = permissions; p->name; p++) {
1838d083319fSKevin Wolf         if (perm & p->perm) {
1839d083319fSKevin Wolf             char *old = result;
1840d083319fSKevin Wolf             result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1841d083319fSKevin Wolf             g_free(old);
1842d083319fSKevin Wolf         }
1843d083319fSKevin Wolf     }
1844d083319fSKevin Wolf 
1845d083319fSKevin Wolf     return result;
1846d083319fSKevin Wolf }
1847d083319fSKevin Wolf 
184833a610c3SKevin Wolf /*
184933a610c3SKevin Wolf  * Checks whether a new reference to @bs can be added if the new user requires
185046181129SKevin Wolf  * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
185146181129SKevin Wolf  * set, the BdrvChild objects in this list are ignored in the calculations;
185246181129SKevin Wolf  * this allows checking permission updates for an existing reference.
185333a610c3SKevin Wolf  *
185433a610c3SKevin Wolf  * Needs to be followed by a call to either bdrv_set_perm() or
185533a610c3SKevin Wolf  * bdrv_abort_perm_update(). */
18563121fb45SKevin Wolf static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
18573121fb45SKevin Wolf                                   uint64_t new_used_perm,
1858d5e6f437SKevin Wolf                                   uint64_t new_shared_perm,
185946181129SKevin Wolf                                   GSList *ignore_children, Error **errp)
1860d5e6f437SKevin Wolf {
1861d5e6f437SKevin Wolf     BdrvChild *c;
186233a610c3SKevin Wolf     uint64_t cumulative_perms = new_used_perm;
186333a610c3SKevin Wolf     uint64_t cumulative_shared_perms = new_shared_perm;
1864d5e6f437SKevin Wolf 
1865d5e6f437SKevin Wolf     /* There is no reason why anyone couldn't tolerate write_unchanged */
1866d5e6f437SKevin Wolf     assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1867d5e6f437SKevin Wolf 
1868d5e6f437SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
186946181129SKevin Wolf         if (g_slist_find(ignore_children, c)) {
1870d5e6f437SKevin Wolf             continue;
1871d5e6f437SKevin Wolf         }
1872d5e6f437SKevin Wolf 
1873d083319fSKevin Wolf         if ((new_used_perm & c->shared_perm) != new_used_perm) {
1874d083319fSKevin Wolf             char *user = bdrv_child_user_desc(c);
1875d083319fSKevin Wolf             char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1876d083319fSKevin Wolf             error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1877d083319fSKevin Wolf                              "allow '%s' on %s",
1878d083319fSKevin Wolf                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1879d083319fSKevin Wolf             g_free(user);
1880d083319fSKevin Wolf             g_free(perm_names);
1881d083319fSKevin Wolf             return -EPERM;
1882d5e6f437SKevin Wolf         }
1883d083319fSKevin Wolf 
1884d083319fSKevin Wolf         if ((c->perm & new_shared_perm) != c->perm) {
1885d083319fSKevin Wolf             char *user = bdrv_child_user_desc(c);
1886d083319fSKevin Wolf             char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1887d083319fSKevin Wolf             error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1888d083319fSKevin Wolf                              "'%s' on %s",
1889d083319fSKevin Wolf                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1890d083319fSKevin Wolf             g_free(user);
1891d083319fSKevin Wolf             g_free(perm_names);
1892d5e6f437SKevin Wolf             return -EPERM;
1893d5e6f437SKevin Wolf         }
189433a610c3SKevin Wolf 
189533a610c3SKevin Wolf         cumulative_perms |= c->perm;
189633a610c3SKevin Wolf         cumulative_shared_perms &= c->shared_perm;
1897d5e6f437SKevin Wolf     }
1898d5e6f437SKevin Wolf 
18993121fb45SKevin Wolf     return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
190046181129SKevin Wolf                            ignore_children, errp);
190133a610c3SKevin Wolf }
190233a610c3SKevin Wolf 
190333a610c3SKevin Wolf /* Needs to be followed by a call to either bdrv_child_set_perm() or
190433a610c3SKevin Wolf  * bdrv_child_abort_perm_update(). */
19053121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
19063121fb45SKevin Wolf                                  uint64_t perm, uint64_t shared,
190746181129SKevin Wolf                                  GSList *ignore_children, Error **errp)
190833a610c3SKevin Wolf {
190946181129SKevin Wolf     int ret;
191046181129SKevin Wolf 
191146181129SKevin Wolf     ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
19123121fb45SKevin Wolf     ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
191346181129SKevin Wolf     g_slist_free(ignore_children);
191446181129SKevin Wolf 
191546181129SKevin Wolf     return ret;
191633a610c3SKevin Wolf }
191733a610c3SKevin Wolf 
1918c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
191933a610c3SKevin Wolf {
192033a610c3SKevin Wolf     uint64_t cumulative_perms, cumulative_shared_perms;
192133a610c3SKevin Wolf 
192233a610c3SKevin Wolf     c->perm = perm;
192333a610c3SKevin Wolf     c->shared_perm = shared;
192433a610c3SKevin Wolf 
192533a610c3SKevin Wolf     bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
192633a610c3SKevin Wolf                              &cumulative_shared_perms);
192733a610c3SKevin Wolf     bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
192833a610c3SKevin Wolf }
192933a610c3SKevin Wolf 
1930c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c)
193133a610c3SKevin Wolf {
193233a610c3SKevin Wolf     bdrv_abort_perm_update(c->bs);
193333a610c3SKevin Wolf }
193433a610c3SKevin Wolf 
193533a610c3SKevin Wolf int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
193633a610c3SKevin Wolf                             Error **errp)
193733a610c3SKevin Wolf {
193833a610c3SKevin Wolf     int ret;
193933a610c3SKevin Wolf 
19403121fb45SKevin Wolf     ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
194133a610c3SKevin Wolf     if (ret < 0) {
194233a610c3SKevin Wolf         bdrv_child_abort_perm_update(c);
194333a610c3SKevin Wolf         return ret;
194433a610c3SKevin Wolf     }
194533a610c3SKevin Wolf 
194633a610c3SKevin Wolf     bdrv_child_set_perm(c, perm, shared);
194733a610c3SKevin Wolf 
1948d5e6f437SKevin Wolf     return 0;
1949d5e6f437SKevin Wolf }
1950d5e6f437SKevin Wolf 
19516a1b9ee1SKevin Wolf #define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \
19526a1b9ee1SKevin Wolf                                  | BLK_PERM_WRITE \
19536a1b9ee1SKevin Wolf                                  | BLK_PERM_WRITE_UNCHANGED \
19546a1b9ee1SKevin Wolf                                  | BLK_PERM_RESIZE)
19556a1b9ee1SKevin Wolf #define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH)
19566a1b9ee1SKevin Wolf 
19576a1b9ee1SKevin Wolf void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
19586a1b9ee1SKevin Wolf                                const BdrvChildRole *role,
1959e0995dc3SKevin Wolf                                BlockReopenQueue *reopen_queue,
19606a1b9ee1SKevin Wolf                                uint64_t perm, uint64_t shared,
19616a1b9ee1SKevin Wolf                                uint64_t *nperm, uint64_t *nshared)
19626a1b9ee1SKevin Wolf {
19636a1b9ee1SKevin Wolf     if (c == NULL) {
19646a1b9ee1SKevin Wolf         *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
19656a1b9ee1SKevin Wolf         *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
19666a1b9ee1SKevin Wolf         return;
19676a1b9ee1SKevin Wolf     }
19686a1b9ee1SKevin Wolf 
19696a1b9ee1SKevin Wolf     *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
19706a1b9ee1SKevin Wolf              (c->perm & DEFAULT_PERM_UNCHANGED);
19716a1b9ee1SKevin Wolf     *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
19726a1b9ee1SKevin Wolf                (c->shared_perm & DEFAULT_PERM_UNCHANGED);
19736a1b9ee1SKevin Wolf }
19746a1b9ee1SKevin Wolf 
19756b1a044aSKevin Wolf void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
19766b1a044aSKevin Wolf                                const BdrvChildRole *role,
1977e0995dc3SKevin Wolf                                BlockReopenQueue *reopen_queue,
19786b1a044aSKevin Wolf                                uint64_t perm, uint64_t shared,
19796b1a044aSKevin Wolf                                uint64_t *nperm, uint64_t *nshared)
19806b1a044aSKevin Wolf {
19816b1a044aSKevin Wolf     bool backing = (role == &child_backing);
19826b1a044aSKevin Wolf     assert(role == &child_backing || role == &child_file);
19836b1a044aSKevin Wolf 
19846b1a044aSKevin Wolf     if (!backing) {
19855fbfabd3SKevin Wolf         int flags = bdrv_reopen_get_flags(reopen_queue, bs);
19865fbfabd3SKevin Wolf 
19876b1a044aSKevin Wolf         /* Apart from the modifications below, the same permissions are
19886b1a044aSKevin Wolf          * forwarded and left alone as for filters */
1989e0995dc3SKevin Wolf         bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
1990e0995dc3SKevin Wolf                                   &perm, &shared);
19916b1a044aSKevin Wolf 
19926b1a044aSKevin Wolf         /* Format drivers may touch metadata even if the guest doesn't write */
1993cc022140SMax Reitz         if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
19946b1a044aSKevin Wolf             perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
19956b1a044aSKevin Wolf         }
19966b1a044aSKevin Wolf 
19976b1a044aSKevin Wolf         /* bs->file always needs to be consistent because of the metadata. We
19986b1a044aSKevin Wolf          * can never allow other users to resize or write to it. */
19995fbfabd3SKevin Wolf         if (!(flags & BDRV_O_NO_IO)) {
20006b1a044aSKevin Wolf             perm |= BLK_PERM_CONSISTENT_READ;
20015fbfabd3SKevin Wolf         }
20026b1a044aSKevin Wolf         shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
20036b1a044aSKevin Wolf     } else {
20046b1a044aSKevin Wolf         /* We want consistent read from backing files if the parent needs it.
20056b1a044aSKevin Wolf          * No other operations are performed on backing files. */
20066b1a044aSKevin Wolf         perm &= BLK_PERM_CONSISTENT_READ;
20076b1a044aSKevin Wolf 
20086b1a044aSKevin Wolf         /* If the parent can deal with changing data, we're okay with a
20096b1a044aSKevin Wolf          * writable and resizable backing file. */
20106b1a044aSKevin Wolf         /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
20116b1a044aSKevin Wolf         if (shared & BLK_PERM_WRITE) {
20126b1a044aSKevin Wolf             shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
20136b1a044aSKevin Wolf         } else {
20146b1a044aSKevin Wolf             shared = 0;
20156b1a044aSKevin Wolf         }
20166b1a044aSKevin Wolf 
20176b1a044aSKevin Wolf         shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
20186b1a044aSKevin Wolf                   BLK_PERM_WRITE_UNCHANGED;
20196b1a044aSKevin Wolf     }
20206b1a044aSKevin Wolf 
20219c5e6594SKevin Wolf     if (bs->open_flags & BDRV_O_INACTIVE) {
20229c5e6594SKevin Wolf         shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
20239c5e6594SKevin Wolf     }
20249c5e6594SKevin Wolf 
20256b1a044aSKevin Wolf     *nperm = perm;
20266b1a044aSKevin Wolf     *nshared = shared;
20276b1a044aSKevin Wolf }
20286b1a044aSKevin Wolf 
20298ee03995SKevin Wolf static void bdrv_replace_child_noperm(BdrvChild *child,
20308ee03995SKevin Wolf                                       BlockDriverState *new_bs)
2031e9740bc6SKevin Wolf {
2032e9740bc6SKevin Wolf     BlockDriverState *old_bs = child->bs;
20330152bf40SKevin Wolf     int i;
2034e9740bc6SKevin Wolf 
2035bb2614e9SFam Zheng     if (old_bs && new_bs) {
2036bb2614e9SFam Zheng         assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2037bb2614e9SFam Zheng     }
2038e9740bc6SKevin Wolf     if (old_bs) {
2039d736f119SKevin Wolf         /* Detach first so that the recursive drain sections coming from @child
2040d736f119SKevin Wolf          * are already gone and we only end the drain sections that came from
2041d736f119SKevin Wolf          * elsewhere. */
2042d736f119SKevin Wolf         if (child->role->detach) {
2043d736f119SKevin Wolf             child->role->detach(child);
2044d736f119SKevin Wolf         }
204536fe1331SKevin Wolf         if (old_bs->quiesce_counter && child->role->drained_end) {
2046*0f12264eSKevin Wolf             int num = old_bs->quiesce_counter;
2047*0f12264eSKevin Wolf             if (child->role->parent_is_bds) {
2048*0f12264eSKevin Wolf                 num -= bdrv_drain_all_count;
2049*0f12264eSKevin Wolf             }
2050*0f12264eSKevin Wolf             assert(num >= 0);
2051*0f12264eSKevin Wolf             for (i = 0; i < num; i++) {
205236fe1331SKevin Wolf                 child->role->drained_end(child);
2053e9740bc6SKevin Wolf             }
20540152bf40SKevin Wolf         }
205536fe1331SKevin Wolf         QLIST_REMOVE(child, next_parent);
2056e9740bc6SKevin Wolf     }
2057e9740bc6SKevin Wolf 
2058e9740bc6SKevin Wolf     child->bs = new_bs;
205936fe1331SKevin Wolf 
206036fe1331SKevin Wolf     if (new_bs) {
206136fe1331SKevin Wolf         QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
206236fe1331SKevin Wolf         if (new_bs->quiesce_counter && child->role->drained_begin) {
2063*0f12264eSKevin Wolf             int num = new_bs->quiesce_counter;
2064*0f12264eSKevin Wolf             if (child->role->parent_is_bds) {
2065*0f12264eSKevin Wolf                 num -= bdrv_drain_all_count;
2066*0f12264eSKevin Wolf             }
2067*0f12264eSKevin Wolf             assert(num >= 0);
2068*0f12264eSKevin Wolf             for (i = 0; i < num; i++) {
206936fe1331SKevin Wolf                 child->role->drained_begin(child);
207036fe1331SKevin Wolf             }
20710152bf40SKevin Wolf         }
207233a610c3SKevin Wolf 
2073d736f119SKevin Wolf         /* Attach only after starting new drained sections, so that recursive
2074d736f119SKevin Wolf          * drain sections coming from @child don't get an extra .drained_begin
2075d736f119SKevin Wolf          * callback. */
2076db95dbbaSKevin Wolf         if (child->role->attach) {
2077db95dbbaSKevin Wolf             child->role->attach(child);
2078db95dbbaSKevin Wolf         }
207936fe1331SKevin Wolf     }
2080e9740bc6SKevin Wolf }
2081e9740bc6SKevin Wolf 
2082466787fbSKevin Wolf /*
2083466787fbSKevin Wolf  * Updates @child to change its reference to point to @new_bs, including
2084466787fbSKevin Wolf  * checking and applying the necessary permisson updates both to the old node
2085466787fbSKevin Wolf  * and to @new_bs.
2086466787fbSKevin Wolf  *
2087466787fbSKevin Wolf  * NULL is passed as @new_bs for removing the reference before freeing @child.
2088466787fbSKevin Wolf  *
2089466787fbSKevin Wolf  * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2090466787fbSKevin Wolf  * function uses bdrv_set_perm() to update the permissions according to the new
2091466787fbSKevin Wolf  * reference that @new_bs gets.
2092466787fbSKevin Wolf  */
2093466787fbSKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
20948ee03995SKevin Wolf {
20958ee03995SKevin Wolf     BlockDriverState *old_bs = child->bs;
20968ee03995SKevin Wolf     uint64_t perm, shared_perm;
20978ee03995SKevin Wolf 
20988aecf1d1SKevin Wolf     bdrv_replace_child_noperm(child, new_bs);
20998aecf1d1SKevin Wolf 
21008ee03995SKevin Wolf     if (old_bs) {
21018ee03995SKevin Wolf         /* Update permissions for old node. This is guaranteed to succeed
21028ee03995SKevin Wolf          * because we're just taking a parent away, so we're loosening
21038ee03995SKevin Wolf          * restrictions. */
21048ee03995SKevin Wolf         bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
21053121fb45SKevin Wolf         bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
21068ee03995SKevin Wolf         bdrv_set_perm(old_bs, perm, shared_perm);
21078ee03995SKevin Wolf     }
21088ee03995SKevin Wolf 
21098ee03995SKevin Wolf     if (new_bs) {
2110f54120ffSKevin Wolf         bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2111f54120ffSKevin Wolf         bdrv_set_perm(new_bs, perm, shared_perm);
2112f54120ffSKevin Wolf     }
2113f54120ffSKevin Wolf }
2114f54120ffSKevin Wolf 
2115f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2116260fecf1SKevin Wolf                                   const char *child_name,
211736fe1331SKevin Wolf                                   const BdrvChildRole *child_role,
2118d5e6f437SKevin Wolf                                   uint64_t perm, uint64_t shared_perm,
2119d5e6f437SKevin Wolf                                   void *opaque, Error **errp)
2120df581792SKevin Wolf {
2121d5e6f437SKevin Wolf     BdrvChild *child;
2122d5e6f437SKevin Wolf     int ret;
2123d5e6f437SKevin Wolf 
21243121fb45SKevin Wolf     ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
2125d5e6f437SKevin Wolf     if (ret < 0) {
212633a610c3SKevin Wolf         bdrv_abort_perm_update(child_bs);
2127d5e6f437SKevin Wolf         return NULL;
2128d5e6f437SKevin Wolf     }
2129d5e6f437SKevin Wolf 
2130d5e6f437SKevin Wolf     child = g_new(BdrvChild, 1);
2131df581792SKevin Wolf     *child = (BdrvChild) {
2132e9740bc6SKevin Wolf         .bs             = NULL,
2133260fecf1SKevin Wolf         .name           = g_strdup(child_name),
2134df581792SKevin Wolf         .role           = child_role,
2135d5e6f437SKevin Wolf         .perm           = perm,
2136d5e6f437SKevin Wolf         .shared_perm    = shared_perm,
213736fe1331SKevin Wolf         .opaque         = opaque,
2138df581792SKevin Wolf     };
2139df581792SKevin Wolf 
214033a610c3SKevin Wolf     /* This performs the matching bdrv_set_perm() for the above check. */
2141466787fbSKevin Wolf     bdrv_replace_child(child, child_bs);
2142b4b059f6SKevin Wolf 
2143b4b059f6SKevin Wolf     return child;
2144df581792SKevin Wolf }
2145df581792SKevin Wolf 
214698292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2147f21d96d0SKevin Wolf                              BlockDriverState *child_bs,
2148f21d96d0SKevin Wolf                              const char *child_name,
21498b2ff529SKevin Wolf                              const BdrvChildRole *child_role,
21508b2ff529SKevin Wolf                              Error **errp)
2151f21d96d0SKevin Wolf {
2152d5e6f437SKevin Wolf     BdrvChild *child;
2153f68c598bSKevin Wolf     uint64_t perm, shared_perm;
2154d5e6f437SKevin Wolf 
2155f68c598bSKevin Wolf     bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2156f68c598bSKevin Wolf 
2157f68c598bSKevin Wolf     assert(parent_bs->drv);
2158bb2614e9SFam Zheng     assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
2159e0995dc3SKevin Wolf     bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2160f68c598bSKevin Wolf                     perm, shared_perm, &perm, &shared_perm);
2161f68c598bSKevin Wolf 
2162d5e6f437SKevin Wolf     child = bdrv_root_attach_child(child_bs, child_name, child_role,
2163f68c598bSKevin Wolf                                    perm, shared_perm, parent_bs, errp);
2164d5e6f437SKevin Wolf     if (child == NULL) {
2165d5e6f437SKevin Wolf         return NULL;
2166d5e6f437SKevin Wolf     }
2167d5e6f437SKevin Wolf 
2168f21d96d0SKevin Wolf     QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2169f21d96d0SKevin Wolf     return child;
2170f21d96d0SKevin Wolf }
2171f21d96d0SKevin Wolf 
21723f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child)
217333a60407SKevin Wolf {
2174f21d96d0SKevin Wolf     if (child->next.le_prev) {
217533a60407SKevin Wolf         QLIST_REMOVE(child, next);
2176f21d96d0SKevin Wolf         child->next.le_prev = NULL;
2177f21d96d0SKevin Wolf     }
2178e9740bc6SKevin Wolf 
2179466787fbSKevin Wolf     bdrv_replace_child(child, NULL);
2180e9740bc6SKevin Wolf 
2181260fecf1SKevin Wolf     g_free(child->name);
218233a60407SKevin Wolf     g_free(child);
218333a60407SKevin Wolf }
218433a60407SKevin Wolf 
2185f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child)
218633a60407SKevin Wolf {
2187779020cbSKevin Wolf     BlockDriverState *child_bs;
2188779020cbSKevin Wolf 
2189f21d96d0SKevin Wolf     child_bs = child->bs;
2190f21d96d0SKevin Wolf     bdrv_detach_child(child);
2191f21d96d0SKevin Wolf     bdrv_unref(child_bs);
2192f21d96d0SKevin Wolf }
2193f21d96d0SKevin Wolf 
2194f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2195f21d96d0SKevin Wolf {
2196779020cbSKevin Wolf     if (child == NULL) {
2197779020cbSKevin Wolf         return;
2198779020cbSKevin Wolf     }
219933a60407SKevin Wolf 
220033a60407SKevin Wolf     if (child->bs->inherits_from == parent) {
22014e4bf5c4SKevin Wolf         BdrvChild *c;
22024e4bf5c4SKevin Wolf 
22034e4bf5c4SKevin Wolf         /* Remove inherits_from only when the last reference between parent and
22044e4bf5c4SKevin Wolf          * child->bs goes away. */
22054e4bf5c4SKevin Wolf         QLIST_FOREACH(c, &parent->children, next) {
22064e4bf5c4SKevin Wolf             if (c != child && c->bs == child->bs) {
22074e4bf5c4SKevin Wolf                 break;
22084e4bf5c4SKevin Wolf             }
22094e4bf5c4SKevin Wolf         }
22104e4bf5c4SKevin Wolf         if (c == NULL) {
221133a60407SKevin Wolf             child->bs->inherits_from = NULL;
221233a60407SKevin Wolf         }
22134e4bf5c4SKevin Wolf     }
221433a60407SKevin Wolf 
2215f21d96d0SKevin Wolf     bdrv_root_unref_child(child);
221633a60407SKevin Wolf }
221733a60407SKevin Wolf 
22185c8cab48SKevin Wolf 
22195c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
22205c8cab48SKevin Wolf {
22215c8cab48SKevin Wolf     BdrvChild *c;
22225c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
22235c8cab48SKevin Wolf         if (c->role->change_media) {
22245c8cab48SKevin Wolf             c->role->change_media(c, load);
22255c8cab48SKevin Wolf         }
22265c8cab48SKevin Wolf     }
22275c8cab48SKevin Wolf }
22285c8cab48SKevin Wolf 
22295c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs)
22305c8cab48SKevin Wolf {
22315c8cab48SKevin Wolf     BdrvChild *c;
22325c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
22335c8cab48SKevin Wolf         if (c->role->resize) {
22345c8cab48SKevin Wolf             c->role->resize(c);
22355c8cab48SKevin Wolf         }
22365c8cab48SKevin Wolf     }
22375c8cab48SKevin Wolf }
22385c8cab48SKevin Wolf 
22395db15a57SKevin Wolf /*
22405db15a57SKevin Wolf  * Sets the backing file link of a BDS. A new reference is created; callers
22415db15a57SKevin Wolf  * which don't need their own reference any more must call bdrv_unref().
22425db15a57SKevin Wolf  */
224312fa4af6SKevin Wolf void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
224412fa4af6SKevin Wolf                          Error **errp)
22458d24cce1SFam Zheng {
22465db15a57SKevin Wolf     if (backing_hd) {
22475db15a57SKevin Wolf         bdrv_ref(backing_hd);
22485db15a57SKevin Wolf     }
22498d24cce1SFam Zheng 
2250760e0063SKevin Wolf     if (bs->backing) {
22515db15a57SKevin Wolf         bdrv_unref_child(bs, bs->backing);
2252826b6ca0SFam Zheng     }
2253826b6ca0SFam Zheng 
22548d24cce1SFam Zheng     if (!backing_hd) {
2255760e0063SKevin Wolf         bs->backing = NULL;
22568d24cce1SFam Zheng         goto out;
22578d24cce1SFam Zheng     }
225812fa4af6SKevin Wolf 
22598b2ff529SKevin Wolf     bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
226012fa4af6SKevin Wolf                                     errp);
226112fa4af6SKevin Wolf     if (!bs->backing) {
226212fa4af6SKevin Wolf         bdrv_unref(backing_hd);
226312fa4af6SKevin Wolf     }
2264826b6ca0SFam Zheng 
22659e7e940cSKevin Wolf     bdrv_refresh_filename(bs);
22669e7e940cSKevin Wolf 
22678d24cce1SFam Zheng out:
22683baca891SKevin Wolf     bdrv_refresh_limits(bs, NULL);
22698d24cce1SFam Zheng }
22708d24cce1SFam Zheng 
227131ca6d07SKevin Wolf /*
227231ca6d07SKevin Wolf  * Opens the backing file for a BlockDriverState if not yet open
227331ca6d07SKevin Wolf  *
2274d9b7b057SKevin Wolf  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2275d9b7b057SKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2276d9b7b057SKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
2277d9b7b057SKevin Wolf  * BlockdevRef.
2278d9b7b057SKevin Wolf  *
2279d9b7b057SKevin Wolf  * TODO Can this be unified with bdrv_open_image()?
228031ca6d07SKevin Wolf  */
2281d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2282d9b7b057SKevin Wolf                            const char *bdref_key, Error **errp)
22839156df12SPaolo Bonzini {
22841ba4b6a5SBenoît Canet     char *backing_filename = g_malloc0(PATH_MAX);
2285d9b7b057SKevin Wolf     char *bdref_key_dot;
2286d9b7b057SKevin Wolf     const char *reference = NULL;
2287317fc44eSKevin Wolf     int ret = 0;
22888d24cce1SFam Zheng     BlockDriverState *backing_hd;
2289d9b7b057SKevin Wolf     QDict *options;
2290d9b7b057SKevin Wolf     QDict *tmp_parent_options = NULL;
229134b5d2c6SMax Reitz     Error *local_err = NULL;
22929156df12SPaolo Bonzini 
2293760e0063SKevin Wolf     if (bs->backing != NULL) {
22941ba4b6a5SBenoît Canet         goto free_exit;
22959156df12SPaolo Bonzini     }
22969156df12SPaolo Bonzini 
229731ca6d07SKevin Wolf     /* NULL means an empty set of options */
2298d9b7b057SKevin Wolf     if (parent_options == NULL) {
2299d9b7b057SKevin Wolf         tmp_parent_options = qdict_new();
2300d9b7b057SKevin Wolf         parent_options = tmp_parent_options;
230131ca6d07SKevin Wolf     }
230231ca6d07SKevin Wolf 
23039156df12SPaolo Bonzini     bs->open_flags &= ~BDRV_O_NO_BACKING;
2304d9b7b057SKevin Wolf 
2305d9b7b057SKevin Wolf     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2306d9b7b057SKevin Wolf     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2307d9b7b057SKevin Wolf     g_free(bdref_key_dot);
2308d9b7b057SKevin Wolf 
2309129c7d1cSMarkus Armbruster     /*
2310129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
2311129c7d1cSMarkus Armbruster      * types would require more care.  When @parent_options come from
2312129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
2313129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
2314129c7d1cSMarkus Armbruster      * QString.
2315129c7d1cSMarkus Armbruster      */
2316d9b7b057SKevin Wolf     reference = qdict_get_try_str(parent_options, bdref_key);
2317d9b7b057SKevin Wolf     if (reference || qdict_haskey(options, "file.filename")) {
23181cb6f506SKevin Wolf         backing_filename[0] = '\0';
23191cb6f506SKevin Wolf     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
2320cb3e7f08SMarc-André Lureau         qobject_unref(options);
23211ba4b6a5SBenoît Canet         goto free_exit;
2322dbecebddSFam Zheng     } else {
23239f07429eSMax Reitz         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
23249f07429eSMax Reitz                                        &local_err);
23259f07429eSMax Reitz         if (local_err) {
23269f07429eSMax Reitz             ret = -EINVAL;
23279f07429eSMax Reitz             error_propagate(errp, local_err);
2328cb3e7f08SMarc-André Lureau             qobject_unref(options);
23299f07429eSMax Reitz             goto free_exit;
23309f07429eSMax Reitz         }
23319156df12SPaolo Bonzini     }
23329156df12SPaolo Bonzini 
23338ee79e70SKevin Wolf     if (!bs->drv || !bs->drv->supports_backing) {
23348ee79e70SKevin Wolf         ret = -EINVAL;
23358ee79e70SKevin Wolf         error_setg(errp, "Driver doesn't support backing files");
2336cb3e7f08SMarc-André Lureau         qobject_unref(options);
23378ee79e70SKevin Wolf         goto free_exit;
23388ee79e70SKevin Wolf     }
23398ee79e70SKevin Wolf 
23406bff597bSPeter Krempa     if (!reference &&
23416bff597bSPeter Krempa         bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
234246f5ac20SEric Blake         qdict_put_str(options, "driver", bs->backing_format);
23439156df12SPaolo Bonzini     }
23449156df12SPaolo Bonzini 
23455b363937SMax Reitz     backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2346d9b7b057SKevin Wolf                                    reference, options, 0, bs, &child_backing,
2347e43bfd9cSMarkus Armbruster                                    errp);
23485b363937SMax Reitz     if (!backing_hd) {
23499156df12SPaolo Bonzini         bs->open_flags |= BDRV_O_NO_BACKING;
2350e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not open backing file: ");
23515b363937SMax Reitz         ret = -EINVAL;
23521ba4b6a5SBenoît Canet         goto free_exit;
23539156df12SPaolo Bonzini     }
23545ce6bfe2Ssochin.jiang     bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
2355df581792SKevin Wolf 
23565db15a57SKevin Wolf     /* Hook up the backing file link; drop our reference, bs owns the
23575db15a57SKevin Wolf      * backing_hd reference now */
235812fa4af6SKevin Wolf     bdrv_set_backing_hd(bs, backing_hd, &local_err);
23595db15a57SKevin Wolf     bdrv_unref(backing_hd);
236012fa4af6SKevin Wolf     if (local_err) {
23618cd1a3e4SFam Zheng         error_propagate(errp, local_err);
236212fa4af6SKevin Wolf         ret = -EINVAL;
236312fa4af6SKevin Wolf         goto free_exit;
236412fa4af6SKevin Wolf     }
2365d80ac658SPeter Feiner 
2366d9b7b057SKevin Wolf     qdict_del(parent_options, bdref_key);
2367d9b7b057SKevin Wolf 
23681ba4b6a5SBenoît Canet free_exit:
23691ba4b6a5SBenoît Canet     g_free(backing_filename);
2370cb3e7f08SMarc-André Lureau     qobject_unref(tmp_parent_options);
23711ba4b6a5SBenoît Canet     return ret;
23729156df12SPaolo Bonzini }
23739156df12SPaolo Bonzini 
23742d6b86afSKevin Wolf static BlockDriverState *
23752d6b86afSKevin Wolf bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
23762d6b86afSKevin Wolf                    BlockDriverState *parent, const BdrvChildRole *child_role,
2377f7d9fd8cSMax Reitz                    bool allow_none, Error **errp)
2378da557aacSMax Reitz {
23792d6b86afSKevin Wolf     BlockDriverState *bs = NULL;
2380da557aacSMax Reitz     QDict *image_options;
2381da557aacSMax Reitz     char *bdref_key_dot;
2382da557aacSMax Reitz     const char *reference;
2383da557aacSMax Reitz 
2384df581792SKevin Wolf     assert(child_role != NULL);
2385f67503e5SMax Reitz 
2386da557aacSMax Reitz     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2387da557aacSMax Reitz     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2388da557aacSMax Reitz     g_free(bdref_key_dot);
2389da557aacSMax Reitz 
2390129c7d1cSMarkus Armbruster     /*
2391129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
2392129c7d1cSMarkus Armbruster      * types would require more care.  When @options come from
2393129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
2394129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
2395129c7d1cSMarkus Armbruster      * QString.
2396129c7d1cSMarkus Armbruster      */
2397da557aacSMax Reitz     reference = qdict_get_try_str(options, bdref_key);
2398da557aacSMax Reitz     if (!filename && !reference && !qdict_size(image_options)) {
2399b4b059f6SKevin Wolf         if (!allow_none) {
2400da557aacSMax Reitz             error_setg(errp, "A block device must be specified for \"%s\"",
2401da557aacSMax Reitz                        bdref_key);
2402da557aacSMax Reitz         }
2403cb3e7f08SMarc-André Lureau         qobject_unref(image_options);
2404da557aacSMax Reitz         goto done;
2405da557aacSMax Reitz     }
2406da557aacSMax Reitz 
24075b363937SMax Reitz     bs = bdrv_open_inherit(filename, reference, image_options, 0,
2408ce343771SMax Reitz                            parent, child_role, errp);
24095b363937SMax Reitz     if (!bs) {
2410df581792SKevin Wolf         goto done;
2411df581792SKevin Wolf     }
2412df581792SKevin Wolf 
2413da557aacSMax Reitz done:
2414da557aacSMax Reitz     qdict_del(options, bdref_key);
24152d6b86afSKevin Wolf     return bs;
24162d6b86afSKevin Wolf }
24172d6b86afSKevin Wolf 
24182d6b86afSKevin Wolf /*
24192d6b86afSKevin Wolf  * Opens a disk image whose options are given as BlockdevRef in another block
24202d6b86afSKevin Wolf  * device's options.
24212d6b86afSKevin Wolf  *
24222d6b86afSKevin Wolf  * If allow_none is true, no image will be opened if filename is false and no
24232d6b86afSKevin Wolf  * BlockdevRef is given. NULL will be returned, but errp remains unset.
24242d6b86afSKevin Wolf  *
24252d6b86afSKevin Wolf  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
24262d6b86afSKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
24272d6b86afSKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
24282d6b86afSKevin Wolf  * BlockdevRef.
24292d6b86afSKevin Wolf  *
24302d6b86afSKevin Wolf  * The BlockdevRef will be removed from the options QDict.
24312d6b86afSKevin Wolf  */
24322d6b86afSKevin Wolf BdrvChild *bdrv_open_child(const char *filename,
24332d6b86afSKevin Wolf                            QDict *options, const char *bdref_key,
24342d6b86afSKevin Wolf                            BlockDriverState *parent,
24352d6b86afSKevin Wolf                            const BdrvChildRole *child_role,
24362d6b86afSKevin Wolf                            bool allow_none, Error **errp)
24372d6b86afSKevin Wolf {
24388b2ff529SKevin Wolf     BdrvChild *c;
24392d6b86afSKevin Wolf     BlockDriverState *bs;
24402d6b86afSKevin Wolf 
24412d6b86afSKevin Wolf     bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
24422d6b86afSKevin Wolf                             allow_none, errp);
24432d6b86afSKevin Wolf     if (bs == NULL) {
24442d6b86afSKevin Wolf         return NULL;
24452d6b86afSKevin Wolf     }
24462d6b86afSKevin Wolf 
24478b2ff529SKevin Wolf     c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
24488b2ff529SKevin Wolf     if (!c) {
24498b2ff529SKevin Wolf         bdrv_unref(bs);
24508b2ff529SKevin Wolf         return NULL;
24518b2ff529SKevin Wolf     }
24528b2ff529SKevin Wolf 
24538b2ff529SKevin Wolf     return c;
2454b4b059f6SKevin Wolf }
2455b4b059f6SKevin Wolf 
2456e1d74bc6SKevin Wolf /* TODO Future callers may need to specify parent/child_role in order for
2457e1d74bc6SKevin Wolf  * option inheritance to work. Existing callers use it for the root node. */
2458e1d74bc6SKevin Wolf BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2459e1d74bc6SKevin Wolf {
2460e1d74bc6SKevin Wolf     BlockDriverState *bs = NULL;
2461e1d74bc6SKevin Wolf     Error *local_err = NULL;
2462e1d74bc6SKevin Wolf     QObject *obj = NULL;
2463e1d74bc6SKevin Wolf     QDict *qdict = NULL;
2464e1d74bc6SKevin Wolf     const char *reference = NULL;
2465e1d74bc6SKevin Wolf     Visitor *v = NULL;
2466e1d74bc6SKevin Wolf 
2467e1d74bc6SKevin Wolf     if (ref->type == QTYPE_QSTRING) {
2468e1d74bc6SKevin Wolf         reference = ref->u.reference;
2469e1d74bc6SKevin Wolf     } else {
2470e1d74bc6SKevin Wolf         BlockdevOptions *options = &ref->u.definition;
2471e1d74bc6SKevin Wolf         assert(ref->type == QTYPE_QDICT);
2472e1d74bc6SKevin Wolf 
2473e1d74bc6SKevin Wolf         v = qobject_output_visitor_new(&obj);
2474e1d74bc6SKevin Wolf         visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2475e1d74bc6SKevin Wolf         if (local_err) {
2476e1d74bc6SKevin Wolf             error_propagate(errp, local_err);
2477e1d74bc6SKevin Wolf             goto fail;
2478e1d74bc6SKevin Wolf         }
2479e1d74bc6SKevin Wolf         visit_complete(v, &obj);
2480e1d74bc6SKevin Wolf 
24817dc847ebSMax Reitz         qdict = qobject_to(QDict, obj);
2482e1d74bc6SKevin Wolf         qdict_flatten(qdict);
2483e1d74bc6SKevin Wolf 
2484e1d74bc6SKevin Wolf         /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
2485e1d74bc6SKevin Wolf          * compatibility with other callers) rather than what we want as the
2486e1d74bc6SKevin Wolf          * real defaults. Apply the defaults here instead. */
2487e1d74bc6SKevin Wolf         qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
2488e1d74bc6SKevin Wolf         qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
2489e1d74bc6SKevin Wolf         qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
2490e1d74bc6SKevin Wolf     }
2491e1d74bc6SKevin Wolf 
2492e1d74bc6SKevin Wolf     bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
2493e1d74bc6SKevin Wolf     obj = NULL;
2494e1d74bc6SKevin Wolf 
2495e1d74bc6SKevin Wolf fail:
2496cb3e7f08SMarc-André Lureau     qobject_unref(obj);
2497e1d74bc6SKevin Wolf     visit_free(v);
2498e1d74bc6SKevin Wolf     return bs;
2499e1d74bc6SKevin Wolf }
2500e1d74bc6SKevin Wolf 
250166836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
250266836189SMax Reitz                                                    int flags,
250366836189SMax Reitz                                                    QDict *snapshot_options,
250466836189SMax Reitz                                                    Error **errp)
2505b998875dSKevin Wolf {
2506b998875dSKevin Wolf     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
25071ba4b6a5SBenoît Canet     char *tmp_filename = g_malloc0(PATH_MAX + 1);
2508b998875dSKevin Wolf     int64_t total_size;
250983d0521aSChunyan Liu     QemuOpts *opts = NULL;
2510ff6ed714SEric Blake     BlockDriverState *bs_snapshot = NULL;
2511b2c2832cSKevin Wolf     Error *local_err = NULL;
2512b998875dSKevin Wolf     int ret;
2513b998875dSKevin Wolf 
2514b998875dSKevin Wolf     /* if snapshot, we create a temporary backing file and open it
2515b998875dSKevin Wolf        instead of opening 'filename' directly */
2516b998875dSKevin Wolf 
2517b998875dSKevin Wolf     /* Get the required size from the image */
2518f187743aSKevin Wolf     total_size = bdrv_getlength(bs);
2519f187743aSKevin Wolf     if (total_size < 0) {
2520f187743aSKevin Wolf         error_setg_errno(errp, -total_size, "Could not get image size");
25211ba4b6a5SBenoît Canet         goto out;
2522f187743aSKevin Wolf     }
2523b998875dSKevin Wolf 
2524b998875dSKevin Wolf     /* Create the temporary image */
25251ba4b6a5SBenoît Canet     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
2526b998875dSKevin Wolf     if (ret < 0) {
2527b998875dSKevin Wolf         error_setg_errno(errp, -ret, "Could not get temporary filename");
25281ba4b6a5SBenoît Canet         goto out;
2529b998875dSKevin Wolf     }
2530b998875dSKevin Wolf 
2531ef810437SMax Reitz     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
2532c282e1fdSChunyan Liu                             &error_abort);
253339101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
2534e43bfd9cSMarkus Armbruster     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
253583d0521aSChunyan Liu     qemu_opts_del(opts);
2536b998875dSKevin Wolf     if (ret < 0) {
2537e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not create temporary overlay '%s': ",
2538e43bfd9cSMarkus Armbruster                       tmp_filename);
25391ba4b6a5SBenoît Canet         goto out;
2540b998875dSKevin Wolf     }
2541b998875dSKevin Wolf 
254273176beeSKevin Wolf     /* Prepare options QDict for the temporary file */
254346f5ac20SEric Blake     qdict_put_str(snapshot_options, "file.driver", "file");
254446f5ac20SEric Blake     qdict_put_str(snapshot_options, "file.filename", tmp_filename);
254546f5ac20SEric Blake     qdict_put_str(snapshot_options, "driver", "qcow2");
2546b998875dSKevin Wolf 
25475b363937SMax Reitz     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
254873176beeSKevin Wolf     snapshot_options = NULL;
25495b363937SMax Reitz     if (!bs_snapshot) {
25501ba4b6a5SBenoît Canet         goto out;
2551b998875dSKevin Wolf     }
2552b998875dSKevin Wolf 
2553ff6ed714SEric Blake     /* bdrv_append() consumes a strong reference to bs_snapshot
2554ff6ed714SEric Blake      * (i.e. it will call bdrv_unref() on it) even on error, so in
2555ff6ed714SEric Blake      * order to be able to return one, we have to increase
2556ff6ed714SEric Blake      * bs_snapshot's refcount here */
255766836189SMax Reitz     bdrv_ref(bs_snapshot);
2558b2c2832cSKevin Wolf     bdrv_append(bs_snapshot, bs, &local_err);
2559b2c2832cSKevin Wolf     if (local_err) {
2560b2c2832cSKevin Wolf         error_propagate(errp, local_err);
2561ff6ed714SEric Blake         bs_snapshot = NULL;
2562b2c2832cSKevin Wolf         goto out;
2563b2c2832cSKevin Wolf     }
25641ba4b6a5SBenoît Canet 
25651ba4b6a5SBenoît Canet out:
2566cb3e7f08SMarc-André Lureau     qobject_unref(snapshot_options);
25671ba4b6a5SBenoît Canet     g_free(tmp_filename);
2568ff6ed714SEric Blake     return bs_snapshot;
2569b998875dSKevin Wolf }
2570b998875dSKevin Wolf 
2571da557aacSMax Reitz /*
2572b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
2573de9c0cecSKevin Wolf  *
2574de9c0cecSKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
2575de9c0cecSKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
2576de9c0cecSKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
2577cb3e7f08SMarc-André Lureau  * dictionary, it needs to use qobject_ref() before calling bdrv_open.
2578f67503e5SMax Reitz  *
2579f67503e5SMax Reitz  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2580f67503e5SMax Reitz  * If it is not NULL, the referenced BDS will be reused.
2581ddf5636dSMax Reitz  *
2582ddf5636dSMax Reitz  * The reference parameter may be used to specify an existing block device which
2583ddf5636dSMax Reitz  * should be opened. If specified, neither options nor a filename may be given,
2584ddf5636dSMax Reitz  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
2585b6ce07aaSKevin Wolf  */
25865b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
25875b363937SMax Reitz                                            const char *reference,
25885b363937SMax Reitz                                            QDict *options, int flags,
2589f3930ed0SKevin Wolf                                            BlockDriverState *parent,
25905b363937SMax Reitz                                            const BdrvChildRole *child_role,
25915b363937SMax Reitz                                            Error **errp)
2592ea2384d3Sbellard {
2593b6ce07aaSKevin Wolf     int ret;
25945696c6e3SKevin Wolf     BlockBackend *file = NULL;
25959a4f4c31SKevin Wolf     BlockDriverState *bs;
2596ce343771SMax Reitz     BlockDriver *drv = NULL;
259774fe54f2SKevin Wolf     const char *drvname;
25983e8c2e57SAlberto Garcia     const char *backing;
259934b5d2c6SMax Reitz     Error *local_err = NULL;
260073176beeSKevin Wolf     QDict *snapshot_options = NULL;
2601b1e6fc08SKevin Wolf     int snapshot_flags = 0;
260233e3963eSbellard 
2603f3930ed0SKevin Wolf     assert(!child_role || !flags);
2604f3930ed0SKevin Wolf     assert(!child_role == !parent);
2605f67503e5SMax Reitz 
2606ddf5636dSMax Reitz     if (reference) {
2607ddf5636dSMax Reitz         bool options_non_empty = options ? qdict_size(options) : false;
2608cb3e7f08SMarc-André Lureau         qobject_unref(options);
2609ddf5636dSMax Reitz 
2610ddf5636dSMax Reitz         if (filename || options_non_empty) {
2611ddf5636dSMax Reitz             error_setg(errp, "Cannot reference an existing block device with "
2612ddf5636dSMax Reitz                        "additional options or a new filename");
26135b363937SMax Reitz             return NULL;
2614ddf5636dSMax Reitz         }
2615ddf5636dSMax Reitz 
2616ddf5636dSMax Reitz         bs = bdrv_lookup_bs(reference, reference, errp);
2617ddf5636dSMax Reitz         if (!bs) {
26185b363937SMax Reitz             return NULL;
2619ddf5636dSMax Reitz         }
262076b22320SKevin Wolf 
2621ddf5636dSMax Reitz         bdrv_ref(bs);
26225b363937SMax Reitz         return bs;
2623ddf5636dSMax Reitz     }
2624ddf5636dSMax Reitz 
2625e4e9986bSMarkus Armbruster     bs = bdrv_new();
2626f67503e5SMax Reitz 
2627de9c0cecSKevin Wolf     /* NULL means an empty set of options */
2628de9c0cecSKevin Wolf     if (options == NULL) {
2629de9c0cecSKevin Wolf         options = qdict_new();
2630de9c0cecSKevin Wolf     }
2631de9c0cecSKevin Wolf 
2632145f598eSKevin Wolf     /* json: syntax counts as explicit options, as if in the QDict */
2633de3b53f0SKevin Wolf     parse_json_protocol(options, &filename, &local_err);
2634de3b53f0SKevin Wolf     if (local_err) {
2635de3b53f0SKevin Wolf         goto fail;
2636de3b53f0SKevin Wolf     }
2637de3b53f0SKevin Wolf 
2638145f598eSKevin Wolf     bs->explicit_options = qdict_clone_shallow(options);
2639145f598eSKevin Wolf 
2640f3930ed0SKevin Wolf     if (child_role) {
2641bddcec37SKevin Wolf         bs->inherits_from = parent;
26428e2160e2SKevin Wolf         child_role->inherit_options(&flags, options,
26438e2160e2SKevin Wolf                                     parent->open_flags, parent->options);
2644f3930ed0SKevin Wolf     }
2645f3930ed0SKevin Wolf 
2646de3b53f0SKevin Wolf     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
2647462f5bcfSKevin Wolf     if (local_err) {
2648462f5bcfSKevin Wolf         goto fail;
2649462f5bcfSKevin Wolf     }
2650462f5bcfSKevin Wolf 
2651129c7d1cSMarkus Armbruster     /*
2652129c7d1cSMarkus Armbruster      * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2653129c7d1cSMarkus Armbruster      * Caution: getting a boolean member of @options requires care.
2654129c7d1cSMarkus Armbruster      * When @options come from -blockdev or blockdev_add, members are
2655129c7d1cSMarkus Armbruster      * typed according to the QAPI schema, but when they come from
2656129c7d1cSMarkus Armbruster      * -drive, they're all QString.
2657129c7d1cSMarkus Armbruster      */
2658f87a0e29SAlberto Garcia     if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2659f87a0e29SAlberto Garcia         !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2660f87a0e29SAlberto Garcia         flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2661f87a0e29SAlberto Garcia     } else {
2662f87a0e29SAlberto Garcia         flags &= ~BDRV_O_RDWR;
266314499ea5SAlberto Garcia     }
266414499ea5SAlberto Garcia 
266514499ea5SAlberto Garcia     if (flags & BDRV_O_SNAPSHOT) {
266614499ea5SAlberto Garcia         snapshot_options = qdict_new();
266714499ea5SAlberto Garcia         bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
266814499ea5SAlberto Garcia                                    flags, options);
2669f87a0e29SAlberto Garcia         /* Let bdrv_backing_options() override "read-only" */
2670f87a0e29SAlberto Garcia         qdict_del(options, BDRV_OPT_READ_ONLY);
267114499ea5SAlberto Garcia         bdrv_backing_options(&flags, options, flags, options);
267214499ea5SAlberto Garcia     }
267314499ea5SAlberto Garcia 
267462392ebbSKevin Wolf     bs->open_flags = flags;
267562392ebbSKevin Wolf     bs->options = options;
267662392ebbSKevin Wolf     options = qdict_clone_shallow(options);
267762392ebbSKevin Wolf 
267876c591b0SKevin Wolf     /* Find the right image format driver */
2679129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
268076c591b0SKevin Wolf     drvname = qdict_get_try_str(options, "driver");
268176c591b0SKevin Wolf     if (drvname) {
268276c591b0SKevin Wolf         drv = bdrv_find_format(drvname);
268376c591b0SKevin Wolf         if (!drv) {
268476c591b0SKevin Wolf             error_setg(errp, "Unknown driver: '%s'", drvname);
268576c591b0SKevin Wolf             goto fail;
268676c591b0SKevin Wolf         }
268776c591b0SKevin Wolf     }
268876c591b0SKevin Wolf 
268976c591b0SKevin Wolf     assert(drvname || !(flags & BDRV_O_PROTOCOL));
269076c591b0SKevin Wolf 
2691129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
26923e8c2e57SAlberto Garcia     backing = qdict_get_try_str(options, "backing");
2693e59a0cf1SMax Reitz     if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
2694e59a0cf1SMax Reitz         (backing && *backing == '\0'))
2695e59a0cf1SMax Reitz     {
26964f7be280SMax Reitz         if (backing) {
26974f7be280SMax Reitz             warn_report("Use of \"backing\": \"\" is deprecated; "
26984f7be280SMax Reitz                         "use \"backing\": null instead");
26994f7be280SMax Reitz         }
27003e8c2e57SAlberto Garcia         flags |= BDRV_O_NO_BACKING;
27013e8c2e57SAlberto Garcia         qdict_del(options, "backing");
27023e8c2e57SAlberto Garcia     }
27033e8c2e57SAlberto Garcia 
27045696c6e3SKevin Wolf     /* Open image file without format layer. This BlockBackend is only used for
27054e4bf5c4SKevin Wolf      * probing, the block drivers will do their own bdrv_open_child() for the
27064e4bf5c4SKevin Wolf      * same BDS, which is why we put the node name back into options. */
2707f4788adcSKevin Wolf     if ((flags & BDRV_O_PROTOCOL) == 0) {
27085696c6e3SKevin Wolf         BlockDriverState *file_bs;
27095696c6e3SKevin Wolf 
27105696c6e3SKevin Wolf         file_bs = bdrv_open_child_bs(filename, options, "file", bs,
27111fdd6933SKevin Wolf                                      &child_file, true, &local_err);
27121fdd6933SKevin Wolf         if (local_err) {
27138bfea15dSKevin Wolf             goto fail;
2714f500a6d3SKevin Wolf         }
27155696c6e3SKevin Wolf         if (file_bs != NULL) {
2716dacaa162SKevin Wolf             /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
2717dacaa162SKevin Wolf              * looking at the header to guess the image format. This works even
2718dacaa162SKevin Wolf              * in cases where a guest would not see a consistent state. */
2719dacaa162SKevin Wolf             file = blk_new(0, BLK_PERM_ALL);
2720d7086422SKevin Wolf             blk_insert_bs(file, file_bs, &local_err);
27215696c6e3SKevin Wolf             bdrv_unref(file_bs);
2722d7086422SKevin Wolf             if (local_err) {
2723d7086422SKevin Wolf                 goto fail;
2724d7086422SKevin Wolf             }
27255696c6e3SKevin Wolf 
272646f5ac20SEric Blake             qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
27274e4bf5c4SKevin Wolf         }
2728f4788adcSKevin Wolf     }
2729f500a6d3SKevin Wolf 
273076c591b0SKevin Wolf     /* Image format probing */
273138f3ef57SKevin Wolf     bs->probed = !drv;
273276c591b0SKevin Wolf     if (!drv && file) {
2733cf2ab8fcSKevin Wolf         ret = find_image_format(file, filename, &drv, &local_err);
273417b005f1SKevin Wolf         if (ret < 0) {
273517b005f1SKevin Wolf             goto fail;
273617b005f1SKevin Wolf         }
273762392ebbSKevin Wolf         /*
273862392ebbSKevin Wolf          * This option update would logically belong in bdrv_fill_options(),
273962392ebbSKevin Wolf          * but we first need to open bs->file for the probing to work, while
274062392ebbSKevin Wolf          * opening bs->file already requires the (mostly) final set of options
274162392ebbSKevin Wolf          * so that cache mode etc. can be inherited.
274262392ebbSKevin Wolf          *
274362392ebbSKevin Wolf          * Adding the driver later is somewhat ugly, but it's not an option
274462392ebbSKevin Wolf          * that would ever be inherited, so it's correct. We just need to make
274562392ebbSKevin Wolf          * sure to update both bs->options (which has the full effective
274662392ebbSKevin Wolf          * options for bs) and options (which has file.* already removed).
274762392ebbSKevin Wolf          */
274846f5ac20SEric Blake         qdict_put_str(bs->options, "driver", drv->format_name);
274946f5ac20SEric Blake         qdict_put_str(options, "driver", drv->format_name);
275076c591b0SKevin Wolf     } else if (!drv) {
27512a05cbe4SMax Reitz         error_setg(errp, "Must specify either driver or file");
27528bfea15dSKevin Wolf         goto fail;
27532a05cbe4SMax Reitz     }
2754f500a6d3SKevin Wolf 
275553a29513SMax Reitz     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
275653a29513SMax Reitz     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
275753a29513SMax Reitz     /* file must be NULL if a protocol BDS is about to be created
275853a29513SMax Reitz      * (the inverse results in an error message from bdrv_open_common()) */
275953a29513SMax Reitz     assert(!(flags & BDRV_O_PROTOCOL) || !file);
276053a29513SMax Reitz 
2761b6ce07aaSKevin Wolf     /* Open the image */
276282dc8b41SKevin Wolf     ret = bdrv_open_common(bs, file, options, &local_err);
2763b6ce07aaSKevin Wolf     if (ret < 0) {
27648bfea15dSKevin Wolf         goto fail;
27656987307cSChristoph Hellwig     }
27666987307cSChristoph Hellwig 
27674e4bf5c4SKevin Wolf     if (file) {
27685696c6e3SKevin Wolf         blk_unref(file);
2769f500a6d3SKevin Wolf         file = NULL;
2770f500a6d3SKevin Wolf     }
2771f500a6d3SKevin Wolf 
2772b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
27739156df12SPaolo Bonzini     if ((flags & BDRV_O_NO_BACKING) == 0) {
2774d9b7b057SKevin Wolf         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
2775b6ce07aaSKevin Wolf         if (ret < 0) {
2776b6ad491aSKevin Wolf             goto close_and_fail;
2777b6ce07aaSKevin Wolf         }
2778b6ce07aaSKevin Wolf     }
2779b6ce07aaSKevin Wolf 
278091af7014SMax Reitz     bdrv_refresh_filename(bs);
278191af7014SMax Reitz 
2782b6ad491aSKevin Wolf     /* Check if any unknown options were used */
27837ad2757fSPaolo Bonzini     if (qdict_size(options) != 0) {
2784b6ad491aSKevin Wolf         const QDictEntry *entry = qdict_first(options);
27855acd9d81SMax Reitz         if (flags & BDRV_O_PROTOCOL) {
27865acd9d81SMax Reitz             error_setg(errp, "Block protocol '%s' doesn't support the option "
27875acd9d81SMax Reitz                        "'%s'", drv->format_name, entry->key);
27885acd9d81SMax Reitz         } else {
2789d0e46a55SMax Reitz             error_setg(errp,
2790d0e46a55SMax Reitz                        "Block format '%s' does not support the option '%s'",
2791d0e46a55SMax Reitz                        drv->format_name, entry->key);
27925acd9d81SMax Reitz         }
2793b6ad491aSKevin Wolf 
2794b6ad491aSKevin Wolf         goto close_and_fail;
2795b6ad491aSKevin Wolf     }
2796b6ad491aSKevin Wolf 
27975c8cab48SKevin Wolf     bdrv_parent_cb_change_media(bs, true);
2798b6ce07aaSKevin Wolf 
2799cb3e7f08SMarc-André Lureau     qobject_unref(options);
2800dd62f1caSKevin Wolf 
2801dd62f1caSKevin Wolf     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2802dd62f1caSKevin Wolf      * temporary snapshot afterwards. */
2803dd62f1caSKevin Wolf     if (snapshot_flags) {
280466836189SMax Reitz         BlockDriverState *snapshot_bs;
280566836189SMax Reitz         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
280666836189SMax Reitz                                                 snapshot_options, &local_err);
280773176beeSKevin Wolf         snapshot_options = NULL;
2808dd62f1caSKevin Wolf         if (local_err) {
2809dd62f1caSKevin Wolf             goto close_and_fail;
2810dd62f1caSKevin Wolf         }
281166836189SMax Reitz         /* We are not going to return bs but the overlay on top of it
281266836189SMax Reitz          * (snapshot_bs); thus, we have to drop the strong reference to bs
28135b363937SMax Reitz          * (which we obtained by calling bdrv_new()). bs will not be deleted,
28145b363937SMax Reitz          * though, because the overlay still has a reference to it. */
281566836189SMax Reitz         bdrv_unref(bs);
281666836189SMax Reitz         bs = snapshot_bs;
281766836189SMax Reitz     }
281866836189SMax Reitz 
28195b363937SMax Reitz     return bs;
2820b6ce07aaSKevin Wolf 
28218bfea15dSKevin Wolf fail:
28225696c6e3SKevin Wolf     blk_unref(file);
2823cb3e7f08SMarc-André Lureau     qobject_unref(snapshot_options);
2824cb3e7f08SMarc-André Lureau     qobject_unref(bs->explicit_options);
2825cb3e7f08SMarc-André Lureau     qobject_unref(bs->options);
2826cb3e7f08SMarc-André Lureau     qobject_unref(options);
2827de9c0cecSKevin Wolf     bs->options = NULL;
2828998cbd6aSManos Pitsidianakis     bs->explicit_options = NULL;
2829f67503e5SMax Reitz     bdrv_unref(bs);
283034b5d2c6SMax Reitz     error_propagate(errp, local_err);
28315b363937SMax Reitz     return NULL;
2832de9c0cecSKevin Wolf 
2833b6ad491aSKevin Wolf close_and_fail:
2834f67503e5SMax Reitz     bdrv_unref(bs);
2835cb3e7f08SMarc-André Lureau     qobject_unref(snapshot_options);
2836cb3e7f08SMarc-André Lureau     qobject_unref(options);
283734b5d2c6SMax Reitz     error_propagate(errp, local_err);
28385b363937SMax Reitz     return NULL;
2839b6ce07aaSKevin Wolf }
2840b6ce07aaSKevin Wolf 
28415b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference,
28425b363937SMax Reitz                             QDict *options, int flags, Error **errp)
2843f3930ed0SKevin Wolf {
28445b363937SMax Reitz     return bdrv_open_inherit(filename, reference, options, flags, NULL,
2845ce343771SMax Reitz                              NULL, errp);
2846f3930ed0SKevin Wolf }
2847f3930ed0SKevin Wolf 
2848e971aa12SJeff Cody /*
2849e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
2850e971aa12SJeff Cody  * reopen of multiple devices.
2851e971aa12SJeff Cody  *
2852e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2853e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
2854e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
2855e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
2856e971aa12SJeff Cody  * atomic 'set'.
2857e971aa12SJeff Cody  *
2858e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
2859e971aa12SJeff Cody  *
28604d2cb092SKevin Wolf  * options contains the changed options for the associated bs
28614d2cb092SKevin Wolf  * (the BlockReopenQueue takes ownership)
28624d2cb092SKevin Wolf  *
2863e971aa12SJeff Cody  * flags contains the open flags for the associated bs
2864e971aa12SJeff Cody  *
2865e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
2866e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
2867e971aa12SJeff Cody  *
28681a63a907SKevin Wolf  * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
2869e971aa12SJeff Cody  */
287028518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
28714d2cb092SKevin Wolf                                                  BlockDriverState *bs,
287228518102SKevin Wolf                                                  QDict *options,
287328518102SKevin Wolf                                                  int flags,
287428518102SKevin Wolf                                                  const BdrvChildRole *role,
287528518102SKevin Wolf                                                  QDict *parent_options,
287628518102SKevin Wolf                                                  int parent_flags)
2877e971aa12SJeff Cody {
2878e971aa12SJeff Cody     assert(bs != NULL);
2879e971aa12SJeff Cody 
2880e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
288167251a31SKevin Wolf     BdrvChild *child;
2882145f598eSKevin Wolf     QDict *old_options, *explicit_options;
288367251a31SKevin Wolf 
28841a63a907SKevin Wolf     /* Make sure that the caller remembered to use a drained section. This is
28851a63a907SKevin Wolf      * important to avoid graph changes between the recursive queuing here and
28861a63a907SKevin Wolf      * bdrv_reopen_multiple(). */
28871a63a907SKevin Wolf     assert(bs->quiesce_counter > 0);
28881a63a907SKevin Wolf 
2889e971aa12SJeff Cody     if (bs_queue == NULL) {
2890e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
2891e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
2892e971aa12SJeff Cody     }
2893e971aa12SJeff Cody 
28944d2cb092SKevin Wolf     if (!options) {
28954d2cb092SKevin Wolf         options = qdict_new();
28964d2cb092SKevin Wolf     }
28974d2cb092SKevin Wolf 
28985b7ba05fSAlberto Garcia     /* Check if this BlockDriverState is already in the queue */
28995b7ba05fSAlberto Garcia     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
29005b7ba05fSAlberto Garcia         if (bs == bs_entry->state.bs) {
29015b7ba05fSAlberto Garcia             break;
29025b7ba05fSAlberto Garcia         }
29035b7ba05fSAlberto Garcia     }
29045b7ba05fSAlberto Garcia 
290528518102SKevin Wolf     /*
290628518102SKevin Wolf      * Precedence of options:
290728518102SKevin Wolf      * 1. Explicitly passed in options (highest)
290891a097e7SKevin Wolf      * 2. Set in flags (only for top level)
2909145f598eSKevin Wolf      * 3. Retained from explicitly set options of bs
29108e2160e2SKevin Wolf      * 4. Inherited from parent node
291128518102SKevin Wolf      * 5. Retained from effective options of bs
291228518102SKevin Wolf      */
291328518102SKevin Wolf 
291491a097e7SKevin Wolf     if (!parent_options) {
291591a097e7SKevin Wolf         /*
291691a097e7SKevin Wolf          * Any setting represented by flags is always updated. If the
291791a097e7SKevin Wolf          * corresponding QDict option is set, it takes precedence. Otherwise
291891a097e7SKevin Wolf          * the flag is translated into a QDict option. The old setting of bs is
291991a097e7SKevin Wolf          * not considered.
292091a097e7SKevin Wolf          */
292191a097e7SKevin Wolf         update_options_from_flags(options, flags);
292291a097e7SKevin Wolf     }
292391a097e7SKevin Wolf 
2924145f598eSKevin Wolf     /* Old explicitly set values (don't overwrite by inherited value) */
29255b7ba05fSAlberto Garcia     if (bs_entry) {
29265b7ba05fSAlberto Garcia         old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
29275b7ba05fSAlberto Garcia     } else {
2928145f598eSKevin Wolf         old_options = qdict_clone_shallow(bs->explicit_options);
29295b7ba05fSAlberto Garcia     }
2930145f598eSKevin Wolf     bdrv_join_options(bs, options, old_options);
2931cb3e7f08SMarc-André Lureau     qobject_unref(old_options);
2932145f598eSKevin Wolf 
2933145f598eSKevin Wolf     explicit_options = qdict_clone_shallow(options);
2934145f598eSKevin Wolf 
293528518102SKevin Wolf     /* Inherit from parent node */
293628518102SKevin Wolf     if (parent_options) {
29371a529736SFam Zheng         QemuOpts *opts;
29381a529736SFam Zheng         QDict *options_copy;
293928518102SKevin Wolf         assert(!flags);
29408e2160e2SKevin Wolf         role->inherit_options(&flags, options, parent_flags, parent_options);
29411a529736SFam Zheng         options_copy = qdict_clone_shallow(options);
29421a529736SFam Zheng         opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
29431a529736SFam Zheng         qemu_opts_absorb_qdict(opts, options_copy, NULL);
29441a529736SFam Zheng         update_flags_from_options(&flags, opts);
29451a529736SFam Zheng         qemu_opts_del(opts);
2946cb3e7f08SMarc-André Lureau         qobject_unref(options_copy);
294728518102SKevin Wolf     }
294828518102SKevin Wolf 
294928518102SKevin Wolf     /* Old values are used for options that aren't set yet */
29504d2cb092SKevin Wolf     old_options = qdict_clone_shallow(bs->options);
2951cddff5baSKevin Wolf     bdrv_join_options(bs, options, old_options);
2952cb3e7f08SMarc-André Lureau     qobject_unref(old_options);
29534d2cb092SKevin Wolf 
2954fd452021SKevin Wolf     /* bdrv_open_inherit() sets and clears some additional flags internally */
2955f1f25a2eSKevin Wolf     flags &= ~BDRV_O_PROTOCOL;
2956fd452021SKevin Wolf     if (flags & BDRV_O_RDWR) {
2957fd452021SKevin Wolf         flags |= BDRV_O_ALLOW_RDWR;
2958fd452021SKevin Wolf     }
2959f1f25a2eSKevin Wolf 
29601857c97bSKevin Wolf     if (!bs_entry) {
29611857c97bSKevin Wolf         bs_entry = g_new0(BlockReopenQueueEntry, 1);
29621857c97bSKevin Wolf         QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
29631857c97bSKevin Wolf     } else {
2964cb3e7f08SMarc-André Lureau         qobject_unref(bs_entry->state.options);
2965cb3e7f08SMarc-André Lureau         qobject_unref(bs_entry->state.explicit_options);
29661857c97bSKevin Wolf     }
29671857c97bSKevin Wolf 
29681857c97bSKevin Wolf     bs_entry->state.bs = bs;
29691857c97bSKevin Wolf     bs_entry->state.options = options;
29701857c97bSKevin Wolf     bs_entry->state.explicit_options = explicit_options;
29711857c97bSKevin Wolf     bs_entry->state.flags = flags;
29721857c97bSKevin Wolf 
297330450259SKevin Wolf     /* This needs to be overwritten in bdrv_reopen_prepare() */
297430450259SKevin Wolf     bs_entry->state.perm = UINT64_MAX;
297530450259SKevin Wolf     bs_entry->state.shared_perm = 0;
297630450259SKevin Wolf 
297767251a31SKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
29784c9dfe5dSKevin Wolf         QDict *new_child_options;
29794c9dfe5dSKevin Wolf         char *child_key_dot;
298067251a31SKevin Wolf 
29814c9dfe5dSKevin Wolf         /* reopen can only change the options of block devices that were
29824c9dfe5dSKevin Wolf          * implicitly created and inherited options. For other (referenced)
29834c9dfe5dSKevin Wolf          * block devices, a syntax like "backing.foo" results in an error. */
298467251a31SKevin Wolf         if (child->bs->inherits_from != bs) {
298567251a31SKevin Wolf             continue;
298667251a31SKevin Wolf         }
298767251a31SKevin Wolf 
29884c9dfe5dSKevin Wolf         child_key_dot = g_strdup_printf("%s.", child->name);
29894c9dfe5dSKevin Wolf         qdict_extract_subqdict(options, &new_child_options, child_key_dot);
29904c9dfe5dSKevin Wolf         g_free(child_key_dot);
29914c9dfe5dSKevin Wolf 
299228518102SKevin Wolf         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
299328518102SKevin Wolf                                 child->role, options, flags);
2994e971aa12SJeff Cody     }
2995e971aa12SJeff Cody 
2996e971aa12SJeff Cody     return bs_queue;
2997e971aa12SJeff Cody }
2998e971aa12SJeff Cody 
299928518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
300028518102SKevin Wolf                                     BlockDriverState *bs,
300128518102SKevin Wolf                                     QDict *options, int flags)
300228518102SKevin Wolf {
300328518102SKevin Wolf     return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
300428518102SKevin Wolf                                    NULL, NULL, 0);
300528518102SKevin Wolf }
300628518102SKevin Wolf 
3007e971aa12SJeff Cody /*
3008e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
3009e971aa12SJeff Cody  *
3010e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
3011e971aa12SJeff Cody  * via bdrv_reopen_queue().
3012e971aa12SJeff Cody  *
3013e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
3014e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
3015e971aa12SJeff Cody  * device will cause all device changes to be abandonded, and intermediate
3016e971aa12SJeff Cody  * data cleaned up.
3017e971aa12SJeff Cody  *
3018e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
3019e971aa12SJeff Cody  * to all devices.
3020e971aa12SJeff Cody  *
30211a63a907SKevin Wolf  * All affected nodes must be drained between bdrv_reopen_queue() and
30221a63a907SKevin Wolf  * bdrv_reopen_multiple().
3023e971aa12SJeff Cody  */
3024720150f3SPaolo Bonzini int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
3025e971aa12SJeff Cody {
3026e971aa12SJeff Cody     int ret = -1;
3027e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
3028e971aa12SJeff Cody     Error *local_err = NULL;
3029e971aa12SJeff Cody 
3030e971aa12SJeff Cody     assert(bs_queue != NULL);
3031e971aa12SJeff Cody 
3032e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
30331a63a907SKevin Wolf         assert(bs_entry->state.bs->quiesce_counter > 0);
3034e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
3035e971aa12SJeff Cody             error_propagate(errp, local_err);
3036e971aa12SJeff Cody             goto cleanup;
3037e971aa12SJeff Cody         }
3038e971aa12SJeff Cody         bs_entry->prepared = true;
3039e971aa12SJeff Cody     }
3040e971aa12SJeff Cody 
3041e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
3042e971aa12SJeff Cody      * changes
3043e971aa12SJeff Cody      */
3044e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3045e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
3046e971aa12SJeff Cody     }
3047e971aa12SJeff Cody 
3048e971aa12SJeff Cody     ret = 0;
3049e971aa12SJeff Cody 
3050e971aa12SJeff Cody cleanup:
3051e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3052e971aa12SJeff Cody         if (ret && bs_entry->prepared) {
3053e971aa12SJeff Cody             bdrv_reopen_abort(&bs_entry->state);
3054145f598eSKevin Wolf         } else if (ret) {
3055cb3e7f08SMarc-André Lureau             qobject_unref(bs_entry->state.explicit_options);
3056e971aa12SJeff Cody         }
3057cb3e7f08SMarc-André Lureau         qobject_unref(bs_entry->state.options);
3058e971aa12SJeff Cody         g_free(bs_entry);
3059e971aa12SJeff Cody     }
3060e971aa12SJeff Cody     g_free(bs_queue);
306140840e41SAlberto Garcia 
3062e971aa12SJeff Cody     return ret;
3063e971aa12SJeff Cody }
3064e971aa12SJeff Cody 
3065e971aa12SJeff Cody 
3066e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */
3067e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
3068e971aa12SJeff Cody {
3069e971aa12SJeff Cody     int ret = -1;
3070e971aa12SJeff Cody     Error *local_err = NULL;
30711a63a907SKevin Wolf     BlockReopenQueue *queue;
3072e971aa12SJeff Cody 
30731a63a907SKevin Wolf     bdrv_subtree_drained_begin(bs);
30741a63a907SKevin Wolf 
30751a63a907SKevin Wolf     queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
3076720150f3SPaolo Bonzini     ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err);
3077e971aa12SJeff Cody     if (local_err != NULL) {
3078e971aa12SJeff Cody         error_propagate(errp, local_err);
3079e971aa12SJeff Cody     }
30801a63a907SKevin Wolf 
30811a63a907SKevin Wolf     bdrv_subtree_drained_end(bs);
30821a63a907SKevin Wolf 
3083e971aa12SJeff Cody     return ret;
3084e971aa12SJeff Cody }
3085e971aa12SJeff Cody 
308630450259SKevin Wolf static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
308730450259SKevin Wolf                                                           BdrvChild *c)
308830450259SKevin Wolf {
308930450259SKevin Wolf     BlockReopenQueueEntry *entry;
309030450259SKevin Wolf 
309130450259SKevin Wolf     QSIMPLEQ_FOREACH(entry, q, entry) {
309230450259SKevin Wolf         BlockDriverState *bs = entry->state.bs;
309330450259SKevin Wolf         BdrvChild *child;
309430450259SKevin Wolf 
309530450259SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
309630450259SKevin Wolf             if (child == c) {
309730450259SKevin Wolf                 return entry;
309830450259SKevin Wolf             }
309930450259SKevin Wolf         }
310030450259SKevin Wolf     }
310130450259SKevin Wolf 
310230450259SKevin Wolf     return NULL;
310330450259SKevin Wolf }
310430450259SKevin Wolf 
310530450259SKevin Wolf static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
310630450259SKevin Wolf                              uint64_t *perm, uint64_t *shared)
310730450259SKevin Wolf {
310830450259SKevin Wolf     BdrvChild *c;
310930450259SKevin Wolf     BlockReopenQueueEntry *parent;
311030450259SKevin Wolf     uint64_t cumulative_perms = 0;
311130450259SKevin Wolf     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
311230450259SKevin Wolf 
311330450259SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
311430450259SKevin Wolf         parent = find_parent_in_reopen_queue(q, c);
311530450259SKevin Wolf         if (!parent) {
311630450259SKevin Wolf             cumulative_perms |= c->perm;
311730450259SKevin Wolf             cumulative_shared_perms &= c->shared_perm;
311830450259SKevin Wolf         } else {
311930450259SKevin Wolf             uint64_t nperm, nshared;
312030450259SKevin Wolf 
312130450259SKevin Wolf             bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
312230450259SKevin Wolf                             parent->state.perm, parent->state.shared_perm,
312330450259SKevin Wolf                             &nperm, &nshared);
312430450259SKevin Wolf 
312530450259SKevin Wolf             cumulative_perms |= nperm;
312630450259SKevin Wolf             cumulative_shared_perms &= nshared;
312730450259SKevin Wolf         }
312830450259SKevin Wolf     }
312930450259SKevin Wolf     *perm = cumulative_perms;
313030450259SKevin Wolf     *shared = cumulative_shared_perms;
313130450259SKevin Wolf }
3132e971aa12SJeff Cody 
3133e971aa12SJeff Cody /*
3134e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
3135e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
3136e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
3137e971aa12SJeff Cody  *
3138e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
3139e971aa12SJeff Cody  * flags are the new open flags
3140e971aa12SJeff Cody  * queue is the reopen queue
3141e971aa12SJeff Cody  *
3142e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
3143e971aa12SJeff Cody  * as well.
3144e971aa12SJeff Cody  *
3145e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
3146e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
3147e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
3148e971aa12SJeff Cody  *
3149e971aa12SJeff Cody  */
3150e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3151e971aa12SJeff Cody                         Error **errp)
3152e971aa12SJeff Cody {
3153e971aa12SJeff Cody     int ret = -1;
3154e971aa12SJeff Cody     Error *local_err = NULL;
3155e971aa12SJeff Cody     BlockDriver *drv;
3156ccf9dc07SKevin Wolf     QemuOpts *opts;
3157ccf9dc07SKevin Wolf     const char *value;
31583d8ce171SJeff Cody     bool read_only;
3159e971aa12SJeff Cody 
3160e971aa12SJeff Cody     assert(reopen_state != NULL);
3161e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
3162e971aa12SJeff Cody     drv = reopen_state->bs->drv;
3163e971aa12SJeff Cody 
3164ccf9dc07SKevin Wolf     /* Process generic block layer options */
3165ccf9dc07SKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3166ccf9dc07SKevin Wolf     qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3167ccf9dc07SKevin Wolf     if (local_err) {
3168ccf9dc07SKevin Wolf         error_propagate(errp, local_err);
3169ccf9dc07SKevin Wolf         ret = -EINVAL;
3170ccf9dc07SKevin Wolf         goto error;
3171ccf9dc07SKevin Wolf     }
3172ccf9dc07SKevin Wolf 
317391a097e7SKevin Wolf     update_flags_from_options(&reopen_state->flags, opts);
317491a097e7SKevin Wolf 
3175ccf9dc07SKevin Wolf     /* node-name and driver must be unchanged. Put them back into the QDict, so
3176ccf9dc07SKevin Wolf      * that they are checked at the end of this function. */
3177ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "node-name");
3178ccf9dc07SKevin Wolf     if (value) {
317946f5ac20SEric Blake         qdict_put_str(reopen_state->options, "node-name", value);
3180ccf9dc07SKevin Wolf     }
3181ccf9dc07SKevin Wolf 
3182ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "driver");
3183ccf9dc07SKevin Wolf     if (value) {
318446f5ac20SEric Blake         qdict_put_str(reopen_state->options, "driver", value);
3185ccf9dc07SKevin Wolf     }
3186ccf9dc07SKevin Wolf 
31873d8ce171SJeff Cody     /* If we are to stay read-only, do not allow permission change
31883d8ce171SJeff Cody      * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
31893d8ce171SJeff Cody      * not set, or if the BDS still has copy_on_read enabled */
31903d8ce171SJeff Cody     read_only = !(reopen_state->flags & BDRV_O_RDWR);
319154a32bfeSKevin Wolf     ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
31923d8ce171SJeff Cody     if (local_err) {
31933d8ce171SJeff Cody         error_propagate(errp, local_err);
3194e971aa12SJeff Cody         goto error;
3195e971aa12SJeff Cody     }
3196e971aa12SJeff Cody 
319730450259SKevin Wolf     /* Calculate required permissions after reopening */
319830450259SKevin Wolf     bdrv_reopen_perm(queue, reopen_state->bs,
319930450259SKevin Wolf                      &reopen_state->perm, &reopen_state->shared_perm);
3200e971aa12SJeff Cody 
3201e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
3202e971aa12SJeff Cody     if (ret) {
3203455b0fdeSEric Blake         error_setg_errno(errp, -ret, "Error flushing drive");
3204e971aa12SJeff Cody         goto error;
3205e971aa12SJeff Cody     }
3206e971aa12SJeff Cody 
3207e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
3208e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3209e971aa12SJeff Cody         if (ret) {
3210e971aa12SJeff Cody             if (local_err != NULL) {
3211e971aa12SJeff Cody                 error_propagate(errp, local_err);
3212e971aa12SJeff Cody             } else {
3213d8b6895fSLuiz Capitulino                 error_setg(errp, "failed while preparing to reopen image '%s'",
3214e971aa12SJeff Cody                            reopen_state->bs->filename);
3215e971aa12SJeff Cody             }
3216e971aa12SJeff Cody             goto error;
3217e971aa12SJeff Cody         }
3218e971aa12SJeff Cody     } else {
3219e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
3220e971aa12SJeff Cody          * handler for each supported drv. */
322181e5f78aSAlberto Garcia         error_setg(errp, "Block format '%s' used by node '%s' "
322281e5f78aSAlberto Garcia                    "does not support reopening files", drv->format_name,
322381e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
3224e971aa12SJeff Cody         ret = -1;
3225e971aa12SJeff Cody         goto error;
3226e971aa12SJeff Cody     }
3227e971aa12SJeff Cody 
32284d2cb092SKevin Wolf     /* Options that are not handled are only okay if they are unchanged
32294d2cb092SKevin Wolf      * compared to the old state. It is expected that some options are only
32304d2cb092SKevin Wolf      * used for the initial open, but not reopen (e.g. filename) */
32314d2cb092SKevin Wolf     if (qdict_size(reopen_state->options)) {
32324d2cb092SKevin Wolf         const QDictEntry *entry = qdict_first(reopen_state->options);
32334d2cb092SKevin Wolf 
32344d2cb092SKevin Wolf         do {
323554fd1b0dSMax Reitz             QObject *new = entry->value;
323654fd1b0dSMax Reitz             QObject *old = qdict_get(reopen_state->bs->options, entry->key);
32374d2cb092SKevin Wolf 
323854fd1b0dSMax Reitz             /*
323954fd1b0dSMax Reitz              * TODO: When using -drive to specify blockdev options, all values
324054fd1b0dSMax Reitz              * will be strings; however, when using -blockdev, blockdev-add or
324154fd1b0dSMax Reitz              * filenames using the json:{} pseudo-protocol, they will be
324254fd1b0dSMax Reitz              * correctly typed.
324354fd1b0dSMax Reitz              * In contrast, reopening options are (currently) always strings
324454fd1b0dSMax Reitz              * (because you can only specify them through qemu-io; all other
324554fd1b0dSMax Reitz              * callers do not specify any options).
324654fd1b0dSMax Reitz              * Therefore, when using anything other than -drive to create a BDS,
324754fd1b0dSMax Reitz              * this cannot detect non-string options as unchanged, because
324854fd1b0dSMax Reitz              * qobject_is_equal() always returns false for objects of different
324954fd1b0dSMax Reitz              * type.  In the future, this should be remedied by correctly typing
325054fd1b0dSMax Reitz              * all options.  For now, this is not too big of an issue because
325154fd1b0dSMax Reitz              * the user can simply omit options which cannot be changed anyway,
325254fd1b0dSMax Reitz              * so they will stay unchanged.
325354fd1b0dSMax Reitz              */
325454fd1b0dSMax Reitz             if (!qobject_is_equal(new, old)) {
32554d2cb092SKevin Wolf                 error_setg(errp, "Cannot change the option '%s'", entry->key);
32564d2cb092SKevin Wolf                 ret = -EINVAL;
32574d2cb092SKevin Wolf                 goto error;
32584d2cb092SKevin Wolf             }
32594d2cb092SKevin Wolf         } while ((entry = qdict_next(reopen_state->options, entry)));
32604d2cb092SKevin Wolf     }
32614d2cb092SKevin Wolf 
326230450259SKevin Wolf     ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
326330450259SKevin Wolf                           reopen_state->shared_perm, NULL, errp);
326430450259SKevin Wolf     if (ret < 0) {
326530450259SKevin Wolf         goto error;
326630450259SKevin Wolf     }
326730450259SKevin Wolf 
3268e971aa12SJeff Cody     ret = 0;
3269e971aa12SJeff Cody 
3270e971aa12SJeff Cody error:
3271ccf9dc07SKevin Wolf     qemu_opts_del(opts);
3272e971aa12SJeff Cody     return ret;
3273e971aa12SJeff Cody }
3274e971aa12SJeff Cody 
3275e971aa12SJeff Cody /*
3276e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3277e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
3278e971aa12SJeff Cody  * the active BlockDriverState contents.
3279e971aa12SJeff Cody  */
3280e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3281e971aa12SJeff Cody {
3282e971aa12SJeff Cody     BlockDriver *drv;
328350bf65baSVladimir Sementsov-Ogievskiy     BlockDriverState *bs;
3284cb9ff6c2SVladimir Sementsov-Ogievskiy     bool old_can_write, new_can_write;
3285e971aa12SJeff Cody 
3286e971aa12SJeff Cody     assert(reopen_state != NULL);
328750bf65baSVladimir Sementsov-Ogievskiy     bs = reopen_state->bs;
328850bf65baSVladimir Sementsov-Ogievskiy     drv = bs->drv;
3289e971aa12SJeff Cody     assert(drv != NULL);
3290e971aa12SJeff Cody 
3291cb9ff6c2SVladimir Sementsov-Ogievskiy     old_can_write =
3292cb9ff6c2SVladimir Sementsov-Ogievskiy         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3293cb9ff6c2SVladimir Sementsov-Ogievskiy 
3294e971aa12SJeff Cody     /* If there are any driver level actions to take */
3295e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
3296e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
3297e971aa12SJeff Cody     }
3298e971aa12SJeff Cody 
3299e971aa12SJeff Cody     /* set BDS specific flags now */
3300cb3e7f08SMarc-André Lureau     qobject_unref(bs->explicit_options);
3301145f598eSKevin Wolf 
330250bf65baSVladimir Sementsov-Ogievskiy     bs->explicit_options   = reopen_state->explicit_options;
330350bf65baSVladimir Sementsov-Ogievskiy     bs->open_flags         = reopen_state->flags;
330450bf65baSVladimir Sementsov-Ogievskiy     bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
3305355ef4acSKevin Wolf 
330650bf65baSVladimir Sementsov-Ogievskiy     bdrv_refresh_limits(bs, NULL);
3307cb9ff6c2SVladimir Sementsov-Ogievskiy 
330830450259SKevin Wolf     bdrv_set_perm(reopen_state->bs, reopen_state->perm,
330930450259SKevin Wolf                   reopen_state->shared_perm);
331030450259SKevin Wolf 
3311cb9ff6c2SVladimir Sementsov-Ogievskiy     new_can_write =
3312cb9ff6c2SVladimir Sementsov-Ogievskiy         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3313cb9ff6c2SVladimir Sementsov-Ogievskiy     if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3314cb9ff6c2SVladimir Sementsov-Ogievskiy         Error *local_err = NULL;
3315cb9ff6c2SVladimir Sementsov-Ogievskiy         if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3316cb9ff6c2SVladimir Sementsov-Ogievskiy             /* This is not fatal, bitmaps just left read-only, so all following
3317cb9ff6c2SVladimir Sementsov-Ogievskiy              * writes will fail. User can remove read-only bitmaps to unblock
3318cb9ff6c2SVladimir Sementsov-Ogievskiy              * writes.
3319cb9ff6c2SVladimir Sementsov-Ogievskiy              */
3320cb9ff6c2SVladimir Sementsov-Ogievskiy             error_reportf_err(local_err,
3321cb9ff6c2SVladimir Sementsov-Ogievskiy                               "%s: Failed to make dirty bitmaps writable: ",
3322cb9ff6c2SVladimir Sementsov-Ogievskiy                               bdrv_get_node_name(bs));
3323cb9ff6c2SVladimir Sementsov-Ogievskiy         }
3324cb9ff6c2SVladimir Sementsov-Ogievskiy     }
3325e971aa12SJeff Cody }
3326e971aa12SJeff Cody 
3327e971aa12SJeff Cody /*
3328e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
3329e971aa12SJeff Cody  * reopen_state
3330e971aa12SJeff Cody  */
3331e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3332e971aa12SJeff Cody {
3333e971aa12SJeff Cody     BlockDriver *drv;
3334e971aa12SJeff Cody 
3335e971aa12SJeff Cody     assert(reopen_state != NULL);
3336e971aa12SJeff Cody     drv = reopen_state->bs->drv;
3337e971aa12SJeff Cody     assert(drv != NULL);
3338e971aa12SJeff Cody 
3339e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
3340e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
3341e971aa12SJeff Cody     }
3342145f598eSKevin Wolf 
3343cb3e7f08SMarc-André Lureau     qobject_unref(reopen_state->explicit_options);
334430450259SKevin Wolf 
334530450259SKevin Wolf     bdrv_abort_perm_update(reopen_state->bs);
3346e971aa12SJeff Cody }
3347e971aa12SJeff Cody 
3348e971aa12SJeff Cody 
334964dff520SMax Reitz static void bdrv_close(BlockDriverState *bs)
3350fc01f7e7Sbellard {
335133384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
335250a3efb0SAlberto Garcia     BdrvChild *child, *next;
335333384421SMax Reitz 
3354ca9bd24cSMax Reitz     assert(!bs->job);
335530f55fb8SMax Reitz     assert(!bs->refcnt);
335699b7e775SAlberto Garcia 
3357fc27291dSPaolo Bonzini     bdrv_drained_begin(bs); /* complete I/O */
335858fda173SStefan Hajnoczi     bdrv_flush(bs);
335953ec73e2SFam Zheng     bdrv_drain(bs); /* in case flush left pending I/O */
3360fc27291dSPaolo Bonzini 
33613cbc002cSPaolo Bonzini     if (bs->drv) {
33629a7dedbcSKevin Wolf         bs->drv->bdrv_close(bs);
33639a4f4c31SKevin Wolf         bs->drv = NULL;
336450a3efb0SAlberto Garcia     }
33659a7dedbcSKevin Wolf 
336612fa4af6SKevin Wolf     bdrv_set_backing_hd(bs, NULL, &error_abort);
33679a7dedbcSKevin Wolf 
33689a4f4c31SKevin Wolf     if (bs->file != NULL) {
33699a4f4c31SKevin Wolf         bdrv_unref_child(bs, bs->file);
33709a4f4c31SKevin Wolf         bs->file = NULL;
33719a4f4c31SKevin Wolf     }
33729a4f4c31SKevin Wolf 
33736e93e7c4SKevin Wolf     QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
337433a60407SKevin Wolf         /* TODO Remove bdrv_unref() from drivers' close function and use
337533a60407SKevin Wolf          * bdrv_unref_child() here */
3376bddcec37SKevin Wolf         if (child->bs->inherits_from == bs) {
3377bddcec37SKevin Wolf             child->bs->inherits_from = NULL;
3378bddcec37SKevin Wolf         }
337933a60407SKevin Wolf         bdrv_detach_child(child);
33806e93e7c4SKevin Wolf     }
33816e93e7c4SKevin Wolf 
33827267c094SAnthony Liguori     g_free(bs->opaque);
3383ea2384d3Sbellard     bs->opaque = NULL;
3384d3faa13eSPaolo Bonzini     atomic_set(&bs->copy_on_read, 0);
3385a275fa42SPaolo Bonzini     bs->backing_file[0] = '\0';
3386a275fa42SPaolo Bonzini     bs->backing_format[0] = '\0';
33876405875cSPaolo Bonzini     bs->total_sectors = 0;
338854115412SEric Blake     bs->encrypted = false;
338954115412SEric Blake     bs->sg = false;
3390cb3e7f08SMarc-André Lureau     qobject_unref(bs->options);
3391cb3e7f08SMarc-André Lureau     qobject_unref(bs->explicit_options);
3392de9c0cecSKevin Wolf     bs->options = NULL;
3393998cbd6aSManos Pitsidianakis     bs->explicit_options = NULL;
3394cb3e7f08SMarc-André Lureau     qobject_unref(bs->full_open_options);
339591af7014SMax Reitz     bs->full_open_options = NULL;
339666f82ceeSKevin Wolf 
3397cca43ae1SVladimir Sementsov-Ogievskiy     bdrv_release_named_dirty_bitmaps(bs);
3398cca43ae1SVladimir Sementsov-Ogievskiy     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3399cca43ae1SVladimir Sementsov-Ogievskiy 
340033384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
340133384421SMax Reitz         g_free(ban);
340233384421SMax Reitz     }
340333384421SMax Reitz     QLIST_INIT(&bs->aio_notifiers);
3404fc27291dSPaolo Bonzini     bdrv_drained_end(bs);
3405b338082bSbellard }
3406b338082bSbellard 
34072bc93fedSMORITA Kazutaka void bdrv_close_all(void)
34082bc93fedSMORITA Kazutaka {
3409b3b5299dSKevin Wolf     assert(job_next(NULL) == NULL);
3410cd7fca95SKevin Wolf     nbd_export_close_all();
34112bc93fedSMORITA Kazutaka 
3412ca9bd24cSMax Reitz     /* Drop references from requests still in flight, such as canceled block
3413ca9bd24cSMax Reitz      * jobs whose AIO context has not been polled yet */
3414ca9bd24cSMax Reitz     bdrv_drain_all();
3415ca9bd24cSMax Reitz 
3416ca9bd24cSMax Reitz     blk_remove_all_bs();
3417ca9bd24cSMax Reitz     blockdev_close_all_bdrv_states();
3418ca9bd24cSMax Reitz 
3419a1a2af07SKevin Wolf     assert(QTAILQ_EMPTY(&all_bdrv_states));
34202bc93fedSMORITA Kazutaka }
34212bc93fedSMORITA Kazutaka 
3422d0ac0380SKevin Wolf static bool should_update_child(BdrvChild *c, BlockDriverState *to)
3423dd62f1caSKevin Wolf {
3424d0ac0380SKevin Wolf     BdrvChild *to_c;
3425dd62f1caSKevin Wolf 
342626de9438SKevin Wolf     if (c->role->stay_at_node) {
3427d0ac0380SKevin Wolf         return false;
342826de9438SKevin Wolf     }
3429d0ac0380SKevin Wolf 
34309bd910e2SMax Reitz     if (c->role == &child_backing) {
34313e44c8e0SKevin Wolf         /* If @from is a backing file of @to, ignore the child to avoid
34323e44c8e0SKevin Wolf          * creating a loop. We only want to change the pointer of other
34333e44c8e0SKevin Wolf          * parents. */
34349bd910e2SMax Reitz         QLIST_FOREACH(to_c, &to->children, next) {
34359bd910e2SMax Reitz             if (to_c == c) {
34369bd910e2SMax Reitz                 break;
34379bd910e2SMax Reitz             }
34389bd910e2SMax Reitz         }
34399bd910e2SMax Reitz         if (to_c) {
3440d0ac0380SKevin Wolf             return false;
34419bd910e2SMax Reitz         }
34429bd910e2SMax Reitz     }
34439bd910e2SMax Reitz 
3444d0ac0380SKevin Wolf     return true;
3445d0ac0380SKevin Wolf }
3446d0ac0380SKevin Wolf 
34475fe31c25SKevin Wolf void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
34485fe31c25SKevin Wolf                        Error **errp)
3449d0ac0380SKevin Wolf {
3450d0ac0380SKevin Wolf     BdrvChild *c, *next;
3451234ac1a9SKevin Wolf     GSList *list = NULL, *p;
3452234ac1a9SKevin Wolf     uint64_t old_perm, old_shared;
3453234ac1a9SKevin Wolf     uint64_t perm = 0, shared = BLK_PERM_ALL;
3454234ac1a9SKevin Wolf     int ret;
3455d0ac0380SKevin Wolf 
34565fe31c25SKevin Wolf     assert(!atomic_read(&from->in_flight));
34575fe31c25SKevin Wolf     assert(!atomic_read(&to->in_flight));
34585fe31c25SKevin Wolf 
3459234ac1a9SKevin Wolf     /* Make sure that @from doesn't go away until we have successfully attached
3460234ac1a9SKevin Wolf      * all of its parents to @to. */
3461234ac1a9SKevin Wolf     bdrv_ref(from);
3462234ac1a9SKevin Wolf 
3463234ac1a9SKevin Wolf     /* Put all parents into @list and calculate their cumulative permissions */
3464d0ac0380SKevin Wolf     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
3465d0ac0380SKevin Wolf         if (!should_update_child(c, to)) {
3466d0ac0380SKevin Wolf             continue;
3467d0ac0380SKevin Wolf         }
3468234ac1a9SKevin Wolf         list = g_slist_prepend(list, c);
3469234ac1a9SKevin Wolf         perm |= c->perm;
3470234ac1a9SKevin Wolf         shared &= c->shared_perm;
3471234ac1a9SKevin Wolf     }
3472234ac1a9SKevin Wolf 
3473234ac1a9SKevin Wolf     /* Check whether the required permissions can be granted on @to, ignoring
3474234ac1a9SKevin Wolf      * all BdrvChild in @list so that they can't block themselves. */
34753121fb45SKevin Wolf     ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
3476234ac1a9SKevin Wolf     if (ret < 0) {
3477234ac1a9SKevin Wolf         bdrv_abort_perm_update(to);
3478234ac1a9SKevin Wolf         goto out;
3479234ac1a9SKevin Wolf     }
3480234ac1a9SKevin Wolf 
3481234ac1a9SKevin Wolf     /* Now actually perform the change. We performed the permission check for
3482234ac1a9SKevin Wolf      * all elements of @list at once, so set the permissions all at once at the
3483234ac1a9SKevin Wolf      * very end. */
3484234ac1a9SKevin Wolf     for (p = list; p != NULL; p = p->next) {
3485234ac1a9SKevin Wolf         c = p->data;
3486d0ac0380SKevin Wolf 
3487dd62f1caSKevin Wolf         bdrv_ref(to);
3488234ac1a9SKevin Wolf         bdrv_replace_child_noperm(c, to);
3489dd62f1caSKevin Wolf         bdrv_unref(from);
3490dd62f1caSKevin Wolf     }
3491234ac1a9SKevin Wolf 
3492234ac1a9SKevin Wolf     bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3493234ac1a9SKevin Wolf     bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3494234ac1a9SKevin Wolf 
3495234ac1a9SKevin Wolf out:
3496234ac1a9SKevin Wolf     g_slist_free(list);
3497234ac1a9SKevin Wolf     bdrv_unref(from);
3498dd62f1caSKevin Wolf }
3499dd62f1caSKevin Wolf 
35008802d1fdSJeff Cody /*
35018802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
35028802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
35038802d1fdSJeff Cody  *
35048802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
35058802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
35068802d1fdSJeff Cody  *
3507bfb197e0SMarkus Armbruster  * bs_new must not be attached to a BlockBackend.
3508f6801b83SJeff Cody  *
35098802d1fdSJeff Cody  * This function does not create any image files.
3510dd62f1caSKevin Wolf  *
3511dd62f1caSKevin Wolf  * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3512dd62f1caSKevin Wolf  * that's what the callers commonly need. bs_new will be referenced by the old
3513dd62f1caSKevin Wolf  * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3514dd62f1caSKevin Wolf  * reference of its own, it must call bdrv_ref().
35158802d1fdSJeff Cody  */
3516b2c2832cSKevin Wolf void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3517b2c2832cSKevin Wolf                  Error **errp)
35188802d1fdSJeff Cody {
3519b2c2832cSKevin Wolf     Error *local_err = NULL;
3520b2c2832cSKevin Wolf 
3521b2c2832cSKevin Wolf     bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3522b2c2832cSKevin Wolf     if (local_err) {
3523b2c2832cSKevin Wolf         error_propagate(errp, local_err);
3524b2c2832cSKevin Wolf         goto out;
3525b2c2832cSKevin Wolf     }
3526dd62f1caSKevin Wolf 
35275fe31c25SKevin Wolf     bdrv_replace_node(bs_top, bs_new, &local_err);
3528234ac1a9SKevin Wolf     if (local_err) {
3529234ac1a9SKevin Wolf         error_propagate(errp, local_err);
3530234ac1a9SKevin Wolf         bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3531234ac1a9SKevin Wolf         goto out;
3532234ac1a9SKevin Wolf     }
3533dd62f1caSKevin Wolf 
3534dd62f1caSKevin Wolf     /* bs_new is now referenced by its new parents, we don't need the
3535dd62f1caSKevin Wolf      * additional reference any more. */
3536b2c2832cSKevin Wolf out:
3537dd62f1caSKevin Wolf     bdrv_unref(bs_new);
35388802d1fdSJeff Cody }
35398802d1fdSJeff Cody 
35404f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs)
3541b338082bSbellard {
35423e914655SPaolo Bonzini     assert(!bs->job);
35433718d8abSFam Zheng     assert(bdrv_op_blocker_is_empty(bs));
35444f6fd349SFam Zheng     assert(!bs->refcnt);
354518846deeSMarkus Armbruster 
3546e1b5c52eSStefan Hajnoczi     bdrv_close(bs);
3547e1b5c52eSStefan Hajnoczi 
35481b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
354963eaaae0SKevin Wolf     if (bs->node_name[0] != '\0') {
355063eaaae0SKevin Wolf         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
355163eaaae0SKevin Wolf     }
35522c1d04e0SMax Reitz     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
35532c1d04e0SMax Reitz 
35547267c094SAnthony Liguori     g_free(bs);
3555fc01f7e7Sbellard }
3556fc01f7e7Sbellard 
3557e97fc193Saliguori /*
3558e97fc193Saliguori  * Run consistency checks on an image
3559e97fc193Saliguori  *
3560e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
3561a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
3562e076f338SKevin Wolf  * check are stored in res.
3563e97fc193Saliguori  */
35642fd61638SPaolo Bonzini static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
35652fd61638SPaolo Bonzini                                       BdrvCheckResult *res, BdrvCheckMode fix)
3566e97fc193Saliguori {
3567908bcd54SMax Reitz     if (bs->drv == NULL) {
3568908bcd54SMax Reitz         return -ENOMEDIUM;
3569908bcd54SMax Reitz     }
35702fd61638SPaolo Bonzini     if (bs->drv->bdrv_co_check == NULL) {
3571e97fc193Saliguori         return -ENOTSUP;
3572e97fc193Saliguori     }
3573e97fc193Saliguori 
3574e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
35752fd61638SPaolo Bonzini     return bs->drv->bdrv_co_check(bs, res, fix);
35762fd61638SPaolo Bonzini }
35772fd61638SPaolo Bonzini 
35782fd61638SPaolo Bonzini typedef struct CheckCo {
35792fd61638SPaolo Bonzini     BlockDriverState *bs;
35802fd61638SPaolo Bonzini     BdrvCheckResult *res;
35812fd61638SPaolo Bonzini     BdrvCheckMode fix;
35822fd61638SPaolo Bonzini     int ret;
35832fd61638SPaolo Bonzini } CheckCo;
35842fd61638SPaolo Bonzini 
35852fd61638SPaolo Bonzini static void bdrv_check_co_entry(void *opaque)
35862fd61638SPaolo Bonzini {
35872fd61638SPaolo Bonzini     CheckCo *cco = opaque;
35882fd61638SPaolo Bonzini     cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
35892fd61638SPaolo Bonzini }
35902fd61638SPaolo Bonzini 
35912fd61638SPaolo Bonzini int bdrv_check(BlockDriverState *bs,
35922fd61638SPaolo Bonzini                BdrvCheckResult *res, BdrvCheckMode fix)
35932fd61638SPaolo Bonzini {
35942fd61638SPaolo Bonzini     Coroutine *co;
35952fd61638SPaolo Bonzini     CheckCo cco = {
35962fd61638SPaolo Bonzini         .bs = bs,
35972fd61638SPaolo Bonzini         .res = res,
35982fd61638SPaolo Bonzini         .ret = -EINPROGRESS,
35992fd61638SPaolo Bonzini         .fix = fix,
36002fd61638SPaolo Bonzini     };
36012fd61638SPaolo Bonzini 
36022fd61638SPaolo Bonzini     if (qemu_in_coroutine()) {
36032fd61638SPaolo Bonzini         /* Fast-path if already in coroutine context */
36042fd61638SPaolo Bonzini         bdrv_check_co_entry(&cco);
36052fd61638SPaolo Bonzini     } else {
36062fd61638SPaolo Bonzini         co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
36072fd61638SPaolo Bonzini         qemu_coroutine_enter(co);
36082fd61638SPaolo Bonzini         BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
36092fd61638SPaolo Bonzini     }
36102fd61638SPaolo Bonzini 
36112fd61638SPaolo Bonzini     return cco.ret;
3612e97fc193Saliguori }
3613e97fc193Saliguori 
3614756e6736SKevin Wolf /*
3615756e6736SKevin Wolf  * Return values:
3616756e6736SKevin Wolf  * 0        - success
3617756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
3618756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
3619756e6736SKevin Wolf  *            image file header
3620756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
3621756e6736SKevin Wolf  */
3622756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
3623756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
3624756e6736SKevin Wolf {
3625756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
3626469ef350SPaolo Bonzini     int ret;
3627756e6736SKevin Wolf 
3628d470ad42SMax Reitz     if (!drv) {
3629d470ad42SMax Reitz         return -ENOMEDIUM;
3630d470ad42SMax Reitz     }
3631d470ad42SMax Reitz 
36325f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
36335f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
36345f377794SPaolo Bonzini         return -EINVAL;
36355f377794SPaolo Bonzini     }
36365f377794SPaolo Bonzini 
3637756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
3638469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
3639756e6736SKevin Wolf     } else {
3640469ef350SPaolo Bonzini         ret = -ENOTSUP;
3641756e6736SKevin Wolf     }
3642469ef350SPaolo Bonzini 
3643469ef350SPaolo Bonzini     if (ret == 0) {
3644469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3645469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3646469ef350SPaolo Bonzini     }
3647469ef350SPaolo Bonzini     return ret;
3648756e6736SKevin Wolf }
3649756e6736SKevin Wolf 
36506ebdcee2SJeff Cody /*
36516ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
36526ebdcee2SJeff Cody  *
36536ebdcee2SJeff Cody  * active is the current topmost image.
36546ebdcee2SJeff Cody  *
36556ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
36566ebdcee2SJeff Cody  * or if active == bs.
36574caf0fcdSJeff Cody  *
36584caf0fcdSJeff Cody  * Returns the bottommost base image if bs == NULL.
36596ebdcee2SJeff Cody  */
36606ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
36616ebdcee2SJeff Cody                                     BlockDriverState *bs)
36626ebdcee2SJeff Cody {
3663760e0063SKevin Wolf     while (active && bs != backing_bs(active)) {
3664760e0063SKevin Wolf         active = backing_bs(active);
36656ebdcee2SJeff Cody     }
36666ebdcee2SJeff Cody 
36674caf0fcdSJeff Cody     return active;
36686ebdcee2SJeff Cody }
36696ebdcee2SJeff Cody 
36704caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */
36714caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs)
36724caf0fcdSJeff Cody {
36734caf0fcdSJeff Cody     return bdrv_find_overlay(bs, NULL);
36746ebdcee2SJeff Cody }
36756ebdcee2SJeff Cody 
36766ebdcee2SJeff Cody /*
36776ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
36786ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
36796ebdcee2SJeff Cody  *
36806ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
36816ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
36826ebdcee2SJeff Cody  *
36836ebdcee2SJeff Cody  * E.g., this will convert the following chain:
36846ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
36856ebdcee2SJeff Cody  *
36866ebdcee2SJeff Cody  * to
36876ebdcee2SJeff Cody  *
36886ebdcee2SJeff Cody  * bottom <- base <- active
36896ebdcee2SJeff Cody  *
36906ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
36916ebdcee2SJeff Cody  *
36926ebdcee2SJeff Cody  * base <- intermediate <- top <- active
36936ebdcee2SJeff Cody  *
36946ebdcee2SJeff Cody  * to
36956ebdcee2SJeff Cody  *
36966ebdcee2SJeff Cody  * base <- active
36976ebdcee2SJeff Cody  *
369854e26900SJeff Cody  * If backing_file_str is non-NULL, it will be used when modifying top's
369954e26900SJeff Cody  * overlay image metadata.
370054e26900SJeff Cody  *
37016ebdcee2SJeff Cody  * Error conditions:
37026ebdcee2SJeff Cody  *  if active == top, that is considered an error
37036ebdcee2SJeff Cody  *
37046ebdcee2SJeff Cody  */
3705bde70715SKevin Wolf int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3706bde70715SKevin Wolf                            const char *backing_file_str)
37076ebdcee2SJeff Cody {
370861f09ceaSKevin Wolf     BdrvChild *c, *next;
370912fa4af6SKevin Wolf     Error *local_err = NULL;
37106ebdcee2SJeff Cody     int ret = -EIO;
37116ebdcee2SJeff Cody 
37126858eba0SKevin Wolf     bdrv_ref(top);
37136858eba0SKevin Wolf 
37146ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
37156ebdcee2SJeff Cody         goto exit;
37166ebdcee2SJeff Cody     }
37176ebdcee2SJeff Cody 
37185db15a57SKevin Wolf     /* Make sure that base is in the backing chain of top */
37195db15a57SKevin Wolf     if (!bdrv_chain_contains(top, base)) {
37206ebdcee2SJeff Cody         goto exit;
37216ebdcee2SJeff Cody     }
37226ebdcee2SJeff Cody 
37236ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
3724bde70715SKevin Wolf     /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
3725bde70715SKevin Wolf      * we've figured out how they should work. */
37265db15a57SKevin Wolf     backing_file_str = backing_file_str ? backing_file_str : base->filename;
372712fa4af6SKevin Wolf 
372861f09ceaSKevin Wolf     QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
372961f09ceaSKevin Wolf         /* Check whether we are allowed to switch c from top to base */
373061f09ceaSKevin Wolf         GSList *ignore_children = g_slist_prepend(NULL, c);
373161f09ceaSKevin Wolf         bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
373261f09ceaSKevin Wolf                                ignore_children, &local_err);
37332c860e79SFam Zheng         g_slist_free(ignore_children);
373412fa4af6SKevin Wolf         if (local_err) {
373512fa4af6SKevin Wolf             ret = -EPERM;
373612fa4af6SKevin Wolf             error_report_err(local_err);
373712fa4af6SKevin Wolf             goto exit;
373812fa4af6SKevin Wolf         }
373961f09ceaSKevin Wolf 
374061f09ceaSKevin Wolf         /* If so, update the backing file path in the image file */
374161f09ceaSKevin Wolf         if (c->role->update_filename) {
374261f09ceaSKevin Wolf             ret = c->role->update_filename(c, base, backing_file_str,
374361f09ceaSKevin Wolf                                            &local_err);
374461f09ceaSKevin Wolf             if (ret < 0) {
374561f09ceaSKevin Wolf                 bdrv_abort_perm_update(base);
374661f09ceaSKevin Wolf                 error_report_err(local_err);
374761f09ceaSKevin Wolf                 goto exit;
374861f09ceaSKevin Wolf             }
374961f09ceaSKevin Wolf         }
375061f09ceaSKevin Wolf 
375161f09ceaSKevin Wolf         /* Do the actual switch in the in-memory graph.
375261f09ceaSKevin Wolf          * Completes bdrv_check_update_perm() transaction internally. */
375361f09ceaSKevin Wolf         bdrv_ref(base);
375461f09ceaSKevin Wolf         bdrv_replace_child(c, base);
375561f09ceaSKevin Wolf         bdrv_unref(top);
375661f09ceaSKevin Wolf     }
37576ebdcee2SJeff Cody 
37586ebdcee2SJeff Cody     ret = 0;
37596ebdcee2SJeff Cody exit:
37606858eba0SKevin Wolf     bdrv_unref(top);
37616ebdcee2SJeff Cody     return ret;
37626ebdcee2SJeff Cody }
37636ebdcee2SJeff Cody 
376483f64091Sbellard /**
376583f64091Sbellard  * Truncate file to 'offset' bytes (needed only for file protocols)
376683f64091Sbellard  */
37677ea37c30SMax Reitz int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc,
37687ea37c30SMax Reitz                   Error **errp)
376983f64091Sbellard {
377052cdbc58SKevin Wolf     BlockDriverState *bs = child->bs;
377183f64091Sbellard     BlockDriver *drv = bs->drv;
377251762288SStefan Hajnoczi     int ret;
3773c8f6d58eSKevin Wolf 
3774362b3786SMax Reitz     assert(child->perm & BLK_PERM_RESIZE);
3775c8f6d58eSKevin Wolf 
37765a612c00SManos Pitsidianakis     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
3777ed3d2ec9SMax Reitz     if (!drv) {
3778ed3d2ec9SMax Reitz         error_setg(errp, "No medium inserted");
377919cb3738Sbellard         return -ENOMEDIUM;
3780ed3d2ec9SMax Reitz     }
3781cd8b7aaaSKevin Wolf     if (offset < 0) {
3782cd8b7aaaSKevin Wolf         error_setg(errp, "Image size cannot be negative");
3783cd8b7aaaSKevin Wolf         return -EINVAL;
3784cd8b7aaaSKevin Wolf     }
3785cd8b7aaaSKevin Wolf 
3786ed3d2ec9SMax Reitz     if (!drv->bdrv_truncate) {
37875a612c00SManos Pitsidianakis         if (bs->file && drv->is_filter) {
37885a612c00SManos Pitsidianakis             return bdrv_truncate(bs->file, offset, prealloc, errp);
37895a612c00SManos Pitsidianakis         }
3790ed3d2ec9SMax Reitz         error_setg(errp, "Image format driver does not support resize");
379183f64091Sbellard         return -ENOTSUP;
3792ed3d2ec9SMax Reitz     }
3793ed3d2ec9SMax Reitz     if (bs->read_only) {
3794ed3d2ec9SMax Reitz         error_setg(errp, "Image is read-only");
379559f2689dSNaphtali Sprei         return -EACCES;
3796ed3d2ec9SMax Reitz     }
37979c75e168SJeff Cody 
3798504c205aSDenis V. Lunev     assert(!(bs->open_flags & BDRV_O_INACTIVE));
3799504c205aSDenis V. Lunev 
38007ea37c30SMax Reitz     ret = drv->bdrv_truncate(bs, offset, prealloc, errp);
38011b6cc579SEric Blake     if (ret < 0) {
38021b6cc579SEric Blake         return ret;
38031b6cc579SEric Blake     }
380451762288SStefan Hajnoczi     ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
38051b6cc579SEric Blake     if (ret < 0) {
38061b6cc579SEric Blake         error_setg_errno(errp, -ret, "Could not refresh total sector count");
38071b6cc579SEric Blake     } else {
38081b6cc579SEric Blake         offset = bs->total_sectors * BDRV_SECTOR_SIZE;
38091b6cc579SEric Blake     }
38101b6cc579SEric Blake     bdrv_dirty_bitmap_truncate(bs, offset);
38115c8cab48SKevin Wolf     bdrv_parent_cb_resize(bs);
381247fec599SPaolo Bonzini     atomic_inc(&bs->write_gen);
381351762288SStefan Hajnoczi     return ret;
381483f64091Sbellard }
381583f64091Sbellard 
381683f64091Sbellard /**
38174a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
38184a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
38194a1d5e1fSFam Zheng  */
38204a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
38214a1d5e1fSFam Zheng {
38224a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
38234a1d5e1fSFam Zheng     if (!drv) {
38244a1d5e1fSFam Zheng         return -ENOMEDIUM;
38254a1d5e1fSFam Zheng     }
38264a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
38274a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
38284a1d5e1fSFam Zheng     }
38294a1d5e1fSFam Zheng     if (bs->file) {
38309a4f4c31SKevin Wolf         return bdrv_get_allocated_file_size(bs->file->bs);
38314a1d5e1fSFam Zheng     }
38324a1d5e1fSFam Zheng     return -ENOTSUP;
38334a1d5e1fSFam Zheng }
38344a1d5e1fSFam Zheng 
383590880ff1SStefan Hajnoczi /*
383690880ff1SStefan Hajnoczi  * bdrv_measure:
383790880ff1SStefan Hajnoczi  * @drv: Format driver
383890880ff1SStefan Hajnoczi  * @opts: Creation options for new image
383990880ff1SStefan Hajnoczi  * @in_bs: Existing image containing data for new image (may be NULL)
384090880ff1SStefan Hajnoczi  * @errp: Error object
384190880ff1SStefan Hajnoczi  * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
384290880ff1SStefan Hajnoczi  *          or NULL on error
384390880ff1SStefan Hajnoczi  *
384490880ff1SStefan Hajnoczi  * Calculate file size required to create a new image.
384590880ff1SStefan Hajnoczi  *
384690880ff1SStefan Hajnoczi  * If @in_bs is given then space for allocated clusters and zero clusters
384790880ff1SStefan Hajnoczi  * from that image are included in the calculation.  If @opts contains a
384890880ff1SStefan Hajnoczi  * backing file that is shared by @in_bs then backing clusters may be omitted
384990880ff1SStefan Hajnoczi  * from the calculation.
385090880ff1SStefan Hajnoczi  *
385190880ff1SStefan Hajnoczi  * If @in_bs is NULL then the calculation includes no allocated clusters
385290880ff1SStefan Hajnoczi  * unless a preallocation option is given in @opts.
385390880ff1SStefan Hajnoczi  *
385490880ff1SStefan Hajnoczi  * Note that @in_bs may use a different BlockDriver from @drv.
385590880ff1SStefan Hajnoczi  *
385690880ff1SStefan Hajnoczi  * If an error occurs the @errp pointer is set.
385790880ff1SStefan Hajnoczi  */
385890880ff1SStefan Hajnoczi BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
385990880ff1SStefan Hajnoczi                                BlockDriverState *in_bs, Error **errp)
386090880ff1SStefan Hajnoczi {
386190880ff1SStefan Hajnoczi     if (!drv->bdrv_measure) {
386290880ff1SStefan Hajnoczi         error_setg(errp, "Block driver '%s' does not support size measurement",
386390880ff1SStefan Hajnoczi                    drv->format_name);
386490880ff1SStefan Hajnoczi         return NULL;
386590880ff1SStefan Hajnoczi     }
386690880ff1SStefan Hajnoczi 
386790880ff1SStefan Hajnoczi     return drv->bdrv_measure(opts, in_bs, errp);
386890880ff1SStefan Hajnoczi }
386990880ff1SStefan Hajnoczi 
38704a1d5e1fSFam Zheng /**
387165a9bb25SMarkus Armbruster  * Return number of sectors on success, -errno on error.
387283f64091Sbellard  */
387365a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs)
387483f64091Sbellard {
387583f64091Sbellard     BlockDriver *drv = bs->drv;
387665a9bb25SMarkus Armbruster 
387783f64091Sbellard     if (!drv)
387819cb3738Sbellard         return -ENOMEDIUM;
387951762288SStefan Hajnoczi 
3880b94a2610SKevin Wolf     if (drv->has_variable_length) {
3881b94a2610SKevin Wolf         int ret = refresh_total_sectors(bs, bs->total_sectors);
3882b94a2610SKevin Wolf         if (ret < 0) {
3883b94a2610SKevin Wolf             return ret;
3884fc01f7e7Sbellard         }
388546a4e4e6SStefan Hajnoczi     }
388665a9bb25SMarkus Armbruster     return bs->total_sectors;
388765a9bb25SMarkus Armbruster }
388865a9bb25SMarkus Armbruster 
388965a9bb25SMarkus Armbruster /**
389065a9bb25SMarkus Armbruster  * Return length in bytes on success, -errno on error.
389165a9bb25SMarkus Armbruster  * The length is always a multiple of BDRV_SECTOR_SIZE.
389265a9bb25SMarkus Armbruster  */
389365a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs)
389465a9bb25SMarkus Armbruster {
389565a9bb25SMarkus Armbruster     int64_t ret = bdrv_nb_sectors(bs);
389665a9bb25SMarkus Armbruster 
38974a9c9ea0SFam Zheng     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
389865a9bb25SMarkus Armbruster     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
389946a4e4e6SStefan Hajnoczi }
3900fc01f7e7Sbellard 
390119cb3738Sbellard /* return 0 as number of sectors if no device present or error */
390296b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
3903fc01f7e7Sbellard {
390465a9bb25SMarkus Armbruster     int64_t nb_sectors = bdrv_nb_sectors(bs);
390565a9bb25SMarkus Armbruster 
390665a9bb25SMarkus Armbruster     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
3907fc01f7e7Sbellard }
3908cf98951bSbellard 
390954115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs)
3910985a03b0Sths {
3911985a03b0Sths     return bs->sg;
3912985a03b0Sths }
3913985a03b0Sths 
391454115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs)
3915ea2384d3Sbellard {
3916760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
391754115412SEric Blake         return true;
3918760e0063SKevin Wolf     }
3919ea2384d3Sbellard     return bs->encrypted;
3920ea2384d3Sbellard }
3921ea2384d3Sbellard 
3922f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
3923ea2384d3Sbellard {
3924f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
3925ea2384d3Sbellard }
3926ea2384d3Sbellard 
3927ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b)
3928ada42401SStefan Hajnoczi {
3929ceff5bd7SMax Reitz     return strcmp(*(char *const *)a, *(char *const *)b);
3930ada42401SStefan Hajnoczi }
3931ada42401SStefan Hajnoczi 
3932ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
3933ea2384d3Sbellard                          void *opaque)
3934ea2384d3Sbellard {
3935ea2384d3Sbellard     BlockDriver *drv;
3936e855e4fbSJeff Cody     int count = 0;
3937ada42401SStefan Hajnoczi     int i;
3938e855e4fbSJeff Cody     const char **formats = NULL;
3939ea2384d3Sbellard 
39408a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
3941e855e4fbSJeff Cody         if (drv->format_name) {
3942e855e4fbSJeff Cody             bool found = false;
3943e855e4fbSJeff Cody             int i = count;
3944e855e4fbSJeff Cody             while (formats && i && !found) {
3945e855e4fbSJeff Cody                 found = !strcmp(formats[--i], drv->format_name);
3946e855e4fbSJeff Cody             }
3947e855e4fbSJeff Cody 
3948e855e4fbSJeff Cody             if (!found) {
39495839e53bSMarkus Armbruster                 formats = g_renew(const char *, formats, count + 1);
3950e855e4fbSJeff Cody                 formats[count++] = drv->format_name;
3951ea2384d3Sbellard             }
3952ea2384d3Sbellard         }
3953e855e4fbSJeff Cody     }
3954ada42401SStefan Hajnoczi 
3955eb0df69fSMax Reitz     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
3956eb0df69fSMax Reitz         const char *format_name = block_driver_modules[i].format_name;
3957eb0df69fSMax Reitz 
3958eb0df69fSMax Reitz         if (format_name) {
3959eb0df69fSMax Reitz             bool found = false;
3960eb0df69fSMax Reitz             int j = count;
3961eb0df69fSMax Reitz 
3962eb0df69fSMax Reitz             while (formats && j && !found) {
3963eb0df69fSMax Reitz                 found = !strcmp(formats[--j], format_name);
3964eb0df69fSMax Reitz             }
3965eb0df69fSMax Reitz 
3966eb0df69fSMax Reitz             if (!found) {
3967eb0df69fSMax Reitz                 formats = g_renew(const char *, formats, count + 1);
3968eb0df69fSMax Reitz                 formats[count++] = format_name;
3969eb0df69fSMax Reitz             }
3970eb0df69fSMax Reitz         }
3971eb0df69fSMax Reitz     }
3972eb0df69fSMax Reitz 
3973ada42401SStefan Hajnoczi     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
3974ada42401SStefan Hajnoczi 
3975ada42401SStefan Hajnoczi     for (i = 0; i < count; i++) {
3976ada42401SStefan Hajnoczi         it(opaque, formats[i]);
3977ada42401SStefan Hajnoczi     }
3978ada42401SStefan Hajnoczi 
3979e855e4fbSJeff Cody     g_free(formats);
3980e855e4fbSJeff Cody }
3981ea2384d3Sbellard 
3982dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */
3983dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name)
3984dc364f4cSBenoît Canet {
3985dc364f4cSBenoît Canet     BlockDriverState *bs;
3986dc364f4cSBenoît Canet 
3987dc364f4cSBenoît Canet     assert(node_name);
3988dc364f4cSBenoît Canet 
3989dc364f4cSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3990dc364f4cSBenoît Canet         if (!strcmp(node_name, bs->node_name)) {
3991dc364f4cSBenoît Canet             return bs;
3992dc364f4cSBenoît Canet         }
3993dc364f4cSBenoît Canet     }
3994dc364f4cSBenoît Canet     return NULL;
3995dc364f4cSBenoît Canet }
3996dc364f4cSBenoît Canet 
3997c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */
3998d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
3999c13163fbSBenoît Canet {
4000c13163fbSBenoît Canet     BlockDeviceInfoList *list, *entry;
4001c13163fbSBenoît Canet     BlockDriverState *bs;
4002c13163fbSBenoît Canet 
4003c13163fbSBenoît Canet     list = NULL;
4004c13163fbSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4005c83f9fbaSKevin Wolf         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
4006d5a8ee60SAlberto Garcia         if (!info) {
4007d5a8ee60SAlberto Garcia             qapi_free_BlockDeviceInfoList(list);
4008d5a8ee60SAlberto Garcia             return NULL;
4009d5a8ee60SAlberto Garcia         }
4010c13163fbSBenoît Canet         entry = g_malloc0(sizeof(*entry));
4011d5a8ee60SAlberto Garcia         entry->value = info;
4012c13163fbSBenoît Canet         entry->next = list;
4013c13163fbSBenoît Canet         list = entry;
4014c13163fbSBenoît Canet     }
4015c13163fbSBenoît Canet 
4016c13163fbSBenoît Canet     return list;
4017c13163fbSBenoît Canet }
4018c13163fbSBenoît Canet 
401912d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device,
402012d3ba82SBenoît Canet                                  const char *node_name,
402112d3ba82SBenoît Canet                                  Error **errp)
402212d3ba82SBenoît Canet {
40237f06d47eSMarkus Armbruster     BlockBackend *blk;
40247f06d47eSMarkus Armbruster     BlockDriverState *bs;
402512d3ba82SBenoît Canet 
402612d3ba82SBenoît Canet     if (device) {
40277f06d47eSMarkus Armbruster         blk = blk_by_name(device);
402812d3ba82SBenoît Canet 
40297f06d47eSMarkus Armbruster         if (blk) {
40309f4ed6fbSAlberto Garcia             bs = blk_bs(blk);
40319f4ed6fbSAlberto Garcia             if (!bs) {
40325433c24fSMax Reitz                 error_setg(errp, "Device '%s' has no medium", device);
40335433c24fSMax Reitz             }
40345433c24fSMax Reitz 
40359f4ed6fbSAlberto Garcia             return bs;
403612d3ba82SBenoît Canet         }
4037dd67fa50SBenoît Canet     }
403812d3ba82SBenoît Canet 
4039dd67fa50SBenoît Canet     if (node_name) {
404012d3ba82SBenoît Canet         bs = bdrv_find_node(node_name);
404112d3ba82SBenoît Canet 
4042dd67fa50SBenoît Canet         if (bs) {
4043dd67fa50SBenoît Canet             return bs;
4044dd67fa50SBenoît Canet         }
404512d3ba82SBenoît Canet     }
404612d3ba82SBenoît Canet 
4047dd67fa50SBenoît Canet     error_setg(errp, "Cannot find device=%s nor node_name=%s",
4048dd67fa50SBenoît Canet                      device ? device : "",
4049dd67fa50SBenoît Canet                      node_name ? node_name : "");
4050dd67fa50SBenoît Canet     return NULL;
405112d3ba82SBenoît Canet }
405212d3ba82SBenoît Canet 
40535a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise,
40545a6684d2SJeff Cody  * return false.  If either argument is NULL, return false. */
40555a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
40565a6684d2SJeff Cody {
40575a6684d2SJeff Cody     while (top && top != base) {
4058760e0063SKevin Wolf         top = backing_bs(top);
40595a6684d2SJeff Cody     }
40605a6684d2SJeff Cody 
40615a6684d2SJeff Cody     return top != NULL;
40625a6684d2SJeff Cody }
40635a6684d2SJeff Cody 
406404df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs)
406504df765aSFam Zheng {
406604df765aSFam Zheng     if (!bs) {
406704df765aSFam Zheng         return QTAILQ_FIRST(&graph_bdrv_states);
406804df765aSFam Zheng     }
406904df765aSFam Zheng     return QTAILQ_NEXT(bs, node_list);
407004df765aSFam Zheng }
407104df765aSFam Zheng 
4072*0f12264eSKevin Wolf BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
4073*0f12264eSKevin Wolf {
4074*0f12264eSKevin Wolf     if (!bs) {
4075*0f12264eSKevin Wolf         return QTAILQ_FIRST(&all_bdrv_states);
4076*0f12264eSKevin Wolf     }
4077*0f12264eSKevin Wolf     return QTAILQ_NEXT(bs, bs_list);
4078*0f12264eSKevin Wolf }
4079*0f12264eSKevin Wolf 
408020a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs)
408120a9e77dSFam Zheng {
408220a9e77dSFam Zheng     return bs->node_name;
408320a9e77dSFam Zheng }
408420a9e77dSFam Zheng 
40851f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs)
40864c265bf9SKevin Wolf {
40874c265bf9SKevin Wolf     BdrvChild *c;
40884c265bf9SKevin Wolf     const char *name;
40894c265bf9SKevin Wolf 
40904c265bf9SKevin Wolf     /* If multiple parents have a name, just pick the first one. */
40914c265bf9SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
40924c265bf9SKevin Wolf         if (c->role->get_name) {
40934c265bf9SKevin Wolf             name = c->role->get_name(c);
40944c265bf9SKevin Wolf             if (name && *name) {
40954c265bf9SKevin Wolf                 return name;
40964c265bf9SKevin Wolf             }
40974c265bf9SKevin Wolf         }
40984c265bf9SKevin Wolf     }
40994c265bf9SKevin Wolf 
41004c265bf9SKevin Wolf     return NULL;
41014c265bf9SKevin Wolf }
41024c265bf9SKevin Wolf 
41037f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */
4104bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs)
4105ea2384d3Sbellard {
41064c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: "";
4107ea2384d3Sbellard }
4108ea2384d3Sbellard 
41099b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device
41109b2aa84fSAlberto Garcia  * name associated. Since node and device names live in the same
41119b2aa84fSAlberto Garcia  * namespace, the result is unambiguous. The exception is if both are
41129b2aa84fSAlberto Garcia  * absent, then this returns an empty (non-null) string. */
41139b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
41149b2aa84fSAlberto Garcia {
41154c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: bs->node_name;
41169b2aa84fSAlberto Garcia }
41179b2aa84fSAlberto Garcia 
4118c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
4119c8433287SMarkus Armbruster {
4120c8433287SMarkus Armbruster     return bs->open_flags;
4121c8433287SMarkus Armbruster }
4122c8433287SMarkus Armbruster 
41233ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs)
41243ac21627SPeter Lieven {
41253ac21627SPeter Lieven     return 1;
41263ac21627SPeter Lieven }
41273ac21627SPeter Lieven 
4128f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
4129f2feebbdSKevin Wolf {
4130d470ad42SMax Reitz     if (!bs->drv) {
4131d470ad42SMax Reitz         return 0;
4132d470ad42SMax Reitz     }
4133f2feebbdSKevin Wolf 
413411212d8fSPaolo Bonzini     /* If BS is a copy on write image, it is initialized to
413511212d8fSPaolo Bonzini        the contents of the base image, which may not be zeroes.  */
4136760e0063SKevin Wolf     if (bs->backing) {
413711212d8fSPaolo Bonzini         return 0;
413811212d8fSPaolo Bonzini     }
4139336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
4140336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
4141f2feebbdSKevin Wolf     }
41425a612c00SManos Pitsidianakis     if (bs->file && bs->drv->is_filter) {
41435a612c00SManos Pitsidianakis         return bdrv_has_zero_init(bs->file->bs);
41445a612c00SManos Pitsidianakis     }
4145f2feebbdSKevin Wolf 
41463ac21627SPeter Lieven     /* safe default */
41473ac21627SPeter Lieven     return 0;
4148f2feebbdSKevin Wolf }
4149f2feebbdSKevin Wolf 
41504ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
41514ce78691SPeter Lieven {
41524ce78691SPeter Lieven     BlockDriverInfo bdi;
41534ce78691SPeter Lieven 
4154760e0063SKevin Wolf     if (bs->backing) {
41554ce78691SPeter Lieven         return false;
41564ce78691SPeter Lieven     }
41574ce78691SPeter Lieven 
41584ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
41594ce78691SPeter Lieven         return bdi.unallocated_blocks_are_zero;
41604ce78691SPeter Lieven     }
41614ce78691SPeter Lieven 
41624ce78691SPeter Lieven     return false;
41634ce78691SPeter Lieven }
41644ce78691SPeter Lieven 
41654ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
41664ce78691SPeter Lieven {
41672f0342efSDenis V. Lunev     if (!(bs->open_flags & BDRV_O_UNMAP)) {
41684ce78691SPeter Lieven         return false;
41694ce78691SPeter Lieven     }
41704ce78691SPeter Lieven 
4171e24d813bSEric Blake     return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
41724ce78691SPeter Lieven }
41734ce78691SPeter Lieven 
4174045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
4175045df330Saliguori {
4176760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted)
4177045df330Saliguori         return bs->backing_file;
4178045df330Saliguori     else if (bs->encrypted)
4179045df330Saliguori         return bs->filename;
4180045df330Saliguori     else
4181045df330Saliguori         return NULL;
4182045df330Saliguori }
4183045df330Saliguori 
418483f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
418583f64091Sbellard                                char *filename, int filename_size)
418683f64091Sbellard {
418783f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
418883f64091Sbellard }
418983f64091Sbellard 
4190faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4191faea38e7Sbellard {
4192faea38e7Sbellard     BlockDriver *drv = bs->drv;
41935a612c00SManos Pitsidianakis     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
41945a612c00SManos Pitsidianakis     if (!drv) {
419519cb3738Sbellard         return -ENOMEDIUM;
41965a612c00SManos Pitsidianakis     }
41975a612c00SManos Pitsidianakis     if (!drv->bdrv_get_info) {
41985a612c00SManos Pitsidianakis         if (bs->file && drv->is_filter) {
41995a612c00SManos Pitsidianakis             return bdrv_get_info(bs->file->bs, bdi);
42005a612c00SManos Pitsidianakis         }
4201faea38e7Sbellard         return -ENOTSUP;
42025a612c00SManos Pitsidianakis     }
4203faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
4204faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
4205faea38e7Sbellard }
4206faea38e7Sbellard 
4207eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
4208eae041feSMax Reitz {
4209eae041feSMax Reitz     BlockDriver *drv = bs->drv;
4210eae041feSMax Reitz     if (drv && drv->bdrv_get_specific_info) {
4211eae041feSMax Reitz         return drv->bdrv_get_specific_info(bs);
4212eae041feSMax Reitz     }
4213eae041feSMax Reitz     return NULL;
4214eae041feSMax Reitz }
4215eae041feSMax Reitz 
4216a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
42178b9b0cc2SKevin Wolf {
4218bf736fe3SKevin Wolf     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
42198b9b0cc2SKevin Wolf         return;
42208b9b0cc2SKevin Wolf     }
42218b9b0cc2SKevin Wolf 
4222bf736fe3SKevin Wolf     bs->drv->bdrv_debug_event(bs, event);
422341c695c7SKevin Wolf }
42248b9b0cc2SKevin Wolf 
422541c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
422641c695c7SKevin Wolf                           const char *tag)
422741c695c7SKevin Wolf {
422841c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
42299a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
423041c695c7SKevin Wolf     }
423141c695c7SKevin Wolf 
423241c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
423341c695c7SKevin Wolf         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
423441c695c7SKevin Wolf     }
423541c695c7SKevin Wolf 
423641c695c7SKevin Wolf     return -ENOTSUP;
423741c695c7SKevin Wolf }
423841c695c7SKevin Wolf 
42394cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
42404cc70e93SFam Zheng {
42414cc70e93SFam Zheng     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
42429a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
42434cc70e93SFam Zheng     }
42444cc70e93SFam Zheng 
42454cc70e93SFam Zheng     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
42464cc70e93SFam Zheng         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
42474cc70e93SFam Zheng     }
42484cc70e93SFam Zheng 
42494cc70e93SFam Zheng     return -ENOTSUP;
42504cc70e93SFam Zheng }
42514cc70e93SFam Zheng 
425241c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
425341c695c7SKevin Wolf {
4254938789eaSMax Reitz     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
42559a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
425641c695c7SKevin Wolf     }
425741c695c7SKevin Wolf 
425841c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
425941c695c7SKevin Wolf         return bs->drv->bdrv_debug_resume(bs, tag);
426041c695c7SKevin Wolf     }
426141c695c7SKevin Wolf 
426241c695c7SKevin Wolf     return -ENOTSUP;
426341c695c7SKevin Wolf }
426441c695c7SKevin Wolf 
426541c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
426641c695c7SKevin Wolf {
426741c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
42689a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
426941c695c7SKevin Wolf     }
427041c695c7SKevin Wolf 
427141c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
427241c695c7SKevin Wolf         return bs->drv->bdrv_debug_is_suspended(bs, tag);
427341c695c7SKevin Wolf     }
427441c695c7SKevin Wolf 
427541c695c7SKevin Wolf     return false;
42768b9b0cc2SKevin Wolf }
42778b9b0cc2SKevin Wolf 
4278b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol.  If it is
4279b1b1d783SJeff Cody  * relative, it must be relative to the chain.  So, passing in bs->filename
4280b1b1d783SJeff Cody  * from a BDS as backing_file should not be done, as that may be relative to
4281b1b1d783SJeff Cody  * the CWD rather than the chain. */
4282e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4283e8a6bb9cSMarcelo Tosatti         const char *backing_file)
4284e8a6bb9cSMarcelo Tosatti {
4285b1b1d783SJeff Cody     char *filename_full = NULL;
4286b1b1d783SJeff Cody     char *backing_file_full = NULL;
4287b1b1d783SJeff Cody     char *filename_tmp = NULL;
4288b1b1d783SJeff Cody     int is_protocol = 0;
4289b1b1d783SJeff Cody     BlockDriverState *curr_bs = NULL;
4290b1b1d783SJeff Cody     BlockDriverState *retval = NULL;
4291418661e0SJeff Cody     Error *local_error = NULL;
4292b1b1d783SJeff Cody 
4293b1b1d783SJeff Cody     if (!bs || !bs->drv || !backing_file) {
4294e8a6bb9cSMarcelo Tosatti         return NULL;
4295e8a6bb9cSMarcelo Tosatti     }
4296e8a6bb9cSMarcelo Tosatti 
4297b1b1d783SJeff Cody     filename_full     = g_malloc(PATH_MAX);
4298b1b1d783SJeff Cody     backing_file_full = g_malloc(PATH_MAX);
4299b1b1d783SJeff Cody     filename_tmp      = g_malloc(PATH_MAX);
4300b1b1d783SJeff Cody 
4301b1b1d783SJeff Cody     is_protocol = path_has_protocol(backing_file);
4302b1b1d783SJeff Cody 
4303760e0063SKevin Wolf     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
4304b1b1d783SJeff Cody 
4305b1b1d783SJeff Cody         /* If either of the filename paths is actually a protocol, then
4306b1b1d783SJeff Cody          * compare unmodified paths; otherwise make paths relative */
4307b1b1d783SJeff Cody         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4308b1b1d783SJeff Cody             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4309760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
4310b1b1d783SJeff Cody                 break;
4311b1b1d783SJeff Cody             }
4312418661e0SJeff Cody             /* Also check against the full backing filename for the image */
4313418661e0SJeff Cody             bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
4314418661e0SJeff Cody                                            &local_error);
4315418661e0SJeff Cody             if (local_error == NULL) {
4316418661e0SJeff Cody                 if (strcmp(backing_file, backing_file_full) == 0) {
4317418661e0SJeff Cody                     retval = curr_bs->backing->bs;
4318418661e0SJeff Cody                     break;
4319418661e0SJeff Cody                 }
4320418661e0SJeff Cody             } else {
4321418661e0SJeff Cody                 error_free(local_error);
4322418661e0SJeff Cody                 local_error = NULL;
4323418661e0SJeff Cody             }
4324e8a6bb9cSMarcelo Tosatti         } else {
4325b1b1d783SJeff Cody             /* If not an absolute filename path, make it relative to the current
4326b1b1d783SJeff Cody              * image's filename path */
4327b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4328b1b1d783SJeff Cody                          backing_file);
4329b1b1d783SJeff Cody 
4330b1b1d783SJeff Cody             /* We are going to compare absolute pathnames */
4331b1b1d783SJeff Cody             if (!realpath(filename_tmp, filename_full)) {
4332b1b1d783SJeff Cody                 continue;
4333b1b1d783SJeff Cody             }
4334b1b1d783SJeff Cody 
4335b1b1d783SJeff Cody             /* We need to make sure the backing filename we are comparing against
4336b1b1d783SJeff Cody              * is relative to the current image filename (or absolute) */
4337b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4338b1b1d783SJeff Cody                          curr_bs->backing_file);
4339b1b1d783SJeff Cody 
4340b1b1d783SJeff Cody             if (!realpath(filename_tmp, backing_file_full)) {
4341b1b1d783SJeff Cody                 continue;
4342b1b1d783SJeff Cody             }
4343b1b1d783SJeff Cody 
4344b1b1d783SJeff Cody             if (strcmp(backing_file_full, filename_full) == 0) {
4345760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
4346b1b1d783SJeff Cody                 break;
4347b1b1d783SJeff Cody             }
4348e8a6bb9cSMarcelo Tosatti         }
4349e8a6bb9cSMarcelo Tosatti     }
4350e8a6bb9cSMarcelo Tosatti 
4351b1b1d783SJeff Cody     g_free(filename_full);
4352b1b1d783SJeff Cody     g_free(backing_file_full);
4353b1b1d783SJeff Cody     g_free(filename_tmp);
4354b1b1d783SJeff Cody     return retval;
4355e8a6bb9cSMarcelo Tosatti }
4356e8a6bb9cSMarcelo Tosatti 
4357ea2384d3Sbellard void bdrv_init(void)
4358ea2384d3Sbellard {
43595efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
4360ea2384d3Sbellard }
4361ce1a14dcSpbrook 
4362eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
4363eb852011SMarkus Armbruster {
4364eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
4365eb852011SMarkus Armbruster     bdrv_init();
4366eb852011SMarkus Armbruster }
4367eb852011SMarkus Armbruster 
43682b148f39SPaolo Bonzini static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
43692b148f39SPaolo Bonzini                                                   Error **errp)
43700f15423cSAnthony Liguori {
43714417ab7aSKevin Wolf     BdrvChild *child, *parent;
43729c5e6594SKevin Wolf     uint64_t perm, shared_perm;
43735a8a30dbSKevin Wolf     Error *local_err = NULL;
43745a8a30dbSKevin Wolf     int ret;
43755a8a30dbSKevin Wolf 
43763456a8d1SKevin Wolf     if (!bs->drv)  {
43773456a8d1SKevin Wolf         return;
43780f15423cSAnthony Liguori     }
43793456a8d1SKevin Wolf 
438004c01a5cSKevin Wolf     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
43817ea2d269SAlexey Kardashevskiy         return;
43827ea2d269SAlexey Kardashevskiy     }
43837ea2d269SAlexey Kardashevskiy 
438416e977d5SVladimir Sementsov-Ogievskiy     QLIST_FOREACH(child, &bs->children, next) {
43852b148f39SPaolo Bonzini         bdrv_co_invalidate_cache(child->bs, &local_err);
43865a8a30dbSKevin Wolf         if (local_err) {
43875a8a30dbSKevin Wolf             error_propagate(errp, local_err);
43885a8a30dbSKevin Wolf             return;
43893456a8d1SKevin Wolf         }
43900d1c5c91SFam Zheng     }
43910d1c5c91SFam Zheng 
4392dafe0960SKevin Wolf     /*
4393dafe0960SKevin Wolf      * Update permissions, they may differ for inactive nodes.
4394dafe0960SKevin Wolf      *
4395dafe0960SKevin Wolf      * Note that the required permissions of inactive images are always a
4396dafe0960SKevin Wolf      * subset of the permissions required after activating the image. This
4397dafe0960SKevin Wolf      * allows us to just get the permissions upfront without restricting
4398dafe0960SKevin Wolf      * drv->bdrv_invalidate_cache().
4399dafe0960SKevin Wolf      *
4400dafe0960SKevin Wolf      * It also means that in error cases, we don't have to try and revert to
4401dafe0960SKevin Wolf      * the old permissions (which is an operation that could fail, too). We can
4402dafe0960SKevin Wolf      * just keep the extended permissions for the next time that an activation
4403dafe0960SKevin Wolf      * of the image is tried.
4404dafe0960SKevin Wolf      */
440516e977d5SVladimir Sementsov-Ogievskiy     bs->open_flags &= ~BDRV_O_INACTIVE;
4406dafe0960SKevin Wolf     bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4407dafe0960SKevin Wolf     ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
4408dafe0960SKevin Wolf     if (ret < 0) {
4409dafe0960SKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
4410dafe0960SKevin Wolf         error_propagate(errp, local_err);
4411dafe0960SKevin Wolf         return;
4412dafe0960SKevin Wolf     }
4413dafe0960SKevin Wolf     bdrv_set_perm(bs, perm, shared_perm);
4414dafe0960SKevin Wolf 
44152b148f39SPaolo Bonzini     if (bs->drv->bdrv_co_invalidate_cache) {
44162b148f39SPaolo Bonzini         bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
44170d1c5c91SFam Zheng         if (local_err) {
44180d1c5c91SFam Zheng             bs->open_flags |= BDRV_O_INACTIVE;
44190d1c5c91SFam Zheng             error_propagate(errp, local_err);
44200d1c5c91SFam Zheng             return;
44210d1c5c91SFam Zheng         }
44220d1c5c91SFam Zheng     }
44233456a8d1SKevin Wolf 
44245a8a30dbSKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
44255a8a30dbSKevin Wolf     if (ret < 0) {
442604c01a5cSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
44275a8a30dbSKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
44285a8a30dbSKevin Wolf         return;
44295a8a30dbSKevin Wolf     }
44304417ab7aSKevin Wolf 
44314417ab7aSKevin Wolf     QLIST_FOREACH(parent, &bs->parents, next_parent) {
44324417ab7aSKevin Wolf         if (parent->role->activate) {
44334417ab7aSKevin Wolf             parent->role->activate(parent, &local_err);
44344417ab7aSKevin Wolf             if (local_err) {
44354417ab7aSKevin Wolf                 error_propagate(errp, local_err);
44364417ab7aSKevin Wolf                 return;
44374417ab7aSKevin Wolf             }
44384417ab7aSKevin Wolf         }
44394417ab7aSKevin Wolf     }
44400f15423cSAnthony Liguori }
44410f15423cSAnthony Liguori 
44422b148f39SPaolo Bonzini typedef struct InvalidateCacheCo {
44432b148f39SPaolo Bonzini     BlockDriverState *bs;
44442b148f39SPaolo Bonzini     Error **errp;
44452b148f39SPaolo Bonzini     bool done;
44462b148f39SPaolo Bonzini } InvalidateCacheCo;
44472b148f39SPaolo Bonzini 
44482b148f39SPaolo Bonzini static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
44492b148f39SPaolo Bonzini {
44502b148f39SPaolo Bonzini     InvalidateCacheCo *ico = opaque;
44512b148f39SPaolo Bonzini     bdrv_co_invalidate_cache(ico->bs, ico->errp);
44522b148f39SPaolo Bonzini     ico->done = true;
44532b148f39SPaolo Bonzini }
44542b148f39SPaolo Bonzini 
44552b148f39SPaolo Bonzini void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
44562b148f39SPaolo Bonzini {
44572b148f39SPaolo Bonzini     Coroutine *co;
44582b148f39SPaolo Bonzini     InvalidateCacheCo ico = {
44592b148f39SPaolo Bonzini         .bs = bs,
44602b148f39SPaolo Bonzini         .done = false,
44612b148f39SPaolo Bonzini         .errp = errp
44622b148f39SPaolo Bonzini     };
44632b148f39SPaolo Bonzini 
44642b148f39SPaolo Bonzini     if (qemu_in_coroutine()) {
44652b148f39SPaolo Bonzini         /* Fast-path if already in coroutine context */
44662b148f39SPaolo Bonzini         bdrv_invalidate_cache_co_entry(&ico);
44672b148f39SPaolo Bonzini     } else {
44682b148f39SPaolo Bonzini         co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
44692b148f39SPaolo Bonzini         qemu_coroutine_enter(co);
44702b148f39SPaolo Bonzini         BDRV_POLL_WHILE(bs, !ico.done);
44712b148f39SPaolo Bonzini     }
44722b148f39SPaolo Bonzini }
44732b148f39SPaolo Bonzini 
44745a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp)
44750f15423cSAnthony Liguori {
44767c8eece4SKevin Wolf     BlockDriverState *bs;
44775a8a30dbSKevin Wolf     Error *local_err = NULL;
447888be7b4bSKevin Wolf     BdrvNextIterator it;
44790f15423cSAnthony Liguori 
448088be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4481ed78cda3SStefan Hajnoczi         AioContext *aio_context = bdrv_get_aio_context(bs);
4482ed78cda3SStefan Hajnoczi 
4483ed78cda3SStefan Hajnoczi         aio_context_acquire(aio_context);
44845a8a30dbSKevin Wolf         bdrv_invalidate_cache(bs, &local_err);
4485ed78cda3SStefan Hajnoczi         aio_context_release(aio_context);
44865a8a30dbSKevin Wolf         if (local_err) {
44875a8a30dbSKevin Wolf             error_propagate(errp, local_err);
44885e003f17SMax Reitz             bdrv_next_cleanup(&it);
44895a8a30dbSKevin Wolf             return;
44905a8a30dbSKevin Wolf         }
44910f15423cSAnthony Liguori     }
44920f15423cSAnthony Liguori }
44930f15423cSAnthony Liguori 
4494aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs,
4495aad0b7a0SFam Zheng                                    bool setting_flag)
449676b1c7feSKevin Wolf {
4497cfa1a572SKevin Wolf     BdrvChild *child, *parent;
449876b1c7feSKevin Wolf     int ret;
449976b1c7feSKevin Wolf 
4500d470ad42SMax Reitz     if (!bs->drv) {
4501d470ad42SMax Reitz         return -ENOMEDIUM;
4502d470ad42SMax Reitz     }
4503d470ad42SMax Reitz 
4504aad0b7a0SFam Zheng     if (!setting_flag && bs->drv->bdrv_inactivate) {
450576b1c7feSKevin Wolf         ret = bs->drv->bdrv_inactivate(bs);
450676b1c7feSKevin Wolf         if (ret < 0) {
450776b1c7feSKevin Wolf             return ret;
450876b1c7feSKevin Wolf         }
450976b1c7feSKevin Wolf     }
451076b1c7feSKevin Wolf 
45117d5b5261SStefan Hajnoczi     if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) {
45129c5e6594SKevin Wolf         uint64_t perm, shared_perm;
45139c5e6594SKevin Wolf 
4514cfa1a572SKevin Wolf         QLIST_FOREACH(parent, &bs->parents, next_parent) {
4515cfa1a572SKevin Wolf             if (parent->role->inactivate) {
4516cfa1a572SKevin Wolf                 ret = parent->role->inactivate(parent);
4517cfa1a572SKevin Wolf                 if (ret < 0) {
4518cfa1a572SKevin Wolf                     return ret;
4519cfa1a572SKevin Wolf                 }
4520cfa1a572SKevin Wolf             }
4521cfa1a572SKevin Wolf         }
45229c5e6594SKevin Wolf 
45237d5b5261SStefan Hajnoczi         bs->open_flags |= BDRV_O_INACTIVE;
45247d5b5261SStefan Hajnoczi 
45259c5e6594SKevin Wolf         /* Update permissions, they may differ for inactive nodes */
45269c5e6594SKevin Wolf         bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
45273121fb45SKevin Wolf         bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
45289c5e6594SKevin Wolf         bdrv_set_perm(bs, perm, shared_perm);
4529aad0b7a0SFam Zheng     }
453038701b6aSKevin Wolf 
453138701b6aSKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
453238701b6aSKevin Wolf         ret = bdrv_inactivate_recurse(child->bs, setting_flag);
453338701b6aSKevin Wolf         if (ret < 0) {
453438701b6aSKevin Wolf             return ret;
453538701b6aSKevin Wolf         }
453638701b6aSKevin Wolf     }
453738701b6aSKevin Wolf 
4538615b5dcfSVladimir Sementsov-Ogievskiy     /* At this point persistent bitmaps should be already stored by the format
4539615b5dcfSVladimir Sementsov-Ogievskiy      * driver */
4540615b5dcfSVladimir Sementsov-Ogievskiy     bdrv_release_persistent_dirty_bitmaps(bs);
4541615b5dcfSVladimir Sementsov-Ogievskiy 
454276b1c7feSKevin Wolf     return 0;
454376b1c7feSKevin Wolf }
454476b1c7feSKevin Wolf 
454576b1c7feSKevin Wolf int bdrv_inactivate_all(void)
454676b1c7feSKevin Wolf {
454779720af6SMax Reitz     BlockDriverState *bs = NULL;
454888be7b4bSKevin Wolf     BdrvNextIterator it;
4549aad0b7a0SFam Zheng     int ret = 0;
4550aad0b7a0SFam Zheng     int pass;
4551bd6458e4SPaolo Bonzini     GSList *aio_ctxs = NULL, *ctx;
455276b1c7feSKevin Wolf 
455388be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4554bd6458e4SPaolo Bonzini         AioContext *aio_context = bdrv_get_aio_context(bs);
4555bd6458e4SPaolo Bonzini 
4556bd6458e4SPaolo Bonzini         if (!g_slist_find(aio_ctxs, aio_context)) {
4557bd6458e4SPaolo Bonzini             aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
4558bd6458e4SPaolo Bonzini             aio_context_acquire(aio_context);
4559bd6458e4SPaolo Bonzini         }
4560aad0b7a0SFam Zheng     }
456176b1c7feSKevin Wolf 
4562aad0b7a0SFam Zheng     /* We do two passes of inactivation. The first pass calls to drivers'
4563aad0b7a0SFam Zheng      * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
4564aad0b7a0SFam Zheng      * the second pass sets the BDRV_O_INACTIVE flag so that no further write
4565aad0b7a0SFam Zheng      * is allowed. */
4566aad0b7a0SFam Zheng     for (pass = 0; pass < 2; pass++) {
456788be7b4bSKevin Wolf         for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4568aad0b7a0SFam Zheng             ret = bdrv_inactivate_recurse(bs, pass);
456976b1c7feSKevin Wolf             if (ret < 0) {
45705e003f17SMax Reitz                 bdrv_next_cleanup(&it);
4571aad0b7a0SFam Zheng                 goto out;
4572aad0b7a0SFam Zheng             }
457376b1c7feSKevin Wolf         }
457476b1c7feSKevin Wolf     }
457576b1c7feSKevin Wolf 
4576aad0b7a0SFam Zheng out:
4577bd6458e4SPaolo Bonzini     for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4578bd6458e4SPaolo Bonzini         AioContext *aio_context = ctx->data;
4579bd6458e4SPaolo Bonzini         aio_context_release(aio_context);
4580aad0b7a0SFam Zheng     }
4581bd6458e4SPaolo Bonzini     g_slist_free(aio_ctxs);
4582aad0b7a0SFam Zheng 
4583aad0b7a0SFam Zheng     return ret;
458476b1c7feSKevin Wolf }
458576b1c7feSKevin Wolf 
4586f9f05dc5SKevin Wolf /**************************************************************/
458719cb3738Sbellard /* removable device support */
458819cb3738Sbellard 
458919cb3738Sbellard /**
459019cb3738Sbellard  * Return TRUE if the media is present
459119cb3738Sbellard  */
4592e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs)
459319cb3738Sbellard {
459419cb3738Sbellard     BlockDriver *drv = bs->drv;
459528d7a789SMax Reitz     BdrvChild *child;
4596a1aff5bfSMarkus Armbruster 
4597e031f750SMax Reitz     if (!drv) {
4598e031f750SMax Reitz         return false;
4599e031f750SMax Reitz     }
460028d7a789SMax Reitz     if (drv->bdrv_is_inserted) {
4601a1aff5bfSMarkus Armbruster         return drv->bdrv_is_inserted(bs);
460219cb3738Sbellard     }
460328d7a789SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
460428d7a789SMax Reitz         if (!bdrv_is_inserted(child->bs)) {
460528d7a789SMax Reitz             return false;
460628d7a789SMax Reitz         }
460728d7a789SMax Reitz     }
460828d7a789SMax Reitz     return true;
460928d7a789SMax Reitz }
461019cb3738Sbellard 
461119cb3738Sbellard /**
461219cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
461319cb3738Sbellard  */
4614f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
461519cb3738Sbellard {
461619cb3738Sbellard     BlockDriver *drv = bs->drv;
461719cb3738Sbellard 
4618822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
4619822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
462019cb3738Sbellard     }
462119cb3738Sbellard }
462219cb3738Sbellard 
462319cb3738Sbellard /**
462419cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
462519cb3738Sbellard  * to eject it manually).
462619cb3738Sbellard  */
4627025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
462819cb3738Sbellard {
462919cb3738Sbellard     BlockDriver *drv = bs->drv;
463019cb3738Sbellard 
4631025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
4632b8c6d095SStefan Hajnoczi 
4633025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
4634025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
463519cb3738Sbellard     }
463619cb3738Sbellard }
4637985a03b0Sths 
46389fcb0251SFam Zheng /* Get a reference to bs */
46399fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs)
46409fcb0251SFam Zheng {
46419fcb0251SFam Zheng     bs->refcnt++;
46429fcb0251SFam Zheng }
46439fcb0251SFam Zheng 
46449fcb0251SFam Zheng /* Release a previously grabbed reference to bs.
46459fcb0251SFam Zheng  * If after releasing, reference count is zero, the BlockDriverState is
46469fcb0251SFam Zheng  * deleted. */
46479fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs)
46489fcb0251SFam Zheng {
46499a4d5ca6SJeff Cody     if (!bs) {
46509a4d5ca6SJeff Cody         return;
46519a4d5ca6SJeff Cody     }
46529fcb0251SFam Zheng     assert(bs->refcnt > 0);
46539fcb0251SFam Zheng     if (--bs->refcnt == 0) {
46549fcb0251SFam Zheng         bdrv_delete(bs);
46559fcb0251SFam Zheng     }
46569fcb0251SFam Zheng }
46579fcb0251SFam Zheng 
4658fbe40ff7SFam Zheng struct BdrvOpBlocker {
4659fbe40ff7SFam Zheng     Error *reason;
4660fbe40ff7SFam Zheng     QLIST_ENTRY(BdrvOpBlocker) list;
4661fbe40ff7SFam Zheng };
4662fbe40ff7SFam Zheng 
4663fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
4664fbe40ff7SFam Zheng {
4665fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
4666fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4667fbe40ff7SFam Zheng     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
4668fbe40ff7SFam Zheng         blocker = QLIST_FIRST(&bs->op_blockers[op]);
466957ef3f12SEduardo Habkost         error_propagate(errp, error_copy(blocker->reason));
4670e43bfd9cSMarkus Armbruster         error_prepend(errp, "Node '%s' is busy: ",
4671e43bfd9cSMarkus Armbruster                       bdrv_get_device_or_node_name(bs));
4672fbe40ff7SFam Zheng         return true;
4673fbe40ff7SFam Zheng     }
4674fbe40ff7SFam Zheng     return false;
4675fbe40ff7SFam Zheng }
4676fbe40ff7SFam Zheng 
4677fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
4678fbe40ff7SFam Zheng {
4679fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
4680fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4681fbe40ff7SFam Zheng 
46825839e53bSMarkus Armbruster     blocker = g_new0(BdrvOpBlocker, 1);
4683fbe40ff7SFam Zheng     blocker->reason = reason;
4684fbe40ff7SFam Zheng     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
4685fbe40ff7SFam Zheng }
4686fbe40ff7SFam Zheng 
4687fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
4688fbe40ff7SFam Zheng {
4689fbe40ff7SFam Zheng     BdrvOpBlocker *blocker, *next;
4690fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4691fbe40ff7SFam Zheng     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
4692fbe40ff7SFam Zheng         if (blocker->reason == reason) {
4693fbe40ff7SFam Zheng             QLIST_REMOVE(blocker, list);
4694fbe40ff7SFam Zheng             g_free(blocker);
4695fbe40ff7SFam Zheng         }
4696fbe40ff7SFam Zheng     }
4697fbe40ff7SFam Zheng }
4698fbe40ff7SFam Zheng 
4699fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
4700fbe40ff7SFam Zheng {
4701fbe40ff7SFam Zheng     int i;
4702fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4703fbe40ff7SFam Zheng         bdrv_op_block(bs, i, reason);
4704fbe40ff7SFam Zheng     }
4705fbe40ff7SFam Zheng }
4706fbe40ff7SFam Zheng 
4707fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
4708fbe40ff7SFam Zheng {
4709fbe40ff7SFam Zheng     int i;
4710fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4711fbe40ff7SFam Zheng         bdrv_op_unblock(bs, i, reason);
4712fbe40ff7SFam Zheng     }
4713fbe40ff7SFam Zheng }
4714fbe40ff7SFam Zheng 
4715fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
4716fbe40ff7SFam Zheng {
4717fbe40ff7SFam Zheng     int i;
4718fbe40ff7SFam Zheng 
4719fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4720fbe40ff7SFam Zheng         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
4721fbe40ff7SFam Zheng             return false;
4722fbe40ff7SFam Zheng         }
4723fbe40ff7SFam Zheng     }
4724fbe40ff7SFam Zheng     return true;
4725fbe40ff7SFam Zheng }
4726fbe40ff7SFam Zheng 
4727d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt,
4728f88e1a42SJes Sorensen                      const char *base_filename, const char *base_fmt,
47299217283dSFam Zheng                      char *options, uint64_t img_size, int flags, bool quiet,
47309217283dSFam Zheng                      Error **errp)
4731f88e1a42SJes Sorensen {
473283d0521aSChunyan Liu     QemuOptsList *create_opts = NULL;
473383d0521aSChunyan Liu     QemuOpts *opts = NULL;
473483d0521aSChunyan Liu     const char *backing_fmt, *backing_file;
473583d0521aSChunyan Liu     int64_t size;
4736f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
4737cc84d90fSMax Reitz     Error *local_err = NULL;
4738f88e1a42SJes Sorensen     int ret = 0;
4739f88e1a42SJes Sorensen 
4740f88e1a42SJes Sorensen     /* Find driver and parse its options */
4741f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
4742f88e1a42SJes Sorensen     if (!drv) {
474371c79813SLuiz Capitulino         error_setg(errp, "Unknown file format '%s'", fmt);
4744d92ada22SLuiz Capitulino         return;
4745f88e1a42SJes Sorensen     }
4746f88e1a42SJes Sorensen 
4747b65a5e12SMax Reitz     proto_drv = bdrv_find_protocol(filename, true, errp);
4748f88e1a42SJes Sorensen     if (!proto_drv) {
4749d92ada22SLuiz Capitulino         return;
4750f88e1a42SJes Sorensen     }
4751f88e1a42SJes Sorensen 
4752c6149724SMax Reitz     if (!drv->create_opts) {
4753c6149724SMax Reitz         error_setg(errp, "Format driver '%s' does not support image creation",
4754c6149724SMax Reitz                    drv->format_name);
4755c6149724SMax Reitz         return;
4756c6149724SMax Reitz     }
4757c6149724SMax Reitz 
4758c6149724SMax Reitz     if (!proto_drv->create_opts) {
4759c6149724SMax Reitz         error_setg(errp, "Protocol driver '%s' does not support image creation",
4760c6149724SMax Reitz                    proto_drv->format_name);
4761c6149724SMax Reitz         return;
4762c6149724SMax Reitz     }
4763c6149724SMax Reitz 
4764c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, drv->create_opts);
4765c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4766f88e1a42SJes Sorensen 
4767f88e1a42SJes Sorensen     /* Create parameter list with default values */
476883d0521aSChunyan Liu     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
476939101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4770f88e1a42SJes Sorensen 
4771f88e1a42SJes Sorensen     /* Parse -o options */
4772f88e1a42SJes Sorensen     if (options) {
4773dc523cd3SMarkus Armbruster         qemu_opts_do_parse(opts, options, NULL, &local_err);
4774dc523cd3SMarkus Armbruster         if (local_err) {
4775dc523cd3SMarkus Armbruster             error_report_err(local_err);
4776dc523cd3SMarkus Armbruster             local_err = NULL;
477783d0521aSChunyan Liu             error_setg(errp, "Invalid options for file format '%s'", fmt);
4778f88e1a42SJes Sorensen             goto out;
4779f88e1a42SJes Sorensen         }
4780f88e1a42SJes Sorensen     }
4781f88e1a42SJes Sorensen 
4782f88e1a42SJes Sorensen     if (base_filename) {
4783f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
47846be4194bSMarkus Armbruster         if (local_err) {
478571c79813SLuiz Capitulino             error_setg(errp, "Backing file not supported for file format '%s'",
478671c79813SLuiz Capitulino                        fmt);
4787f88e1a42SJes Sorensen             goto out;
4788f88e1a42SJes Sorensen         }
4789f88e1a42SJes Sorensen     }
4790f88e1a42SJes Sorensen 
4791f88e1a42SJes Sorensen     if (base_fmt) {
4792f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
47936be4194bSMarkus Armbruster         if (local_err) {
479471c79813SLuiz Capitulino             error_setg(errp, "Backing file format not supported for file "
479571c79813SLuiz Capitulino                              "format '%s'", fmt);
4796f88e1a42SJes Sorensen             goto out;
4797f88e1a42SJes Sorensen         }
4798f88e1a42SJes Sorensen     }
4799f88e1a42SJes Sorensen 
480083d0521aSChunyan Liu     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
480183d0521aSChunyan Liu     if (backing_file) {
480283d0521aSChunyan Liu         if (!strcmp(filename, backing_file)) {
480371c79813SLuiz Capitulino             error_setg(errp, "Error: Trying to create an image with the "
480471c79813SLuiz Capitulino                              "same filename as the backing file");
4805792da93aSJes Sorensen             goto out;
4806792da93aSJes Sorensen         }
4807792da93aSJes Sorensen     }
4808792da93aSJes Sorensen 
480983d0521aSChunyan Liu     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
4810f88e1a42SJes Sorensen 
48116e6e55f5SJohn Snow     /* The size for the image must always be specified, unless we have a backing
48126e6e55f5SJohn Snow      * file and we have not been forbidden from opening it. */
4813a8b42a1cSEric Blake     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
48146e6e55f5SJohn Snow     if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
481566f6b814SMax Reitz         BlockDriverState *bs;
481629168018SMax Reitz         char *full_backing = g_new0(char, PATH_MAX);
481763090dacSPaolo Bonzini         int back_flags;
4818e6641719SMax Reitz         QDict *backing_options = NULL;
481963090dacSPaolo Bonzini 
482029168018SMax Reitz         bdrv_get_full_backing_filename_from_filename(filename, backing_file,
482129168018SMax Reitz                                                      full_backing, PATH_MAX,
482229168018SMax Reitz                                                      &local_err);
482329168018SMax Reitz         if (local_err) {
482429168018SMax Reitz             g_free(full_backing);
482529168018SMax Reitz             goto out;
482629168018SMax Reitz         }
482729168018SMax Reitz 
482863090dacSPaolo Bonzini         /* backing files always opened read-only */
482961de4c68SKevin Wolf         back_flags = flags;
4830bfd18d1eSKevin Wolf         back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4831f88e1a42SJes Sorensen 
4832e6641719SMax Reitz         backing_options = qdict_new();
4833cc954f01SFam Zheng         if (backing_fmt) {
483446f5ac20SEric Blake             qdict_put_str(backing_options, "driver", backing_fmt);
4835e6641719SMax Reitz         }
4836cc954f01SFam Zheng         qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
4837e6641719SMax Reitz 
48385b363937SMax Reitz         bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
48395b363937SMax Reitz                        &local_err);
484029168018SMax Reitz         g_free(full_backing);
48416e6e55f5SJohn Snow         if (!bs && size != -1) {
48426e6e55f5SJohn Snow             /* Couldn't open BS, but we have a size, so it's nonfatal */
48436e6e55f5SJohn Snow             warn_reportf_err(local_err,
48446e6e55f5SJohn Snow                             "Could not verify backing image. "
48456e6e55f5SJohn Snow                             "This may become an error in future versions.\n");
48466e6e55f5SJohn Snow             local_err = NULL;
48476e6e55f5SJohn Snow         } else if (!bs) {
48486e6e55f5SJohn Snow             /* Couldn't open bs, do not have size */
48496e6e55f5SJohn Snow             error_append_hint(&local_err,
48506e6e55f5SJohn Snow                               "Could not open backing image to determine size.\n");
4851f88e1a42SJes Sorensen             goto out;
48526e6e55f5SJohn Snow         } else {
48536e6e55f5SJohn Snow             if (size == -1) {
48546e6e55f5SJohn Snow                 /* Opened BS, have no size */
485552bf1e72SMarkus Armbruster                 size = bdrv_getlength(bs);
485652bf1e72SMarkus Armbruster                 if (size < 0) {
485752bf1e72SMarkus Armbruster                     error_setg_errno(errp, -size, "Could not get size of '%s'",
485852bf1e72SMarkus Armbruster                                      backing_file);
485952bf1e72SMarkus Armbruster                     bdrv_unref(bs);
486052bf1e72SMarkus Armbruster                     goto out;
486152bf1e72SMarkus Armbruster                 }
486239101f25SMarkus Armbruster                 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
48636e6e55f5SJohn Snow             }
486466f6b814SMax Reitz             bdrv_unref(bs);
48656e6e55f5SJohn Snow         }
48666e6e55f5SJohn Snow     } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
48676e6e55f5SJohn Snow 
48686e6e55f5SJohn Snow     if (size == -1) {
486971c79813SLuiz Capitulino         error_setg(errp, "Image creation needs a size parameter");
4870f88e1a42SJes Sorensen         goto out;
4871f88e1a42SJes Sorensen     }
4872f88e1a42SJes Sorensen 
4873f382d43aSMiroslav Rezanina     if (!quiet) {
4874f88e1a42SJes Sorensen         printf("Formatting '%s', fmt=%s ", filename, fmt);
487543c5d8f8SFam Zheng         qemu_opts_print(opts, " ");
4876f88e1a42SJes Sorensen         puts("");
4877f382d43aSMiroslav Rezanina     }
487883d0521aSChunyan Liu 
4879c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
488083d0521aSChunyan Liu 
4881cc84d90fSMax Reitz     if (ret == -EFBIG) {
4882cc84d90fSMax Reitz         /* This is generally a better message than whatever the driver would
4883cc84d90fSMax Reitz          * deliver (especially because of the cluster_size_hint), since that
4884cc84d90fSMax Reitz          * is most probably not much different from "image too large". */
4885f3f4d2c0SKevin Wolf         const char *cluster_size_hint = "";
488683d0521aSChunyan Liu         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
4887f3f4d2c0SKevin Wolf             cluster_size_hint = " (try using a larger cluster size)";
4888f3f4d2c0SKevin Wolf         }
4889cc84d90fSMax Reitz         error_setg(errp, "The image size is too large for file format '%s'"
4890cc84d90fSMax Reitz                    "%s", fmt, cluster_size_hint);
4891cc84d90fSMax Reitz         error_free(local_err);
4892cc84d90fSMax Reitz         local_err = NULL;
4893f88e1a42SJes Sorensen     }
4894f88e1a42SJes Sorensen 
4895f88e1a42SJes Sorensen out:
489683d0521aSChunyan Liu     qemu_opts_del(opts);
489783d0521aSChunyan Liu     qemu_opts_free(create_opts);
4898cc84d90fSMax Reitz     error_propagate(errp, local_err);
4899cc84d90fSMax Reitz }
490085d126f3SStefan Hajnoczi 
490185d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs)
490285d126f3SStefan Hajnoczi {
490333f2a757SStefan Hajnoczi     return bs ? bs->aio_context : qemu_get_aio_context();
4904dcd04228SStefan Hajnoczi }
4905dcd04228SStefan Hajnoczi 
49067719f3c9SStefan Hajnoczi AioWait *bdrv_get_aio_wait(BlockDriverState *bs)
49077719f3c9SStefan Hajnoczi {
49087719f3c9SStefan Hajnoczi     return bs ? &bs->wait : NULL;
4909dcd04228SStefan Hajnoczi }
4910dcd04228SStefan Hajnoczi 
4911052a7572SFam Zheng void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
4912052a7572SFam Zheng {
4913052a7572SFam Zheng     aio_co_enter(bdrv_get_aio_context(bs), co);
4914052a7572SFam Zheng }
4915052a7572SFam Zheng 
4916e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
4917e8a095daSStefan Hajnoczi {
4918e8a095daSStefan Hajnoczi     QLIST_REMOVE(ban, list);
4919e8a095daSStefan Hajnoczi     g_free(ban);
4920e8a095daSStefan Hajnoczi }
4921e8a095daSStefan Hajnoczi 
4922dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs)
4923dcd04228SStefan Hajnoczi {
4924e8a095daSStefan Hajnoczi     BdrvAioNotifier *baf, *baf_tmp;
4925b97511c7SMax Reitz     BdrvChild *child;
492633384421SMax Reitz 
4927dcd04228SStefan Hajnoczi     if (!bs->drv) {
4928dcd04228SStefan Hajnoczi         return;
4929dcd04228SStefan Hajnoczi     }
4930dcd04228SStefan Hajnoczi 
4931e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
4932e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
4933e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
4934e8a095daSStefan Hajnoczi         if (baf->deleted) {
4935e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(baf);
4936e8a095daSStefan Hajnoczi         } else {
493733384421SMax Reitz             baf->detach_aio_context(baf->opaque);
493833384421SMax Reitz         }
4939e8a095daSStefan Hajnoczi     }
4940e8a095daSStefan Hajnoczi     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
4941e8a095daSStefan Hajnoczi      * remove remaining aio notifiers if we aren't called again.
4942e8a095daSStefan Hajnoczi      */
4943e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
494433384421SMax Reitz 
4945dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_detach_aio_context) {
4946dcd04228SStefan Hajnoczi         bs->drv->bdrv_detach_aio_context(bs);
4947dcd04228SStefan Hajnoczi     }
4948b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
4949b97511c7SMax Reitz         bdrv_detach_aio_context(child->bs);
4950dcd04228SStefan Hajnoczi     }
4951dcd04228SStefan Hajnoczi 
4952dcd04228SStefan Hajnoczi     bs->aio_context = NULL;
4953dcd04228SStefan Hajnoczi }
4954dcd04228SStefan Hajnoczi 
4955dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs,
4956dcd04228SStefan Hajnoczi                              AioContext *new_context)
4957dcd04228SStefan Hajnoczi {
4958e8a095daSStefan Hajnoczi     BdrvAioNotifier *ban, *ban_tmp;
4959b97511c7SMax Reitz     BdrvChild *child;
496033384421SMax Reitz 
4961dcd04228SStefan Hajnoczi     if (!bs->drv) {
4962dcd04228SStefan Hajnoczi         return;
4963dcd04228SStefan Hajnoczi     }
4964dcd04228SStefan Hajnoczi 
4965dcd04228SStefan Hajnoczi     bs->aio_context = new_context;
4966dcd04228SStefan Hajnoczi 
4967b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
4968b97511c7SMax Reitz         bdrv_attach_aio_context(child->bs, new_context);
4969dcd04228SStefan Hajnoczi     }
4970dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_attach_aio_context) {
4971dcd04228SStefan Hajnoczi         bs->drv->bdrv_attach_aio_context(bs, new_context);
4972dcd04228SStefan Hajnoczi     }
497333384421SMax Reitz 
4974e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
4975e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
4976e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
4977e8a095daSStefan Hajnoczi         if (ban->deleted) {
4978e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(ban);
4979e8a095daSStefan Hajnoczi         } else {
498033384421SMax Reitz             ban->attached_aio_context(new_context, ban->opaque);
498133384421SMax Reitz         }
4982dcd04228SStefan Hajnoczi     }
4983e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
4984e8a095daSStefan Hajnoczi }
4985dcd04228SStefan Hajnoczi 
4986dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
4987dcd04228SStefan Hajnoczi {
4988aabf5910SFam Zheng     AioContext *ctx = bdrv_get_aio_context(bs);
4989c2b6428dSPaolo Bonzini 
4990aabf5910SFam Zheng     aio_disable_external(ctx);
49916cd5c9d7SKevin Wolf     bdrv_parent_drained_begin(bs, NULL, false);
499253ec73e2SFam Zheng     bdrv_drain(bs); /* ensure there are no in-flight requests */
4993dcd04228SStefan Hajnoczi 
4994c2b6428dSPaolo Bonzini     while (aio_poll(ctx, false)) {
4995c2b6428dSPaolo Bonzini         /* wait for all bottom halves to execute */
4996c2b6428dSPaolo Bonzini     }
4997c2b6428dSPaolo Bonzini 
4998dcd04228SStefan Hajnoczi     bdrv_detach_aio_context(bs);
4999dcd04228SStefan Hajnoczi 
5000dcd04228SStefan Hajnoczi     /* This function executes in the old AioContext so acquire the new one in
5001dcd04228SStefan Hajnoczi      * case it runs in a different thread.
5002dcd04228SStefan Hajnoczi      */
5003dcd04228SStefan Hajnoczi     aio_context_acquire(new_context);
5004dcd04228SStefan Hajnoczi     bdrv_attach_aio_context(bs, new_context);
50056cd5c9d7SKevin Wolf     bdrv_parent_drained_end(bs, NULL, false);
5006aabf5910SFam Zheng     aio_enable_external(ctx);
5007dcd04228SStefan Hajnoczi     aio_context_release(new_context);
500885d126f3SStefan Hajnoczi }
5009d616b224SStefan Hajnoczi 
501033384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs,
501133384421SMax Reitz         void (*attached_aio_context)(AioContext *new_context, void *opaque),
501233384421SMax Reitz         void (*detach_aio_context)(void *opaque), void *opaque)
501333384421SMax Reitz {
501433384421SMax Reitz     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
501533384421SMax Reitz     *ban = (BdrvAioNotifier){
501633384421SMax Reitz         .attached_aio_context = attached_aio_context,
501733384421SMax Reitz         .detach_aio_context   = detach_aio_context,
501833384421SMax Reitz         .opaque               = opaque
501933384421SMax Reitz     };
502033384421SMax Reitz 
502133384421SMax Reitz     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
502233384421SMax Reitz }
502333384421SMax Reitz 
502433384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
502533384421SMax Reitz                                       void (*attached_aio_context)(AioContext *,
502633384421SMax Reitz                                                                    void *),
502733384421SMax Reitz                                       void (*detach_aio_context)(void *),
502833384421SMax Reitz                                       void *opaque)
502933384421SMax Reitz {
503033384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
503133384421SMax Reitz 
503233384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
503333384421SMax Reitz         if (ban->attached_aio_context == attached_aio_context &&
503433384421SMax Reitz             ban->detach_aio_context   == detach_aio_context   &&
5035e8a095daSStefan Hajnoczi             ban->opaque               == opaque               &&
5036e8a095daSStefan Hajnoczi             ban->deleted              == false)
503733384421SMax Reitz         {
5038e8a095daSStefan Hajnoczi             if (bs->walking_aio_notifiers) {
5039e8a095daSStefan Hajnoczi                 ban->deleted = true;
5040e8a095daSStefan Hajnoczi             } else {
5041e8a095daSStefan Hajnoczi                 bdrv_do_remove_aio_context_notifier(ban);
5042e8a095daSStefan Hajnoczi             }
504333384421SMax Reitz             return;
504433384421SMax Reitz         }
504533384421SMax Reitz     }
504633384421SMax Reitz 
504733384421SMax Reitz     abort();
504833384421SMax Reitz }
504933384421SMax Reitz 
505077485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
5051d1402b50SMax Reitz                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5052d1402b50SMax Reitz                        Error **errp)
50536f176b48SMax Reitz {
5054d470ad42SMax Reitz     if (!bs->drv) {
5055d1402b50SMax Reitz         error_setg(errp, "Node is ejected");
5056d470ad42SMax Reitz         return -ENOMEDIUM;
5057d470ad42SMax Reitz     }
5058c282e1fdSChunyan Liu     if (!bs->drv->bdrv_amend_options) {
5059d1402b50SMax Reitz         error_setg(errp, "Block driver '%s' does not support option amendment",
5060d1402b50SMax Reitz                    bs->drv->format_name);
50616f176b48SMax Reitz         return -ENOTSUP;
50626f176b48SMax Reitz     }
5063d1402b50SMax Reitz     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
50646f176b48SMax Reitz }
5065f6186f49SBenoît Canet 
5066b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method
5067b5042a36SBenoît Canet  * of block filter and by bdrv_is_first_non_filter.
5068b5042a36SBenoît Canet  * It is used to test if the given bs is the candidate or recurse more in the
5069b5042a36SBenoît Canet  * node graph.
5070212a5a8fSBenoît Canet  */
5071212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5072212a5a8fSBenoît Canet                                       BlockDriverState *candidate)
5073f6186f49SBenoît Canet {
5074b5042a36SBenoît Canet     /* return false if basic checks fails */
5075b5042a36SBenoît Canet     if (!bs || !bs->drv) {
5076b5042a36SBenoît Canet         return false;
5077b5042a36SBenoît Canet     }
5078b5042a36SBenoît Canet 
5079b5042a36SBenoît Canet     /* the code reached a non block filter driver -> check if the bs is
5080b5042a36SBenoît Canet      * the same as the candidate. It's the recursion termination condition.
5081b5042a36SBenoît Canet      */
5082b5042a36SBenoît Canet     if (!bs->drv->is_filter) {
5083b5042a36SBenoît Canet         return bs == candidate;
5084b5042a36SBenoît Canet     }
5085b5042a36SBenoît Canet     /* Down this path the driver is a block filter driver */
5086b5042a36SBenoît Canet 
5087b5042a36SBenoît Canet     /* If the block filter recursion method is defined use it to recurse down
5088b5042a36SBenoît Canet      * the node graph.
5089b5042a36SBenoît Canet      */
5090b5042a36SBenoît Canet     if (bs->drv->bdrv_recurse_is_first_non_filter) {
5091212a5a8fSBenoît Canet         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5092212a5a8fSBenoît Canet     }
5093212a5a8fSBenoît Canet 
5094b5042a36SBenoît Canet     /* the driver is a block filter but don't allow to recurse -> return false
5095b5042a36SBenoît Canet      */
5096b5042a36SBenoît Canet     return false;
5097212a5a8fSBenoît Canet }
5098212a5a8fSBenoît Canet 
5099212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's
5100212a5a8fSBenoît Canet  * bs chain. Since we don't have pointers to parents it explore all bs chains
5101212a5a8fSBenoît Canet  * from the top. Some filters can choose not to pass down the recursion.
5102212a5a8fSBenoît Canet  */
5103212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5104212a5a8fSBenoît Canet {
51057c8eece4SKevin Wolf     BlockDriverState *bs;
510688be7b4bSKevin Wolf     BdrvNextIterator it;
5107212a5a8fSBenoît Canet 
5108212a5a8fSBenoît Canet     /* walk down the bs forest recursively */
510988be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5110212a5a8fSBenoît Canet         bool perm;
5111212a5a8fSBenoît Canet 
5112b5042a36SBenoît Canet         /* try to recurse in this top level bs */
5113e6dc8a1fSKevin Wolf         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
5114212a5a8fSBenoît Canet 
5115212a5a8fSBenoît Canet         /* candidate is the first non filter */
5116212a5a8fSBenoît Canet         if (perm) {
51175e003f17SMax Reitz             bdrv_next_cleanup(&it);
5118212a5a8fSBenoît Canet             return true;
5119212a5a8fSBenoît Canet         }
5120212a5a8fSBenoît Canet     }
5121212a5a8fSBenoît Canet 
5122212a5a8fSBenoît Canet     return false;
5123f6186f49SBenoît Canet }
512409158f00SBenoît Canet 
5125e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
5126e12f3784SWen Congyang                                         const char *node_name, Error **errp)
512709158f00SBenoît Canet {
512809158f00SBenoît Canet     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
51295a7e7a0bSStefan Hajnoczi     AioContext *aio_context;
51305a7e7a0bSStefan Hajnoczi 
513109158f00SBenoît Canet     if (!to_replace_bs) {
513209158f00SBenoît Canet         error_setg(errp, "Node name '%s' not found", node_name);
513309158f00SBenoît Canet         return NULL;
513409158f00SBenoît Canet     }
513509158f00SBenoît Canet 
51365a7e7a0bSStefan Hajnoczi     aio_context = bdrv_get_aio_context(to_replace_bs);
51375a7e7a0bSStefan Hajnoczi     aio_context_acquire(aio_context);
51385a7e7a0bSStefan Hajnoczi 
513909158f00SBenoît Canet     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
51405a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
51415a7e7a0bSStefan Hajnoczi         goto out;
514209158f00SBenoît Canet     }
514309158f00SBenoît Canet 
514409158f00SBenoît Canet     /* We don't want arbitrary node of the BDS chain to be replaced only the top
514509158f00SBenoît Canet      * most non filter in order to prevent data corruption.
514609158f00SBenoît Canet      * Another benefit is that this tests exclude backing files which are
514709158f00SBenoît Canet      * blocked by the backing blockers.
514809158f00SBenoît Canet      */
5149e12f3784SWen Congyang     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
515009158f00SBenoît Canet         error_setg(errp, "Only top most non filter can be replaced");
51515a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
51525a7e7a0bSStefan Hajnoczi         goto out;
515309158f00SBenoît Canet     }
515409158f00SBenoît Canet 
51555a7e7a0bSStefan Hajnoczi out:
51565a7e7a0bSStefan Hajnoczi     aio_context_release(aio_context);
515709158f00SBenoît Canet     return to_replace_bs;
515809158f00SBenoît Canet }
5159448ad91dSMing Lei 
516091af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs)
516191af7014SMax Reitz {
516291af7014SMax Reitz     const QDictEntry *entry;
51639e700c1aSKevin Wolf     QemuOptDesc *desc;
5164260fecf1SKevin Wolf     BdrvChild *child;
516591af7014SMax Reitz     bool found_any = false;
5166260fecf1SKevin Wolf     const char *p;
516791af7014SMax Reitz 
516891af7014SMax Reitz     for (entry = qdict_first(bs->options); entry;
516991af7014SMax Reitz          entry = qdict_next(bs->options, entry))
517091af7014SMax Reitz     {
5171260fecf1SKevin Wolf         /* Exclude options for children */
5172260fecf1SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
5173260fecf1SKevin Wolf             if (strstart(qdict_entry_key(entry), child->name, &p)
5174260fecf1SKevin Wolf                 && (!*p || *p == '.'))
5175260fecf1SKevin Wolf             {
5176260fecf1SKevin Wolf                 break;
5177260fecf1SKevin Wolf             }
5178260fecf1SKevin Wolf         }
5179260fecf1SKevin Wolf         if (child) {
51809e700c1aSKevin Wolf             continue;
51819e700c1aSKevin Wolf         }
51829e700c1aSKevin Wolf 
51839e700c1aSKevin Wolf         /* And exclude all non-driver-specific options */
51849e700c1aSKevin Wolf         for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
51859e700c1aSKevin Wolf             if (!strcmp(qdict_entry_key(entry), desc->name)) {
51869e700c1aSKevin Wolf                 break;
51879e700c1aSKevin Wolf             }
51889e700c1aSKevin Wolf         }
51899e700c1aSKevin Wolf         if (desc->name) {
51909e700c1aSKevin Wolf             continue;
51919e700c1aSKevin Wolf         }
51929e700c1aSKevin Wolf 
5193f5a74a5aSMarc-André Lureau         qdict_put_obj(d, qdict_entry_key(entry),
5194f5a74a5aSMarc-André Lureau                       qobject_ref(qdict_entry_value(entry)));
519591af7014SMax Reitz         found_any = true;
519691af7014SMax Reitz     }
519791af7014SMax Reitz 
519891af7014SMax Reitz     return found_any;
519991af7014SMax Reitz }
520091af7014SMax Reitz 
520191af7014SMax Reitz /* Updates the following BDS fields:
520291af7014SMax Reitz  *  - exact_filename: A filename which may be used for opening a block device
520391af7014SMax Reitz  *                    which (mostly) equals the given BDS (even without any
520491af7014SMax Reitz  *                    other options; so reading and writing must return the same
520591af7014SMax Reitz  *                    results, but caching etc. may be different)
520691af7014SMax Reitz  *  - full_open_options: Options which, when given when opening a block device
520791af7014SMax Reitz  *                       (without a filename), result in a BDS (mostly)
520891af7014SMax Reitz  *                       equalling the given one
520991af7014SMax Reitz  *  - filename: If exact_filename is set, it is copied here. Otherwise,
521091af7014SMax Reitz  *              full_open_options is converted to a JSON object, prefixed with
521191af7014SMax Reitz  *              "json:" (for use through the JSON pseudo protocol) and put here.
521291af7014SMax Reitz  */
521391af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs)
521491af7014SMax Reitz {
521591af7014SMax Reitz     BlockDriver *drv = bs->drv;
521691af7014SMax Reitz     QDict *opts;
521791af7014SMax Reitz 
521891af7014SMax Reitz     if (!drv) {
521991af7014SMax Reitz         return;
522091af7014SMax Reitz     }
522191af7014SMax Reitz 
522291af7014SMax Reitz     /* This BDS's file name will most probably depend on its file's name, so
522391af7014SMax Reitz      * refresh that first */
522491af7014SMax Reitz     if (bs->file) {
52259a4f4c31SKevin Wolf         bdrv_refresh_filename(bs->file->bs);
522691af7014SMax Reitz     }
522791af7014SMax Reitz 
522891af7014SMax Reitz     if (drv->bdrv_refresh_filename) {
522991af7014SMax Reitz         /* Obsolete information is of no use here, so drop the old file name
523091af7014SMax Reitz          * information before refreshing it */
523191af7014SMax Reitz         bs->exact_filename[0] = '\0';
523291af7014SMax Reitz         if (bs->full_open_options) {
5233cb3e7f08SMarc-André Lureau             qobject_unref(bs->full_open_options);
523491af7014SMax Reitz             bs->full_open_options = NULL;
523591af7014SMax Reitz         }
523691af7014SMax Reitz 
52374cdd01d3SKevin Wolf         opts = qdict_new();
52384cdd01d3SKevin Wolf         append_open_options(opts, bs);
52394cdd01d3SKevin Wolf         drv->bdrv_refresh_filename(bs, opts);
5240cb3e7f08SMarc-André Lureau         qobject_unref(opts);
524191af7014SMax Reitz     } else if (bs->file) {
524291af7014SMax Reitz         /* Try to reconstruct valid information from the underlying file */
524391af7014SMax Reitz         bool has_open_options;
524491af7014SMax Reitz 
524591af7014SMax Reitz         bs->exact_filename[0] = '\0';
524691af7014SMax Reitz         if (bs->full_open_options) {
5247cb3e7f08SMarc-André Lureau             qobject_unref(bs->full_open_options);
524891af7014SMax Reitz             bs->full_open_options = NULL;
524991af7014SMax Reitz         }
525091af7014SMax Reitz 
525191af7014SMax Reitz         opts = qdict_new();
525291af7014SMax Reitz         has_open_options = append_open_options(opts, bs);
525391af7014SMax Reitz 
525491af7014SMax Reitz         /* If no specific options have been given for this BDS, the filename of
525591af7014SMax Reitz          * the underlying file should suffice for this one as well */
52569a4f4c31SKevin Wolf         if (bs->file->bs->exact_filename[0] && !has_open_options) {
52579a4f4c31SKevin Wolf             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
525891af7014SMax Reitz         }
525991af7014SMax Reitz         /* Reconstructing the full options QDict is simple for most format block
526091af7014SMax Reitz          * drivers, as long as the full options are known for the underlying
526191af7014SMax Reitz          * file BDS. The full options QDict of that file BDS should somehow
526291af7014SMax Reitz          * contain a representation of the filename, therefore the following
526391af7014SMax Reitz          * suffices without querying the (exact_)filename of this BDS. */
52649a4f4c31SKevin Wolf         if (bs->file->bs->full_open_options) {
526546f5ac20SEric Blake             qdict_put_str(opts, "driver", drv->format_name);
5266f5a74a5aSMarc-André Lureau             qdict_put(opts, "file",
5267f5a74a5aSMarc-André Lureau                       qobject_ref(bs->file->bs->full_open_options));
526891af7014SMax Reitz 
526991af7014SMax Reitz             bs->full_open_options = opts;
527091af7014SMax Reitz         } else {
5271cb3e7f08SMarc-André Lureau             qobject_unref(opts);
527291af7014SMax Reitz         }
527391af7014SMax Reitz     } else if (!bs->full_open_options && qdict_size(bs->options)) {
527491af7014SMax Reitz         /* There is no underlying file BDS (at least referenced by BDS.file),
527591af7014SMax Reitz          * so the full options QDict should be equal to the options given
527691af7014SMax Reitz          * specifically for this block device when it was opened (plus the
527791af7014SMax Reitz          * driver specification).
527891af7014SMax Reitz          * Because those options don't change, there is no need to update
527991af7014SMax Reitz          * full_open_options when it's already set. */
528091af7014SMax Reitz 
528191af7014SMax Reitz         opts = qdict_new();
528291af7014SMax Reitz         append_open_options(opts, bs);
528346f5ac20SEric Blake         qdict_put_str(opts, "driver", drv->format_name);
528491af7014SMax Reitz 
528591af7014SMax Reitz         if (bs->exact_filename[0]) {
528691af7014SMax Reitz             /* This may not work for all block protocol drivers (some may
528791af7014SMax Reitz              * require this filename to be parsed), but we have to find some
528891af7014SMax Reitz              * default solution here, so just include it. If some block driver
528991af7014SMax Reitz              * does not support pure options without any filename at all or
529091af7014SMax Reitz              * needs some special format of the options QDict, it needs to
529191af7014SMax Reitz              * implement the driver-specific bdrv_refresh_filename() function.
529291af7014SMax Reitz              */
529346f5ac20SEric Blake             qdict_put_str(opts, "filename", bs->exact_filename);
529491af7014SMax Reitz         }
529591af7014SMax Reitz 
529691af7014SMax Reitz         bs->full_open_options = opts;
529791af7014SMax Reitz     }
529891af7014SMax Reitz 
529991af7014SMax Reitz     if (bs->exact_filename[0]) {
530091af7014SMax Reitz         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
530191af7014SMax Reitz     } else if (bs->full_open_options) {
530291af7014SMax Reitz         QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
530391af7014SMax Reitz         snprintf(bs->filename, sizeof(bs->filename), "json:%s",
530491af7014SMax Reitz                  qstring_get_str(json));
5305cb3e7f08SMarc-André Lureau         qobject_unref(json);
530691af7014SMax Reitz     }
530791af7014SMax Reitz }
5308e06018adSWen Congyang 
5309e06018adSWen Congyang /*
5310e06018adSWen Congyang  * Hot add/remove a BDS's child. So the user can take a child offline when
5311e06018adSWen Congyang  * it is broken and take a new child online
5312e06018adSWen Congyang  */
5313e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5314e06018adSWen Congyang                     Error **errp)
5315e06018adSWen Congyang {
5316e06018adSWen Congyang 
5317e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
5318e06018adSWen Congyang         error_setg(errp, "The node %s does not support adding a child",
5319e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
5320e06018adSWen Congyang         return;
5321e06018adSWen Congyang     }
5322e06018adSWen Congyang 
5323e06018adSWen Congyang     if (!QLIST_EMPTY(&child_bs->parents)) {
5324e06018adSWen Congyang         error_setg(errp, "The node %s already has a parent",
5325e06018adSWen Congyang                    child_bs->node_name);
5326e06018adSWen Congyang         return;
5327e06018adSWen Congyang     }
5328e06018adSWen Congyang 
5329e06018adSWen Congyang     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5330e06018adSWen Congyang }
5331e06018adSWen Congyang 
5332e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5333e06018adSWen Congyang {
5334e06018adSWen Congyang     BdrvChild *tmp;
5335e06018adSWen Congyang 
5336e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5337e06018adSWen Congyang         error_setg(errp, "The node %s does not support removing a child",
5338e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
5339e06018adSWen Congyang         return;
5340e06018adSWen Congyang     }
5341e06018adSWen Congyang 
5342e06018adSWen Congyang     QLIST_FOREACH(tmp, &parent_bs->children, next) {
5343e06018adSWen Congyang         if (tmp == child) {
5344e06018adSWen Congyang             break;
5345e06018adSWen Congyang         }
5346e06018adSWen Congyang     }
5347e06018adSWen Congyang 
5348e06018adSWen Congyang     if (!tmp) {
5349e06018adSWen Congyang         error_setg(errp, "The node %s does not have a child named %s",
5350e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs),
5351e06018adSWen Congyang                    bdrv_get_device_or_node_name(child->bs));
5352e06018adSWen Congyang         return;
5353e06018adSWen Congyang     }
5354e06018adSWen Congyang 
5355e06018adSWen Congyang     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5356e06018adSWen Congyang }
535767b792f5SVladimir Sementsov-Ogievskiy 
535867b792f5SVladimir Sementsov-Ogievskiy bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
535967b792f5SVladimir Sementsov-Ogievskiy                                      uint32_t granularity, Error **errp)
536067b792f5SVladimir Sementsov-Ogievskiy {
536167b792f5SVladimir Sementsov-Ogievskiy     BlockDriver *drv = bs->drv;
536267b792f5SVladimir Sementsov-Ogievskiy 
536367b792f5SVladimir Sementsov-Ogievskiy     if (!drv) {
536467b792f5SVladimir Sementsov-Ogievskiy         error_setg_errno(errp, ENOMEDIUM,
536567b792f5SVladimir Sementsov-Ogievskiy                          "Can't store persistent bitmaps to %s",
536667b792f5SVladimir Sementsov-Ogievskiy                          bdrv_get_device_or_node_name(bs));
536767b792f5SVladimir Sementsov-Ogievskiy         return false;
536867b792f5SVladimir Sementsov-Ogievskiy     }
536967b792f5SVladimir Sementsov-Ogievskiy 
537067b792f5SVladimir Sementsov-Ogievskiy     if (!drv->bdrv_can_store_new_dirty_bitmap) {
537167b792f5SVladimir Sementsov-Ogievskiy         error_setg_errno(errp, ENOTSUP,
537267b792f5SVladimir Sementsov-Ogievskiy                          "Can't store persistent bitmaps to %s",
537367b792f5SVladimir Sementsov-Ogievskiy                          bdrv_get_device_or_node_name(bs));
537467b792f5SVladimir Sementsov-Ogievskiy         return false;
537567b792f5SVladimir Sementsov-Ogievskiy     }
537667b792f5SVladimir Sementsov-Ogievskiy 
537767b792f5SVladimir Sementsov-Ogievskiy     return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);
537867b792f5SVladimir Sementsov-Ogievskiy }
5379