xref: /openbmc/qemu/block.c (revision 818584a43ab0ef52c131865128ef110f867726cd)
1fc01f7e7Sbellard /*
2fc01f7e7Sbellard  * QEMU System Emulator block driver
3fc01f7e7Sbellard  *
4fc01f7e7Sbellard  * Copyright (c) 2003 Fabrice Bellard
5fc01f7e7Sbellard  *
6fc01f7e7Sbellard  * Permission is hereby granted, free of charge, to any person obtaining a copy
7fc01f7e7Sbellard  * of this software and associated documentation files (the "Software"), to deal
8fc01f7e7Sbellard  * in the Software without restriction, including without limitation the rights
9fc01f7e7Sbellard  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10fc01f7e7Sbellard  * copies of the Software, and to permit persons to whom the Software is
11fc01f7e7Sbellard  * furnished to do so, subject to the following conditions:
12fc01f7e7Sbellard  *
13fc01f7e7Sbellard  * The above copyright notice and this permission notice shall be included in
14fc01f7e7Sbellard  * all copies or substantial portions of the Software.
15fc01f7e7Sbellard  *
16fc01f7e7Sbellard  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17fc01f7e7Sbellard  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18fc01f7e7Sbellard  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19fc01f7e7Sbellard  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20fc01f7e7Sbellard  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21fc01f7e7Sbellard  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22fc01f7e7Sbellard  * THE SOFTWARE.
23fc01f7e7Sbellard  */
24d38ea87aSPeter Maydell #include "qemu/osdep.h"
256d519a5fSStefan Hajnoczi #include "trace.h"
26737e150eSPaolo Bonzini #include "block/block_int.h"
27737e150eSPaolo Bonzini #include "block/blockjob.h"
28cd7fca95SKevin Wolf #include "block/nbd.h"
29d49b6836SMarkus Armbruster #include "qemu/error-report.h"
3088d88798SMarc Mari #include "module_block.h"
311de7afc9SPaolo Bonzini #include "qemu/module.h"
32cc7a8ea7SMarkus Armbruster #include "qapi/qmp/qerror.h"
3391a097e7SKevin Wolf #include "qapi/qmp/qbool.h"
347b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h"
35bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h"
369c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
371de7afc9SPaolo Bonzini #include "qemu/notify.h"
3810817bf0SDaniel P. Berrange #include "qemu/coroutine.h"
39c13163fbSBenoît Canet #include "block/qapi.h"
40b2023818SLuiz Capitulino #include "qmp-commands.h"
411de7afc9SPaolo Bonzini #include "qemu/timer.h"
42a5ee7bd4SWenchao Xia #include "qapi-event.h"
43f348b6d1SVeronia Bahaa #include "qemu/cutils.h"
44f348b6d1SVeronia Bahaa #include "qemu/id.h"
45692e01a2SKevin Wolf #include "qapi/util.h"
46fc01f7e7Sbellard 
4771e72a19SJuan Quintela #ifdef CONFIG_BSD
487674e7bfSbellard #include <sys/ioctl.h>
4972cf2d4fSBlue Swirl #include <sys/queue.h>
50c5e97233Sblueswir1 #ifndef __DragonFly__
517674e7bfSbellard #include <sys/disk.h>
527674e7bfSbellard #endif
53c5e97233Sblueswir1 #endif
547674e7bfSbellard 
5549dc768dSaliguori #ifdef _WIN32
5649dc768dSaliguori #include <windows.h>
5749dc768dSaliguori #endif
5849dc768dSaliguori 
591c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
601c9805a3SStefan Hajnoczi 
61dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
62dc364f4cSBenoît Canet     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
63dc364f4cSBenoît Canet 
642c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
652c1d04e0SMax Reitz     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
662c1d04e0SMax Reitz 
678a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers =
688a22f02aSStefan Hajnoczi     QLIST_HEAD_INITIALIZER(bdrv_drivers);
69ea2384d3Sbellard 
705b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
715b363937SMax Reitz                                            const char *reference,
725b363937SMax Reitz                                            QDict *options, int flags,
73f3930ed0SKevin Wolf                                            BlockDriverState *parent,
745b363937SMax Reitz                                            const BdrvChildRole *child_role,
755b363937SMax Reitz                                            Error **errp);
76f3930ed0SKevin Wolf 
77eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */
78eb852011SMarkus Armbruster static int use_bdrv_whitelist;
79eb852011SMarkus Armbruster 
809e0b22f4SStefan Hajnoczi #ifdef _WIN32
819e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename)
829e0b22f4SStefan Hajnoczi {
839e0b22f4SStefan Hajnoczi     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
849e0b22f4SStefan Hajnoczi              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
859e0b22f4SStefan Hajnoczi             filename[1] == ':');
869e0b22f4SStefan Hajnoczi }
879e0b22f4SStefan Hajnoczi 
889e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename)
899e0b22f4SStefan Hajnoczi {
909e0b22f4SStefan Hajnoczi     if (is_windows_drive_prefix(filename) &&
919e0b22f4SStefan Hajnoczi         filename[2] == '\0')
929e0b22f4SStefan Hajnoczi         return 1;
939e0b22f4SStefan Hajnoczi     if (strstart(filename, "\\\\.\\", NULL) ||
949e0b22f4SStefan Hajnoczi         strstart(filename, "//./", NULL))
959e0b22f4SStefan Hajnoczi         return 1;
969e0b22f4SStefan Hajnoczi     return 0;
979e0b22f4SStefan Hajnoczi }
989e0b22f4SStefan Hajnoczi #endif
999e0b22f4SStefan Hajnoczi 
100339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs)
101339064d5SKevin Wolf {
102339064d5SKevin Wolf     if (!bs || !bs->drv) {
103459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
104459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
105339064d5SKevin Wolf     }
106339064d5SKevin Wolf 
107339064d5SKevin Wolf     return bs->bl.opt_mem_alignment;
108339064d5SKevin Wolf }
109339064d5SKevin Wolf 
1104196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs)
1114196d2f0SDenis V. Lunev {
1124196d2f0SDenis V. Lunev     if (!bs || !bs->drv) {
113459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
114459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
1154196d2f0SDenis V. Lunev     }
1164196d2f0SDenis V. Lunev 
1174196d2f0SDenis V. Lunev     return bs->bl.min_mem_alignment;
1184196d2f0SDenis V. Lunev }
1194196d2f0SDenis V. Lunev 
1209e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */
1215c98415bSMax Reitz int path_has_protocol(const char *path)
1229e0b22f4SStefan Hajnoczi {
123947995c0SPaolo Bonzini     const char *p;
124947995c0SPaolo Bonzini 
1259e0b22f4SStefan Hajnoczi #ifdef _WIN32
1269e0b22f4SStefan Hajnoczi     if (is_windows_drive(path) ||
1279e0b22f4SStefan Hajnoczi         is_windows_drive_prefix(path)) {
1289e0b22f4SStefan Hajnoczi         return 0;
1299e0b22f4SStefan Hajnoczi     }
130947995c0SPaolo Bonzini     p = path + strcspn(path, ":/\\");
131947995c0SPaolo Bonzini #else
132947995c0SPaolo Bonzini     p = path + strcspn(path, ":/");
1339e0b22f4SStefan Hajnoczi #endif
1349e0b22f4SStefan Hajnoczi 
135947995c0SPaolo Bonzini     return *p == ':';
1369e0b22f4SStefan Hajnoczi }
1379e0b22f4SStefan Hajnoczi 
13883f64091Sbellard int path_is_absolute(const char *path)
13983f64091Sbellard {
14021664424Sbellard #ifdef _WIN32
14121664424Sbellard     /* specific case for names like: "\\.\d:" */
142f53f4da9SPaolo Bonzini     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
14321664424Sbellard         return 1;
144f53f4da9SPaolo Bonzini     }
145f53f4da9SPaolo Bonzini     return (*path == '/' || *path == '\\');
1463b9f94e1Sbellard #else
147f53f4da9SPaolo Bonzini     return (*path == '/');
1483b9f94e1Sbellard #endif
14983f64091Sbellard }
15083f64091Sbellard 
15183f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a
15283f64091Sbellard    path to it by considering it is relative to base_path. URL are
15383f64091Sbellard    supported. */
15483f64091Sbellard void path_combine(char *dest, int dest_size,
15583f64091Sbellard                   const char *base_path,
15683f64091Sbellard                   const char *filename)
15783f64091Sbellard {
15883f64091Sbellard     const char *p, *p1;
15983f64091Sbellard     int len;
16083f64091Sbellard 
16183f64091Sbellard     if (dest_size <= 0)
16283f64091Sbellard         return;
16383f64091Sbellard     if (path_is_absolute(filename)) {
16483f64091Sbellard         pstrcpy(dest, dest_size, filename);
16583f64091Sbellard     } else {
16683f64091Sbellard         p = strchr(base_path, ':');
16783f64091Sbellard         if (p)
16883f64091Sbellard             p++;
16983f64091Sbellard         else
17083f64091Sbellard             p = base_path;
1713b9f94e1Sbellard         p1 = strrchr(base_path, '/');
1723b9f94e1Sbellard #ifdef _WIN32
1733b9f94e1Sbellard         {
1743b9f94e1Sbellard             const char *p2;
1753b9f94e1Sbellard             p2 = strrchr(base_path, '\\');
1763b9f94e1Sbellard             if (!p1 || p2 > p1)
1773b9f94e1Sbellard                 p1 = p2;
1783b9f94e1Sbellard         }
1793b9f94e1Sbellard #endif
18083f64091Sbellard         if (p1)
18183f64091Sbellard             p1++;
18283f64091Sbellard         else
18383f64091Sbellard             p1 = base_path;
18483f64091Sbellard         if (p1 > p)
18583f64091Sbellard             p = p1;
18683f64091Sbellard         len = p - base_path;
18783f64091Sbellard         if (len > dest_size - 1)
18883f64091Sbellard             len = dest_size - 1;
18983f64091Sbellard         memcpy(dest, base_path, len);
19083f64091Sbellard         dest[len] = '\0';
19183f64091Sbellard         pstrcat(dest, dest_size, filename);
19283f64091Sbellard     }
19383f64091Sbellard }
19483f64091Sbellard 
1950a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed,
1960a82855aSMax Reitz                                                   const char *backing,
1979f07429eSMax Reitz                                                   char *dest, size_t sz,
1989f07429eSMax Reitz                                                   Error **errp)
1990a82855aSMax Reitz {
2009f07429eSMax Reitz     if (backing[0] == '\0' || path_has_protocol(backing) ||
2019f07429eSMax Reitz         path_is_absolute(backing))
2029f07429eSMax Reitz     {
2030a82855aSMax Reitz         pstrcpy(dest, sz, backing);
2049f07429eSMax Reitz     } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
2059f07429eSMax Reitz         error_setg(errp, "Cannot use relative backing file names for '%s'",
2069f07429eSMax Reitz                    backed);
2070a82855aSMax Reitz     } else {
2080a82855aSMax Reitz         path_combine(dest, sz, backed, backing);
2090a82855aSMax Reitz     }
2100a82855aSMax Reitz }
2110a82855aSMax Reitz 
2129f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
2139f07429eSMax Reitz                                     Error **errp)
214dc5a1371SPaolo Bonzini {
2159f07429eSMax Reitz     char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
2169f07429eSMax Reitz 
2179f07429eSMax Reitz     bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
2189f07429eSMax Reitz                                                  dest, sz, errp);
219dc5a1371SPaolo Bonzini }
220dc5a1371SPaolo Bonzini 
2210eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv)
2220eb7217eSStefan Hajnoczi {
2238a22f02aSStefan Hajnoczi     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
224ea2384d3Sbellard }
225b338082bSbellard 
226e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void)
227e4e9986bSMarkus Armbruster {
228e4e9986bSMarkus Armbruster     BlockDriverState *bs;
229e4e9986bSMarkus Armbruster     int i;
230e4e9986bSMarkus Armbruster 
2315839e53bSMarkus Armbruster     bs = g_new0(BlockDriverState, 1);
232e4654d2dSFam Zheng     QLIST_INIT(&bs->dirty_bitmaps);
233fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
234fbe40ff7SFam Zheng         QLIST_INIT(&bs->op_blockers[i]);
235fbe40ff7SFam Zheng     }
236d616b224SStefan Hajnoczi     notifier_with_return_list_init(&bs->before_write_notifiers);
2379fcb0251SFam Zheng     bs->refcnt = 1;
238dcd04228SStefan Hajnoczi     bs->aio_context = qemu_get_aio_context();
239d7d512f6SPaolo Bonzini 
2403ff2f67aSEvgeny Yakovlev     qemu_co_queue_init(&bs->flush_queue);
2413ff2f67aSEvgeny Yakovlev 
2422c1d04e0SMax Reitz     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
2432c1d04e0SMax Reitz 
244b338082bSbellard     return bs;
245b338082bSbellard }
246b338082bSbellard 
24788d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name)
248ea2384d3Sbellard {
249ea2384d3Sbellard     BlockDriver *drv1;
25088d88798SMarc Mari 
2518a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
2528a22f02aSStefan Hajnoczi         if (!strcmp(drv1->format_name, format_name)) {
253ea2384d3Sbellard             return drv1;
254ea2384d3Sbellard         }
2558a22f02aSStefan Hajnoczi     }
25688d88798SMarc Mari 
257ea2384d3Sbellard     return NULL;
258ea2384d3Sbellard }
259ea2384d3Sbellard 
26088d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name)
26188d88798SMarc Mari {
26288d88798SMarc Mari     BlockDriver *drv1;
26388d88798SMarc Mari     int i;
26488d88798SMarc Mari 
26588d88798SMarc Mari     drv1 = bdrv_do_find_format(format_name);
26688d88798SMarc Mari     if (drv1) {
26788d88798SMarc Mari         return drv1;
26888d88798SMarc Mari     }
26988d88798SMarc Mari 
27088d88798SMarc Mari     /* The driver isn't registered, maybe we need to load a module */
27188d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
27288d88798SMarc Mari         if (!strcmp(block_driver_modules[i].format_name, format_name)) {
27388d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
27488d88798SMarc Mari             break;
27588d88798SMarc Mari         }
27688d88798SMarc Mari     }
27788d88798SMarc Mari 
27888d88798SMarc Mari     return bdrv_do_find_format(format_name);
27988d88798SMarc Mari }
28088d88798SMarc Mari 
281b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
282eb852011SMarkus Armbruster {
283b64ec4e4SFam Zheng     static const char *whitelist_rw[] = {
284b64ec4e4SFam Zheng         CONFIG_BDRV_RW_WHITELIST
285b64ec4e4SFam Zheng     };
286b64ec4e4SFam Zheng     static const char *whitelist_ro[] = {
287b64ec4e4SFam Zheng         CONFIG_BDRV_RO_WHITELIST
288eb852011SMarkus Armbruster     };
289eb852011SMarkus Armbruster     const char **p;
290eb852011SMarkus Armbruster 
291b64ec4e4SFam Zheng     if (!whitelist_rw[0] && !whitelist_ro[0]) {
292eb852011SMarkus Armbruster         return 1;               /* no whitelist, anything goes */
293b64ec4e4SFam Zheng     }
294eb852011SMarkus Armbruster 
295b64ec4e4SFam Zheng     for (p = whitelist_rw; *p; p++) {
296eb852011SMarkus Armbruster         if (!strcmp(drv->format_name, *p)) {
297eb852011SMarkus Armbruster             return 1;
298eb852011SMarkus Armbruster         }
299eb852011SMarkus Armbruster     }
300b64ec4e4SFam Zheng     if (read_only) {
301b64ec4e4SFam Zheng         for (p = whitelist_ro; *p; p++) {
302b64ec4e4SFam Zheng             if (!strcmp(drv->format_name, *p)) {
303b64ec4e4SFam Zheng                 return 1;
304b64ec4e4SFam Zheng             }
305b64ec4e4SFam Zheng         }
306b64ec4e4SFam Zheng     }
307eb852011SMarkus Armbruster     return 0;
308eb852011SMarkus Armbruster }
309eb852011SMarkus Armbruster 
310e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void)
311e6ff69bfSDaniel P. Berrange {
312e6ff69bfSDaniel P. Berrange     return use_bdrv_whitelist;
313e6ff69bfSDaniel P. Berrange }
314e6ff69bfSDaniel P. Berrange 
3155b7e1542SZhi Yong Wu typedef struct CreateCo {
3165b7e1542SZhi Yong Wu     BlockDriver *drv;
3175b7e1542SZhi Yong Wu     char *filename;
31883d0521aSChunyan Liu     QemuOpts *opts;
3195b7e1542SZhi Yong Wu     int ret;
320cc84d90fSMax Reitz     Error *err;
3215b7e1542SZhi Yong Wu } CreateCo;
3225b7e1542SZhi Yong Wu 
3235b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque)
3245b7e1542SZhi Yong Wu {
325cc84d90fSMax Reitz     Error *local_err = NULL;
326cc84d90fSMax Reitz     int ret;
327cc84d90fSMax Reitz 
3285b7e1542SZhi Yong Wu     CreateCo *cco = opaque;
3295b7e1542SZhi Yong Wu     assert(cco->drv);
3305b7e1542SZhi Yong Wu 
331c282e1fdSChunyan Liu     ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err);
332cc84d90fSMax Reitz     error_propagate(&cco->err, local_err);
333cc84d90fSMax Reitz     cco->ret = ret;
3345b7e1542SZhi Yong Wu }
3355b7e1542SZhi Yong Wu 
3360e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename,
33783d0521aSChunyan Liu                 QemuOpts *opts, Error **errp)
338ea2384d3Sbellard {
3395b7e1542SZhi Yong Wu     int ret;
3400e7e1989SKevin Wolf 
3415b7e1542SZhi Yong Wu     Coroutine *co;
3425b7e1542SZhi Yong Wu     CreateCo cco = {
3435b7e1542SZhi Yong Wu         .drv = drv,
3445b7e1542SZhi Yong Wu         .filename = g_strdup(filename),
34583d0521aSChunyan Liu         .opts = opts,
3465b7e1542SZhi Yong Wu         .ret = NOT_DONE,
347cc84d90fSMax Reitz         .err = NULL,
3485b7e1542SZhi Yong Wu     };
3495b7e1542SZhi Yong Wu 
350c282e1fdSChunyan Liu     if (!drv->bdrv_create) {
351cc84d90fSMax Reitz         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
35280168bffSLuiz Capitulino         ret = -ENOTSUP;
35380168bffSLuiz Capitulino         goto out;
3545b7e1542SZhi Yong Wu     }
3555b7e1542SZhi Yong Wu 
3565b7e1542SZhi Yong Wu     if (qemu_in_coroutine()) {
3575b7e1542SZhi Yong Wu         /* Fast-path if already in coroutine context */
3585b7e1542SZhi Yong Wu         bdrv_create_co_entry(&cco);
3595b7e1542SZhi Yong Wu     } else {
3600b8b8753SPaolo Bonzini         co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
3610b8b8753SPaolo Bonzini         qemu_coroutine_enter(co);
3625b7e1542SZhi Yong Wu         while (cco.ret == NOT_DONE) {
363b47ec2c4SPaolo Bonzini             aio_poll(qemu_get_aio_context(), true);
3645b7e1542SZhi Yong Wu         }
3655b7e1542SZhi Yong Wu     }
3665b7e1542SZhi Yong Wu 
3675b7e1542SZhi Yong Wu     ret = cco.ret;
368cc84d90fSMax Reitz     if (ret < 0) {
36984d18f06SMarkus Armbruster         if (cco.err) {
370cc84d90fSMax Reitz             error_propagate(errp, cco.err);
371cc84d90fSMax Reitz         } else {
372cc84d90fSMax Reitz             error_setg_errno(errp, -ret, "Could not create image");
373cc84d90fSMax Reitz         }
374cc84d90fSMax Reitz     }
3755b7e1542SZhi Yong Wu 
37680168bffSLuiz Capitulino out:
37780168bffSLuiz Capitulino     g_free(cco.filename);
3785b7e1542SZhi Yong Wu     return ret;
379ea2384d3Sbellard }
380ea2384d3Sbellard 
381c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
38284a12e66SChristoph Hellwig {
38384a12e66SChristoph Hellwig     BlockDriver *drv;
384cc84d90fSMax Reitz     Error *local_err = NULL;
385cc84d90fSMax Reitz     int ret;
38684a12e66SChristoph Hellwig 
387b65a5e12SMax Reitz     drv = bdrv_find_protocol(filename, true, errp);
38884a12e66SChristoph Hellwig     if (drv == NULL) {
38916905d71SStefan Hajnoczi         return -ENOENT;
39084a12e66SChristoph Hellwig     }
39184a12e66SChristoph Hellwig 
392c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
393cc84d90fSMax Reitz     error_propagate(errp, local_err);
394cc84d90fSMax Reitz     return ret;
39584a12e66SChristoph Hellwig }
39684a12e66SChristoph Hellwig 
397892b7de8SEkaterina Tumanova /**
398892b7de8SEkaterina Tumanova  * Try to get @bs's logical and physical block size.
399892b7de8SEkaterina Tumanova  * On success, store them in @bsz struct and return 0.
400892b7de8SEkaterina Tumanova  * On failure return -errno.
401892b7de8SEkaterina Tumanova  * @bs must not be empty.
402892b7de8SEkaterina Tumanova  */
403892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
404892b7de8SEkaterina Tumanova {
405892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
406892b7de8SEkaterina Tumanova 
407892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_blocksizes) {
408892b7de8SEkaterina Tumanova         return drv->bdrv_probe_blocksizes(bs, bsz);
409892b7de8SEkaterina Tumanova     }
410892b7de8SEkaterina Tumanova 
411892b7de8SEkaterina Tumanova     return -ENOTSUP;
412892b7de8SEkaterina Tumanova }
413892b7de8SEkaterina Tumanova 
414892b7de8SEkaterina Tumanova /**
415892b7de8SEkaterina Tumanova  * Try to get @bs's geometry (cyls, heads, sectors).
416892b7de8SEkaterina Tumanova  * On success, store them in @geo struct and return 0.
417892b7de8SEkaterina Tumanova  * On failure return -errno.
418892b7de8SEkaterina Tumanova  * @bs must not be empty.
419892b7de8SEkaterina Tumanova  */
420892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
421892b7de8SEkaterina Tumanova {
422892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
423892b7de8SEkaterina Tumanova 
424892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_geometry) {
425892b7de8SEkaterina Tumanova         return drv->bdrv_probe_geometry(bs, geo);
426892b7de8SEkaterina Tumanova     }
427892b7de8SEkaterina Tumanova 
428892b7de8SEkaterina Tumanova     return -ENOTSUP;
429892b7de8SEkaterina Tumanova }
430892b7de8SEkaterina Tumanova 
431eba25057SJim Meyering /*
432eba25057SJim Meyering  * Create a uniquely-named empty temporary file.
433eba25057SJim Meyering  * Return 0 upon success, otherwise a negative errno value.
434eba25057SJim Meyering  */
435eba25057SJim Meyering int get_tmp_filename(char *filename, int size)
436eba25057SJim Meyering {
437d5249393Sbellard #ifdef _WIN32
4383b9f94e1Sbellard     char temp_dir[MAX_PATH];
439eba25057SJim Meyering     /* GetTempFileName requires that its output buffer (4th param)
440eba25057SJim Meyering        have length MAX_PATH or greater.  */
441eba25057SJim Meyering     assert(size >= MAX_PATH);
442eba25057SJim Meyering     return (GetTempPath(MAX_PATH, temp_dir)
443eba25057SJim Meyering             && GetTempFileName(temp_dir, "qem", 0, filename)
444eba25057SJim Meyering             ? 0 : -GetLastError());
445d5249393Sbellard #else
446ea2384d3Sbellard     int fd;
4477ccfb2ebSblueswir1     const char *tmpdir;
4480badc1eeSaurel32     tmpdir = getenv("TMPDIR");
44969bef793SAmit Shah     if (!tmpdir) {
45069bef793SAmit Shah         tmpdir = "/var/tmp";
45169bef793SAmit Shah     }
452eba25057SJim Meyering     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
453eba25057SJim Meyering         return -EOVERFLOW;
454ea2384d3Sbellard     }
455eba25057SJim Meyering     fd = mkstemp(filename);
456fe235a06SDunrong Huang     if (fd < 0) {
457fe235a06SDunrong Huang         return -errno;
458fe235a06SDunrong Huang     }
459fe235a06SDunrong Huang     if (close(fd) != 0) {
460fe235a06SDunrong Huang         unlink(filename);
461eba25057SJim Meyering         return -errno;
462eba25057SJim Meyering     }
463eba25057SJim Meyering     return 0;
464d5249393Sbellard #endif
465eba25057SJim Meyering }
466ea2384d3Sbellard 
467f3a5d3f8SChristoph Hellwig /*
468f3a5d3f8SChristoph Hellwig  * Detect host devices. By convention, /dev/cdrom[N] is always
469f3a5d3f8SChristoph Hellwig  * recognized as a host CDROM.
470f3a5d3f8SChristoph Hellwig  */
471f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename)
472f3a5d3f8SChristoph Hellwig {
473508c7cb3SChristoph Hellwig     int score_max = 0, score;
474508c7cb3SChristoph Hellwig     BlockDriver *drv = NULL, *d;
475f3a5d3f8SChristoph Hellwig 
4768a22f02aSStefan Hajnoczi     QLIST_FOREACH(d, &bdrv_drivers, list) {
477508c7cb3SChristoph Hellwig         if (d->bdrv_probe_device) {
478508c7cb3SChristoph Hellwig             score = d->bdrv_probe_device(filename);
479508c7cb3SChristoph Hellwig             if (score > score_max) {
480508c7cb3SChristoph Hellwig                 score_max = score;
481508c7cb3SChristoph Hellwig                 drv = d;
482f3a5d3f8SChristoph Hellwig             }
483508c7cb3SChristoph Hellwig         }
484f3a5d3f8SChristoph Hellwig     }
485f3a5d3f8SChristoph Hellwig 
486508c7cb3SChristoph Hellwig     return drv;
487f3a5d3f8SChristoph Hellwig }
488f3a5d3f8SChristoph Hellwig 
48988d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol)
49088d88798SMarc Mari {
49188d88798SMarc Mari     BlockDriver *drv1;
49288d88798SMarc Mari 
49388d88798SMarc Mari     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
49488d88798SMarc Mari         if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
49588d88798SMarc Mari             return drv1;
49688d88798SMarc Mari         }
49788d88798SMarc Mari     }
49888d88798SMarc Mari 
49988d88798SMarc Mari     return NULL;
50088d88798SMarc Mari }
50188d88798SMarc Mari 
50298289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename,
503b65a5e12SMax Reitz                                 bool allow_protocol_prefix,
504b65a5e12SMax Reitz                                 Error **errp)
50584a12e66SChristoph Hellwig {
50684a12e66SChristoph Hellwig     BlockDriver *drv1;
50784a12e66SChristoph Hellwig     char protocol[128];
50884a12e66SChristoph Hellwig     int len;
50984a12e66SChristoph Hellwig     const char *p;
51088d88798SMarc Mari     int i;
51184a12e66SChristoph Hellwig 
51266f82ceeSKevin Wolf     /* TODO Drivers without bdrv_file_open must be specified explicitly */
51366f82ceeSKevin Wolf 
51439508e7aSChristoph Hellwig     /*
51539508e7aSChristoph Hellwig      * XXX(hch): we really should not let host device detection
51639508e7aSChristoph Hellwig      * override an explicit protocol specification, but moving this
51739508e7aSChristoph Hellwig      * later breaks access to device names with colons in them.
51839508e7aSChristoph Hellwig      * Thanks to the brain-dead persistent naming schemes on udev-
51939508e7aSChristoph Hellwig      * based Linux systems those actually are quite common.
52039508e7aSChristoph Hellwig      */
52184a12e66SChristoph Hellwig     drv1 = find_hdev_driver(filename);
52239508e7aSChristoph Hellwig     if (drv1) {
52384a12e66SChristoph Hellwig         return drv1;
52484a12e66SChristoph Hellwig     }
52539508e7aSChristoph Hellwig 
52698289620SKevin Wolf     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
527ef810437SMax Reitz         return &bdrv_file;
52839508e7aSChristoph Hellwig     }
52998289620SKevin Wolf 
5309e0b22f4SStefan Hajnoczi     p = strchr(filename, ':');
5319e0b22f4SStefan Hajnoczi     assert(p != NULL);
53284a12e66SChristoph Hellwig     len = p - filename;
53384a12e66SChristoph Hellwig     if (len > sizeof(protocol) - 1)
53484a12e66SChristoph Hellwig         len = sizeof(protocol) - 1;
53584a12e66SChristoph Hellwig     memcpy(protocol, filename, len);
53684a12e66SChristoph Hellwig     protocol[len] = '\0';
53788d88798SMarc Mari 
53888d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
53988d88798SMarc Mari     if (drv1) {
54084a12e66SChristoph Hellwig         return drv1;
54184a12e66SChristoph Hellwig     }
54288d88798SMarc Mari 
54388d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
54488d88798SMarc Mari         if (block_driver_modules[i].protocol_name &&
54588d88798SMarc Mari             !strcmp(block_driver_modules[i].protocol_name, protocol)) {
54688d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
54788d88798SMarc Mari             break;
54888d88798SMarc Mari         }
54984a12e66SChristoph Hellwig     }
550b65a5e12SMax Reitz 
55188d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
55288d88798SMarc Mari     if (!drv1) {
553b65a5e12SMax Reitz         error_setg(errp, "Unknown protocol '%s'", protocol);
55488d88798SMarc Mari     }
55588d88798SMarc Mari     return drv1;
55684a12e66SChristoph Hellwig }
55784a12e66SChristoph Hellwig 
558c6684249SMarkus Armbruster /*
559c6684249SMarkus Armbruster  * Guess image format by probing its contents.
560c6684249SMarkus Armbruster  * This is not a good idea when your image is raw (CVE-2008-2004), but
561c6684249SMarkus Armbruster  * we do it anyway for backward compatibility.
562c6684249SMarkus Armbruster  *
563c6684249SMarkus Armbruster  * @buf         contains the image's first @buf_size bytes.
5647cddd372SKevin Wolf  * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
5657cddd372SKevin Wolf  *              but can be smaller if the image file is smaller)
566c6684249SMarkus Armbruster  * @filename    is its filename.
567c6684249SMarkus Armbruster  *
568c6684249SMarkus Armbruster  * For all block drivers, call the bdrv_probe() method to get its
569c6684249SMarkus Armbruster  * probing score.
570c6684249SMarkus Armbruster  * Return the first block driver with the highest probing score.
571c6684249SMarkus Armbruster  */
57238f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
573c6684249SMarkus Armbruster                             const char *filename)
574c6684249SMarkus Armbruster {
575c6684249SMarkus Armbruster     int score_max = 0, score;
576c6684249SMarkus Armbruster     BlockDriver *drv = NULL, *d;
577c6684249SMarkus Armbruster 
578c6684249SMarkus Armbruster     QLIST_FOREACH(d, &bdrv_drivers, list) {
579c6684249SMarkus Armbruster         if (d->bdrv_probe) {
580c6684249SMarkus Armbruster             score = d->bdrv_probe(buf, buf_size, filename);
581c6684249SMarkus Armbruster             if (score > score_max) {
582c6684249SMarkus Armbruster                 score_max = score;
583c6684249SMarkus Armbruster                 drv = d;
584c6684249SMarkus Armbruster             }
585c6684249SMarkus Armbruster         }
586c6684249SMarkus Armbruster     }
587c6684249SMarkus Armbruster 
588c6684249SMarkus Armbruster     return drv;
589c6684249SMarkus Armbruster }
590c6684249SMarkus Armbruster 
591cf2ab8fcSKevin Wolf static int find_image_format(BdrvChild *file, const char *filename,
59234b5d2c6SMax Reitz                              BlockDriver **pdrv, Error **errp)
593ea2384d3Sbellard {
594cf2ab8fcSKevin Wolf     BlockDriverState *bs = file->bs;
595c6684249SMarkus Armbruster     BlockDriver *drv;
5967cddd372SKevin Wolf     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
597f500a6d3SKevin Wolf     int ret = 0;
598f8ea0b00SNicholas Bellinger 
59908a00559SKevin Wolf     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
600b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs) || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
601ef810437SMax Reitz         *pdrv = &bdrv_raw;
602c98ac35dSStefan Weil         return ret;
6031a396859SNicholas A. Bellinger     }
604f8ea0b00SNicholas Bellinger 
605cf2ab8fcSKevin Wolf     ret = bdrv_pread(file, 0, buf, sizeof(buf));
606ea2384d3Sbellard     if (ret < 0) {
60734b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not read image for determining its "
60834b5d2c6SMax Reitz                          "format");
609c98ac35dSStefan Weil         *pdrv = NULL;
610c98ac35dSStefan Weil         return ret;
611ea2384d3Sbellard     }
612ea2384d3Sbellard 
613c6684249SMarkus Armbruster     drv = bdrv_probe_all(buf, ret, filename);
614c98ac35dSStefan Weil     if (!drv) {
61534b5d2c6SMax Reitz         error_setg(errp, "Could not determine image format: No compatible "
61634b5d2c6SMax Reitz                    "driver found");
617c98ac35dSStefan Weil         ret = -ENOENT;
618c98ac35dSStefan Weil     }
619c98ac35dSStefan Weil     *pdrv = drv;
620c98ac35dSStefan Weil     return ret;
621ea2384d3Sbellard }
622ea2384d3Sbellard 
62351762288SStefan Hajnoczi /**
62451762288SStefan Hajnoczi  * Set the current 'total_sectors' value
62565a9bb25SMarkus Armbruster  * Return 0 on success, -errno on error.
62651762288SStefan Hajnoczi  */
62751762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
62851762288SStefan Hajnoczi {
62951762288SStefan Hajnoczi     BlockDriver *drv = bs->drv;
63051762288SStefan Hajnoczi 
631396759adSNicholas Bellinger     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
632b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs))
633396759adSNicholas Bellinger         return 0;
634396759adSNicholas Bellinger 
63551762288SStefan Hajnoczi     /* query actual device if possible, otherwise just trust the hint */
63651762288SStefan Hajnoczi     if (drv->bdrv_getlength) {
63751762288SStefan Hajnoczi         int64_t length = drv->bdrv_getlength(bs);
63851762288SStefan Hajnoczi         if (length < 0) {
63951762288SStefan Hajnoczi             return length;
64051762288SStefan Hajnoczi         }
6417e382003SFam Zheng         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
64251762288SStefan Hajnoczi     }
64351762288SStefan Hajnoczi 
64451762288SStefan Hajnoczi     bs->total_sectors = hint;
64551762288SStefan Hajnoczi     return 0;
64651762288SStefan Hajnoczi }
64751762288SStefan Hajnoczi 
648c3993cdcSStefan Hajnoczi /**
649cddff5baSKevin Wolf  * Combines a QDict of new block driver @options with any missing options taken
650cddff5baSKevin Wolf  * from @old_options, so that leaving out an option defaults to its old value.
651cddff5baSKevin Wolf  */
652cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options,
653cddff5baSKevin Wolf                               QDict *old_options)
654cddff5baSKevin Wolf {
655cddff5baSKevin Wolf     if (bs->drv && bs->drv->bdrv_join_options) {
656cddff5baSKevin Wolf         bs->drv->bdrv_join_options(options, old_options);
657cddff5baSKevin Wolf     } else {
658cddff5baSKevin Wolf         qdict_join(options, old_options, false);
659cddff5baSKevin Wolf     }
660cddff5baSKevin Wolf }
661cddff5baSKevin Wolf 
662cddff5baSKevin Wolf /**
6639e8f1835SPaolo Bonzini  * Set open flags for a given discard mode
6649e8f1835SPaolo Bonzini  *
6659e8f1835SPaolo Bonzini  * Return 0 on success, -1 if the discard mode was invalid.
6669e8f1835SPaolo Bonzini  */
6679e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags)
6689e8f1835SPaolo Bonzini {
6699e8f1835SPaolo Bonzini     *flags &= ~BDRV_O_UNMAP;
6709e8f1835SPaolo Bonzini 
6719e8f1835SPaolo Bonzini     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
6729e8f1835SPaolo Bonzini         /* do nothing */
6739e8f1835SPaolo Bonzini     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
6749e8f1835SPaolo Bonzini         *flags |= BDRV_O_UNMAP;
6759e8f1835SPaolo Bonzini     } else {
6769e8f1835SPaolo Bonzini         return -1;
6779e8f1835SPaolo Bonzini     }
6789e8f1835SPaolo Bonzini 
6799e8f1835SPaolo Bonzini     return 0;
6809e8f1835SPaolo Bonzini }
6819e8f1835SPaolo Bonzini 
6829e8f1835SPaolo Bonzini /**
683c3993cdcSStefan Hajnoczi  * Set open flags for a given cache mode
684c3993cdcSStefan Hajnoczi  *
685c3993cdcSStefan Hajnoczi  * Return 0 on success, -1 if the cache mode was invalid.
686c3993cdcSStefan Hajnoczi  */
68753e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
688c3993cdcSStefan Hajnoczi {
689c3993cdcSStefan Hajnoczi     *flags &= ~BDRV_O_CACHE_MASK;
690c3993cdcSStefan Hajnoczi 
691c3993cdcSStefan Hajnoczi     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
69253e8ae01SKevin Wolf         *writethrough = false;
69353e8ae01SKevin Wolf         *flags |= BDRV_O_NOCACHE;
69492196b2fSStefan Hajnoczi     } else if (!strcmp(mode, "directsync")) {
69553e8ae01SKevin Wolf         *writethrough = true;
69692196b2fSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE;
697c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writeback")) {
69853e8ae01SKevin Wolf         *writethrough = false;
699c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "unsafe")) {
70053e8ae01SKevin Wolf         *writethrough = false;
701c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NO_FLUSH;
702c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writethrough")) {
70353e8ae01SKevin Wolf         *writethrough = true;
704c3993cdcSStefan Hajnoczi     } else {
705c3993cdcSStefan Hajnoczi         return -1;
706c3993cdcSStefan Hajnoczi     }
707c3993cdcSStefan Hajnoczi 
708c3993cdcSStefan Hajnoczi     return 0;
709c3993cdcSStefan Hajnoczi }
710c3993cdcSStefan Hajnoczi 
71120018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child)
71220018e12SKevin Wolf {
71320018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
71420018e12SKevin Wolf     bdrv_drained_begin(bs);
71520018e12SKevin Wolf }
71620018e12SKevin Wolf 
71720018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child)
71820018e12SKevin Wolf {
71920018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
72020018e12SKevin Wolf     bdrv_drained_end(bs);
72120018e12SKevin Wolf }
72220018e12SKevin Wolf 
7230b50cc88SKevin Wolf /*
72473176beeSKevin Wolf  * Returns the options and flags that a temporary snapshot should get, based on
72573176beeSKevin Wolf  * the originally requested flags (the originally requested image will have
72673176beeSKevin Wolf  * flags like a backing file)
727b1e6fc08SKevin Wolf  */
72873176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
72973176beeSKevin Wolf                                        int parent_flags, QDict *parent_options)
730b1e6fc08SKevin Wolf {
73173176beeSKevin Wolf     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
73273176beeSKevin Wolf 
73373176beeSKevin Wolf     /* For temporary files, unconditional cache=unsafe is fine */
73473176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
73573176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
73641869044SKevin Wolf 
737f87a0e29SAlberto Garcia     /* Copy the read-only option from the parent */
738f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
739f87a0e29SAlberto Garcia 
74041869044SKevin Wolf     /* aio=native doesn't work for cache.direct=off, so disable it for the
74141869044SKevin Wolf      * temporary snapshot */
74241869044SKevin Wolf     *child_flags &= ~BDRV_O_NATIVE_AIO;
743b1e6fc08SKevin Wolf }
744b1e6fc08SKevin Wolf 
745b1e6fc08SKevin Wolf /*
7468e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if a protocol driver
7478e2160e2SKevin Wolf  * is expected, based on the given options and flags for the parent BDS
7480b50cc88SKevin Wolf  */
7498e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options,
7508e2160e2SKevin Wolf                                    int parent_flags, QDict *parent_options)
7510b50cc88SKevin Wolf {
7528e2160e2SKevin Wolf     int flags = parent_flags;
7538e2160e2SKevin Wolf 
7540b50cc88SKevin Wolf     /* Enable protocol handling, disable format probing for bs->file */
7550b50cc88SKevin Wolf     flags |= BDRV_O_PROTOCOL;
7560b50cc88SKevin Wolf 
75791a097e7SKevin Wolf     /* If the cache mode isn't explicitly set, inherit direct and no-flush from
75891a097e7SKevin Wolf      * the parent. */
75991a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
76091a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
76191a097e7SKevin Wolf 
762f87a0e29SAlberto Garcia     /* Inherit the read-only option from the parent if it's not set */
763f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
764f87a0e29SAlberto Garcia 
7650b50cc88SKevin Wolf     /* Our block drivers take care to send flushes and respect unmap policy,
76691a097e7SKevin Wolf      * so we can default to enable both on lower layers regardless of the
76791a097e7SKevin Wolf      * corresponding parent options. */
768*818584a4SKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
7690b50cc88SKevin Wolf 
7700b50cc88SKevin Wolf     /* Clear flags that only apply to the top layer */
771abb06c5aSDaniel P. Berrange     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
772abb06c5aSDaniel P. Berrange                BDRV_O_NO_IO);
7730b50cc88SKevin Wolf 
7748e2160e2SKevin Wolf     *child_flags = flags;
7750b50cc88SKevin Wolf }
7760b50cc88SKevin Wolf 
777f3930ed0SKevin Wolf const BdrvChildRole child_file = {
7788e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_options,
77920018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
78020018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
781f3930ed0SKevin Wolf };
782f3930ed0SKevin Wolf 
783f3930ed0SKevin Wolf /*
7848e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if the use of formats
7858e2160e2SKevin Wolf  * (and not only protocols) is permitted for it, based on the given options and
7868e2160e2SKevin Wolf  * flags for the parent BDS
787f3930ed0SKevin Wolf  */
7888e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
7898e2160e2SKevin Wolf                                        int parent_flags, QDict *parent_options)
790f3930ed0SKevin Wolf {
7918e2160e2SKevin Wolf     child_file.inherit_options(child_flags, child_options,
7928e2160e2SKevin Wolf                                parent_flags, parent_options);
7938e2160e2SKevin Wolf 
794abb06c5aSDaniel P. Berrange     *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
795f3930ed0SKevin Wolf }
796f3930ed0SKevin Wolf 
797f3930ed0SKevin Wolf const BdrvChildRole child_format = {
7988e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_fmt_options,
79920018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
80020018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
801f3930ed0SKevin Wolf };
802f3930ed0SKevin Wolf 
803317fc44eSKevin Wolf /*
8048e2160e2SKevin Wolf  * Returns the options and flags that bs->backing should get, based on the
8058e2160e2SKevin Wolf  * given options and flags for the parent BDS
806317fc44eSKevin Wolf  */
8078e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options,
8088e2160e2SKevin Wolf                                  int parent_flags, QDict *parent_options)
809317fc44eSKevin Wolf {
8108e2160e2SKevin Wolf     int flags = parent_flags;
8118e2160e2SKevin Wolf 
812b8816a43SKevin Wolf     /* The cache mode is inherited unmodified for backing files; except WCE,
813b8816a43SKevin Wolf      * which is only applied on the top level (BlockBackend) */
81491a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
81591a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
81691a097e7SKevin Wolf 
817317fc44eSKevin Wolf     /* backing files always opened read-only */
818f87a0e29SAlberto Garcia     qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
819f87a0e29SAlberto Garcia     flags &= ~BDRV_O_COPY_ON_READ;
820317fc44eSKevin Wolf 
821317fc44eSKevin Wolf     /* snapshot=on is handled on the top layer */
8228bfea15dSKevin Wolf     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
823317fc44eSKevin Wolf 
8248e2160e2SKevin Wolf     *child_flags = flags;
825317fc44eSKevin Wolf }
826317fc44eSKevin Wolf 
827f3930ed0SKevin Wolf static const BdrvChildRole child_backing = {
8288e2160e2SKevin Wolf     .inherit_options = bdrv_backing_options,
82920018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
83020018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
831f3930ed0SKevin Wolf };
832f3930ed0SKevin Wolf 
8337b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags)
8347b272452SKevin Wolf {
83561de4c68SKevin Wolf     int open_flags = flags;
8367b272452SKevin Wolf 
8377b272452SKevin Wolf     /*
8387b272452SKevin Wolf      * Clear flags that are internal to the block layer before opening the
8397b272452SKevin Wolf      * image.
8407b272452SKevin Wolf      */
84120cca275SKevin Wolf     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
8427b272452SKevin Wolf 
8437b272452SKevin Wolf     /*
8447b272452SKevin Wolf      * Snapshots should be writable.
8457b272452SKevin Wolf      */
8468bfea15dSKevin Wolf     if (flags & BDRV_O_TEMPORARY) {
8477b272452SKevin Wolf         open_flags |= BDRV_O_RDWR;
8487b272452SKevin Wolf     }
8497b272452SKevin Wolf 
8507b272452SKevin Wolf     return open_flags;
8517b272452SKevin Wolf }
8527b272452SKevin Wolf 
85391a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts)
85491a097e7SKevin Wolf {
85591a097e7SKevin Wolf     *flags &= ~BDRV_O_CACHE_MASK;
85691a097e7SKevin Wolf 
85791a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
85891a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
85991a097e7SKevin Wolf         *flags |= BDRV_O_NO_FLUSH;
86091a097e7SKevin Wolf     }
86191a097e7SKevin Wolf 
86291a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
86391a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
86491a097e7SKevin Wolf         *flags |= BDRV_O_NOCACHE;
86591a097e7SKevin Wolf     }
866f87a0e29SAlberto Garcia 
867f87a0e29SAlberto Garcia     *flags &= ~BDRV_O_RDWR;
868f87a0e29SAlberto Garcia 
869f87a0e29SAlberto Garcia     assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
870f87a0e29SAlberto Garcia     if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) {
871f87a0e29SAlberto Garcia         *flags |= BDRV_O_RDWR;
872f87a0e29SAlberto Garcia     }
873f87a0e29SAlberto Garcia 
87491a097e7SKevin Wolf }
87591a097e7SKevin Wolf 
87691a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags)
87791a097e7SKevin Wolf {
87891a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
87991a097e7SKevin Wolf         qdict_put(options, BDRV_OPT_CACHE_DIRECT,
88091a097e7SKevin Wolf                   qbool_from_bool(flags & BDRV_O_NOCACHE));
88191a097e7SKevin Wolf     }
88291a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
88391a097e7SKevin Wolf         qdict_put(options, BDRV_OPT_CACHE_NO_FLUSH,
88491a097e7SKevin Wolf                   qbool_from_bool(flags & BDRV_O_NO_FLUSH));
88591a097e7SKevin Wolf     }
886f87a0e29SAlberto Garcia     if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
887f87a0e29SAlberto Garcia         qdict_put(options, BDRV_OPT_READ_ONLY,
888f87a0e29SAlberto Garcia                   qbool_from_bool(!(flags & BDRV_O_RDWR)));
889f87a0e29SAlberto Garcia     }
89091a097e7SKevin Wolf }
89191a097e7SKevin Wolf 
892636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs,
8936913c0c2SBenoît Canet                                   const char *node_name,
8946913c0c2SBenoît Canet                                   Error **errp)
8956913c0c2SBenoît Canet {
89615489c76SJeff Cody     char *gen_node_name = NULL;
8976913c0c2SBenoît Canet 
89815489c76SJeff Cody     if (!node_name) {
89915489c76SJeff Cody         node_name = gen_node_name = id_generate(ID_BLOCK);
90015489c76SJeff Cody     } else if (!id_wellformed(node_name)) {
90115489c76SJeff Cody         /*
90215489c76SJeff Cody          * Check for empty string or invalid characters, but not if it is
90315489c76SJeff Cody          * generated (generated names use characters not available to the user)
90415489c76SJeff Cody          */
9059aebf3b8SKevin Wolf         error_setg(errp, "Invalid node name");
906636ea370SKevin Wolf         return;
9076913c0c2SBenoît Canet     }
9086913c0c2SBenoît Canet 
9090c5e94eeSBenoît Canet     /* takes care of avoiding namespaces collisions */
9107f06d47eSMarkus Armbruster     if (blk_by_name(node_name)) {
9110c5e94eeSBenoît Canet         error_setg(errp, "node-name=%s is conflicting with a device id",
9120c5e94eeSBenoît Canet                    node_name);
91315489c76SJeff Cody         goto out;
9140c5e94eeSBenoît Canet     }
9150c5e94eeSBenoît Canet 
9166913c0c2SBenoît Canet     /* takes care of avoiding duplicates node names */
9176913c0c2SBenoît Canet     if (bdrv_find_node(node_name)) {
9186913c0c2SBenoît Canet         error_setg(errp, "Duplicate node name");
91915489c76SJeff Cody         goto out;
9206913c0c2SBenoît Canet     }
9216913c0c2SBenoît Canet 
9226913c0c2SBenoît Canet     /* copy node name into the bs and insert it into the graph list */
9236913c0c2SBenoît Canet     pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
9246913c0c2SBenoît Canet     QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
92515489c76SJeff Cody out:
92615489c76SJeff Cody     g_free(gen_node_name);
9276913c0c2SBenoît Canet }
9286913c0c2SBenoît Canet 
92918edf289SKevin Wolf static QemuOptsList bdrv_runtime_opts = {
93018edf289SKevin Wolf     .name = "bdrv_common",
93118edf289SKevin Wolf     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
93218edf289SKevin Wolf     .desc = {
93318edf289SKevin Wolf         {
93418edf289SKevin Wolf             .name = "node-name",
93518edf289SKevin Wolf             .type = QEMU_OPT_STRING,
93618edf289SKevin Wolf             .help = "Node name of the block device node",
93718edf289SKevin Wolf         },
93862392ebbSKevin Wolf         {
93962392ebbSKevin Wolf             .name = "driver",
94062392ebbSKevin Wolf             .type = QEMU_OPT_STRING,
94162392ebbSKevin Wolf             .help = "Block driver to use for the node",
94262392ebbSKevin Wolf         },
94391a097e7SKevin Wolf         {
94491a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_DIRECT,
94591a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
94691a097e7SKevin Wolf             .help = "Bypass software writeback cache on the host",
94791a097e7SKevin Wolf         },
94891a097e7SKevin Wolf         {
94991a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_NO_FLUSH,
95091a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
95191a097e7SKevin Wolf             .help = "Ignore flush requests",
95291a097e7SKevin Wolf         },
953f87a0e29SAlberto Garcia         {
954f87a0e29SAlberto Garcia             .name = BDRV_OPT_READ_ONLY,
955f87a0e29SAlberto Garcia             .type = QEMU_OPT_BOOL,
956f87a0e29SAlberto Garcia             .help = "Node is opened in read-only mode",
957f87a0e29SAlberto Garcia         },
958692e01a2SKevin Wolf         {
959692e01a2SKevin Wolf             .name = "detect-zeroes",
960692e01a2SKevin Wolf             .type = QEMU_OPT_STRING,
961692e01a2SKevin Wolf             .help = "try to optimize zero writes (off, on, unmap)",
962692e01a2SKevin Wolf         },
963*818584a4SKevin Wolf         {
964*818584a4SKevin Wolf             .name = "discard",
965*818584a4SKevin Wolf             .type = QEMU_OPT_STRING,
966*818584a4SKevin Wolf             .help = "discard operation (ignore/off, unmap/on)",
967*818584a4SKevin Wolf         },
96818edf289SKevin Wolf         { /* end of list */ }
96918edf289SKevin Wolf     },
97018edf289SKevin Wolf };
97118edf289SKevin Wolf 
972b6ce07aaSKevin Wolf /*
97357915332SKevin Wolf  * Common part for opening disk images and files
974b6ad491aSKevin Wolf  *
975b6ad491aSKevin Wolf  * Removes all processed options from *options.
97657915332SKevin Wolf  */
9779a4f4c31SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BdrvChild *file,
97882dc8b41SKevin Wolf                             QDict *options, Error **errp)
97957915332SKevin Wolf {
98057915332SKevin Wolf     int ret, open_flags;
981035fccdfSKevin Wolf     const char *filename;
98262392ebbSKevin Wolf     const char *driver_name = NULL;
9836913c0c2SBenoît Canet     const char *node_name = NULL;
984*818584a4SKevin Wolf     const char *discard;
985692e01a2SKevin Wolf     const char *detect_zeroes;
98618edf289SKevin Wolf     QemuOpts *opts;
98762392ebbSKevin Wolf     BlockDriver *drv;
98834b5d2c6SMax Reitz     Error *local_err = NULL;
98957915332SKevin Wolf 
9906405875cSPaolo Bonzini     assert(bs->file == NULL);
991707ff828SKevin Wolf     assert(options != NULL && bs->options != options);
99257915332SKevin Wolf 
99362392ebbSKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
99462392ebbSKevin Wolf     qemu_opts_absorb_qdict(opts, options, &local_err);
99562392ebbSKevin Wolf     if (local_err) {
99662392ebbSKevin Wolf         error_propagate(errp, local_err);
99762392ebbSKevin Wolf         ret = -EINVAL;
99862392ebbSKevin Wolf         goto fail_opts;
99962392ebbSKevin Wolf     }
100062392ebbSKevin Wolf 
10019b7e8691SAlberto Garcia     update_flags_from_options(&bs->open_flags, opts);
10029b7e8691SAlberto Garcia 
100362392ebbSKevin Wolf     driver_name = qemu_opt_get(opts, "driver");
100462392ebbSKevin Wolf     drv = bdrv_find_format(driver_name);
100562392ebbSKevin Wolf     assert(drv != NULL);
100662392ebbSKevin Wolf 
100745673671SKevin Wolf     if (file != NULL) {
10089a4f4c31SKevin Wolf         filename = file->bs->filename;
100945673671SKevin Wolf     } else {
101045673671SKevin Wolf         filename = qdict_get_try_str(options, "filename");
101145673671SKevin Wolf     }
101245673671SKevin Wolf 
1013765003dbSKevin Wolf     if (drv->bdrv_needs_filename && !filename) {
1014765003dbSKevin Wolf         error_setg(errp, "The '%s' block driver requires a file name",
1015765003dbSKevin Wolf                    drv->format_name);
101618edf289SKevin Wolf         ret = -EINVAL;
101718edf289SKevin Wolf         goto fail_opts;
101818edf289SKevin Wolf     }
101918edf289SKevin Wolf 
102082dc8b41SKevin Wolf     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
102182dc8b41SKevin Wolf                            drv->format_name);
102262392ebbSKevin Wolf 
102318edf289SKevin Wolf     node_name = qemu_opt_get(opts, "node-name");
1024636ea370SKevin Wolf     bdrv_assign_node_name(bs, node_name, &local_err);
10250fb6395cSMarkus Armbruster     if (local_err) {
1026636ea370SKevin Wolf         error_propagate(errp, local_err);
102718edf289SKevin Wolf         ret = -EINVAL;
102818edf289SKevin Wolf         goto fail_opts;
10295d186eb0SKevin Wolf     }
10305d186eb0SKevin Wolf 
103182dc8b41SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1032b64ec4e4SFam Zheng 
1033b64ec4e4SFam Zheng     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
10348f94a6e4SKevin Wolf         error_setg(errp,
10358f94a6e4SKevin Wolf                    !bs->read_only && bdrv_is_whitelisted(drv, true)
10368f94a6e4SKevin Wolf                         ? "Driver '%s' can only be used for read-only devices"
10378f94a6e4SKevin Wolf                         : "Driver '%s' is not whitelisted",
10388f94a6e4SKevin Wolf                    drv->format_name);
103918edf289SKevin Wolf         ret = -ENOTSUP;
104018edf289SKevin Wolf         goto fail_opts;
1041b64ec4e4SFam Zheng     }
104257915332SKevin Wolf 
104353fec9d3SStefan Hajnoczi     assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
104482dc8b41SKevin Wolf     if (bs->open_flags & BDRV_O_COPY_ON_READ) {
10450ebd24e0SKevin Wolf         if (!bs->read_only) {
104653fec9d3SStefan Hajnoczi             bdrv_enable_copy_on_read(bs);
10470ebd24e0SKevin Wolf         } else {
10480ebd24e0SKevin Wolf             error_setg(errp, "Can't use copy-on-read on read-only device");
104918edf289SKevin Wolf             ret = -EINVAL;
105018edf289SKevin Wolf             goto fail_opts;
10510ebd24e0SKevin Wolf         }
105253fec9d3SStefan Hajnoczi     }
105353fec9d3SStefan Hajnoczi 
1054*818584a4SKevin Wolf     discard = qemu_opt_get(opts, "discard");
1055*818584a4SKevin Wolf     if (discard != NULL) {
1056*818584a4SKevin Wolf         if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1057*818584a4SKevin Wolf             error_setg(errp, "Invalid discard option");
1058*818584a4SKevin Wolf             ret = -EINVAL;
1059*818584a4SKevin Wolf             goto fail_opts;
1060*818584a4SKevin Wolf         }
1061*818584a4SKevin Wolf     }
1062*818584a4SKevin Wolf 
1063692e01a2SKevin Wolf     detect_zeroes = qemu_opt_get(opts, "detect-zeroes");
1064692e01a2SKevin Wolf     if (detect_zeroes) {
1065692e01a2SKevin Wolf         BlockdevDetectZeroesOptions value =
1066692e01a2SKevin Wolf             qapi_enum_parse(BlockdevDetectZeroesOptions_lookup,
1067692e01a2SKevin Wolf                             detect_zeroes,
1068692e01a2SKevin Wolf                             BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX,
1069692e01a2SKevin Wolf                             BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
1070692e01a2SKevin Wolf                             &local_err);
1071692e01a2SKevin Wolf         if (local_err) {
1072692e01a2SKevin Wolf             error_propagate(errp, local_err);
1073692e01a2SKevin Wolf             ret = -EINVAL;
1074692e01a2SKevin Wolf             goto fail_opts;
1075692e01a2SKevin Wolf         }
1076692e01a2SKevin Wolf 
1077692e01a2SKevin Wolf         if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1078692e01a2SKevin Wolf             !(bs->open_flags & BDRV_O_UNMAP))
1079692e01a2SKevin Wolf         {
1080692e01a2SKevin Wolf             error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1081692e01a2SKevin Wolf                              "without setting discard operation to unmap");
1082692e01a2SKevin Wolf             ret = -EINVAL;
1083692e01a2SKevin Wolf             goto fail_opts;
1084692e01a2SKevin Wolf         }
1085692e01a2SKevin Wolf 
1086692e01a2SKevin Wolf         bs->detect_zeroes = value;
1087692e01a2SKevin Wolf     }
1088692e01a2SKevin Wolf 
1089c2ad1b0cSKevin Wolf     if (filename != NULL) {
109057915332SKevin Wolf         pstrcpy(bs->filename, sizeof(bs->filename), filename);
1091c2ad1b0cSKevin Wolf     } else {
1092c2ad1b0cSKevin Wolf         bs->filename[0] = '\0';
1093c2ad1b0cSKevin Wolf     }
109491af7014SMax Reitz     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
109557915332SKevin Wolf 
109657915332SKevin Wolf     bs->drv = drv;
10977267c094SAnthony Liguori     bs->opaque = g_malloc0(drv->instance_size);
109857915332SKevin Wolf 
109966f82ceeSKevin Wolf     /* Open the image, either directly or using a protocol */
110082dc8b41SKevin Wolf     open_flags = bdrv_open_flags(bs, bs->open_flags);
110166f82ceeSKevin Wolf     if (drv->bdrv_file_open) {
11025d186eb0SKevin Wolf         assert(file == NULL);
1103030be321SBenoît Canet         assert(!drv->bdrv_needs_filename || filename != NULL);
110434b5d2c6SMax Reitz         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1105f500a6d3SKevin Wolf     } else {
11062af5ef70SKevin Wolf         if (file == NULL) {
110734b5d2c6SMax Reitz             error_setg(errp, "Can't use '%s' as a block driver for the "
110834b5d2c6SMax Reitz                        "protocol level", drv->format_name);
11092af5ef70SKevin Wolf             ret = -EINVAL;
11102af5ef70SKevin Wolf             goto free_and_fail;
11112af5ef70SKevin Wolf         }
1112f500a6d3SKevin Wolf         bs->file = file;
111334b5d2c6SMax Reitz         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
111466f82ceeSKevin Wolf     }
111566f82ceeSKevin Wolf 
111657915332SKevin Wolf     if (ret < 0) {
111784d18f06SMarkus Armbruster         if (local_err) {
111834b5d2c6SMax Reitz             error_propagate(errp, local_err);
11192fa9aa59SDunrong Huang         } else if (bs->filename[0]) {
11202fa9aa59SDunrong Huang             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
112134b5d2c6SMax Reitz         } else {
112234b5d2c6SMax Reitz             error_setg_errno(errp, -ret, "Could not open image");
112334b5d2c6SMax Reitz         }
112457915332SKevin Wolf         goto free_and_fail;
112557915332SKevin Wolf     }
112657915332SKevin Wolf 
112751762288SStefan Hajnoczi     ret = refresh_total_sectors(bs, bs->total_sectors);
112851762288SStefan Hajnoczi     if (ret < 0) {
112934b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not refresh total sector count");
113051762288SStefan Hajnoczi         goto free_and_fail;
113157915332SKevin Wolf     }
113251762288SStefan Hajnoczi 
11333baca891SKevin Wolf     bdrv_refresh_limits(bs, &local_err);
11343baca891SKevin Wolf     if (local_err) {
11353baca891SKevin Wolf         error_propagate(errp, local_err);
11363baca891SKevin Wolf         ret = -EINVAL;
11373baca891SKevin Wolf         goto free_and_fail;
11383baca891SKevin Wolf     }
11393baca891SKevin Wolf 
1140c25f53b0SPaolo Bonzini     assert(bdrv_opt_mem_align(bs) != 0);
11414196d2f0SDenis V. Lunev     assert(bdrv_min_mem_align(bs) != 0);
1142a5b8dd2cSEric Blake     assert(is_power_of_2(bs->bl.request_alignment));
114318edf289SKevin Wolf 
114418edf289SKevin Wolf     qemu_opts_del(opts);
114557915332SKevin Wolf     return 0;
114657915332SKevin Wolf 
114757915332SKevin Wolf free_and_fail:
114866f82ceeSKevin Wolf     bs->file = NULL;
11497267c094SAnthony Liguori     g_free(bs->opaque);
115057915332SKevin Wolf     bs->opaque = NULL;
115157915332SKevin Wolf     bs->drv = NULL;
115218edf289SKevin Wolf fail_opts:
115318edf289SKevin Wolf     qemu_opts_del(opts);
115457915332SKevin Wolf     return ret;
115557915332SKevin Wolf }
115657915332SKevin Wolf 
11575e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp)
11585e5c4f63SKevin Wolf {
11595e5c4f63SKevin Wolf     QObject *options_obj;
11605e5c4f63SKevin Wolf     QDict *options;
11615e5c4f63SKevin Wolf     int ret;
11625e5c4f63SKevin Wolf 
11635e5c4f63SKevin Wolf     ret = strstart(filename, "json:", &filename);
11645e5c4f63SKevin Wolf     assert(ret);
11655e5c4f63SKevin Wolf 
11665e5c4f63SKevin Wolf     options_obj = qobject_from_json(filename);
11675e5c4f63SKevin Wolf     if (!options_obj) {
11685e5c4f63SKevin Wolf         error_setg(errp, "Could not parse the JSON options");
11695e5c4f63SKevin Wolf         return NULL;
11705e5c4f63SKevin Wolf     }
11715e5c4f63SKevin Wolf 
11725e5c4f63SKevin Wolf     if (qobject_type(options_obj) != QTYPE_QDICT) {
11735e5c4f63SKevin Wolf         qobject_decref(options_obj);
11745e5c4f63SKevin Wolf         error_setg(errp, "Invalid JSON object given");
11755e5c4f63SKevin Wolf         return NULL;
11765e5c4f63SKevin Wolf     }
11775e5c4f63SKevin Wolf 
11785e5c4f63SKevin Wolf     options = qobject_to_qdict(options_obj);
11795e5c4f63SKevin Wolf     qdict_flatten(options);
11805e5c4f63SKevin Wolf 
11815e5c4f63SKevin Wolf     return options;
11825e5c4f63SKevin Wolf }
11835e5c4f63SKevin Wolf 
1184de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename,
1185de3b53f0SKevin Wolf                                 Error **errp)
1186de3b53f0SKevin Wolf {
1187de3b53f0SKevin Wolf     QDict *json_options;
1188de3b53f0SKevin Wolf     Error *local_err = NULL;
1189de3b53f0SKevin Wolf 
1190de3b53f0SKevin Wolf     /* Parse json: pseudo-protocol */
1191de3b53f0SKevin Wolf     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1192de3b53f0SKevin Wolf         return;
1193de3b53f0SKevin Wolf     }
1194de3b53f0SKevin Wolf 
1195de3b53f0SKevin Wolf     json_options = parse_json_filename(*pfilename, &local_err);
1196de3b53f0SKevin Wolf     if (local_err) {
1197de3b53f0SKevin Wolf         error_propagate(errp, local_err);
1198de3b53f0SKevin Wolf         return;
1199de3b53f0SKevin Wolf     }
1200de3b53f0SKevin Wolf 
1201de3b53f0SKevin Wolf     /* Options given in the filename have lower priority than options
1202de3b53f0SKevin Wolf      * specified directly */
1203de3b53f0SKevin Wolf     qdict_join(options, json_options, false);
1204de3b53f0SKevin Wolf     QDECREF(json_options);
1205de3b53f0SKevin Wolf     *pfilename = NULL;
1206de3b53f0SKevin Wolf }
1207de3b53f0SKevin Wolf 
120857915332SKevin Wolf /*
1209f54120ffSKevin Wolf  * Fills in default options for opening images and converts the legacy
1210f54120ffSKevin Wolf  * filename/flags pair to option QDict entries.
121153a29513SMax Reitz  * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
121253a29513SMax Reitz  * block driver has been specified explicitly.
1213f54120ffSKevin Wolf  */
1214de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename,
1215053e1578SMax Reitz                              int *flags, Error **errp)
1216f54120ffSKevin Wolf {
1217f54120ffSKevin Wolf     const char *drvname;
121853a29513SMax Reitz     bool protocol = *flags & BDRV_O_PROTOCOL;
1219f54120ffSKevin Wolf     bool parse_filename = false;
1220053e1578SMax Reitz     BlockDriver *drv = NULL;
1221f54120ffSKevin Wolf     Error *local_err = NULL;
1222f54120ffSKevin Wolf 
122353a29513SMax Reitz     drvname = qdict_get_try_str(*options, "driver");
1224053e1578SMax Reitz     if (drvname) {
1225053e1578SMax Reitz         drv = bdrv_find_format(drvname);
1226053e1578SMax Reitz         if (!drv) {
1227053e1578SMax Reitz             error_setg(errp, "Unknown driver '%s'", drvname);
1228053e1578SMax Reitz             return -ENOENT;
1229053e1578SMax Reitz         }
123053a29513SMax Reitz         /* If the user has explicitly specified the driver, this choice should
123153a29513SMax Reitz          * override the BDRV_O_PROTOCOL flag */
1232053e1578SMax Reitz         protocol = drv->bdrv_file_open;
123353a29513SMax Reitz     }
123453a29513SMax Reitz 
123553a29513SMax Reitz     if (protocol) {
123653a29513SMax Reitz         *flags |= BDRV_O_PROTOCOL;
123753a29513SMax Reitz     } else {
123853a29513SMax Reitz         *flags &= ~BDRV_O_PROTOCOL;
123953a29513SMax Reitz     }
124053a29513SMax Reitz 
124191a097e7SKevin Wolf     /* Translate cache options from flags into options */
124291a097e7SKevin Wolf     update_options_from_flags(*options, *flags);
124391a097e7SKevin Wolf 
1244f54120ffSKevin Wolf     /* Fetch the file name from the options QDict if necessary */
124517b005f1SKevin Wolf     if (protocol && filename) {
1246f54120ffSKevin Wolf         if (!qdict_haskey(*options, "filename")) {
1247f54120ffSKevin Wolf             qdict_put(*options, "filename", qstring_from_str(filename));
1248f54120ffSKevin Wolf             parse_filename = true;
1249f54120ffSKevin Wolf         } else {
1250f54120ffSKevin Wolf             error_setg(errp, "Can't specify 'file' and 'filename' options at "
1251f54120ffSKevin Wolf                              "the same time");
1252f54120ffSKevin Wolf             return -EINVAL;
1253f54120ffSKevin Wolf         }
1254f54120ffSKevin Wolf     }
1255f54120ffSKevin Wolf 
1256f54120ffSKevin Wolf     /* Find the right block driver */
1257f54120ffSKevin Wolf     filename = qdict_get_try_str(*options, "filename");
1258f54120ffSKevin Wolf 
125917b005f1SKevin Wolf     if (!drvname && protocol) {
1260f54120ffSKevin Wolf         if (filename) {
1261b65a5e12SMax Reitz             drv = bdrv_find_protocol(filename, parse_filename, errp);
1262f54120ffSKevin Wolf             if (!drv) {
1263f54120ffSKevin Wolf                 return -EINVAL;
1264f54120ffSKevin Wolf             }
1265f54120ffSKevin Wolf 
1266f54120ffSKevin Wolf             drvname = drv->format_name;
1267f54120ffSKevin Wolf             qdict_put(*options, "driver", qstring_from_str(drvname));
1268f54120ffSKevin Wolf         } else {
1269f54120ffSKevin Wolf             error_setg(errp, "Must specify either driver or file");
1270f54120ffSKevin Wolf             return -EINVAL;
1271f54120ffSKevin Wolf         }
127217b005f1SKevin Wolf     }
127317b005f1SKevin Wolf 
127417b005f1SKevin Wolf     assert(drv || !protocol);
1275f54120ffSKevin Wolf 
1276f54120ffSKevin Wolf     /* Driver-specific filename parsing */
127717b005f1SKevin Wolf     if (drv && drv->bdrv_parse_filename && parse_filename) {
1278f54120ffSKevin Wolf         drv->bdrv_parse_filename(filename, *options, &local_err);
1279f54120ffSKevin Wolf         if (local_err) {
1280f54120ffSKevin Wolf             error_propagate(errp, local_err);
1281f54120ffSKevin Wolf             return -EINVAL;
1282f54120ffSKevin Wolf         }
1283f54120ffSKevin Wolf 
1284f54120ffSKevin Wolf         if (!drv->bdrv_needs_filename) {
1285f54120ffSKevin Wolf             qdict_del(*options, "filename");
1286f54120ffSKevin Wolf         }
1287f54120ffSKevin Wolf     }
1288f54120ffSKevin Wolf 
1289f54120ffSKevin Wolf     return 0;
1290f54120ffSKevin Wolf }
1291f54120ffSKevin Wolf 
1292e9740bc6SKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
1293e9740bc6SKevin Wolf {
1294e9740bc6SKevin Wolf     BlockDriverState *old_bs = child->bs;
1295e9740bc6SKevin Wolf 
1296e9740bc6SKevin Wolf     if (old_bs) {
129736fe1331SKevin Wolf         if (old_bs->quiesce_counter && child->role->drained_end) {
129836fe1331SKevin Wolf             child->role->drained_end(child);
1299e9740bc6SKevin Wolf         }
130036fe1331SKevin Wolf         QLIST_REMOVE(child, next_parent);
1301e9740bc6SKevin Wolf     }
1302e9740bc6SKevin Wolf 
1303e9740bc6SKevin Wolf     child->bs = new_bs;
130436fe1331SKevin Wolf 
130536fe1331SKevin Wolf     if (new_bs) {
130636fe1331SKevin Wolf         QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
130736fe1331SKevin Wolf         if (new_bs->quiesce_counter && child->role->drained_begin) {
130836fe1331SKevin Wolf             child->role->drained_begin(child);
130936fe1331SKevin Wolf         }
131036fe1331SKevin Wolf     }
1311e9740bc6SKevin Wolf }
1312e9740bc6SKevin Wolf 
1313f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
1314260fecf1SKevin Wolf                                   const char *child_name,
131536fe1331SKevin Wolf                                   const BdrvChildRole *child_role,
131636fe1331SKevin Wolf                                   void *opaque)
1317df581792SKevin Wolf {
1318df581792SKevin Wolf     BdrvChild *child = g_new(BdrvChild, 1);
1319df581792SKevin Wolf     *child = (BdrvChild) {
1320e9740bc6SKevin Wolf         .bs     = NULL,
1321260fecf1SKevin Wolf         .name   = g_strdup(child_name),
1322df581792SKevin Wolf         .role   = child_role,
132336fe1331SKevin Wolf         .opaque = opaque,
1324df581792SKevin Wolf     };
1325df581792SKevin Wolf 
1326e9740bc6SKevin Wolf     bdrv_replace_child(child, child_bs);
1327b4b059f6SKevin Wolf 
1328b4b059f6SKevin Wolf     return child;
1329df581792SKevin Wolf }
1330df581792SKevin Wolf 
133198292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
1332f21d96d0SKevin Wolf                              BlockDriverState *child_bs,
1333f21d96d0SKevin Wolf                              const char *child_name,
1334f21d96d0SKevin Wolf                              const BdrvChildRole *child_role)
1335f21d96d0SKevin Wolf {
133636fe1331SKevin Wolf     BdrvChild *child = bdrv_root_attach_child(child_bs, child_name, child_role,
133720018e12SKevin Wolf                                               parent_bs);
1338f21d96d0SKevin Wolf     QLIST_INSERT_HEAD(&parent_bs->children, child, next);
1339f21d96d0SKevin Wolf     return child;
1340f21d96d0SKevin Wolf }
1341f21d96d0SKevin Wolf 
13423f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child)
134333a60407SKevin Wolf {
1344f21d96d0SKevin Wolf     if (child->next.le_prev) {
134533a60407SKevin Wolf         QLIST_REMOVE(child, next);
1346f21d96d0SKevin Wolf         child->next.le_prev = NULL;
1347f21d96d0SKevin Wolf     }
1348e9740bc6SKevin Wolf 
1349e9740bc6SKevin Wolf     bdrv_replace_child(child, NULL);
1350e9740bc6SKevin Wolf 
1351260fecf1SKevin Wolf     g_free(child->name);
135233a60407SKevin Wolf     g_free(child);
135333a60407SKevin Wolf }
135433a60407SKevin Wolf 
1355f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child)
135633a60407SKevin Wolf {
1357779020cbSKevin Wolf     BlockDriverState *child_bs;
1358779020cbSKevin Wolf 
1359f21d96d0SKevin Wolf     child_bs = child->bs;
1360f21d96d0SKevin Wolf     bdrv_detach_child(child);
1361f21d96d0SKevin Wolf     bdrv_unref(child_bs);
1362f21d96d0SKevin Wolf }
1363f21d96d0SKevin Wolf 
1364f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
1365f21d96d0SKevin Wolf {
1366779020cbSKevin Wolf     if (child == NULL) {
1367779020cbSKevin Wolf         return;
1368779020cbSKevin Wolf     }
136933a60407SKevin Wolf 
137033a60407SKevin Wolf     if (child->bs->inherits_from == parent) {
137133a60407SKevin Wolf         child->bs->inherits_from = NULL;
137233a60407SKevin Wolf     }
137333a60407SKevin Wolf 
1374f21d96d0SKevin Wolf     bdrv_root_unref_child(child);
137533a60407SKevin Wolf }
137633a60407SKevin Wolf 
13775c8cab48SKevin Wolf 
13785c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
13795c8cab48SKevin Wolf {
13805c8cab48SKevin Wolf     BdrvChild *c;
13815c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
13825c8cab48SKevin Wolf         if (c->role->change_media) {
13835c8cab48SKevin Wolf             c->role->change_media(c, load);
13845c8cab48SKevin Wolf         }
13855c8cab48SKevin Wolf     }
13865c8cab48SKevin Wolf }
13875c8cab48SKevin Wolf 
13885c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs)
13895c8cab48SKevin Wolf {
13905c8cab48SKevin Wolf     BdrvChild *c;
13915c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
13925c8cab48SKevin Wolf         if (c->role->resize) {
13935c8cab48SKevin Wolf             c->role->resize(c);
13945c8cab48SKevin Wolf         }
13955c8cab48SKevin Wolf     }
13965c8cab48SKevin Wolf }
13975c8cab48SKevin Wolf 
13985db15a57SKevin Wolf /*
13995db15a57SKevin Wolf  * Sets the backing file link of a BDS. A new reference is created; callers
14005db15a57SKevin Wolf  * which don't need their own reference any more must call bdrv_unref().
14015db15a57SKevin Wolf  */
14028d24cce1SFam Zheng void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd)
14038d24cce1SFam Zheng {
14045db15a57SKevin Wolf     if (backing_hd) {
14055db15a57SKevin Wolf         bdrv_ref(backing_hd);
14065db15a57SKevin Wolf     }
14078d24cce1SFam Zheng 
1408760e0063SKevin Wolf     if (bs->backing) {
1409826b6ca0SFam Zheng         assert(bs->backing_blocker);
1410760e0063SKevin Wolf         bdrv_op_unblock_all(bs->backing->bs, bs->backing_blocker);
14115db15a57SKevin Wolf         bdrv_unref_child(bs, bs->backing);
1412826b6ca0SFam Zheng     } else if (backing_hd) {
1413826b6ca0SFam Zheng         error_setg(&bs->backing_blocker,
141481e5f78aSAlberto Garcia                    "node is used as backing hd of '%s'",
141581e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(bs));
1416826b6ca0SFam Zheng     }
1417826b6ca0SFam Zheng 
14188d24cce1SFam Zheng     if (!backing_hd) {
1419826b6ca0SFam Zheng         error_free(bs->backing_blocker);
1420826b6ca0SFam Zheng         bs->backing_blocker = NULL;
1421760e0063SKevin Wolf         bs->backing = NULL;
14228d24cce1SFam Zheng         goto out;
14238d24cce1SFam Zheng     }
1424260fecf1SKevin Wolf     bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing);
14258d24cce1SFam Zheng     bs->open_flags &= ~BDRV_O_NO_BACKING;
14268d24cce1SFam Zheng     pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_hd->filename);
14278d24cce1SFam Zheng     pstrcpy(bs->backing_format, sizeof(bs->backing_format),
14288d24cce1SFam Zheng             backing_hd->drv ? backing_hd->drv->format_name : "");
1429826b6ca0SFam Zheng 
1430760e0063SKevin Wolf     bdrv_op_block_all(backing_hd, bs->backing_blocker);
1431826b6ca0SFam Zheng     /* Otherwise we won't be able to commit due to check in bdrv_commit */
1432760e0063SKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1433826b6ca0SFam Zheng                     bs->backing_blocker);
1434e9d6456eSWen Congyang     /*
1435e9d6456eSWen Congyang      * We do backup in 3 ways:
1436e9d6456eSWen Congyang      * 1. drive backup
1437e9d6456eSWen Congyang      *    The target bs is new opened, and the source is top BDS
1438e9d6456eSWen Congyang      * 2. blockdev backup
1439e9d6456eSWen Congyang      *    Both the source and the target are top BDSes.
1440e9d6456eSWen Congyang      * 3. internal backup(used for block replication)
1441e9d6456eSWen Congyang      *    Both the source and the target are backing file
1442e9d6456eSWen Congyang      *
1443e9d6456eSWen Congyang      * In case 1 and 2, neither the source nor the target is the backing file.
1444e9d6456eSWen Congyang      * In case 3, we will block the top BDS, so there is only one block job
1445e9d6456eSWen Congyang      * for the top BDS and its backing chain.
1446e9d6456eSWen Congyang      */
1447e9d6456eSWen Congyang     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1448e9d6456eSWen Congyang                     bs->backing_blocker);
1449e9d6456eSWen Congyang     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1450e9d6456eSWen Congyang                     bs->backing_blocker);
14518d24cce1SFam Zheng out:
14523baca891SKevin Wolf     bdrv_refresh_limits(bs, NULL);
14538d24cce1SFam Zheng }
14548d24cce1SFam Zheng 
145531ca6d07SKevin Wolf /*
145631ca6d07SKevin Wolf  * Opens the backing file for a BlockDriverState if not yet open
145731ca6d07SKevin Wolf  *
1458d9b7b057SKevin Wolf  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
1459d9b7b057SKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1460d9b7b057SKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
1461d9b7b057SKevin Wolf  * BlockdevRef.
1462d9b7b057SKevin Wolf  *
1463d9b7b057SKevin Wolf  * TODO Can this be unified with bdrv_open_image()?
146431ca6d07SKevin Wolf  */
1465d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
1466d9b7b057SKevin Wolf                            const char *bdref_key, Error **errp)
14679156df12SPaolo Bonzini {
14681ba4b6a5SBenoît Canet     char *backing_filename = g_malloc0(PATH_MAX);
1469d9b7b057SKevin Wolf     char *bdref_key_dot;
1470d9b7b057SKevin Wolf     const char *reference = NULL;
1471317fc44eSKevin Wolf     int ret = 0;
14728d24cce1SFam Zheng     BlockDriverState *backing_hd;
1473d9b7b057SKevin Wolf     QDict *options;
1474d9b7b057SKevin Wolf     QDict *tmp_parent_options = NULL;
147534b5d2c6SMax Reitz     Error *local_err = NULL;
14769156df12SPaolo Bonzini 
1477760e0063SKevin Wolf     if (bs->backing != NULL) {
14781ba4b6a5SBenoît Canet         goto free_exit;
14799156df12SPaolo Bonzini     }
14809156df12SPaolo Bonzini 
148131ca6d07SKevin Wolf     /* NULL means an empty set of options */
1482d9b7b057SKevin Wolf     if (parent_options == NULL) {
1483d9b7b057SKevin Wolf         tmp_parent_options = qdict_new();
1484d9b7b057SKevin Wolf         parent_options = tmp_parent_options;
148531ca6d07SKevin Wolf     }
148631ca6d07SKevin Wolf 
14879156df12SPaolo Bonzini     bs->open_flags &= ~BDRV_O_NO_BACKING;
1488d9b7b057SKevin Wolf 
1489d9b7b057SKevin Wolf     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1490d9b7b057SKevin Wolf     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
1491d9b7b057SKevin Wolf     g_free(bdref_key_dot);
1492d9b7b057SKevin Wolf 
1493d9b7b057SKevin Wolf     reference = qdict_get_try_str(parent_options, bdref_key);
1494d9b7b057SKevin Wolf     if (reference || qdict_haskey(options, "file.filename")) {
14951cb6f506SKevin Wolf         backing_filename[0] = '\0';
14961cb6f506SKevin Wolf     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
149731ca6d07SKevin Wolf         QDECREF(options);
14981ba4b6a5SBenoît Canet         goto free_exit;
1499dbecebddSFam Zheng     } else {
15009f07429eSMax Reitz         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
15019f07429eSMax Reitz                                        &local_err);
15029f07429eSMax Reitz         if (local_err) {
15039f07429eSMax Reitz             ret = -EINVAL;
15049f07429eSMax Reitz             error_propagate(errp, local_err);
15059f07429eSMax Reitz             QDECREF(options);
15069f07429eSMax Reitz             goto free_exit;
15079f07429eSMax Reitz         }
15089156df12SPaolo Bonzini     }
15099156df12SPaolo Bonzini 
15108ee79e70SKevin Wolf     if (!bs->drv || !bs->drv->supports_backing) {
15118ee79e70SKevin Wolf         ret = -EINVAL;
15128ee79e70SKevin Wolf         error_setg(errp, "Driver doesn't support backing files");
15138ee79e70SKevin Wolf         QDECREF(options);
15148ee79e70SKevin Wolf         goto free_exit;
15158ee79e70SKevin Wolf     }
15168ee79e70SKevin Wolf 
1517c5f6e493SKevin Wolf     if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
1518c5f6e493SKevin Wolf         qdict_put(options, "driver", qstring_from_str(bs->backing_format));
15199156df12SPaolo Bonzini     }
15209156df12SPaolo Bonzini 
15215b363937SMax Reitz     backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
1522d9b7b057SKevin Wolf                                    reference, options, 0, bs, &child_backing,
1523e43bfd9cSMarkus Armbruster                                    errp);
15245b363937SMax Reitz     if (!backing_hd) {
15259156df12SPaolo Bonzini         bs->open_flags |= BDRV_O_NO_BACKING;
1526e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not open backing file: ");
15275b363937SMax Reitz         ret = -EINVAL;
15281ba4b6a5SBenoît Canet         goto free_exit;
15299156df12SPaolo Bonzini     }
1530df581792SKevin Wolf 
15315db15a57SKevin Wolf     /* Hook up the backing file link; drop our reference, bs owns the
15325db15a57SKevin Wolf      * backing_hd reference now */
15338d24cce1SFam Zheng     bdrv_set_backing_hd(bs, backing_hd);
15345db15a57SKevin Wolf     bdrv_unref(backing_hd);
1535d80ac658SPeter Feiner 
1536d9b7b057SKevin Wolf     qdict_del(parent_options, bdref_key);
1537d9b7b057SKevin Wolf 
15381ba4b6a5SBenoît Canet free_exit:
15391ba4b6a5SBenoît Canet     g_free(backing_filename);
1540d9b7b057SKevin Wolf     QDECREF(tmp_parent_options);
15411ba4b6a5SBenoît Canet     return ret;
15429156df12SPaolo Bonzini }
15439156df12SPaolo Bonzini 
1544b6ce07aaSKevin Wolf /*
1545da557aacSMax Reitz  * Opens a disk image whose options are given as BlockdevRef in another block
1546da557aacSMax Reitz  * device's options.
1547da557aacSMax Reitz  *
1548da557aacSMax Reitz  * If allow_none is true, no image will be opened if filename is false and no
1549b4b059f6SKevin Wolf  * BlockdevRef is given. NULL will be returned, but errp remains unset.
1550da557aacSMax Reitz  *
1551da557aacSMax Reitz  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
1552da557aacSMax Reitz  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1553da557aacSMax Reitz  * itself, all options starting with "${bdref_key}." are considered part of the
1554da557aacSMax Reitz  * BlockdevRef.
1555da557aacSMax Reitz  *
1556da557aacSMax Reitz  * The BlockdevRef will be removed from the options QDict.
1557da557aacSMax Reitz  */
1558b4b059f6SKevin Wolf BdrvChild *bdrv_open_child(const char *filename,
1559f3930ed0SKevin Wolf                            QDict *options, const char *bdref_key,
1560b4b059f6SKevin Wolf                            BlockDriverState* parent,
1561b4b059f6SKevin Wolf                            const BdrvChildRole *child_role,
1562f7d9fd8cSMax Reitz                            bool allow_none, Error **errp)
1563da557aacSMax Reitz {
1564b4b059f6SKevin Wolf     BdrvChild *c = NULL;
1565b4b059f6SKevin Wolf     BlockDriverState *bs;
1566da557aacSMax Reitz     QDict *image_options;
1567da557aacSMax Reitz     char *bdref_key_dot;
1568da557aacSMax Reitz     const char *reference;
1569da557aacSMax Reitz 
1570df581792SKevin Wolf     assert(child_role != NULL);
1571f67503e5SMax Reitz 
1572da557aacSMax Reitz     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1573da557aacSMax Reitz     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
1574da557aacSMax Reitz     g_free(bdref_key_dot);
1575da557aacSMax Reitz 
1576da557aacSMax Reitz     reference = qdict_get_try_str(options, bdref_key);
1577da557aacSMax Reitz     if (!filename && !reference && !qdict_size(image_options)) {
1578b4b059f6SKevin Wolf         if (!allow_none) {
1579da557aacSMax Reitz             error_setg(errp, "A block device must be specified for \"%s\"",
1580da557aacSMax Reitz                        bdref_key);
1581da557aacSMax Reitz         }
1582b20e61e0SMarkus Armbruster         QDECREF(image_options);
1583da557aacSMax Reitz         goto done;
1584da557aacSMax Reitz     }
1585da557aacSMax Reitz 
15865b363937SMax Reitz     bs = bdrv_open_inherit(filename, reference, image_options, 0,
1587ce343771SMax Reitz                            parent, child_role, errp);
15885b363937SMax Reitz     if (!bs) {
1589df581792SKevin Wolf         goto done;
1590df581792SKevin Wolf     }
1591df581792SKevin Wolf 
1592260fecf1SKevin Wolf     c = bdrv_attach_child(parent, bs, bdref_key, child_role);
1593da557aacSMax Reitz 
1594da557aacSMax Reitz done:
1595da557aacSMax Reitz     qdict_del(options, bdref_key);
1596b4b059f6SKevin Wolf     return c;
1597b4b059f6SKevin Wolf }
1598b4b059f6SKevin Wolf 
159966836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
160066836189SMax Reitz                                                    int flags,
160166836189SMax Reitz                                                    QDict *snapshot_options,
160266836189SMax Reitz                                                    Error **errp)
1603b998875dSKevin Wolf {
1604b998875dSKevin Wolf     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
16051ba4b6a5SBenoît Canet     char *tmp_filename = g_malloc0(PATH_MAX + 1);
1606b998875dSKevin Wolf     int64_t total_size;
160783d0521aSChunyan Liu     QemuOpts *opts = NULL;
1608b998875dSKevin Wolf     BlockDriverState *bs_snapshot;
1609b998875dSKevin Wolf     int ret;
1610b998875dSKevin Wolf 
1611b998875dSKevin Wolf     /* if snapshot, we create a temporary backing file and open it
1612b998875dSKevin Wolf        instead of opening 'filename' directly */
1613b998875dSKevin Wolf 
1614b998875dSKevin Wolf     /* Get the required size from the image */
1615f187743aSKevin Wolf     total_size = bdrv_getlength(bs);
1616f187743aSKevin Wolf     if (total_size < 0) {
1617f187743aSKevin Wolf         error_setg_errno(errp, -total_size, "Could not get image size");
16181ba4b6a5SBenoît Canet         goto out;
1619f187743aSKevin Wolf     }
1620b998875dSKevin Wolf 
1621b998875dSKevin Wolf     /* Create the temporary image */
16221ba4b6a5SBenoît Canet     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
1623b998875dSKevin Wolf     if (ret < 0) {
1624b998875dSKevin Wolf         error_setg_errno(errp, -ret, "Could not get temporary filename");
16251ba4b6a5SBenoît Canet         goto out;
1626b998875dSKevin Wolf     }
1627b998875dSKevin Wolf 
1628ef810437SMax Reitz     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
1629c282e1fdSChunyan Liu                             &error_abort);
163039101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
1631e43bfd9cSMarkus Armbruster     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
163283d0521aSChunyan Liu     qemu_opts_del(opts);
1633b998875dSKevin Wolf     if (ret < 0) {
1634e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not create temporary overlay '%s': ",
1635e43bfd9cSMarkus Armbruster                       tmp_filename);
16361ba4b6a5SBenoît Canet         goto out;
1637b998875dSKevin Wolf     }
1638b998875dSKevin Wolf 
163973176beeSKevin Wolf     /* Prepare options QDict for the temporary file */
1640b998875dSKevin Wolf     qdict_put(snapshot_options, "file.driver",
1641b998875dSKevin Wolf               qstring_from_str("file"));
1642b998875dSKevin Wolf     qdict_put(snapshot_options, "file.filename",
1643b998875dSKevin Wolf               qstring_from_str(tmp_filename));
1644e6641719SMax Reitz     qdict_put(snapshot_options, "driver",
1645e6641719SMax Reitz               qstring_from_str("qcow2"));
1646b998875dSKevin Wolf 
16475b363937SMax Reitz     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
164873176beeSKevin Wolf     snapshot_options = NULL;
16495b363937SMax Reitz     if (!bs_snapshot) {
16505b363937SMax Reitz         ret = -EINVAL;
16511ba4b6a5SBenoît Canet         goto out;
1652b998875dSKevin Wolf     }
1653b998875dSKevin Wolf 
165466836189SMax Reitz     /* bdrv_append() consumes a strong reference to bs_snapshot (i.e. it will
165566836189SMax Reitz      * call bdrv_unref() on it), so in order to be able to return one, we have
165666836189SMax Reitz      * to increase bs_snapshot's refcount here */
165766836189SMax Reitz     bdrv_ref(bs_snapshot);
1658b998875dSKevin Wolf     bdrv_append(bs_snapshot, bs);
16591ba4b6a5SBenoît Canet 
166066836189SMax Reitz     g_free(tmp_filename);
166166836189SMax Reitz     return bs_snapshot;
166266836189SMax Reitz 
16631ba4b6a5SBenoît Canet out:
166473176beeSKevin Wolf     QDECREF(snapshot_options);
16651ba4b6a5SBenoît Canet     g_free(tmp_filename);
166666836189SMax Reitz     return NULL;
1667b998875dSKevin Wolf }
1668b998875dSKevin Wolf 
1669da557aacSMax Reitz /*
1670b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
1671de9c0cecSKevin Wolf  *
1672de9c0cecSKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
1673de9c0cecSKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
1674de9c0cecSKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
1675de9c0cecSKevin Wolf  * dictionary, it needs to use QINCREF() before calling bdrv_open.
1676f67503e5SMax Reitz  *
1677f67503e5SMax Reitz  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
1678f67503e5SMax Reitz  * If it is not NULL, the referenced BDS will be reused.
1679ddf5636dSMax Reitz  *
1680ddf5636dSMax Reitz  * The reference parameter may be used to specify an existing block device which
1681ddf5636dSMax Reitz  * should be opened. If specified, neither options nor a filename may be given,
1682ddf5636dSMax Reitz  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
1683b6ce07aaSKevin Wolf  */
16845b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
16855b363937SMax Reitz                                            const char *reference,
16865b363937SMax Reitz                                            QDict *options, int flags,
1687f3930ed0SKevin Wolf                                            BlockDriverState *parent,
16885b363937SMax Reitz                                            const BdrvChildRole *child_role,
16895b363937SMax Reitz                                            Error **errp)
1690ea2384d3Sbellard {
1691b6ce07aaSKevin Wolf     int ret;
16929a4f4c31SKevin Wolf     BdrvChild *file = NULL;
16939a4f4c31SKevin Wolf     BlockDriverState *bs;
1694ce343771SMax Reitz     BlockDriver *drv = NULL;
169574fe54f2SKevin Wolf     const char *drvname;
16963e8c2e57SAlberto Garcia     const char *backing;
169734b5d2c6SMax Reitz     Error *local_err = NULL;
169873176beeSKevin Wolf     QDict *snapshot_options = NULL;
1699b1e6fc08SKevin Wolf     int snapshot_flags = 0;
170033e3963eSbellard 
1701f3930ed0SKevin Wolf     assert(!child_role || !flags);
1702f3930ed0SKevin Wolf     assert(!child_role == !parent);
1703f67503e5SMax Reitz 
1704ddf5636dSMax Reitz     if (reference) {
1705ddf5636dSMax Reitz         bool options_non_empty = options ? qdict_size(options) : false;
1706ddf5636dSMax Reitz         QDECREF(options);
1707ddf5636dSMax Reitz 
1708ddf5636dSMax Reitz         if (filename || options_non_empty) {
1709ddf5636dSMax Reitz             error_setg(errp, "Cannot reference an existing block device with "
1710ddf5636dSMax Reitz                        "additional options or a new filename");
17115b363937SMax Reitz             return NULL;
1712ddf5636dSMax Reitz         }
1713ddf5636dSMax Reitz 
1714ddf5636dSMax Reitz         bs = bdrv_lookup_bs(reference, reference, errp);
1715ddf5636dSMax Reitz         if (!bs) {
17165b363937SMax Reitz             return NULL;
1717ddf5636dSMax Reitz         }
171876b22320SKevin Wolf 
1719ddf5636dSMax Reitz         bdrv_ref(bs);
17205b363937SMax Reitz         return bs;
1721ddf5636dSMax Reitz     }
1722ddf5636dSMax Reitz 
1723e4e9986bSMarkus Armbruster     bs = bdrv_new();
1724f67503e5SMax Reitz 
1725de9c0cecSKevin Wolf     /* NULL means an empty set of options */
1726de9c0cecSKevin Wolf     if (options == NULL) {
1727de9c0cecSKevin Wolf         options = qdict_new();
1728de9c0cecSKevin Wolf     }
1729de9c0cecSKevin Wolf 
1730145f598eSKevin Wolf     /* json: syntax counts as explicit options, as if in the QDict */
1731de3b53f0SKevin Wolf     parse_json_protocol(options, &filename, &local_err);
1732de3b53f0SKevin Wolf     if (local_err) {
1733de3b53f0SKevin Wolf         goto fail;
1734de3b53f0SKevin Wolf     }
1735de3b53f0SKevin Wolf 
1736145f598eSKevin Wolf     bs->explicit_options = qdict_clone_shallow(options);
1737145f598eSKevin Wolf 
1738f3930ed0SKevin Wolf     if (child_role) {
1739bddcec37SKevin Wolf         bs->inherits_from = parent;
17408e2160e2SKevin Wolf         child_role->inherit_options(&flags, options,
17418e2160e2SKevin Wolf                                     parent->open_flags, parent->options);
1742f3930ed0SKevin Wolf     }
1743f3930ed0SKevin Wolf 
1744de3b53f0SKevin Wolf     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
1745462f5bcfSKevin Wolf     if (local_err) {
1746462f5bcfSKevin Wolf         goto fail;
1747462f5bcfSKevin Wolf     }
1748462f5bcfSKevin Wolf 
1749f87a0e29SAlberto Garcia     /* Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
1750f87a0e29SAlberto Garcia      * FIXME: we're parsing the QDict to avoid having to create a
1751f87a0e29SAlberto Garcia      * QemuOpts just for this, but neither option is optimal. */
1752f87a0e29SAlberto Garcia     if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
1753f87a0e29SAlberto Garcia         !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
1754f87a0e29SAlberto Garcia         flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
1755f87a0e29SAlberto Garcia     } else {
1756f87a0e29SAlberto Garcia         flags &= ~BDRV_O_RDWR;
175714499ea5SAlberto Garcia     }
175814499ea5SAlberto Garcia 
175914499ea5SAlberto Garcia     if (flags & BDRV_O_SNAPSHOT) {
176014499ea5SAlberto Garcia         snapshot_options = qdict_new();
176114499ea5SAlberto Garcia         bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
176214499ea5SAlberto Garcia                                    flags, options);
1763f87a0e29SAlberto Garcia         /* Let bdrv_backing_options() override "read-only" */
1764f87a0e29SAlberto Garcia         qdict_del(options, BDRV_OPT_READ_ONLY);
176514499ea5SAlberto Garcia         bdrv_backing_options(&flags, options, flags, options);
176614499ea5SAlberto Garcia     }
176714499ea5SAlberto Garcia 
176862392ebbSKevin Wolf     bs->open_flags = flags;
176962392ebbSKevin Wolf     bs->options = options;
177062392ebbSKevin Wolf     options = qdict_clone_shallow(options);
177162392ebbSKevin Wolf 
177276c591b0SKevin Wolf     /* Find the right image format driver */
177376c591b0SKevin Wolf     drvname = qdict_get_try_str(options, "driver");
177476c591b0SKevin Wolf     if (drvname) {
177576c591b0SKevin Wolf         drv = bdrv_find_format(drvname);
177676c591b0SKevin Wolf         if (!drv) {
177776c591b0SKevin Wolf             error_setg(errp, "Unknown driver: '%s'", drvname);
177876c591b0SKevin Wolf             goto fail;
177976c591b0SKevin Wolf         }
178076c591b0SKevin Wolf     }
178176c591b0SKevin Wolf 
178276c591b0SKevin Wolf     assert(drvname || !(flags & BDRV_O_PROTOCOL));
178376c591b0SKevin Wolf 
17843e8c2e57SAlberto Garcia     backing = qdict_get_try_str(options, "backing");
17853e8c2e57SAlberto Garcia     if (backing && *backing == '\0') {
17863e8c2e57SAlberto Garcia         flags |= BDRV_O_NO_BACKING;
17873e8c2e57SAlberto Garcia         qdict_del(options, "backing");
17883e8c2e57SAlberto Garcia     }
17893e8c2e57SAlberto Garcia 
1790f500a6d3SKevin Wolf     /* Open image file without format layer */
1791f4788adcSKevin Wolf     if ((flags & BDRV_O_PROTOCOL) == 0) {
17929a4f4c31SKevin Wolf         file = bdrv_open_child(filename, options, "file", bs,
17931fdd6933SKevin Wolf                                &child_file, true, &local_err);
17941fdd6933SKevin Wolf         if (local_err) {
17958bfea15dSKevin Wolf             goto fail;
1796f500a6d3SKevin Wolf         }
1797f4788adcSKevin Wolf     }
1798f500a6d3SKevin Wolf 
179976c591b0SKevin Wolf     /* Image format probing */
180038f3ef57SKevin Wolf     bs->probed = !drv;
180176c591b0SKevin Wolf     if (!drv && file) {
1802cf2ab8fcSKevin Wolf         ret = find_image_format(file, filename, &drv, &local_err);
180317b005f1SKevin Wolf         if (ret < 0) {
180417b005f1SKevin Wolf             goto fail;
180517b005f1SKevin Wolf         }
180662392ebbSKevin Wolf         /*
180762392ebbSKevin Wolf          * This option update would logically belong in bdrv_fill_options(),
180862392ebbSKevin Wolf          * but we first need to open bs->file for the probing to work, while
180962392ebbSKevin Wolf          * opening bs->file already requires the (mostly) final set of options
181062392ebbSKevin Wolf          * so that cache mode etc. can be inherited.
181162392ebbSKevin Wolf          *
181262392ebbSKevin Wolf          * Adding the driver later is somewhat ugly, but it's not an option
181362392ebbSKevin Wolf          * that would ever be inherited, so it's correct. We just need to make
181462392ebbSKevin Wolf          * sure to update both bs->options (which has the full effective
181562392ebbSKevin Wolf          * options for bs) and options (which has file.* already removed).
181662392ebbSKevin Wolf          */
181762392ebbSKevin Wolf         qdict_put(bs->options, "driver", qstring_from_str(drv->format_name));
181862392ebbSKevin Wolf         qdict_put(options, "driver", qstring_from_str(drv->format_name));
181976c591b0SKevin Wolf     } else if (!drv) {
18202a05cbe4SMax Reitz         error_setg(errp, "Must specify either driver or file");
18218bfea15dSKevin Wolf         goto fail;
18222a05cbe4SMax Reitz     }
1823f500a6d3SKevin Wolf 
182453a29513SMax Reitz     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
182553a29513SMax Reitz     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
182653a29513SMax Reitz     /* file must be NULL if a protocol BDS is about to be created
182753a29513SMax Reitz      * (the inverse results in an error message from bdrv_open_common()) */
182853a29513SMax Reitz     assert(!(flags & BDRV_O_PROTOCOL) || !file);
182953a29513SMax Reitz 
1830b6ce07aaSKevin Wolf     /* Open the image */
183182dc8b41SKevin Wolf     ret = bdrv_open_common(bs, file, options, &local_err);
1832b6ce07aaSKevin Wolf     if (ret < 0) {
18338bfea15dSKevin Wolf         goto fail;
18346987307cSChristoph Hellwig     }
18356987307cSChristoph Hellwig 
18362a05cbe4SMax Reitz     if (file && (bs->file != file)) {
18379a4f4c31SKevin Wolf         bdrv_unref_child(bs, file);
1838f500a6d3SKevin Wolf         file = NULL;
1839f500a6d3SKevin Wolf     }
1840f500a6d3SKevin Wolf 
1841b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
18429156df12SPaolo Bonzini     if ((flags & BDRV_O_NO_BACKING) == 0) {
1843d9b7b057SKevin Wolf         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
1844b6ce07aaSKevin Wolf         if (ret < 0) {
1845b6ad491aSKevin Wolf             goto close_and_fail;
1846b6ce07aaSKevin Wolf         }
1847b6ce07aaSKevin Wolf     }
1848b6ce07aaSKevin Wolf 
184991af7014SMax Reitz     bdrv_refresh_filename(bs);
185091af7014SMax Reitz 
1851b6ad491aSKevin Wolf     /* Check if any unknown options were used */
18525acd9d81SMax Reitz     if (options && (qdict_size(options) != 0)) {
1853b6ad491aSKevin Wolf         const QDictEntry *entry = qdict_first(options);
18545acd9d81SMax Reitz         if (flags & BDRV_O_PROTOCOL) {
18555acd9d81SMax Reitz             error_setg(errp, "Block protocol '%s' doesn't support the option "
18565acd9d81SMax Reitz                        "'%s'", drv->format_name, entry->key);
18575acd9d81SMax Reitz         } else {
1858d0e46a55SMax Reitz             error_setg(errp,
1859d0e46a55SMax Reitz                        "Block format '%s' does not support the option '%s'",
1860d0e46a55SMax Reitz                        drv->format_name, entry->key);
18615acd9d81SMax Reitz         }
1862b6ad491aSKevin Wolf 
1863b6ad491aSKevin Wolf         goto close_and_fail;
1864b6ad491aSKevin Wolf     }
1865b6ad491aSKevin Wolf 
1866b6ce07aaSKevin Wolf     if (!bdrv_key_required(bs)) {
18675c8cab48SKevin Wolf         bdrv_parent_cb_change_media(bs, true);
1868c3adb58fSMarkus Armbruster     } else if (!runstate_check(RUN_STATE_PRELAUNCH)
1869c3adb58fSMarkus Armbruster                && !runstate_check(RUN_STATE_INMIGRATE)
1870c3adb58fSMarkus Armbruster                && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */
1871c3adb58fSMarkus Armbruster         error_setg(errp,
1872c3adb58fSMarkus Armbruster                    "Guest must be stopped for opening of encrypted image");
1873c3adb58fSMarkus Armbruster         goto close_and_fail;
1874b6ce07aaSKevin Wolf     }
1875b6ce07aaSKevin Wolf 
1876c3adb58fSMarkus Armbruster     QDECREF(options);
1877dd62f1caSKevin Wolf 
1878dd62f1caSKevin Wolf     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
1879dd62f1caSKevin Wolf      * temporary snapshot afterwards. */
1880dd62f1caSKevin Wolf     if (snapshot_flags) {
188166836189SMax Reitz         BlockDriverState *snapshot_bs;
188266836189SMax Reitz         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
188366836189SMax Reitz                                                 snapshot_options, &local_err);
188473176beeSKevin Wolf         snapshot_options = NULL;
1885dd62f1caSKevin Wolf         if (local_err) {
1886dd62f1caSKevin Wolf             goto close_and_fail;
1887dd62f1caSKevin Wolf         }
188866836189SMax Reitz         /* We are not going to return bs but the overlay on top of it
188966836189SMax Reitz          * (snapshot_bs); thus, we have to drop the strong reference to bs
18905b363937SMax Reitz          * (which we obtained by calling bdrv_new()). bs will not be deleted,
18915b363937SMax Reitz          * though, because the overlay still has a reference to it. */
189266836189SMax Reitz         bdrv_unref(bs);
189366836189SMax Reitz         bs = snapshot_bs;
189466836189SMax Reitz     }
189566836189SMax Reitz 
18965b363937SMax Reitz     return bs;
1897b6ce07aaSKevin Wolf 
18988bfea15dSKevin Wolf fail:
1899f500a6d3SKevin Wolf     if (file != NULL) {
19009a4f4c31SKevin Wolf         bdrv_unref_child(bs, file);
1901f500a6d3SKevin Wolf     }
190273176beeSKevin Wolf     QDECREF(snapshot_options);
1903145f598eSKevin Wolf     QDECREF(bs->explicit_options);
1904de9c0cecSKevin Wolf     QDECREF(bs->options);
1905b6ad491aSKevin Wolf     QDECREF(options);
1906de9c0cecSKevin Wolf     bs->options = NULL;
1907f67503e5SMax Reitz     bdrv_unref(bs);
190834b5d2c6SMax Reitz     error_propagate(errp, local_err);
19095b363937SMax Reitz     return NULL;
1910de9c0cecSKevin Wolf 
1911b6ad491aSKevin Wolf close_and_fail:
1912f67503e5SMax Reitz     bdrv_unref(bs);
191373176beeSKevin Wolf     QDECREF(snapshot_options);
1914b6ad491aSKevin Wolf     QDECREF(options);
191534b5d2c6SMax Reitz     error_propagate(errp, local_err);
19165b363937SMax Reitz     return NULL;
1917b6ce07aaSKevin Wolf }
1918b6ce07aaSKevin Wolf 
19195b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference,
19205b363937SMax Reitz                             QDict *options, int flags, Error **errp)
1921f3930ed0SKevin Wolf {
19225b363937SMax Reitz     return bdrv_open_inherit(filename, reference, options, flags, NULL,
1923ce343771SMax Reitz                              NULL, errp);
1924f3930ed0SKevin Wolf }
1925f3930ed0SKevin Wolf 
1926e971aa12SJeff Cody typedef struct BlockReopenQueueEntry {
1927e971aa12SJeff Cody      bool prepared;
1928e971aa12SJeff Cody      BDRVReopenState state;
1929e971aa12SJeff Cody      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1930e971aa12SJeff Cody } BlockReopenQueueEntry;
1931e971aa12SJeff Cody 
1932e971aa12SJeff Cody /*
1933e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
1934e971aa12SJeff Cody  * reopen of multiple devices.
1935e971aa12SJeff Cody  *
1936e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
1937e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
1938e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
1939e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
1940e971aa12SJeff Cody  * atomic 'set'.
1941e971aa12SJeff Cody  *
1942e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
1943e971aa12SJeff Cody  *
19444d2cb092SKevin Wolf  * options contains the changed options for the associated bs
19454d2cb092SKevin Wolf  * (the BlockReopenQueue takes ownership)
19464d2cb092SKevin Wolf  *
1947e971aa12SJeff Cody  * flags contains the open flags for the associated bs
1948e971aa12SJeff Cody  *
1949e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
1950e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
1951e971aa12SJeff Cody  *
1952e971aa12SJeff Cody  */
195328518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
19544d2cb092SKevin Wolf                                                  BlockDriverState *bs,
195528518102SKevin Wolf                                                  QDict *options,
195628518102SKevin Wolf                                                  int flags,
195728518102SKevin Wolf                                                  const BdrvChildRole *role,
195828518102SKevin Wolf                                                  QDict *parent_options,
195928518102SKevin Wolf                                                  int parent_flags)
1960e971aa12SJeff Cody {
1961e971aa12SJeff Cody     assert(bs != NULL);
1962e971aa12SJeff Cody 
1963e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
196467251a31SKevin Wolf     BdrvChild *child;
1965145f598eSKevin Wolf     QDict *old_options, *explicit_options;
196667251a31SKevin Wolf 
1967e971aa12SJeff Cody     if (bs_queue == NULL) {
1968e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
1969e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
1970e971aa12SJeff Cody     }
1971e971aa12SJeff Cody 
19724d2cb092SKevin Wolf     if (!options) {
19734d2cb092SKevin Wolf         options = qdict_new();
19744d2cb092SKevin Wolf     }
19754d2cb092SKevin Wolf 
19765b7ba05fSAlberto Garcia     /* Check if this BlockDriverState is already in the queue */
19775b7ba05fSAlberto Garcia     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
19785b7ba05fSAlberto Garcia         if (bs == bs_entry->state.bs) {
19795b7ba05fSAlberto Garcia             break;
19805b7ba05fSAlberto Garcia         }
19815b7ba05fSAlberto Garcia     }
19825b7ba05fSAlberto Garcia 
198328518102SKevin Wolf     /*
198428518102SKevin Wolf      * Precedence of options:
198528518102SKevin Wolf      * 1. Explicitly passed in options (highest)
198691a097e7SKevin Wolf      * 2. Set in flags (only for top level)
1987145f598eSKevin Wolf      * 3. Retained from explicitly set options of bs
19888e2160e2SKevin Wolf      * 4. Inherited from parent node
198928518102SKevin Wolf      * 5. Retained from effective options of bs
199028518102SKevin Wolf      */
199128518102SKevin Wolf 
199291a097e7SKevin Wolf     if (!parent_options) {
199391a097e7SKevin Wolf         /*
199491a097e7SKevin Wolf          * Any setting represented by flags is always updated. If the
199591a097e7SKevin Wolf          * corresponding QDict option is set, it takes precedence. Otherwise
199691a097e7SKevin Wolf          * the flag is translated into a QDict option. The old setting of bs is
199791a097e7SKevin Wolf          * not considered.
199891a097e7SKevin Wolf          */
199991a097e7SKevin Wolf         update_options_from_flags(options, flags);
200091a097e7SKevin Wolf     }
200191a097e7SKevin Wolf 
2002145f598eSKevin Wolf     /* Old explicitly set values (don't overwrite by inherited value) */
20035b7ba05fSAlberto Garcia     if (bs_entry) {
20045b7ba05fSAlberto Garcia         old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
20055b7ba05fSAlberto Garcia     } else {
2006145f598eSKevin Wolf         old_options = qdict_clone_shallow(bs->explicit_options);
20075b7ba05fSAlberto Garcia     }
2008145f598eSKevin Wolf     bdrv_join_options(bs, options, old_options);
2009145f598eSKevin Wolf     QDECREF(old_options);
2010145f598eSKevin Wolf 
2011145f598eSKevin Wolf     explicit_options = qdict_clone_shallow(options);
2012145f598eSKevin Wolf 
201328518102SKevin Wolf     /* Inherit from parent node */
201428518102SKevin Wolf     if (parent_options) {
201528518102SKevin Wolf         assert(!flags);
20168e2160e2SKevin Wolf         role->inherit_options(&flags, options, parent_flags, parent_options);
201728518102SKevin Wolf     }
201828518102SKevin Wolf 
201928518102SKevin Wolf     /* Old values are used for options that aren't set yet */
20204d2cb092SKevin Wolf     old_options = qdict_clone_shallow(bs->options);
2021cddff5baSKevin Wolf     bdrv_join_options(bs, options, old_options);
20224d2cb092SKevin Wolf     QDECREF(old_options);
20234d2cb092SKevin Wolf 
2024f1f25a2eSKevin Wolf     /* bdrv_open() masks this flag out */
2025f1f25a2eSKevin Wolf     flags &= ~BDRV_O_PROTOCOL;
2026f1f25a2eSKevin Wolf 
202767251a31SKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
20284c9dfe5dSKevin Wolf         QDict *new_child_options;
20294c9dfe5dSKevin Wolf         char *child_key_dot;
203067251a31SKevin Wolf 
20314c9dfe5dSKevin Wolf         /* reopen can only change the options of block devices that were
20324c9dfe5dSKevin Wolf          * implicitly created and inherited options. For other (referenced)
20334c9dfe5dSKevin Wolf          * block devices, a syntax like "backing.foo" results in an error. */
203467251a31SKevin Wolf         if (child->bs->inherits_from != bs) {
203567251a31SKevin Wolf             continue;
203667251a31SKevin Wolf         }
203767251a31SKevin Wolf 
20384c9dfe5dSKevin Wolf         child_key_dot = g_strdup_printf("%s.", child->name);
20394c9dfe5dSKevin Wolf         qdict_extract_subqdict(options, &new_child_options, child_key_dot);
20404c9dfe5dSKevin Wolf         g_free(child_key_dot);
20414c9dfe5dSKevin Wolf 
204228518102SKevin Wolf         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
204328518102SKevin Wolf                                 child->role, options, flags);
2044e971aa12SJeff Cody     }
2045e971aa12SJeff Cody 
20465b7ba05fSAlberto Garcia     if (!bs_entry) {
2047e971aa12SJeff Cody         bs_entry = g_new0(BlockReopenQueueEntry, 1);
2048e971aa12SJeff Cody         QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
20495b7ba05fSAlberto Garcia     } else {
20505b7ba05fSAlberto Garcia         QDECREF(bs_entry->state.options);
20515b7ba05fSAlberto Garcia         QDECREF(bs_entry->state.explicit_options);
20525b7ba05fSAlberto Garcia     }
2053e971aa12SJeff Cody 
2054e971aa12SJeff Cody     bs_entry->state.bs = bs;
20554d2cb092SKevin Wolf     bs_entry->state.options = options;
2056145f598eSKevin Wolf     bs_entry->state.explicit_options = explicit_options;
2057e971aa12SJeff Cody     bs_entry->state.flags = flags;
2058e971aa12SJeff Cody 
2059e971aa12SJeff Cody     return bs_queue;
2060e971aa12SJeff Cody }
2061e971aa12SJeff Cody 
206228518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
206328518102SKevin Wolf                                     BlockDriverState *bs,
206428518102SKevin Wolf                                     QDict *options, int flags)
206528518102SKevin Wolf {
206628518102SKevin Wolf     return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
206728518102SKevin Wolf                                    NULL, NULL, 0);
206828518102SKevin Wolf }
206928518102SKevin Wolf 
2070e971aa12SJeff Cody /*
2071e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
2072e971aa12SJeff Cody  *
2073e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
2074e971aa12SJeff Cody  * via bdrv_reopen_queue().
2075e971aa12SJeff Cody  *
2076e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
2077e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
2078e971aa12SJeff Cody  * device will cause all device changes to be abandonded, and intermediate
2079e971aa12SJeff Cody  * data cleaned up.
2080e971aa12SJeff Cody  *
2081e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
2082e971aa12SJeff Cody  * to all devices.
2083e971aa12SJeff Cody  *
2084e971aa12SJeff Cody  */
2085e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
2086e971aa12SJeff Cody {
2087e971aa12SJeff Cody     int ret = -1;
2088e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
2089e971aa12SJeff Cody     Error *local_err = NULL;
2090e971aa12SJeff Cody 
2091e971aa12SJeff Cody     assert(bs_queue != NULL);
2092e971aa12SJeff Cody 
2093e971aa12SJeff Cody     bdrv_drain_all();
2094e971aa12SJeff Cody 
2095e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2096e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
2097e971aa12SJeff Cody             error_propagate(errp, local_err);
2098e971aa12SJeff Cody             goto cleanup;
2099e971aa12SJeff Cody         }
2100e971aa12SJeff Cody         bs_entry->prepared = true;
2101e971aa12SJeff Cody     }
2102e971aa12SJeff Cody 
2103e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
2104e971aa12SJeff Cody      * changes
2105e971aa12SJeff Cody      */
2106e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2107e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
2108e971aa12SJeff Cody     }
2109e971aa12SJeff Cody 
2110e971aa12SJeff Cody     ret = 0;
2111e971aa12SJeff Cody 
2112e971aa12SJeff Cody cleanup:
2113e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
2114e971aa12SJeff Cody         if (ret && bs_entry->prepared) {
2115e971aa12SJeff Cody             bdrv_reopen_abort(&bs_entry->state);
2116145f598eSKevin Wolf         } else if (ret) {
2117145f598eSKevin Wolf             QDECREF(bs_entry->state.explicit_options);
2118e971aa12SJeff Cody         }
21194d2cb092SKevin Wolf         QDECREF(bs_entry->state.options);
2120e971aa12SJeff Cody         g_free(bs_entry);
2121e971aa12SJeff Cody     }
2122e971aa12SJeff Cody     g_free(bs_queue);
2123e971aa12SJeff Cody     return ret;
2124e971aa12SJeff Cody }
2125e971aa12SJeff Cody 
2126e971aa12SJeff Cody 
2127e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */
2128e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
2129e971aa12SJeff Cody {
2130e971aa12SJeff Cody     int ret = -1;
2131e971aa12SJeff Cody     Error *local_err = NULL;
21324d2cb092SKevin Wolf     BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
2133e971aa12SJeff Cody 
2134e971aa12SJeff Cody     ret = bdrv_reopen_multiple(queue, &local_err);
2135e971aa12SJeff Cody     if (local_err != NULL) {
2136e971aa12SJeff Cody         error_propagate(errp, local_err);
2137e971aa12SJeff Cody     }
2138e971aa12SJeff Cody     return ret;
2139e971aa12SJeff Cody }
2140e971aa12SJeff Cody 
2141e971aa12SJeff Cody 
2142e971aa12SJeff Cody /*
2143e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
2144e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
2145e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
2146e971aa12SJeff Cody  *
2147e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
2148e971aa12SJeff Cody  * flags are the new open flags
2149e971aa12SJeff Cody  * queue is the reopen queue
2150e971aa12SJeff Cody  *
2151e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
2152e971aa12SJeff Cody  * as well.
2153e971aa12SJeff Cody  *
2154e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
2155e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
2156e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
2157e971aa12SJeff Cody  *
2158e971aa12SJeff Cody  */
2159e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
2160e971aa12SJeff Cody                         Error **errp)
2161e971aa12SJeff Cody {
2162e971aa12SJeff Cody     int ret = -1;
2163e971aa12SJeff Cody     Error *local_err = NULL;
2164e971aa12SJeff Cody     BlockDriver *drv;
2165ccf9dc07SKevin Wolf     QemuOpts *opts;
2166ccf9dc07SKevin Wolf     const char *value;
2167e971aa12SJeff Cody 
2168e971aa12SJeff Cody     assert(reopen_state != NULL);
2169e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
2170e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2171e971aa12SJeff Cody 
2172ccf9dc07SKevin Wolf     /* Process generic block layer options */
2173ccf9dc07SKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2174ccf9dc07SKevin Wolf     qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
2175ccf9dc07SKevin Wolf     if (local_err) {
2176ccf9dc07SKevin Wolf         error_propagate(errp, local_err);
2177ccf9dc07SKevin Wolf         ret = -EINVAL;
2178ccf9dc07SKevin Wolf         goto error;
2179ccf9dc07SKevin Wolf     }
2180ccf9dc07SKevin Wolf 
218191a097e7SKevin Wolf     update_flags_from_options(&reopen_state->flags, opts);
218291a097e7SKevin Wolf 
2183ccf9dc07SKevin Wolf     /* node-name and driver must be unchanged. Put them back into the QDict, so
2184ccf9dc07SKevin Wolf      * that they are checked at the end of this function. */
2185ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "node-name");
2186ccf9dc07SKevin Wolf     if (value) {
2187ccf9dc07SKevin Wolf         qdict_put(reopen_state->options, "node-name", qstring_from_str(value));
2188ccf9dc07SKevin Wolf     }
2189ccf9dc07SKevin Wolf 
2190ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "driver");
2191ccf9dc07SKevin Wolf     if (value) {
2192ccf9dc07SKevin Wolf         qdict_put(reopen_state->options, "driver", qstring_from_str(value));
2193ccf9dc07SKevin Wolf     }
2194ccf9dc07SKevin Wolf 
2195e971aa12SJeff Cody     /* if we are to stay read-only, do not allow permission change
2196e971aa12SJeff Cody      * to r/w */
2197e971aa12SJeff Cody     if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
2198e971aa12SJeff Cody         reopen_state->flags & BDRV_O_RDWR) {
219981e5f78aSAlberto Garcia         error_setg(errp, "Node '%s' is read only",
220081e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
2201e971aa12SJeff Cody         goto error;
2202e971aa12SJeff Cody     }
2203e971aa12SJeff Cody 
2204e971aa12SJeff Cody 
2205e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
2206e971aa12SJeff Cody     if (ret) {
2207455b0fdeSEric Blake         error_setg_errno(errp, -ret, "Error flushing drive");
2208e971aa12SJeff Cody         goto error;
2209e971aa12SJeff Cody     }
2210e971aa12SJeff Cody 
2211e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
2212e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
2213e971aa12SJeff Cody         if (ret) {
2214e971aa12SJeff Cody             if (local_err != NULL) {
2215e971aa12SJeff Cody                 error_propagate(errp, local_err);
2216e971aa12SJeff Cody             } else {
2217d8b6895fSLuiz Capitulino                 error_setg(errp, "failed while preparing to reopen image '%s'",
2218e971aa12SJeff Cody                            reopen_state->bs->filename);
2219e971aa12SJeff Cody             }
2220e971aa12SJeff Cody             goto error;
2221e971aa12SJeff Cody         }
2222e971aa12SJeff Cody     } else {
2223e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
2224e971aa12SJeff Cody          * handler for each supported drv. */
222581e5f78aSAlberto Garcia         error_setg(errp, "Block format '%s' used by node '%s' "
222681e5f78aSAlberto Garcia                    "does not support reopening files", drv->format_name,
222781e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
2228e971aa12SJeff Cody         ret = -1;
2229e971aa12SJeff Cody         goto error;
2230e971aa12SJeff Cody     }
2231e971aa12SJeff Cody 
22324d2cb092SKevin Wolf     /* Options that are not handled are only okay if they are unchanged
22334d2cb092SKevin Wolf      * compared to the old state. It is expected that some options are only
22344d2cb092SKevin Wolf      * used for the initial open, but not reopen (e.g. filename) */
22354d2cb092SKevin Wolf     if (qdict_size(reopen_state->options)) {
22364d2cb092SKevin Wolf         const QDictEntry *entry = qdict_first(reopen_state->options);
22374d2cb092SKevin Wolf 
22384d2cb092SKevin Wolf         do {
22394d2cb092SKevin Wolf             QString *new_obj = qobject_to_qstring(entry->value);
22404d2cb092SKevin Wolf             const char *new = qstring_get_str(new_obj);
22414d2cb092SKevin Wolf             const char *old = qdict_get_try_str(reopen_state->bs->options,
22424d2cb092SKevin Wolf                                                 entry->key);
22434d2cb092SKevin Wolf 
22444d2cb092SKevin Wolf             if (!old || strcmp(new, old)) {
22454d2cb092SKevin Wolf                 error_setg(errp, "Cannot change the option '%s'", entry->key);
22464d2cb092SKevin Wolf                 ret = -EINVAL;
22474d2cb092SKevin Wolf                 goto error;
22484d2cb092SKevin Wolf             }
22494d2cb092SKevin Wolf         } while ((entry = qdict_next(reopen_state->options, entry)));
22504d2cb092SKevin Wolf     }
22514d2cb092SKevin Wolf 
2252e971aa12SJeff Cody     ret = 0;
2253e971aa12SJeff Cody 
2254e971aa12SJeff Cody error:
2255ccf9dc07SKevin Wolf     qemu_opts_del(opts);
2256e971aa12SJeff Cody     return ret;
2257e971aa12SJeff Cody }
2258e971aa12SJeff Cody 
2259e971aa12SJeff Cody /*
2260e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
2261e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
2262e971aa12SJeff Cody  * the active BlockDriverState contents.
2263e971aa12SJeff Cody  */
2264e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
2265e971aa12SJeff Cody {
2266e971aa12SJeff Cody     BlockDriver *drv;
2267e971aa12SJeff Cody 
2268e971aa12SJeff Cody     assert(reopen_state != NULL);
2269e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2270e971aa12SJeff Cody     assert(drv != NULL);
2271e971aa12SJeff Cody 
2272e971aa12SJeff Cody     /* If there are any driver level actions to take */
2273e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
2274e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
2275e971aa12SJeff Cody     }
2276e971aa12SJeff Cody 
2277e971aa12SJeff Cody     /* set BDS specific flags now */
2278145f598eSKevin Wolf     QDECREF(reopen_state->bs->explicit_options);
2279145f598eSKevin Wolf 
2280145f598eSKevin Wolf     reopen_state->bs->explicit_options   = reopen_state->explicit_options;
2281e971aa12SJeff Cody     reopen_state->bs->open_flags         = reopen_state->flags;
2282e971aa12SJeff Cody     reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
2283355ef4acSKevin Wolf 
22843baca891SKevin Wolf     bdrv_refresh_limits(reopen_state->bs, NULL);
2285e971aa12SJeff Cody }
2286e971aa12SJeff Cody 
2287e971aa12SJeff Cody /*
2288e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
2289e971aa12SJeff Cody  * reopen_state
2290e971aa12SJeff Cody  */
2291e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
2292e971aa12SJeff Cody {
2293e971aa12SJeff Cody     BlockDriver *drv;
2294e971aa12SJeff Cody 
2295e971aa12SJeff Cody     assert(reopen_state != NULL);
2296e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2297e971aa12SJeff Cody     assert(drv != NULL);
2298e971aa12SJeff Cody 
2299e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
2300e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
2301e971aa12SJeff Cody     }
2302145f598eSKevin Wolf 
2303145f598eSKevin Wolf     QDECREF(reopen_state->explicit_options);
2304e971aa12SJeff Cody }
2305e971aa12SJeff Cody 
2306e971aa12SJeff Cody 
230764dff520SMax Reitz static void bdrv_close(BlockDriverState *bs)
2308fc01f7e7Sbellard {
230933384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
231033384421SMax Reitz 
2311ca9bd24cSMax Reitz     assert(!bs->job);
231230f55fb8SMax Reitz     assert(!bs->refcnt);
231399b7e775SAlberto Garcia 
2314fc27291dSPaolo Bonzini     bdrv_drained_begin(bs); /* complete I/O */
231558fda173SStefan Hajnoczi     bdrv_flush(bs);
231653ec73e2SFam Zheng     bdrv_drain(bs); /* in case flush left pending I/O */
2317fc27291dSPaolo Bonzini 
2318c5acdc9aSMax Reitz     bdrv_release_named_dirty_bitmaps(bs);
2319c5acdc9aSMax Reitz     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
2320c5acdc9aSMax Reitz 
23213cbc002cSPaolo Bonzini     if (bs->drv) {
23226e93e7c4SKevin Wolf         BdrvChild *child, *next;
23236e93e7c4SKevin Wolf 
23249a7dedbcSKevin Wolf         bs->drv->bdrv_close(bs);
23259a4f4c31SKevin Wolf         bs->drv = NULL;
23269a7dedbcSKevin Wolf 
23279a7dedbcSKevin Wolf         bdrv_set_backing_hd(bs, NULL);
23289a7dedbcSKevin Wolf 
23299a4f4c31SKevin Wolf         if (bs->file != NULL) {
23309a4f4c31SKevin Wolf             bdrv_unref_child(bs, bs->file);
23319a4f4c31SKevin Wolf             bs->file = NULL;
23329a4f4c31SKevin Wolf         }
23339a4f4c31SKevin Wolf 
23346e93e7c4SKevin Wolf         QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
233533a60407SKevin Wolf             /* TODO Remove bdrv_unref() from drivers' close function and use
233633a60407SKevin Wolf              * bdrv_unref_child() here */
2337bddcec37SKevin Wolf             if (child->bs->inherits_from == bs) {
2338bddcec37SKevin Wolf                 child->bs->inherits_from = NULL;
2339bddcec37SKevin Wolf             }
234033a60407SKevin Wolf             bdrv_detach_child(child);
23416e93e7c4SKevin Wolf         }
23426e93e7c4SKevin Wolf 
23437267c094SAnthony Liguori         g_free(bs->opaque);
2344ea2384d3Sbellard         bs->opaque = NULL;
234553fec9d3SStefan Hajnoczi         bs->copy_on_read = 0;
2346a275fa42SPaolo Bonzini         bs->backing_file[0] = '\0';
2347a275fa42SPaolo Bonzini         bs->backing_format[0] = '\0';
23486405875cSPaolo Bonzini         bs->total_sectors = 0;
234954115412SEric Blake         bs->encrypted = false;
235054115412SEric Blake         bs->valid_key = false;
235154115412SEric Blake         bs->sg = false;
2352de9c0cecSKevin Wolf         QDECREF(bs->options);
2353145f598eSKevin Wolf         QDECREF(bs->explicit_options);
2354de9c0cecSKevin Wolf         bs->options = NULL;
235591af7014SMax Reitz         QDECREF(bs->full_open_options);
235691af7014SMax Reitz         bs->full_open_options = NULL;
23579ca11154SPavel Hrdina     }
235866f82ceeSKevin Wolf 
235933384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
236033384421SMax Reitz         g_free(ban);
236133384421SMax Reitz     }
236233384421SMax Reitz     QLIST_INIT(&bs->aio_notifiers);
2363fc27291dSPaolo Bonzini     bdrv_drained_end(bs);
2364b338082bSbellard }
2365b338082bSbellard 
23662bc93fedSMORITA Kazutaka void bdrv_close_all(void)
23672bc93fedSMORITA Kazutaka {
2368a1a2af07SKevin Wolf     block_job_cancel_sync_all();
2369cd7fca95SKevin Wolf     nbd_export_close_all();
23702bc93fedSMORITA Kazutaka 
2371ca9bd24cSMax Reitz     /* Drop references from requests still in flight, such as canceled block
2372ca9bd24cSMax Reitz      * jobs whose AIO context has not been polled yet */
2373ca9bd24cSMax Reitz     bdrv_drain_all();
2374ca9bd24cSMax Reitz 
2375ca9bd24cSMax Reitz     blk_remove_all_bs();
2376ca9bd24cSMax Reitz     blockdev_close_all_bdrv_states();
2377ca9bd24cSMax Reitz 
2378a1a2af07SKevin Wolf     assert(QTAILQ_EMPTY(&all_bdrv_states));
23792bc93fedSMORITA Kazutaka }
23802bc93fedSMORITA Kazutaka 
2381dd62f1caSKevin Wolf static void change_parent_backing_link(BlockDriverState *from,
2382dd62f1caSKevin Wolf                                        BlockDriverState *to)
2383dd62f1caSKevin Wolf {
23849bd910e2SMax Reitz     BdrvChild *c, *next, *to_c;
2385dd62f1caSKevin Wolf 
2386dd62f1caSKevin Wolf     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
23879bd910e2SMax Reitz         if (c->role == &child_backing) {
23889bd910e2SMax Reitz             /* @from is generally not allowed to be a backing file, except for
23899bd910e2SMax Reitz              * when @to is the overlay. In that case, @from may not be replaced
23909bd910e2SMax Reitz              * by @to as @to's backing node. */
23919bd910e2SMax Reitz             QLIST_FOREACH(to_c, &to->children, next) {
23929bd910e2SMax Reitz                 if (to_c == c) {
23939bd910e2SMax Reitz                     break;
23949bd910e2SMax Reitz                 }
23959bd910e2SMax Reitz             }
23969bd910e2SMax Reitz             if (to_c) {
23979bd910e2SMax Reitz                 continue;
23989bd910e2SMax Reitz             }
23999bd910e2SMax Reitz         }
24009bd910e2SMax Reitz 
2401dd62f1caSKevin Wolf         assert(c->role != &child_backing);
2402dd62f1caSKevin Wolf         bdrv_ref(to);
2403e9740bc6SKevin Wolf         bdrv_replace_child(c, to);
2404dd62f1caSKevin Wolf         bdrv_unref(from);
2405dd62f1caSKevin Wolf     }
2406dd62f1caSKevin Wolf }
2407dd62f1caSKevin Wolf 
24088802d1fdSJeff Cody /*
24098802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
24108802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
24118802d1fdSJeff Cody  *
24128802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
24138802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
24148802d1fdSJeff Cody  *
2415bfb197e0SMarkus Armbruster  * bs_new must not be attached to a BlockBackend.
2416f6801b83SJeff Cody  *
24178802d1fdSJeff Cody  * This function does not create any image files.
2418dd62f1caSKevin Wolf  *
2419dd62f1caSKevin Wolf  * bdrv_append() takes ownership of a bs_new reference and unrefs it because
2420dd62f1caSKevin Wolf  * that's what the callers commonly need. bs_new will be referenced by the old
2421dd62f1caSKevin Wolf  * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
2422dd62f1caSKevin Wolf  * reference of its own, it must call bdrv_ref().
24238802d1fdSJeff Cody  */
24248802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top)
24258802d1fdSJeff Cody {
2426dd62f1caSKevin Wolf     assert(!bdrv_requests_pending(bs_top));
2427dd62f1caSKevin Wolf     assert(!bdrv_requests_pending(bs_new));
24288802d1fdSJeff Cody 
2429dd62f1caSKevin Wolf     bdrv_ref(bs_top);
2430dd62f1caSKevin Wolf 
243127ccdd52SKevin Wolf     change_parent_backing_link(bs_top, bs_new);
2432dd62f1caSKevin Wolf     bdrv_set_backing_hd(bs_new, bs_top);
2433dd62f1caSKevin Wolf     bdrv_unref(bs_top);
2434dd62f1caSKevin Wolf 
2435dd62f1caSKevin Wolf     /* bs_new is now referenced by its new parents, we don't need the
2436dd62f1caSKevin Wolf      * additional reference any more. */
2437dd62f1caSKevin Wolf     bdrv_unref(bs_new);
24388802d1fdSJeff Cody }
24398802d1fdSJeff Cody 
24403f09bfbcSKevin Wolf void bdrv_replace_in_backing_chain(BlockDriverState *old, BlockDriverState *new)
24413f09bfbcSKevin Wolf {
24423f09bfbcSKevin Wolf     assert(!bdrv_requests_pending(old));
24433f09bfbcSKevin Wolf     assert(!bdrv_requests_pending(new));
24443f09bfbcSKevin Wolf 
24453f09bfbcSKevin Wolf     bdrv_ref(old);
24463f09bfbcSKevin Wolf 
24473f09bfbcSKevin Wolf     change_parent_backing_link(old, new);
24483f09bfbcSKevin Wolf 
24493f09bfbcSKevin Wolf     bdrv_unref(old);
24503f09bfbcSKevin Wolf }
24513f09bfbcSKevin Wolf 
24524f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs)
2453b338082bSbellard {
24543e914655SPaolo Bonzini     assert(!bs->job);
24553718d8abSFam Zheng     assert(bdrv_op_blocker_is_empty(bs));
24564f6fd349SFam Zheng     assert(!bs->refcnt);
245718846deeSMarkus Armbruster 
2458e1b5c52eSStefan Hajnoczi     bdrv_close(bs);
2459e1b5c52eSStefan Hajnoczi 
24601b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
246163eaaae0SKevin Wolf     if (bs->node_name[0] != '\0') {
246263eaaae0SKevin Wolf         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
246363eaaae0SKevin Wolf     }
24642c1d04e0SMax Reitz     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
24652c1d04e0SMax Reitz 
24667267c094SAnthony Liguori     g_free(bs);
2467fc01f7e7Sbellard }
2468fc01f7e7Sbellard 
2469e97fc193Saliguori /*
2470e97fc193Saliguori  * Run consistency checks on an image
2471e97fc193Saliguori  *
2472e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
2473a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
2474e076f338SKevin Wolf  * check are stored in res.
2475e97fc193Saliguori  */
24764534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
2477e97fc193Saliguori {
2478908bcd54SMax Reitz     if (bs->drv == NULL) {
2479908bcd54SMax Reitz         return -ENOMEDIUM;
2480908bcd54SMax Reitz     }
2481e97fc193Saliguori     if (bs->drv->bdrv_check == NULL) {
2482e97fc193Saliguori         return -ENOTSUP;
2483e97fc193Saliguori     }
2484e97fc193Saliguori 
2485e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
24864534ff54SKevin Wolf     return bs->drv->bdrv_check(bs, res, fix);
2487e97fc193Saliguori }
2488e97fc193Saliguori 
2489756e6736SKevin Wolf /*
2490756e6736SKevin Wolf  * Return values:
2491756e6736SKevin Wolf  * 0        - success
2492756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
2493756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
2494756e6736SKevin Wolf  *            image file header
2495756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
2496756e6736SKevin Wolf  */
2497756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
2498756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
2499756e6736SKevin Wolf {
2500756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
2501469ef350SPaolo Bonzini     int ret;
2502756e6736SKevin Wolf 
25035f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
25045f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
25055f377794SPaolo Bonzini         return -EINVAL;
25065f377794SPaolo Bonzini     }
25075f377794SPaolo Bonzini 
2508756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
2509469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
2510756e6736SKevin Wolf     } else {
2511469ef350SPaolo Bonzini         ret = -ENOTSUP;
2512756e6736SKevin Wolf     }
2513469ef350SPaolo Bonzini 
2514469ef350SPaolo Bonzini     if (ret == 0) {
2515469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
2516469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
2517469ef350SPaolo Bonzini     }
2518469ef350SPaolo Bonzini     return ret;
2519756e6736SKevin Wolf }
2520756e6736SKevin Wolf 
25216ebdcee2SJeff Cody /*
25226ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
25236ebdcee2SJeff Cody  *
25246ebdcee2SJeff Cody  * active is the current topmost image.
25256ebdcee2SJeff Cody  *
25266ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
25276ebdcee2SJeff Cody  * or if active == bs.
25284caf0fcdSJeff Cody  *
25294caf0fcdSJeff Cody  * Returns the bottommost base image if bs == NULL.
25306ebdcee2SJeff Cody  */
25316ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
25326ebdcee2SJeff Cody                                     BlockDriverState *bs)
25336ebdcee2SJeff Cody {
2534760e0063SKevin Wolf     while (active && bs != backing_bs(active)) {
2535760e0063SKevin Wolf         active = backing_bs(active);
25366ebdcee2SJeff Cody     }
25376ebdcee2SJeff Cody 
25384caf0fcdSJeff Cody     return active;
25396ebdcee2SJeff Cody }
25406ebdcee2SJeff Cody 
25414caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */
25424caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs)
25434caf0fcdSJeff Cody {
25444caf0fcdSJeff Cody     return bdrv_find_overlay(bs, NULL);
25456ebdcee2SJeff Cody }
25466ebdcee2SJeff Cody 
25476ebdcee2SJeff Cody /*
25486ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
25496ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
25506ebdcee2SJeff Cody  *
25516ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
25526ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
25536ebdcee2SJeff Cody  *
25546ebdcee2SJeff Cody  * E.g., this will convert the following chain:
25556ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
25566ebdcee2SJeff Cody  *
25576ebdcee2SJeff Cody  * to
25586ebdcee2SJeff Cody  *
25596ebdcee2SJeff Cody  * bottom <- base <- active
25606ebdcee2SJeff Cody  *
25616ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
25626ebdcee2SJeff Cody  *
25636ebdcee2SJeff Cody  * base <- intermediate <- top <- active
25646ebdcee2SJeff Cody  *
25656ebdcee2SJeff Cody  * to
25666ebdcee2SJeff Cody  *
25676ebdcee2SJeff Cody  * base <- active
25686ebdcee2SJeff Cody  *
256954e26900SJeff Cody  * If backing_file_str is non-NULL, it will be used when modifying top's
257054e26900SJeff Cody  * overlay image metadata.
257154e26900SJeff Cody  *
25726ebdcee2SJeff Cody  * Error conditions:
25736ebdcee2SJeff Cody  *  if active == top, that is considered an error
25746ebdcee2SJeff Cody  *
25756ebdcee2SJeff Cody  */
25766ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
257754e26900SJeff Cody                            BlockDriverState *base, const char *backing_file_str)
25786ebdcee2SJeff Cody {
25796ebdcee2SJeff Cody     BlockDriverState *new_top_bs = NULL;
25806ebdcee2SJeff Cody     int ret = -EIO;
25816ebdcee2SJeff Cody 
25826ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
25836ebdcee2SJeff Cody         goto exit;
25846ebdcee2SJeff Cody     }
25856ebdcee2SJeff Cody 
25866ebdcee2SJeff Cody     new_top_bs = bdrv_find_overlay(active, top);
25876ebdcee2SJeff Cody 
25886ebdcee2SJeff Cody     if (new_top_bs == NULL) {
25896ebdcee2SJeff Cody         /* we could not find the image above 'top', this is an error */
25906ebdcee2SJeff Cody         goto exit;
25916ebdcee2SJeff Cody     }
25926ebdcee2SJeff Cody 
2593760e0063SKevin Wolf     /* special case of new_top_bs->backing->bs already pointing to base - nothing
25946ebdcee2SJeff Cody      * to do, no intermediate images */
2595760e0063SKevin Wolf     if (backing_bs(new_top_bs) == base) {
25966ebdcee2SJeff Cody         ret = 0;
25976ebdcee2SJeff Cody         goto exit;
25986ebdcee2SJeff Cody     }
25996ebdcee2SJeff Cody 
26005db15a57SKevin Wolf     /* Make sure that base is in the backing chain of top */
26015db15a57SKevin Wolf     if (!bdrv_chain_contains(top, base)) {
26026ebdcee2SJeff Cody         goto exit;
26036ebdcee2SJeff Cody     }
26046ebdcee2SJeff Cody 
26056ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
26065db15a57SKevin Wolf     backing_file_str = backing_file_str ? backing_file_str : base->filename;
260754e26900SJeff Cody     ret = bdrv_change_backing_file(new_top_bs, backing_file_str,
26085db15a57SKevin Wolf                                    base->drv ? base->drv->format_name : "");
26096ebdcee2SJeff Cody     if (ret) {
26106ebdcee2SJeff Cody         goto exit;
26116ebdcee2SJeff Cody     }
26125db15a57SKevin Wolf     bdrv_set_backing_hd(new_top_bs, base);
26136ebdcee2SJeff Cody 
26146ebdcee2SJeff Cody     ret = 0;
26156ebdcee2SJeff Cody exit:
26166ebdcee2SJeff Cody     return ret;
26176ebdcee2SJeff Cody }
26186ebdcee2SJeff Cody 
261983f64091Sbellard /**
262083f64091Sbellard  * Truncate file to 'offset' bytes (needed only for file protocols)
262183f64091Sbellard  */
262283f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset)
262383f64091Sbellard {
262483f64091Sbellard     BlockDriver *drv = bs->drv;
262551762288SStefan Hajnoczi     int ret;
262683f64091Sbellard     if (!drv)
262719cb3738Sbellard         return -ENOMEDIUM;
262883f64091Sbellard     if (!drv->bdrv_truncate)
262983f64091Sbellard         return -ENOTSUP;
263059f2689dSNaphtali Sprei     if (bs->read_only)
263159f2689dSNaphtali Sprei         return -EACCES;
26329c75e168SJeff Cody 
263351762288SStefan Hajnoczi     ret = drv->bdrv_truncate(bs, offset);
263451762288SStefan Hajnoczi     if (ret == 0) {
263551762288SStefan Hajnoczi         ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
2636ce1ffea8SJohn Snow         bdrv_dirty_bitmap_truncate(bs);
26375c8cab48SKevin Wolf         bdrv_parent_cb_resize(bs);
26383ff2f67aSEvgeny Yakovlev         ++bs->write_gen;
263951762288SStefan Hajnoczi     }
264051762288SStefan Hajnoczi     return ret;
264183f64091Sbellard }
264283f64091Sbellard 
264383f64091Sbellard /**
26444a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
26454a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
26464a1d5e1fSFam Zheng  */
26474a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
26484a1d5e1fSFam Zheng {
26494a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
26504a1d5e1fSFam Zheng     if (!drv) {
26514a1d5e1fSFam Zheng         return -ENOMEDIUM;
26524a1d5e1fSFam Zheng     }
26534a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
26544a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
26554a1d5e1fSFam Zheng     }
26564a1d5e1fSFam Zheng     if (bs->file) {
26579a4f4c31SKevin Wolf         return bdrv_get_allocated_file_size(bs->file->bs);
26584a1d5e1fSFam Zheng     }
26594a1d5e1fSFam Zheng     return -ENOTSUP;
26604a1d5e1fSFam Zheng }
26614a1d5e1fSFam Zheng 
26624a1d5e1fSFam Zheng /**
266365a9bb25SMarkus Armbruster  * Return number of sectors on success, -errno on error.
266483f64091Sbellard  */
266565a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs)
266683f64091Sbellard {
266783f64091Sbellard     BlockDriver *drv = bs->drv;
266865a9bb25SMarkus Armbruster 
266983f64091Sbellard     if (!drv)
267019cb3738Sbellard         return -ENOMEDIUM;
267151762288SStefan Hajnoczi 
2672b94a2610SKevin Wolf     if (drv->has_variable_length) {
2673b94a2610SKevin Wolf         int ret = refresh_total_sectors(bs, bs->total_sectors);
2674b94a2610SKevin Wolf         if (ret < 0) {
2675b94a2610SKevin Wolf             return ret;
2676fc01f7e7Sbellard         }
267746a4e4e6SStefan Hajnoczi     }
267865a9bb25SMarkus Armbruster     return bs->total_sectors;
267965a9bb25SMarkus Armbruster }
268065a9bb25SMarkus Armbruster 
268165a9bb25SMarkus Armbruster /**
268265a9bb25SMarkus Armbruster  * Return length in bytes on success, -errno on error.
268365a9bb25SMarkus Armbruster  * The length is always a multiple of BDRV_SECTOR_SIZE.
268465a9bb25SMarkus Armbruster  */
268565a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs)
268665a9bb25SMarkus Armbruster {
268765a9bb25SMarkus Armbruster     int64_t ret = bdrv_nb_sectors(bs);
268865a9bb25SMarkus Armbruster 
26894a9c9ea0SFam Zheng     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
269065a9bb25SMarkus Armbruster     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
269146a4e4e6SStefan Hajnoczi }
2692fc01f7e7Sbellard 
269319cb3738Sbellard /* return 0 as number of sectors if no device present or error */
269496b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
2695fc01f7e7Sbellard {
269665a9bb25SMarkus Armbruster     int64_t nb_sectors = bdrv_nb_sectors(bs);
269765a9bb25SMarkus Armbruster 
269865a9bb25SMarkus Armbruster     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
2699fc01f7e7Sbellard }
2700cf98951bSbellard 
270154115412SEric Blake bool bdrv_is_read_only(BlockDriverState *bs)
2702b338082bSbellard {
2703b338082bSbellard     return bs->read_only;
2704b338082bSbellard }
2705b338082bSbellard 
270654115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs)
2707985a03b0Sths {
2708985a03b0Sths     return bs->sg;
2709985a03b0Sths }
2710985a03b0Sths 
271154115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs)
2712ea2384d3Sbellard {
2713760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
271454115412SEric Blake         return true;
2715760e0063SKevin Wolf     }
2716ea2384d3Sbellard     return bs->encrypted;
2717ea2384d3Sbellard }
2718ea2384d3Sbellard 
271954115412SEric Blake bool bdrv_key_required(BlockDriverState *bs)
2720c0f4ce77Saliguori {
2721760e0063SKevin Wolf     BdrvChild *backing = bs->backing;
2722c0f4ce77Saliguori 
2723760e0063SKevin Wolf     if (backing && backing->bs->encrypted && !backing->bs->valid_key) {
272454115412SEric Blake         return true;
2725760e0063SKevin Wolf     }
2726c0f4ce77Saliguori     return (bs->encrypted && !bs->valid_key);
2727c0f4ce77Saliguori }
2728c0f4ce77Saliguori 
2729ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key)
2730ea2384d3Sbellard {
2731ea2384d3Sbellard     int ret;
2732760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
2733760e0063SKevin Wolf         ret = bdrv_set_key(bs->backing->bs, key);
2734ea2384d3Sbellard         if (ret < 0)
2735ea2384d3Sbellard             return ret;
2736ea2384d3Sbellard         if (!bs->encrypted)
2737ea2384d3Sbellard             return 0;
2738ea2384d3Sbellard     }
2739fd04a2aeSShahar Havivi     if (!bs->encrypted) {
2740fd04a2aeSShahar Havivi         return -EINVAL;
2741fd04a2aeSShahar Havivi     } else if (!bs->drv || !bs->drv->bdrv_set_key) {
2742fd04a2aeSShahar Havivi         return -ENOMEDIUM;
2743fd04a2aeSShahar Havivi     }
2744c0f4ce77Saliguori     ret = bs->drv->bdrv_set_key(bs, key);
2745bb5fc20fSaliguori     if (ret < 0) {
274654115412SEric Blake         bs->valid_key = false;
2747bb5fc20fSaliguori     } else if (!bs->valid_key) {
2748bb5fc20fSaliguori         /* call the change callback now, we skipped it on open */
274954115412SEric Blake         bs->valid_key = true;
27505c8cab48SKevin Wolf         bdrv_parent_cb_change_media(bs, true);
2751bb5fc20fSaliguori     }
2752c0f4ce77Saliguori     return ret;
2753ea2384d3Sbellard }
2754ea2384d3Sbellard 
27554d2855a3SMarkus Armbruster /*
27564d2855a3SMarkus Armbruster  * Provide an encryption key for @bs.
27574d2855a3SMarkus Armbruster  * If @key is non-null:
27584d2855a3SMarkus Armbruster  *     If @bs is not encrypted, fail.
27594d2855a3SMarkus Armbruster  *     Else if the key is invalid, fail.
27604d2855a3SMarkus Armbruster  *     Else set @bs's key to @key, replacing the existing key, if any.
27614d2855a3SMarkus Armbruster  * If @key is null:
27624d2855a3SMarkus Armbruster  *     If @bs is encrypted and still lacks a key, fail.
27634d2855a3SMarkus Armbruster  *     Else do nothing.
27644d2855a3SMarkus Armbruster  * On failure, store an error object through @errp if non-null.
27654d2855a3SMarkus Armbruster  */
27664d2855a3SMarkus Armbruster void bdrv_add_key(BlockDriverState *bs, const char *key, Error **errp)
27674d2855a3SMarkus Armbruster {
27684d2855a3SMarkus Armbruster     if (key) {
27694d2855a3SMarkus Armbruster         if (!bdrv_is_encrypted(bs)) {
277081e5f78aSAlberto Garcia             error_setg(errp, "Node '%s' is not encrypted",
277181e5f78aSAlberto Garcia                       bdrv_get_device_or_node_name(bs));
27724d2855a3SMarkus Armbruster         } else if (bdrv_set_key(bs, key) < 0) {
2773c6bd8c70SMarkus Armbruster             error_setg(errp, QERR_INVALID_PASSWORD);
27744d2855a3SMarkus Armbruster         }
27754d2855a3SMarkus Armbruster     } else {
27764d2855a3SMarkus Armbruster         if (bdrv_key_required(bs)) {
2777b1ca6391SMarkus Armbruster             error_set(errp, ERROR_CLASS_DEVICE_ENCRYPTED,
2778b1ca6391SMarkus Armbruster                       "'%s' (%s) is encrypted",
277981e5f78aSAlberto Garcia                       bdrv_get_device_or_node_name(bs),
27804d2855a3SMarkus Armbruster                       bdrv_get_encrypted_filename(bs));
27814d2855a3SMarkus Armbruster         }
27824d2855a3SMarkus Armbruster     }
27834d2855a3SMarkus Armbruster }
27844d2855a3SMarkus Armbruster 
2785f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
2786ea2384d3Sbellard {
2787f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
2788ea2384d3Sbellard }
2789ea2384d3Sbellard 
2790ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b)
2791ada42401SStefan Hajnoczi {
2792ada42401SStefan Hajnoczi     return strcmp(a, b);
2793ada42401SStefan Hajnoczi }
2794ada42401SStefan Hajnoczi 
2795ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
2796ea2384d3Sbellard                          void *opaque)
2797ea2384d3Sbellard {
2798ea2384d3Sbellard     BlockDriver *drv;
2799e855e4fbSJeff Cody     int count = 0;
2800ada42401SStefan Hajnoczi     int i;
2801e855e4fbSJeff Cody     const char **formats = NULL;
2802ea2384d3Sbellard 
28038a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
2804e855e4fbSJeff Cody         if (drv->format_name) {
2805e855e4fbSJeff Cody             bool found = false;
2806e855e4fbSJeff Cody             int i = count;
2807e855e4fbSJeff Cody             while (formats && i && !found) {
2808e855e4fbSJeff Cody                 found = !strcmp(formats[--i], drv->format_name);
2809e855e4fbSJeff Cody             }
2810e855e4fbSJeff Cody 
2811e855e4fbSJeff Cody             if (!found) {
28125839e53bSMarkus Armbruster                 formats = g_renew(const char *, formats, count + 1);
2813e855e4fbSJeff Cody                 formats[count++] = drv->format_name;
2814ea2384d3Sbellard             }
2815ea2384d3Sbellard         }
2816e855e4fbSJeff Cody     }
2817ada42401SStefan Hajnoczi 
2818ada42401SStefan Hajnoczi     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
2819ada42401SStefan Hajnoczi 
2820ada42401SStefan Hajnoczi     for (i = 0; i < count; i++) {
2821ada42401SStefan Hajnoczi         it(opaque, formats[i]);
2822ada42401SStefan Hajnoczi     }
2823ada42401SStefan Hajnoczi 
2824e855e4fbSJeff Cody     g_free(formats);
2825e855e4fbSJeff Cody }
2826ea2384d3Sbellard 
2827dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */
2828dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name)
2829dc364f4cSBenoît Canet {
2830dc364f4cSBenoît Canet     BlockDriverState *bs;
2831dc364f4cSBenoît Canet 
2832dc364f4cSBenoît Canet     assert(node_name);
2833dc364f4cSBenoît Canet 
2834dc364f4cSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
2835dc364f4cSBenoît Canet         if (!strcmp(node_name, bs->node_name)) {
2836dc364f4cSBenoît Canet             return bs;
2837dc364f4cSBenoît Canet         }
2838dc364f4cSBenoît Canet     }
2839dc364f4cSBenoît Canet     return NULL;
2840dc364f4cSBenoît Canet }
2841dc364f4cSBenoît Canet 
2842c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */
2843d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
2844c13163fbSBenoît Canet {
2845c13163fbSBenoît Canet     BlockDeviceInfoList *list, *entry;
2846c13163fbSBenoît Canet     BlockDriverState *bs;
2847c13163fbSBenoît Canet 
2848c13163fbSBenoît Canet     list = NULL;
2849c13163fbSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
2850c83f9fbaSKevin Wolf         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
2851d5a8ee60SAlberto Garcia         if (!info) {
2852d5a8ee60SAlberto Garcia             qapi_free_BlockDeviceInfoList(list);
2853d5a8ee60SAlberto Garcia             return NULL;
2854d5a8ee60SAlberto Garcia         }
2855c13163fbSBenoît Canet         entry = g_malloc0(sizeof(*entry));
2856d5a8ee60SAlberto Garcia         entry->value = info;
2857c13163fbSBenoît Canet         entry->next = list;
2858c13163fbSBenoît Canet         list = entry;
2859c13163fbSBenoît Canet     }
2860c13163fbSBenoît Canet 
2861c13163fbSBenoît Canet     return list;
2862c13163fbSBenoît Canet }
2863c13163fbSBenoît Canet 
286412d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device,
286512d3ba82SBenoît Canet                                  const char *node_name,
286612d3ba82SBenoît Canet                                  Error **errp)
286712d3ba82SBenoît Canet {
28687f06d47eSMarkus Armbruster     BlockBackend *blk;
28697f06d47eSMarkus Armbruster     BlockDriverState *bs;
287012d3ba82SBenoît Canet 
287112d3ba82SBenoît Canet     if (device) {
28727f06d47eSMarkus Armbruster         blk = blk_by_name(device);
287312d3ba82SBenoît Canet 
28747f06d47eSMarkus Armbruster         if (blk) {
28759f4ed6fbSAlberto Garcia             bs = blk_bs(blk);
28769f4ed6fbSAlberto Garcia             if (!bs) {
28775433c24fSMax Reitz                 error_setg(errp, "Device '%s' has no medium", device);
28785433c24fSMax Reitz             }
28795433c24fSMax Reitz 
28809f4ed6fbSAlberto Garcia             return bs;
288112d3ba82SBenoît Canet         }
2882dd67fa50SBenoît Canet     }
288312d3ba82SBenoît Canet 
2884dd67fa50SBenoît Canet     if (node_name) {
288512d3ba82SBenoît Canet         bs = bdrv_find_node(node_name);
288612d3ba82SBenoît Canet 
2887dd67fa50SBenoît Canet         if (bs) {
2888dd67fa50SBenoît Canet             return bs;
2889dd67fa50SBenoît Canet         }
289012d3ba82SBenoît Canet     }
289112d3ba82SBenoît Canet 
2892dd67fa50SBenoît Canet     error_setg(errp, "Cannot find device=%s nor node_name=%s",
2893dd67fa50SBenoît Canet                      device ? device : "",
2894dd67fa50SBenoît Canet                      node_name ? node_name : "");
2895dd67fa50SBenoît Canet     return NULL;
289612d3ba82SBenoît Canet }
289712d3ba82SBenoît Canet 
28985a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise,
28995a6684d2SJeff Cody  * return false.  If either argument is NULL, return false. */
29005a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
29015a6684d2SJeff Cody {
29025a6684d2SJeff Cody     while (top && top != base) {
2903760e0063SKevin Wolf         top = backing_bs(top);
29045a6684d2SJeff Cody     }
29055a6684d2SJeff Cody 
29065a6684d2SJeff Cody     return top != NULL;
29075a6684d2SJeff Cody }
29085a6684d2SJeff Cody 
290904df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs)
291004df765aSFam Zheng {
291104df765aSFam Zheng     if (!bs) {
291204df765aSFam Zheng         return QTAILQ_FIRST(&graph_bdrv_states);
291304df765aSFam Zheng     }
291404df765aSFam Zheng     return QTAILQ_NEXT(bs, node_list);
291504df765aSFam Zheng }
291604df765aSFam Zheng 
291720a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs)
291820a9e77dSFam Zheng {
291920a9e77dSFam Zheng     return bs->node_name;
292020a9e77dSFam Zheng }
292120a9e77dSFam Zheng 
29221f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs)
29234c265bf9SKevin Wolf {
29244c265bf9SKevin Wolf     BdrvChild *c;
29254c265bf9SKevin Wolf     const char *name;
29264c265bf9SKevin Wolf 
29274c265bf9SKevin Wolf     /* If multiple parents have a name, just pick the first one. */
29284c265bf9SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
29294c265bf9SKevin Wolf         if (c->role->get_name) {
29304c265bf9SKevin Wolf             name = c->role->get_name(c);
29314c265bf9SKevin Wolf             if (name && *name) {
29324c265bf9SKevin Wolf                 return name;
29334c265bf9SKevin Wolf             }
29344c265bf9SKevin Wolf         }
29354c265bf9SKevin Wolf     }
29364c265bf9SKevin Wolf 
29374c265bf9SKevin Wolf     return NULL;
29384c265bf9SKevin Wolf }
29394c265bf9SKevin Wolf 
29407f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */
2941bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs)
2942ea2384d3Sbellard {
29434c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: "";
2944ea2384d3Sbellard }
2945ea2384d3Sbellard 
29469b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device
29479b2aa84fSAlberto Garcia  * name associated. Since node and device names live in the same
29489b2aa84fSAlberto Garcia  * namespace, the result is unambiguous. The exception is if both are
29499b2aa84fSAlberto Garcia  * absent, then this returns an empty (non-null) string. */
29509b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
29519b2aa84fSAlberto Garcia {
29524c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: bs->node_name;
29539b2aa84fSAlberto Garcia }
29549b2aa84fSAlberto Garcia 
2955c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
2956c8433287SMarkus Armbruster {
2957c8433287SMarkus Armbruster     return bs->open_flags;
2958c8433287SMarkus Armbruster }
2959c8433287SMarkus Armbruster 
29603ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs)
29613ac21627SPeter Lieven {
29623ac21627SPeter Lieven     return 1;
29633ac21627SPeter Lieven }
29643ac21627SPeter Lieven 
2965f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
2966f2feebbdSKevin Wolf {
2967f2feebbdSKevin Wolf     assert(bs->drv);
2968f2feebbdSKevin Wolf 
296911212d8fSPaolo Bonzini     /* If BS is a copy on write image, it is initialized to
297011212d8fSPaolo Bonzini        the contents of the base image, which may not be zeroes.  */
2971760e0063SKevin Wolf     if (bs->backing) {
297211212d8fSPaolo Bonzini         return 0;
297311212d8fSPaolo Bonzini     }
2974336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
2975336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
2976f2feebbdSKevin Wolf     }
2977f2feebbdSKevin Wolf 
29783ac21627SPeter Lieven     /* safe default */
29793ac21627SPeter Lieven     return 0;
2980f2feebbdSKevin Wolf }
2981f2feebbdSKevin Wolf 
29824ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
29834ce78691SPeter Lieven {
29844ce78691SPeter Lieven     BlockDriverInfo bdi;
29854ce78691SPeter Lieven 
2986760e0063SKevin Wolf     if (bs->backing) {
29874ce78691SPeter Lieven         return false;
29884ce78691SPeter Lieven     }
29894ce78691SPeter Lieven 
29904ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
29914ce78691SPeter Lieven         return bdi.unallocated_blocks_are_zero;
29924ce78691SPeter Lieven     }
29934ce78691SPeter Lieven 
29944ce78691SPeter Lieven     return false;
29954ce78691SPeter Lieven }
29964ce78691SPeter Lieven 
29974ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
29984ce78691SPeter Lieven {
29994ce78691SPeter Lieven     BlockDriverInfo bdi;
30004ce78691SPeter Lieven 
30012f0342efSDenis V. Lunev     if (!(bs->open_flags & BDRV_O_UNMAP)) {
30024ce78691SPeter Lieven         return false;
30034ce78691SPeter Lieven     }
30044ce78691SPeter Lieven 
30054ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
30064ce78691SPeter Lieven         return bdi.can_write_zeroes_with_unmap;
30074ce78691SPeter Lieven     }
30084ce78691SPeter Lieven 
30094ce78691SPeter Lieven     return false;
30104ce78691SPeter Lieven }
30114ce78691SPeter Lieven 
3012045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
3013045df330Saliguori {
3014760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted)
3015045df330Saliguori         return bs->backing_file;
3016045df330Saliguori     else if (bs->encrypted)
3017045df330Saliguori         return bs->filename;
3018045df330Saliguori     else
3019045df330Saliguori         return NULL;
3020045df330Saliguori }
3021045df330Saliguori 
302283f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
302383f64091Sbellard                                char *filename, int filename_size)
302483f64091Sbellard {
302583f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
302683f64091Sbellard }
302783f64091Sbellard 
3028faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
3029faea38e7Sbellard {
3030faea38e7Sbellard     BlockDriver *drv = bs->drv;
3031faea38e7Sbellard     if (!drv)
303219cb3738Sbellard         return -ENOMEDIUM;
3033faea38e7Sbellard     if (!drv->bdrv_get_info)
3034faea38e7Sbellard         return -ENOTSUP;
3035faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
3036faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
3037faea38e7Sbellard }
3038faea38e7Sbellard 
3039eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
3040eae041feSMax Reitz {
3041eae041feSMax Reitz     BlockDriver *drv = bs->drv;
3042eae041feSMax Reitz     if (drv && drv->bdrv_get_specific_info) {
3043eae041feSMax Reitz         return drv->bdrv_get_specific_info(bs);
3044eae041feSMax Reitz     }
3045eae041feSMax Reitz     return NULL;
3046eae041feSMax Reitz }
3047eae041feSMax Reitz 
3048a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
30498b9b0cc2SKevin Wolf {
3050bf736fe3SKevin Wolf     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
30518b9b0cc2SKevin Wolf         return;
30528b9b0cc2SKevin Wolf     }
30538b9b0cc2SKevin Wolf 
3054bf736fe3SKevin Wolf     bs->drv->bdrv_debug_event(bs, event);
305541c695c7SKevin Wolf }
30568b9b0cc2SKevin Wolf 
305741c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
305841c695c7SKevin Wolf                           const char *tag)
305941c695c7SKevin Wolf {
306041c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
30619a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
306241c695c7SKevin Wolf     }
306341c695c7SKevin Wolf 
306441c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
306541c695c7SKevin Wolf         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
306641c695c7SKevin Wolf     }
306741c695c7SKevin Wolf 
306841c695c7SKevin Wolf     return -ENOTSUP;
306941c695c7SKevin Wolf }
307041c695c7SKevin Wolf 
30714cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
30724cc70e93SFam Zheng {
30734cc70e93SFam Zheng     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
30749a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
30754cc70e93SFam Zheng     }
30764cc70e93SFam Zheng 
30774cc70e93SFam Zheng     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
30784cc70e93SFam Zheng         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
30794cc70e93SFam Zheng     }
30804cc70e93SFam Zheng 
30814cc70e93SFam Zheng     return -ENOTSUP;
30824cc70e93SFam Zheng }
30834cc70e93SFam Zheng 
308441c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
308541c695c7SKevin Wolf {
3086938789eaSMax Reitz     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
30879a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
308841c695c7SKevin Wolf     }
308941c695c7SKevin Wolf 
309041c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
309141c695c7SKevin Wolf         return bs->drv->bdrv_debug_resume(bs, tag);
309241c695c7SKevin Wolf     }
309341c695c7SKevin Wolf 
309441c695c7SKevin Wolf     return -ENOTSUP;
309541c695c7SKevin Wolf }
309641c695c7SKevin Wolf 
309741c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
309841c695c7SKevin Wolf {
309941c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
31009a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
310141c695c7SKevin Wolf     }
310241c695c7SKevin Wolf 
310341c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
310441c695c7SKevin Wolf         return bs->drv->bdrv_debug_is_suspended(bs, tag);
310541c695c7SKevin Wolf     }
310641c695c7SKevin Wolf 
310741c695c7SKevin Wolf     return false;
31088b9b0cc2SKevin Wolf }
31098b9b0cc2SKevin Wolf 
3110b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol.  If it is
3111b1b1d783SJeff Cody  * relative, it must be relative to the chain.  So, passing in bs->filename
3112b1b1d783SJeff Cody  * from a BDS as backing_file should not be done, as that may be relative to
3113b1b1d783SJeff Cody  * the CWD rather than the chain. */
3114e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
3115e8a6bb9cSMarcelo Tosatti         const char *backing_file)
3116e8a6bb9cSMarcelo Tosatti {
3117b1b1d783SJeff Cody     char *filename_full = NULL;
3118b1b1d783SJeff Cody     char *backing_file_full = NULL;
3119b1b1d783SJeff Cody     char *filename_tmp = NULL;
3120b1b1d783SJeff Cody     int is_protocol = 0;
3121b1b1d783SJeff Cody     BlockDriverState *curr_bs = NULL;
3122b1b1d783SJeff Cody     BlockDriverState *retval = NULL;
3123b1b1d783SJeff Cody 
3124b1b1d783SJeff Cody     if (!bs || !bs->drv || !backing_file) {
3125e8a6bb9cSMarcelo Tosatti         return NULL;
3126e8a6bb9cSMarcelo Tosatti     }
3127e8a6bb9cSMarcelo Tosatti 
3128b1b1d783SJeff Cody     filename_full     = g_malloc(PATH_MAX);
3129b1b1d783SJeff Cody     backing_file_full = g_malloc(PATH_MAX);
3130b1b1d783SJeff Cody     filename_tmp      = g_malloc(PATH_MAX);
3131b1b1d783SJeff Cody 
3132b1b1d783SJeff Cody     is_protocol = path_has_protocol(backing_file);
3133b1b1d783SJeff Cody 
3134760e0063SKevin Wolf     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
3135b1b1d783SJeff Cody 
3136b1b1d783SJeff Cody         /* If either of the filename paths is actually a protocol, then
3137b1b1d783SJeff Cody          * compare unmodified paths; otherwise make paths relative */
3138b1b1d783SJeff Cody         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
3139b1b1d783SJeff Cody             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
3140760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
3141b1b1d783SJeff Cody                 break;
3142b1b1d783SJeff Cody             }
3143e8a6bb9cSMarcelo Tosatti         } else {
3144b1b1d783SJeff Cody             /* If not an absolute filename path, make it relative to the current
3145b1b1d783SJeff Cody              * image's filename path */
3146b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3147b1b1d783SJeff Cody                          backing_file);
3148b1b1d783SJeff Cody 
3149b1b1d783SJeff Cody             /* We are going to compare absolute pathnames */
3150b1b1d783SJeff Cody             if (!realpath(filename_tmp, filename_full)) {
3151b1b1d783SJeff Cody                 continue;
3152b1b1d783SJeff Cody             }
3153b1b1d783SJeff Cody 
3154b1b1d783SJeff Cody             /* We need to make sure the backing filename we are comparing against
3155b1b1d783SJeff Cody              * is relative to the current image filename (or absolute) */
3156b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3157b1b1d783SJeff Cody                          curr_bs->backing_file);
3158b1b1d783SJeff Cody 
3159b1b1d783SJeff Cody             if (!realpath(filename_tmp, backing_file_full)) {
3160b1b1d783SJeff Cody                 continue;
3161b1b1d783SJeff Cody             }
3162b1b1d783SJeff Cody 
3163b1b1d783SJeff Cody             if (strcmp(backing_file_full, filename_full) == 0) {
3164760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
3165b1b1d783SJeff Cody                 break;
3166b1b1d783SJeff Cody             }
3167e8a6bb9cSMarcelo Tosatti         }
3168e8a6bb9cSMarcelo Tosatti     }
3169e8a6bb9cSMarcelo Tosatti 
3170b1b1d783SJeff Cody     g_free(filename_full);
3171b1b1d783SJeff Cody     g_free(backing_file_full);
3172b1b1d783SJeff Cody     g_free(filename_tmp);
3173b1b1d783SJeff Cody     return retval;
3174e8a6bb9cSMarcelo Tosatti }
3175e8a6bb9cSMarcelo Tosatti 
3176f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs)
3177f198fd1cSBenoît Canet {
3178f198fd1cSBenoît Canet     if (!bs->drv) {
3179f198fd1cSBenoît Canet         return 0;
3180f198fd1cSBenoît Canet     }
3181f198fd1cSBenoît Canet 
3182760e0063SKevin Wolf     if (!bs->backing) {
3183f198fd1cSBenoît Canet         return 0;
3184f198fd1cSBenoît Canet     }
3185f198fd1cSBenoît Canet 
3186760e0063SKevin Wolf     return 1 + bdrv_get_backing_file_depth(bs->backing->bs);
3187f198fd1cSBenoît Canet }
3188f198fd1cSBenoît Canet 
3189ea2384d3Sbellard void bdrv_init(void)
3190ea2384d3Sbellard {
31915efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
3192ea2384d3Sbellard }
3193ce1a14dcSpbrook 
3194eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
3195eb852011SMarkus Armbruster {
3196eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
3197eb852011SMarkus Armbruster     bdrv_init();
3198eb852011SMarkus Armbruster }
3199eb852011SMarkus Armbruster 
32005a8a30dbSKevin Wolf void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
32010f15423cSAnthony Liguori {
32020d1c5c91SFam Zheng     BdrvChild *child;
32035a8a30dbSKevin Wolf     Error *local_err = NULL;
32045a8a30dbSKevin Wolf     int ret;
32055a8a30dbSKevin Wolf 
32063456a8d1SKevin Wolf     if (!bs->drv)  {
32073456a8d1SKevin Wolf         return;
32080f15423cSAnthony Liguori     }
32093456a8d1SKevin Wolf 
321004c01a5cSKevin Wolf     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
32117ea2d269SAlexey Kardashevskiy         return;
32127ea2d269SAlexey Kardashevskiy     }
321304c01a5cSKevin Wolf     bs->open_flags &= ~BDRV_O_INACTIVE;
32147ea2d269SAlexey Kardashevskiy 
32153456a8d1SKevin Wolf     if (bs->drv->bdrv_invalidate_cache) {
32165a8a30dbSKevin Wolf         bs->drv->bdrv_invalidate_cache(bs, &local_err);
32175a8a30dbSKevin Wolf         if (local_err) {
321804c01a5cSKevin Wolf             bs->open_flags |= BDRV_O_INACTIVE;
32195a8a30dbSKevin Wolf             error_propagate(errp, local_err);
32205a8a30dbSKevin Wolf             return;
32213456a8d1SKevin Wolf         }
32220d1c5c91SFam Zheng     }
32230d1c5c91SFam Zheng 
32240d1c5c91SFam Zheng     QLIST_FOREACH(child, &bs->children, next) {
32250d1c5c91SFam Zheng         bdrv_invalidate_cache(child->bs, &local_err);
32260d1c5c91SFam Zheng         if (local_err) {
32270d1c5c91SFam Zheng             bs->open_flags |= BDRV_O_INACTIVE;
32280d1c5c91SFam Zheng             error_propagate(errp, local_err);
32290d1c5c91SFam Zheng             return;
32300d1c5c91SFam Zheng         }
32310d1c5c91SFam Zheng     }
32323456a8d1SKevin Wolf 
32335a8a30dbSKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
32345a8a30dbSKevin Wolf     if (ret < 0) {
323504c01a5cSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
32365a8a30dbSKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
32375a8a30dbSKevin Wolf         return;
32385a8a30dbSKevin Wolf     }
32390f15423cSAnthony Liguori }
32400f15423cSAnthony Liguori 
32415a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp)
32420f15423cSAnthony Liguori {
32437c8eece4SKevin Wolf     BlockDriverState *bs;
32445a8a30dbSKevin Wolf     Error *local_err = NULL;
324588be7b4bSKevin Wolf     BdrvNextIterator it;
32460f15423cSAnthony Liguori 
324788be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3248ed78cda3SStefan Hajnoczi         AioContext *aio_context = bdrv_get_aio_context(bs);
3249ed78cda3SStefan Hajnoczi 
3250ed78cda3SStefan Hajnoczi         aio_context_acquire(aio_context);
32515a8a30dbSKevin Wolf         bdrv_invalidate_cache(bs, &local_err);
3252ed78cda3SStefan Hajnoczi         aio_context_release(aio_context);
32535a8a30dbSKevin Wolf         if (local_err) {
32545a8a30dbSKevin Wolf             error_propagate(errp, local_err);
32555a8a30dbSKevin Wolf             return;
32565a8a30dbSKevin Wolf         }
32570f15423cSAnthony Liguori     }
32580f15423cSAnthony Liguori }
32590f15423cSAnthony Liguori 
3260aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs,
3261aad0b7a0SFam Zheng                                    bool setting_flag)
326276b1c7feSKevin Wolf {
3263aad0b7a0SFam Zheng     BdrvChild *child;
326476b1c7feSKevin Wolf     int ret;
326576b1c7feSKevin Wolf 
3266aad0b7a0SFam Zheng     if (!setting_flag && bs->drv->bdrv_inactivate) {
326776b1c7feSKevin Wolf         ret = bs->drv->bdrv_inactivate(bs);
326876b1c7feSKevin Wolf         if (ret < 0) {
326976b1c7feSKevin Wolf             return ret;
327076b1c7feSKevin Wolf         }
327176b1c7feSKevin Wolf     }
327276b1c7feSKevin Wolf 
3273aad0b7a0SFam Zheng     QLIST_FOREACH(child, &bs->children, next) {
3274aad0b7a0SFam Zheng         ret = bdrv_inactivate_recurse(child->bs, setting_flag);
3275aad0b7a0SFam Zheng         if (ret < 0) {
3276aad0b7a0SFam Zheng             return ret;
3277aad0b7a0SFam Zheng         }
3278aad0b7a0SFam Zheng     }
3279aad0b7a0SFam Zheng 
3280aad0b7a0SFam Zheng     if (setting_flag) {
328176b1c7feSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
3282aad0b7a0SFam Zheng     }
328376b1c7feSKevin Wolf     return 0;
328476b1c7feSKevin Wolf }
328576b1c7feSKevin Wolf 
328676b1c7feSKevin Wolf int bdrv_inactivate_all(void)
328776b1c7feSKevin Wolf {
328879720af6SMax Reitz     BlockDriverState *bs = NULL;
328988be7b4bSKevin Wolf     BdrvNextIterator it;
3290aad0b7a0SFam Zheng     int ret = 0;
3291aad0b7a0SFam Zheng     int pass;
329276b1c7feSKevin Wolf 
329388be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3294aad0b7a0SFam Zheng         aio_context_acquire(bdrv_get_aio_context(bs));
3295aad0b7a0SFam Zheng     }
329676b1c7feSKevin Wolf 
3297aad0b7a0SFam Zheng     /* We do two passes of inactivation. The first pass calls to drivers'
3298aad0b7a0SFam Zheng      * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
3299aad0b7a0SFam Zheng      * the second pass sets the BDRV_O_INACTIVE flag so that no further write
3300aad0b7a0SFam Zheng      * is allowed. */
3301aad0b7a0SFam Zheng     for (pass = 0; pass < 2; pass++) {
330288be7b4bSKevin Wolf         for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3303aad0b7a0SFam Zheng             ret = bdrv_inactivate_recurse(bs, pass);
330476b1c7feSKevin Wolf             if (ret < 0) {
3305aad0b7a0SFam Zheng                 goto out;
3306aad0b7a0SFam Zheng             }
330776b1c7feSKevin Wolf         }
330876b1c7feSKevin Wolf     }
330976b1c7feSKevin Wolf 
3310aad0b7a0SFam Zheng out:
331188be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3312aad0b7a0SFam Zheng         aio_context_release(bdrv_get_aio_context(bs));
3313aad0b7a0SFam Zheng     }
3314aad0b7a0SFam Zheng 
3315aad0b7a0SFam Zheng     return ret;
331676b1c7feSKevin Wolf }
331776b1c7feSKevin Wolf 
3318f9f05dc5SKevin Wolf /**************************************************************/
331919cb3738Sbellard /* removable device support */
332019cb3738Sbellard 
332119cb3738Sbellard /**
332219cb3738Sbellard  * Return TRUE if the media is present
332319cb3738Sbellard  */
3324e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs)
332519cb3738Sbellard {
332619cb3738Sbellard     BlockDriver *drv = bs->drv;
332728d7a789SMax Reitz     BdrvChild *child;
3328a1aff5bfSMarkus Armbruster 
3329e031f750SMax Reitz     if (!drv) {
3330e031f750SMax Reitz         return false;
3331e031f750SMax Reitz     }
333228d7a789SMax Reitz     if (drv->bdrv_is_inserted) {
3333a1aff5bfSMarkus Armbruster         return drv->bdrv_is_inserted(bs);
333419cb3738Sbellard     }
333528d7a789SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
333628d7a789SMax Reitz         if (!bdrv_is_inserted(child->bs)) {
333728d7a789SMax Reitz             return false;
333828d7a789SMax Reitz         }
333928d7a789SMax Reitz     }
334028d7a789SMax Reitz     return true;
334128d7a789SMax Reitz }
334219cb3738Sbellard 
334319cb3738Sbellard /**
33448e49ca46SMarkus Armbruster  * Return whether the media changed since the last call to this
33458e49ca46SMarkus Armbruster  * function, or -ENOTSUP if we don't know.  Most drivers don't know.
334619cb3738Sbellard  */
334719cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs)
334819cb3738Sbellard {
334919cb3738Sbellard     BlockDriver *drv = bs->drv;
335019cb3738Sbellard 
33518e49ca46SMarkus Armbruster     if (drv && drv->bdrv_media_changed) {
33528e49ca46SMarkus Armbruster         return drv->bdrv_media_changed(bs);
33538e49ca46SMarkus Armbruster     }
33548e49ca46SMarkus Armbruster     return -ENOTSUP;
335519cb3738Sbellard }
335619cb3738Sbellard 
335719cb3738Sbellard /**
335819cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
335919cb3738Sbellard  */
3360f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
336119cb3738Sbellard {
336219cb3738Sbellard     BlockDriver *drv = bs->drv;
3363bfb197e0SMarkus Armbruster     const char *device_name;
336419cb3738Sbellard 
3365822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
3366822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
336719cb3738Sbellard     }
33686f382ed2SLuiz Capitulino 
3369bfb197e0SMarkus Armbruster     device_name = bdrv_get_device_name(bs);
3370bfb197e0SMarkus Armbruster     if (device_name[0] != '\0') {
3371bfb197e0SMarkus Armbruster         qapi_event_send_device_tray_moved(device_name,
3372a5ee7bd4SWenchao Xia                                           eject_flag, &error_abort);
33736f382ed2SLuiz Capitulino     }
337419cb3738Sbellard }
337519cb3738Sbellard 
337619cb3738Sbellard /**
337719cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
337819cb3738Sbellard  * to eject it manually).
337919cb3738Sbellard  */
3380025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
338119cb3738Sbellard {
338219cb3738Sbellard     BlockDriver *drv = bs->drv;
338319cb3738Sbellard 
3384025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
3385b8c6d095SStefan Hajnoczi 
3386025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
3387025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
338819cb3738Sbellard     }
338919cb3738Sbellard }
3390985a03b0Sths 
33919fcb0251SFam Zheng /* Get a reference to bs */
33929fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs)
33939fcb0251SFam Zheng {
33949fcb0251SFam Zheng     bs->refcnt++;
33959fcb0251SFam Zheng }
33969fcb0251SFam Zheng 
33979fcb0251SFam Zheng /* Release a previously grabbed reference to bs.
33989fcb0251SFam Zheng  * If after releasing, reference count is zero, the BlockDriverState is
33999fcb0251SFam Zheng  * deleted. */
34009fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs)
34019fcb0251SFam Zheng {
34029a4d5ca6SJeff Cody     if (!bs) {
34039a4d5ca6SJeff Cody         return;
34049a4d5ca6SJeff Cody     }
34059fcb0251SFam Zheng     assert(bs->refcnt > 0);
34069fcb0251SFam Zheng     if (--bs->refcnt == 0) {
34079fcb0251SFam Zheng         bdrv_delete(bs);
34089fcb0251SFam Zheng     }
34099fcb0251SFam Zheng }
34109fcb0251SFam Zheng 
3411fbe40ff7SFam Zheng struct BdrvOpBlocker {
3412fbe40ff7SFam Zheng     Error *reason;
3413fbe40ff7SFam Zheng     QLIST_ENTRY(BdrvOpBlocker) list;
3414fbe40ff7SFam Zheng };
3415fbe40ff7SFam Zheng 
3416fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
3417fbe40ff7SFam Zheng {
3418fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
3419fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3420fbe40ff7SFam Zheng     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
3421fbe40ff7SFam Zheng         blocker = QLIST_FIRST(&bs->op_blockers[op]);
3422fbe40ff7SFam Zheng         if (errp) {
3423e43bfd9cSMarkus Armbruster             *errp = error_copy(blocker->reason);
3424e43bfd9cSMarkus Armbruster             error_prepend(errp, "Node '%s' is busy: ",
3425e43bfd9cSMarkus Armbruster                           bdrv_get_device_or_node_name(bs));
3426fbe40ff7SFam Zheng         }
3427fbe40ff7SFam Zheng         return true;
3428fbe40ff7SFam Zheng     }
3429fbe40ff7SFam Zheng     return false;
3430fbe40ff7SFam Zheng }
3431fbe40ff7SFam Zheng 
3432fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
3433fbe40ff7SFam Zheng {
3434fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
3435fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3436fbe40ff7SFam Zheng 
34375839e53bSMarkus Armbruster     blocker = g_new0(BdrvOpBlocker, 1);
3438fbe40ff7SFam Zheng     blocker->reason = reason;
3439fbe40ff7SFam Zheng     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
3440fbe40ff7SFam Zheng }
3441fbe40ff7SFam Zheng 
3442fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
3443fbe40ff7SFam Zheng {
3444fbe40ff7SFam Zheng     BdrvOpBlocker *blocker, *next;
3445fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3446fbe40ff7SFam Zheng     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
3447fbe40ff7SFam Zheng         if (blocker->reason == reason) {
3448fbe40ff7SFam Zheng             QLIST_REMOVE(blocker, list);
3449fbe40ff7SFam Zheng             g_free(blocker);
3450fbe40ff7SFam Zheng         }
3451fbe40ff7SFam Zheng     }
3452fbe40ff7SFam Zheng }
3453fbe40ff7SFam Zheng 
3454fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
3455fbe40ff7SFam Zheng {
3456fbe40ff7SFam Zheng     int i;
3457fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3458fbe40ff7SFam Zheng         bdrv_op_block(bs, i, reason);
3459fbe40ff7SFam Zheng     }
3460fbe40ff7SFam Zheng }
3461fbe40ff7SFam Zheng 
3462fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
3463fbe40ff7SFam Zheng {
3464fbe40ff7SFam Zheng     int i;
3465fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3466fbe40ff7SFam Zheng         bdrv_op_unblock(bs, i, reason);
3467fbe40ff7SFam Zheng     }
3468fbe40ff7SFam Zheng }
3469fbe40ff7SFam Zheng 
3470fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
3471fbe40ff7SFam Zheng {
3472fbe40ff7SFam Zheng     int i;
3473fbe40ff7SFam Zheng 
3474fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3475fbe40ff7SFam Zheng         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
3476fbe40ff7SFam Zheng             return false;
3477fbe40ff7SFam Zheng         }
3478fbe40ff7SFam Zheng     }
3479fbe40ff7SFam Zheng     return true;
3480fbe40ff7SFam Zheng }
3481fbe40ff7SFam Zheng 
3482d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt,
3483f88e1a42SJes Sorensen                      const char *base_filename, const char *base_fmt,
3484f382d43aSMiroslav Rezanina                      char *options, uint64_t img_size, int flags,
3485f382d43aSMiroslav Rezanina                      Error **errp, bool quiet)
3486f88e1a42SJes Sorensen {
348783d0521aSChunyan Liu     QemuOptsList *create_opts = NULL;
348883d0521aSChunyan Liu     QemuOpts *opts = NULL;
348983d0521aSChunyan Liu     const char *backing_fmt, *backing_file;
349083d0521aSChunyan Liu     int64_t size;
3491f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
3492cc84d90fSMax Reitz     Error *local_err = NULL;
3493f88e1a42SJes Sorensen     int ret = 0;
3494f88e1a42SJes Sorensen 
3495f88e1a42SJes Sorensen     /* Find driver and parse its options */
3496f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
3497f88e1a42SJes Sorensen     if (!drv) {
349871c79813SLuiz Capitulino         error_setg(errp, "Unknown file format '%s'", fmt);
3499d92ada22SLuiz Capitulino         return;
3500f88e1a42SJes Sorensen     }
3501f88e1a42SJes Sorensen 
3502b65a5e12SMax Reitz     proto_drv = bdrv_find_protocol(filename, true, errp);
3503f88e1a42SJes Sorensen     if (!proto_drv) {
3504d92ada22SLuiz Capitulino         return;
3505f88e1a42SJes Sorensen     }
3506f88e1a42SJes Sorensen 
3507c6149724SMax Reitz     if (!drv->create_opts) {
3508c6149724SMax Reitz         error_setg(errp, "Format driver '%s' does not support image creation",
3509c6149724SMax Reitz                    drv->format_name);
3510c6149724SMax Reitz         return;
3511c6149724SMax Reitz     }
3512c6149724SMax Reitz 
3513c6149724SMax Reitz     if (!proto_drv->create_opts) {
3514c6149724SMax Reitz         error_setg(errp, "Protocol driver '%s' does not support image creation",
3515c6149724SMax Reitz                    proto_drv->format_name);
3516c6149724SMax Reitz         return;
3517c6149724SMax Reitz     }
3518c6149724SMax Reitz 
3519c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, drv->create_opts);
3520c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
3521f88e1a42SJes Sorensen 
3522f88e1a42SJes Sorensen     /* Create parameter list with default values */
352383d0521aSChunyan Liu     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
352439101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
3525f88e1a42SJes Sorensen 
3526f88e1a42SJes Sorensen     /* Parse -o options */
3527f88e1a42SJes Sorensen     if (options) {
3528dc523cd3SMarkus Armbruster         qemu_opts_do_parse(opts, options, NULL, &local_err);
3529dc523cd3SMarkus Armbruster         if (local_err) {
3530dc523cd3SMarkus Armbruster             error_report_err(local_err);
3531dc523cd3SMarkus Armbruster             local_err = NULL;
353283d0521aSChunyan Liu             error_setg(errp, "Invalid options for file format '%s'", fmt);
3533f88e1a42SJes Sorensen             goto out;
3534f88e1a42SJes Sorensen         }
3535f88e1a42SJes Sorensen     }
3536f88e1a42SJes Sorensen 
3537f88e1a42SJes Sorensen     if (base_filename) {
3538f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
35396be4194bSMarkus Armbruster         if (local_err) {
354071c79813SLuiz Capitulino             error_setg(errp, "Backing file not supported for file format '%s'",
354171c79813SLuiz Capitulino                        fmt);
3542f88e1a42SJes Sorensen             goto out;
3543f88e1a42SJes Sorensen         }
3544f88e1a42SJes Sorensen     }
3545f88e1a42SJes Sorensen 
3546f88e1a42SJes Sorensen     if (base_fmt) {
3547f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
35486be4194bSMarkus Armbruster         if (local_err) {
354971c79813SLuiz Capitulino             error_setg(errp, "Backing file format not supported for file "
355071c79813SLuiz Capitulino                              "format '%s'", fmt);
3551f88e1a42SJes Sorensen             goto out;
3552f88e1a42SJes Sorensen         }
3553f88e1a42SJes Sorensen     }
3554f88e1a42SJes Sorensen 
355583d0521aSChunyan Liu     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
355683d0521aSChunyan Liu     if (backing_file) {
355783d0521aSChunyan Liu         if (!strcmp(filename, backing_file)) {
355871c79813SLuiz Capitulino             error_setg(errp, "Error: Trying to create an image with the "
355971c79813SLuiz Capitulino                              "same filename as the backing file");
3560792da93aSJes Sorensen             goto out;
3561792da93aSJes Sorensen         }
3562792da93aSJes Sorensen     }
3563792da93aSJes Sorensen 
356483d0521aSChunyan Liu     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
3565f88e1a42SJes Sorensen 
3566f88e1a42SJes Sorensen     // The size for the image must always be specified, with one exception:
3567f88e1a42SJes Sorensen     // If we are using a backing file, we can obtain the size from there
356883d0521aSChunyan Liu     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
356983d0521aSChunyan Liu     if (size == -1) {
357083d0521aSChunyan Liu         if (backing_file) {
357166f6b814SMax Reitz             BlockDriverState *bs;
357229168018SMax Reitz             char *full_backing = g_new0(char, PATH_MAX);
357352bf1e72SMarkus Armbruster             int64_t size;
357463090dacSPaolo Bonzini             int back_flags;
3575e6641719SMax Reitz             QDict *backing_options = NULL;
357663090dacSPaolo Bonzini 
357729168018SMax Reitz             bdrv_get_full_backing_filename_from_filename(filename, backing_file,
357829168018SMax Reitz                                                          full_backing, PATH_MAX,
357929168018SMax Reitz                                                          &local_err);
358029168018SMax Reitz             if (local_err) {
358129168018SMax Reitz                 g_free(full_backing);
358229168018SMax Reitz                 goto out;
358329168018SMax Reitz             }
358429168018SMax Reitz 
358563090dacSPaolo Bonzini             /* backing files always opened read-only */
358661de4c68SKevin Wolf             back_flags = flags;
3587bfd18d1eSKevin Wolf             back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
3588f88e1a42SJes Sorensen 
3589e6641719SMax Reitz             if (backing_fmt) {
3590e6641719SMax Reitz                 backing_options = qdict_new();
3591e6641719SMax Reitz                 qdict_put(backing_options, "driver",
3592e6641719SMax Reitz                           qstring_from_str(backing_fmt));
3593e6641719SMax Reitz             }
3594e6641719SMax Reitz 
35955b363937SMax Reitz             bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
35965b363937SMax Reitz                            &local_err);
359729168018SMax Reitz             g_free(full_backing);
35985b363937SMax Reitz             if (!bs) {
3599f88e1a42SJes Sorensen                 goto out;
3600f88e1a42SJes Sorensen             }
360152bf1e72SMarkus Armbruster             size = bdrv_getlength(bs);
360252bf1e72SMarkus Armbruster             if (size < 0) {
360352bf1e72SMarkus Armbruster                 error_setg_errno(errp, -size, "Could not get size of '%s'",
360452bf1e72SMarkus Armbruster                                  backing_file);
360552bf1e72SMarkus Armbruster                 bdrv_unref(bs);
360652bf1e72SMarkus Armbruster                 goto out;
360752bf1e72SMarkus Armbruster             }
3608f88e1a42SJes Sorensen 
360939101f25SMarkus Armbruster             qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
361066f6b814SMax Reitz 
361166f6b814SMax Reitz             bdrv_unref(bs);
3612f88e1a42SJes Sorensen         } else {
361371c79813SLuiz Capitulino             error_setg(errp, "Image creation needs a size parameter");
3614f88e1a42SJes Sorensen             goto out;
3615f88e1a42SJes Sorensen         }
3616f88e1a42SJes Sorensen     }
3617f88e1a42SJes Sorensen 
3618f382d43aSMiroslav Rezanina     if (!quiet) {
3619f88e1a42SJes Sorensen         printf("Formatting '%s', fmt=%s ", filename, fmt);
362043c5d8f8SFam Zheng         qemu_opts_print(opts, " ");
3621f88e1a42SJes Sorensen         puts("");
3622f382d43aSMiroslav Rezanina     }
362383d0521aSChunyan Liu 
3624c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
362583d0521aSChunyan Liu 
3626cc84d90fSMax Reitz     if (ret == -EFBIG) {
3627cc84d90fSMax Reitz         /* This is generally a better message than whatever the driver would
3628cc84d90fSMax Reitz          * deliver (especially because of the cluster_size_hint), since that
3629cc84d90fSMax Reitz          * is most probably not much different from "image too large". */
3630f3f4d2c0SKevin Wolf         const char *cluster_size_hint = "";
363183d0521aSChunyan Liu         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
3632f3f4d2c0SKevin Wolf             cluster_size_hint = " (try using a larger cluster size)";
3633f3f4d2c0SKevin Wolf         }
3634cc84d90fSMax Reitz         error_setg(errp, "The image size is too large for file format '%s'"
3635cc84d90fSMax Reitz                    "%s", fmt, cluster_size_hint);
3636cc84d90fSMax Reitz         error_free(local_err);
3637cc84d90fSMax Reitz         local_err = NULL;
3638f88e1a42SJes Sorensen     }
3639f88e1a42SJes Sorensen 
3640f88e1a42SJes Sorensen out:
364183d0521aSChunyan Liu     qemu_opts_del(opts);
364283d0521aSChunyan Liu     qemu_opts_free(create_opts);
3643cc84d90fSMax Reitz     error_propagate(errp, local_err);
3644cc84d90fSMax Reitz }
364585d126f3SStefan Hajnoczi 
364685d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs)
364785d126f3SStefan Hajnoczi {
3648dcd04228SStefan Hajnoczi     return bs->aio_context;
3649dcd04228SStefan Hajnoczi }
3650dcd04228SStefan Hajnoczi 
3651e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
3652e8a095daSStefan Hajnoczi {
3653e8a095daSStefan Hajnoczi     QLIST_REMOVE(ban, list);
3654e8a095daSStefan Hajnoczi     g_free(ban);
3655e8a095daSStefan Hajnoczi }
3656e8a095daSStefan Hajnoczi 
3657dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs)
3658dcd04228SStefan Hajnoczi {
3659e8a095daSStefan Hajnoczi     BdrvAioNotifier *baf, *baf_tmp;
3660b97511c7SMax Reitz     BdrvChild *child;
366133384421SMax Reitz 
3662dcd04228SStefan Hajnoczi     if (!bs->drv) {
3663dcd04228SStefan Hajnoczi         return;
3664dcd04228SStefan Hajnoczi     }
3665dcd04228SStefan Hajnoczi 
3666e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
3667e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
3668e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
3669e8a095daSStefan Hajnoczi         if (baf->deleted) {
3670e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(baf);
3671e8a095daSStefan Hajnoczi         } else {
367233384421SMax Reitz             baf->detach_aio_context(baf->opaque);
367333384421SMax Reitz         }
3674e8a095daSStefan Hajnoczi     }
3675e8a095daSStefan Hajnoczi     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
3676e8a095daSStefan Hajnoczi      * remove remaining aio notifiers if we aren't called again.
3677e8a095daSStefan Hajnoczi      */
3678e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
367933384421SMax Reitz 
3680dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_detach_aio_context) {
3681dcd04228SStefan Hajnoczi         bs->drv->bdrv_detach_aio_context(bs);
3682dcd04228SStefan Hajnoczi     }
3683b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
3684b97511c7SMax Reitz         bdrv_detach_aio_context(child->bs);
3685dcd04228SStefan Hajnoczi     }
3686dcd04228SStefan Hajnoczi 
3687dcd04228SStefan Hajnoczi     bs->aio_context = NULL;
3688dcd04228SStefan Hajnoczi }
3689dcd04228SStefan Hajnoczi 
3690dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs,
3691dcd04228SStefan Hajnoczi                              AioContext *new_context)
3692dcd04228SStefan Hajnoczi {
3693e8a095daSStefan Hajnoczi     BdrvAioNotifier *ban, *ban_tmp;
3694b97511c7SMax Reitz     BdrvChild *child;
369533384421SMax Reitz 
3696dcd04228SStefan Hajnoczi     if (!bs->drv) {
3697dcd04228SStefan Hajnoczi         return;
3698dcd04228SStefan Hajnoczi     }
3699dcd04228SStefan Hajnoczi 
3700dcd04228SStefan Hajnoczi     bs->aio_context = new_context;
3701dcd04228SStefan Hajnoczi 
3702b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
3703b97511c7SMax Reitz         bdrv_attach_aio_context(child->bs, new_context);
3704dcd04228SStefan Hajnoczi     }
3705dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_attach_aio_context) {
3706dcd04228SStefan Hajnoczi         bs->drv->bdrv_attach_aio_context(bs, new_context);
3707dcd04228SStefan Hajnoczi     }
370833384421SMax Reitz 
3709e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
3710e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
3711e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
3712e8a095daSStefan Hajnoczi         if (ban->deleted) {
3713e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(ban);
3714e8a095daSStefan Hajnoczi         } else {
371533384421SMax Reitz             ban->attached_aio_context(new_context, ban->opaque);
371633384421SMax Reitz         }
3717dcd04228SStefan Hajnoczi     }
3718e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
3719e8a095daSStefan Hajnoczi }
3720dcd04228SStefan Hajnoczi 
3721dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
3722dcd04228SStefan Hajnoczi {
372353ec73e2SFam Zheng     bdrv_drain(bs); /* ensure there are no in-flight requests */
3724dcd04228SStefan Hajnoczi 
3725dcd04228SStefan Hajnoczi     bdrv_detach_aio_context(bs);
3726dcd04228SStefan Hajnoczi 
3727dcd04228SStefan Hajnoczi     /* This function executes in the old AioContext so acquire the new one in
3728dcd04228SStefan Hajnoczi      * case it runs in a different thread.
3729dcd04228SStefan Hajnoczi      */
3730dcd04228SStefan Hajnoczi     aio_context_acquire(new_context);
3731dcd04228SStefan Hajnoczi     bdrv_attach_aio_context(bs, new_context);
3732dcd04228SStefan Hajnoczi     aio_context_release(new_context);
373385d126f3SStefan Hajnoczi }
3734d616b224SStefan Hajnoczi 
373533384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs,
373633384421SMax Reitz         void (*attached_aio_context)(AioContext *new_context, void *opaque),
373733384421SMax Reitz         void (*detach_aio_context)(void *opaque), void *opaque)
373833384421SMax Reitz {
373933384421SMax Reitz     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
374033384421SMax Reitz     *ban = (BdrvAioNotifier){
374133384421SMax Reitz         .attached_aio_context = attached_aio_context,
374233384421SMax Reitz         .detach_aio_context   = detach_aio_context,
374333384421SMax Reitz         .opaque               = opaque
374433384421SMax Reitz     };
374533384421SMax Reitz 
374633384421SMax Reitz     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
374733384421SMax Reitz }
374833384421SMax Reitz 
374933384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
375033384421SMax Reitz                                       void (*attached_aio_context)(AioContext *,
375133384421SMax Reitz                                                                    void *),
375233384421SMax Reitz                                       void (*detach_aio_context)(void *),
375333384421SMax Reitz                                       void *opaque)
375433384421SMax Reitz {
375533384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
375633384421SMax Reitz 
375733384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
375833384421SMax Reitz         if (ban->attached_aio_context == attached_aio_context &&
375933384421SMax Reitz             ban->detach_aio_context   == detach_aio_context   &&
3760e8a095daSStefan Hajnoczi             ban->opaque               == opaque               &&
3761e8a095daSStefan Hajnoczi             ban->deleted              == false)
376233384421SMax Reitz         {
3763e8a095daSStefan Hajnoczi             if (bs->walking_aio_notifiers) {
3764e8a095daSStefan Hajnoczi                 ban->deleted = true;
3765e8a095daSStefan Hajnoczi             } else {
3766e8a095daSStefan Hajnoczi                 bdrv_do_remove_aio_context_notifier(ban);
3767e8a095daSStefan Hajnoczi             }
376833384421SMax Reitz             return;
376933384421SMax Reitz         }
377033384421SMax Reitz     }
377133384421SMax Reitz 
377233384421SMax Reitz     abort();
377333384421SMax Reitz }
377433384421SMax Reitz 
377577485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
37768b13976dSMax Reitz                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque)
37776f176b48SMax Reitz {
3778c282e1fdSChunyan Liu     if (!bs->drv->bdrv_amend_options) {
37796f176b48SMax Reitz         return -ENOTSUP;
37806f176b48SMax Reitz     }
37818b13976dSMax Reitz     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque);
37826f176b48SMax Reitz }
3783f6186f49SBenoît Canet 
3784b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method
3785b5042a36SBenoît Canet  * of block filter and by bdrv_is_first_non_filter.
3786b5042a36SBenoît Canet  * It is used to test if the given bs is the candidate or recurse more in the
3787b5042a36SBenoît Canet  * node graph.
3788212a5a8fSBenoît Canet  */
3789212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
3790212a5a8fSBenoît Canet                                       BlockDriverState *candidate)
3791f6186f49SBenoît Canet {
3792b5042a36SBenoît Canet     /* return false if basic checks fails */
3793b5042a36SBenoît Canet     if (!bs || !bs->drv) {
3794b5042a36SBenoît Canet         return false;
3795b5042a36SBenoît Canet     }
3796b5042a36SBenoît Canet 
3797b5042a36SBenoît Canet     /* the code reached a non block filter driver -> check if the bs is
3798b5042a36SBenoît Canet      * the same as the candidate. It's the recursion termination condition.
3799b5042a36SBenoît Canet      */
3800b5042a36SBenoît Canet     if (!bs->drv->is_filter) {
3801b5042a36SBenoît Canet         return bs == candidate;
3802b5042a36SBenoît Canet     }
3803b5042a36SBenoît Canet     /* Down this path the driver is a block filter driver */
3804b5042a36SBenoît Canet 
3805b5042a36SBenoît Canet     /* If the block filter recursion method is defined use it to recurse down
3806b5042a36SBenoît Canet      * the node graph.
3807b5042a36SBenoît Canet      */
3808b5042a36SBenoît Canet     if (bs->drv->bdrv_recurse_is_first_non_filter) {
3809212a5a8fSBenoît Canet         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
3810212a5a8fSBenoît Canet     }
3811212a5a8fSBenoît Canet 
3812b5042a36SBenoît Canet     /* the driver is a block filter but don't allow to recurse -> return false
3813b5042a36SBenoît Canet      */
3814b5042a36SBenoît Canet     return false;
3815212a5a8fSBenoît Canet }
3816212a5a8fSBenoît Canet 
3817212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's
3818212a5a8fSBenoît Canet  * bs chain. Since we don't have pointers to parents it explore all bs chains
3819212a5a8fSBenoît Canet  * from the top. Some filters can choose not to pass down the recursion.
3820212a5a8fSBenoît Canet  */
3821212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate)
3822212a5a8fSBenoît Canet {
38237c8eece4SKevin Wolf     BlockDriverState *bs;
382488be7b4bSKevin Wolf     BdrvNextIterator it;
3825212a5a8fSBenoît Canet 
3826212a5a8fSBenoît Canet     /* walk down the bs forest recursively */
382788be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3828212a5a8fSBenoît Canet         bool perm;
3829212a5a8fSBenoît Canet 
3830b5042a36SBenoît Canet         /* try to recurse in this top level bs */
3831e6dc8a1fSKevin Wolf         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
3832212a5a8fSBenoît Canet 
3833212a5a8fSBenoît Canet         /* candidate is the first non filter */
3834212a5a8fSBenoît Canet         if (perm) {
3835212a5a8fSBenoît Canet             return true;
3836212a5a8fSBenoît Canet         }
3837212a5a8fSBenoît Canet     }
3838212a5a8fSBenoît Canet 
3839212a5a8fSBenoît Canet     return false;
3840f6186f49SBenoît Canet }
384109158f00SBenoît Canet 
3842e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
3843e12f3784SWen Congyang                                         const char *node_name, Error **errp)
384409158f00SBenoît Canet {
384509158f00SBenoît Canet     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
38465a7e7a0bSStefan Hajnoczi     AioContext *aio_context;
38475a7e7a0bSStefan Hajnoczi 
384809158f00SBenoît Canet     if (!to_replace_bs) {
384909158f00SBenoît Canet         error_setg(errp, "Node name '%s' not found", node_name);
385009158f00SBenoît Canet         return NULL;
385109158f00SBenoît Canet     }
385209158f00SBenoît Canet 
38535a7e7a0bSStefan Hajnoczi     aio_context = bdrv_get_aio_context(to_replace_bs);
38545a7e7a0bSStefan Hajnoczi     aio_context_acquire(aio_context);
38555a7e7a0bSStefan Hajnoczi 
385609158f00SBenoît Canet     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
38575a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
38585a7e7a0bSStefan Hajnoczi         goto out;
385909158f00SBenoît Canet     }
386009158f00SBenoît Canet 
386109158f00SBenoît Canet     /* We don't want arbitrary node of the BDS chain to be replaced only the top
386209158f00SBenoît Canet      * most non filter in order to prevent data corruption.
386309158f00SBenoît Canet      * Another benefit is that this tests exclude backing files which are
386409158f00SBenoît Canet      * blocked by the backing blockers.
386509158f00SBenoît Canet      */
3866e12f3784SWen Congyang     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
386709158f00SBenoît Canet         error_setg(errp, "Only top most non filter can be replaced");
38685a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
38695a7e7a0bSStefan Hajnoczi         goto out;
387009158f00SBenoît Canet     }
387109158f00SBenoît Canet 
38725a7e7a0bSStefan Hajnoczi out:
38735a7e7a0bSStefan Hajnoczi     aio_context_release(aio_context);
387409158f00SBenoît Canet     return to_replace_bs;
387509158f00SBenoît Canet }
3876448ad91dSMing Lei 
387791af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs)
387891af7014SMax Reitz {
387991af7014SMax Reitz     const QDictEntry *entry;
38809e700c1aSKevin Wolf     QemuOptDesc *desc;
3881260fecf1SKevin Wolf     BdrvChild *child;
388291af7014SMax Reitz     bool found_any = false;
3883260fecf1SKevin Wolf     const char *p;
388491af7014SMax Reitz 
388591af7014SMax Reitz     for (entry = qdict_first(bs->options); entry;
388691af7014SMax Reitz          entry = qdict_next(bs->options, entry))
388791af7014SMax Reitz     {
3888260fecf1SKevin Wolf         /* Exclude options for children */
3889260fecf1SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
3890260fecf1SKevin Wolf             if (strstart(qdict_entry_key(entry), child->name, &p)
3891260fecf1SKevin Wolf                 && (!*p || *p == '.'))
3892260fecf1SKevin Wolf             {
3893260fecf1SKevin Wolf                 break;
3894260fecf1SKevin Wolf             }
3895260fecf1SKevin Wolf         }
3896260fecf1SKevin Wolf         if (child) {
38979e700c1aSKevin Wolf             continue;
38989e700c1aSKevin Wolf         }
38999e700c1aSKevin Wolf 
39009e700c1aSKevin Wolf         /* And exclude all non-driver-specific options */
39019e700c1aSKevin Wolf         for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
39029e700c1aSKevin Wolf             if (!strcmp(qdict_entry_key(entry), desc->name)) {
39039e700c1aSKevin Wolf                 break;
39049e700c1aSKevin Wolf             }
39059e700c1aSKevin Wolf         }
39069e700c1aSKevin Wolf         if (desc->name) {
39079e700c1aSKevin Wolf             continue;
39089e700c1aSKevin Wolf         }
39099e700c1aSKevin Wolf 
391091af7014SMax Reitz         qobject_incref(qdict_entry_value(entry));
391191af7014SMax Reitz         qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry));
391291af7014SMax Reitz         found_any = true;
391391af7014SMax Reitz     }
391491af7014SMax Reitz 
391591af7014SMax Reitz     return found_any;
391691af7014SMax Reitz }
391791af7014SMax Reitz 
391891af7014SMax Reitz /* Updates the following BDS fields:
391991af7014SMax Reitz  *  - exact_filename: A filename which may be used for opening a block device
392091af7014SMax Reitz  *                    which (mostly) equals the given BDS (even without any
392191af7014SMax Reitz  *                    other options; so reading and writing must return the same
392291af7014SMax Reitz  *                    results, but caching etc. may be different)
392391af7014SMax Reitz  *  - full_open_options: Options which, when given when opening a block device
392491af7014SMax Reitz  *                       (without a filename), result in a BDS (mostly)
392591af7014SMax Reitz  *                       equalling the given one
392691af7014SMax Reitz  *  - filename: If exact_filename is set, it is copied here. Otherwise,
392791af7014SMax Reitz  *              full_open_options is converted to a JSON object, prefixed with
392891af7014SMax Reitz  *              "json:" (for use through the JSON pseudo protocol) and put here.
392991af7014SMax Reitz  */
393091af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs)
393191af7014SMax Reitz {
393291af7014SMax Reitz     BlockDriver *drv = bs->drv;
393391af7014SMax Reitz     QDict *opts;
393491af7014SMax Reitz 
393591af7014SMax Reitz     if (!drv) {
393691af7014SMax Reitz         return;
393791af7014SMax Reitz     }
393891af7014SMax Reitz 
393991af7014SMax Reitz     /* This BDS's file name will most probably depend on its file's name, so
394091af7014SMax Reitz      * refresh that first */
394191af7014SMax Reitz     if (bs->file) {
39429a4f4c31SKevin Wolf         bdrv_refresh_filename(bs->file->bs);
394391af7014SMax Reitz     }
394491af7014SMax Reitz 
394591af7014SMax Reitz     if (drv->bdrv_refresh_filename) {
394691af7014SMax Reitz         /* Obsolete information is of no use here, so drop the old file name
394791af7014SMax Reitz          * information before refreshing it */
394891af7014SMax Reitz         bs->exact_filename[0] = '\0';
394991af7014SMax Reitz         if (bs->full_open_options) {
395091af7014SMax Reitz             QDECREF(bs->full_open_options);
395191af7014SMax Reitz             bs->full_open_options = NULL;
395291af7014SMax Reitz         }
395391af7014SMax Reitz 
39544cdd01d3SKevin Wolf         opts = qdict_new();
39554cdd01d3SKevin Wolf         append_open_options(opts, bs);
39564cdd01d3SKevin Wolf         drv->bdrv_refresh_filename(bs, opts);
39574cdd01d3SKevin Wolf         QDECREF(opts);
395891af7014SMax Reitz     } else if (bs->file) {
395991af7014SMax Reitz         /* Try to reconstruct valid information from the underlying file */
396091af7014SMax Reitz         bool has_open_options;
396191af7014SMax Reitz 
396291af7014SMax Reitz         bs->exact_filename[0] = '\0';
396391af7014SMax Reitz         if (bs->full_open_options) {
396491af7014SMax Reitz             QDECREF(bs->full_open_options);
396591af7014SMax Reitz             bs->full_open_options = NULL;
396691af7014SMax Reitz         }
396791af7014SMax Reitz 
396891af7014SMax Reitz         opts = qdict_new();
396991af7014SMax Reitz         has_open_options = append_open_options(opts, bs);
397091af7014SMax Reitz 
397191af7014SMax Reitz         /* If no specific options have been given for this BDS, the filename of
397291af7014SMax Reitz          * the underlying file should suffice for this one as well */
39739a4f4c31SKevin Wolf         if (bs->file->bs->exact_filename[0] && !has_open_options) {
39749a4f4c31SKevin Wolf             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
397591af7014SMax Reitz         }
397691af7014SMax Reitz         /* Reconstructing the full options QDict is simple for most format block
397791af7014SMax Reitz          * drivers, as long as the full options are known for the underlying
397891af7014SMax Reitz          * file BDS. The full options QDict of that file BDS should somehow
397991af7014SMax Reitz          * contain a representation of the filename, therefore the following
398091af7014SMax Reitz          * suffices without querying the (exact_)filename of this BDS. */
39819a4f4c31SKevin Wolf         if (bs->file->bs->full_open_options) {
398291af7014SMax Reitz             qdict_put_obj(opts, "driver",
398391af7014SMax Reitz                           QOBJECT(qstring_from_str(drv->format_name)));
39849a4f4c31SKevin Wolf             QINCREF(bs->file->bs->full_open_options);
39859a4f4c31SKevin Wolf             qdict_put_obj(opts, "file",
39869a4f4c31SKevin Wolf                           QOBJECT(bs->file->bs->full_open_options));
398791af7014SMax Reitz 
398891af7014SMax Reitz             bs->full_open_options = opts;
398991af7014SMax Reitz         } else {
399091af7014SMax Reitz             QDECREF(opts);
399191af7014SMax Reitz         }
399291af7014SMax Reitz     } else if (!bs->full_open_options && qdict_size(bs->options)) {
399391af7014SMax Reitz         /* There is no underlying file BDS (at least referenced by BDS.file),
399491af7014SMax Reitz          * so the full options QDict should be equal to the options given
399591af7014SMax Reitz          * specifically for this block device when it was opened (plus the
399691af7014SMax Reitz          * driver specification).
399791af7014SMax Reitz          * Because those options don't change, there is no need to update
399891af7014SMax Reitz          * full_open_options when it's already set. */
399991af7014SMax Reitz 
400091af7014SMax Reitz         opts = qdict_new();
400191af7014SMax Reitz         append_open_options(opts, bs);
400291af7014SMax Reitz         qdict_put_obj(opts, "driver",
400391af7014SMax Reitz                       QOBJECT(qstring_from_str(drv->format_name)));
400491af7014SMax Reitz 
400591af7014SMax Reitz         if (bs->exact_filename[0]) {
400691af7014SMax Reitz             /* This may not work for all block protocol drivers (some may
400791af7014SMax Reitz              * require this filename to be parsed), but we have to find some
400891af7014SMax Reitz              * default solution here, so just include it. If some block driver
400991af7014SMax Reitz              * does not support pure options without any filename at all or
401091af7014SMax Reitz              * needs some special format of the options QDict, it needs to
401191af7014SMax Reitz              * implement the driver-specific bdrv_refresh_filename() function.
401291af7014SMax Reitz              */
401391af7014SMax Reitz             qdict_put_obj(opts, "filename",
401491af7014SMax Reitz                           QOBJECT(qstring_from_str(bs->exact_filename)));
401591af7014SMax Reitz         }
401691af7014SMax Reitz 
401791af7014SMax Reitz         bs->full_open_options = opts;
401891af7014SMax Reitz     }
401991af7014SMax Reitz 
402091af7014SMax Reitz     if (bs->exact_filename[0]) {
402191af7014SMax Reitz         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
402291af7014SMax Reitz     } else if (bs->full_open_options) {
402391af7014SMax Reitz         QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
402491af7014SMax Reitz         snprintf(bs->filename, sizeof(bs->filename), "json:%s",
402591af7014SMax Reitz                  qstring_get_str(json));
402691af7014SMax Reitz         QDECREF(json);
402791af7014SMax Reitz     }
402891af7014SMax Reitz }
4029e06018adSWen Congyang 
4030e06018adSWen Congyang /*
4031e06018adSWen Congyang  * Hot add/remove a BDS's child. So the user can take a child offline when
4032e06018adSWen Congyang  * it is broken and take a new child online
4033e06018adSWen Congyang  */
4034e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
4035e06018adSWen Congyang                     Error **errp)
4036e06018adSWen Congyang {
4037e06018adSWen Congyang 
4038e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
4039e06018adSWen Congyang         error_setg(errp, "The node %s does not support adding a child",
4040e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
4041e06018adSWen Congyang         return;
4042e06018adSWen Congyang     }
4043e06018adSWen Congyang 
4044e06018adSWen Congyang     if (!QLIST_EMPTY(&child_bs->parents)) {
4045e06018adSWen Congyang         error_setg(errp, "The node %s already has a parent",
4046e06018adSWen Congyang                    child_bs->node_name);
4047e06018adSWen Congyang         return;
4048e06018adSWen Congyang     }
4049e06018adSWen Congyang 
4050e06018adSWen Congyang     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
4051e06018adSWen Congyang }
4052e06018adSWen Congyang 
4053e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
4054e06018adSWen Congyang {
4055e06018adSWen Congyang     BdrvChild *tmp;
4056e06018adSWen Congyang 
4057e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
4058e06018adSWen Congyang         error_setg(errp, "The node %s does not support removing a child",
4059e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
4060e06018adSWen Congyang         return;
4061e06018adSWen Congyang     }
4062e06018adSWen Congyang 
4063e06018adSWen Congyang     QLIST_FOREACH(tmp, &parent_bs->children, next) {
4064e06018adSWen Congyang         if (tmp == child) {
4065e06018adSWen Congyang             break;
4066e06018adSWen Congyang         }
4067e06018adSWen Congyang     }
4068e06018adSWen Congyang 
4069e06018adSWen Congyang     if (!tmp) {
4070e06018adSWen Congyang         error_setg(errp, "The node %s does not have a child named %s",
4071e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs),
4072e06018adSWen Congyang                    bdrv_get_device_or_node_name(child->bs));
4073e06018adSWen Congyang         return;
4074e06018adSWen Congyang     }
4075e06018adSWen Congyang 
4076e06018adSWen Congyang     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
4077e06018adSWen Congyang }
4078